-
Notifications
You must be signed in to change notification settings - Fork 238
Expand file tree
/
Copy pathbank.go
More file actions
256 lines (208 loc) · 7.54 KB
/
Copy pathbank.go
File metadata and controls
256 lines (208 loc) · 7.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
package client
import (
"context"
"fmt"
"github.com/fbsobreira/gotron-sdk/pkg/common"
"github.com/fbsobreira/gotron-sdk/pkg/proto/api"
"github.com/fbsobreira/gotron-sdk/pkg/proto/core"
"google.golang.org/protobuf/proto"
)
// FreezeBalance from base58 address
func (g *GrpcClient) FreezeBalance(from, delegateTo string,
resource core.ResourceCode, frozenBalance int64) (*api.TransactionExtention, error) {
ctx, cancel := g.newContext()
defer cancel()
return g.FreezeBalanceCtx(ctx, from, delegateTo, resource, frozenBalance)
}
// FreezeBalanceCtx is the context-aware version of FreezeBalance.
func (g *GrpcClient) FreezeBalanceCtx(ctx context.Context, from, delegateTo string,
resource core.ResourceCode, frozenBalance int64) (*api.TransactionExtention, error) {
ctx = g.withAPIKey(ctx)
var err error
contract := &core.FreezeBalanceContract{}
if contract.OwnerAddress, err = common.DecodeCheck(from); err != nil {
return nil, err
}
contract.FrozenBalance = frozenBalance
contract.FrozenDuration = 3 // Tron Only allows 3 days freeze
if len(delegateTo) > 0 {
if contract.ReceiverAddress, err = common.DecodeCheck(delegateTo); err != nil {
return nil, err
}
}
contract.Resource = resource
tx, err := g.Client.FreezeBalance2(ctx, contract)
if err != nil {
return nil, err
}
if proto.Size(tx) == 0 {
return nil, fmt.Errorf("bad transaction")
}
if tx.GetResult().GetCode() != 0 {
return nil, fmt.Errorf("%s", tx.GetResult().GetMessage())
}
return tx, nil
}
// FreezeBalanceV2 freezes balance from base58 address.
func (g *GrpcClient) FreezeBalanceV2(from string,
resource core.ResourceCode, frozenBalance int64) (*api.TransactionExtention, error) {
ctx, cancel := g.newContext()
defer cancel()
return g.FreezeBalanceV2Ctx(ctx, from, resource, frozenBalance)
}
// FreezeBalanceV2Ctx is the context-aware version of FreezeBalanceV2.
func (g *GrpcClient) FreezeBalanceV2Ctx(ctx context.Context, from string,
resource core.ResourceCode, frozenBalance int64) (*api.TransactionExtention, error) {
ctx = g.withAPIKey(ctx)
if frozenBalance <= 0 {
return nil, fmt.Errorf("freeze balance must be positive, got %d", frozenBalance)
}
var err error
contract := &core.FreezeBalanceV2Contract{}
if contract.OwnerAddress, err = common.DecodeCheck(from); err != nil {
return nil, err
}
contract.FrozenBalance = frozenBalance
contract.Resource = resource
tx, err := g.Client.FreezeBalanceV2(ctx, contract)
if err != nil {
return nil, err
}
if proto.Size(tx) == 0 {
return nil, fmt.Errorf("bad transaction")
}
if tx.GetResult().GetCode() != 0 {
return nil, fmt.Errorf("%s", tx.GetResult().GetMessage())
}
return tx, nil
}
// UnfreezeBalance from base58 address
func (g *GrpcClient) UnfreezeBalance(from, delegateTo string, resource core.ResourceCode) (*api.TransactionExtention, error) {
ctx, cancel := g.newContext()
defer cancel()
return g.UnfreezeBalanceCtx(ctx, from, delegateTo, resource)
}
// UnfreezeBalanceCtx is the context-aware version of UnfreezeBalance.
func (g *GrpcClient) UnfreezeBalanceCtx(ctx context.Context, from, delegateTo string, resource core.ResourceCode) (*api.TransactionExtention, error) {
ctx = g.withAPIKey(ctx)
var err error
contract := &core.UnfreezeBalanceContract{}
if contract.OwnerAddress, err = common.DecodeCheck(from); err != nil {
return nil, err
}
if len(delegateTo) > 0 {
if contract.ReceiverAddress, err = common.DecodeCheck(delegateTo); err != nil {
return nil, err
}
}
contract.Resource = resource
tx, err := g.Client.UnfreezeBalance2(ctx, contract)
if err != nil {
return nil, err
}
if proto.Size(tx) == 0 {
return nil, fmt.Errorf("bad transaction")
}
if tx.GetResult().GetCode() != 0 {
return nil, fmt.Errorf("%s", tx.GetResult().GetMessage())
}
return tx, nil
}
// UnfreezeBalanceV2 unfreezes balance from base58 address.
func (g *GrpcClient) UnfreezeBalanceV2(from string, resource core.ResourceCode, unfreezeBalance int64) (*api.TransactionExtention, error) {
ctx, cancel := g.newContext()
defer cancel()
return g.UnfreezeBalanceV2Ctx(ctx, from, resource, unfreezeBalance)
}
// UnfreezeBalanceV2Ctx is the context-aware version of UnfreezeBalanceV2.
func (g *GrpcClient) UnfreezeBalanceV2Ctx(ctx context.Context, from string, resource core.ResourceCode, unfreezeBalance int64) (*api.TransactionExtention, error) {
ctx = g.withAPIKey(ctx)
if unfreezeBalance <= 0 {
return nil, fmt.Errorf("unfreeze balance must be positive, got %d", unfreezeBalance)
}
var err error
contract := &core.UnfreezeBalanceV2Contract{}
if contract.OwnerAddress, err = common.DecodeCheck(from); err != nil {
return nil, err
}
contract.UnfreezeBalance = unfreezeBalance
contract.Resource = resource
tx, err := g.Client.UnfreezeBalanceV2(ctx, contract)
if err != nil {
return nil, err
}
if proto.Size(tx) == 0 {
return nil, fmt.Errorf("bad transaction")
}
if tx.GetResult().GetCode() != 0 {
return nil, fmt.Errorf("%s", tx.GetResult().GetMessage())
}
return tx, nil
}
// GetAvailableUnfreezeCount from base58 address
func (g *GrpcClient) GetAvailableUnfreezeCount(from string) (*api.GetAvailableUnfreezeCountResponseMessage, error) {
ctx, cancel := g.newContext()
defer cancel()
return g.GetAvailableUnfreezeCountCtx(ctx, from)
}
// GetAvailableUnfreezeCountCtx is the context-aware version of GetAvailableUnfreezeCount.
func (g *GrpcClient) GetAvailableUnfreezeCountCtx(ctx context.Context, from string) (*api.GetAvailableUnfreezeCountResponseMessage, error) {
ctx = g.withAPIKey(ctx)
var err error
contract := &api.GetAvailableUnfreezeCountRequestMessage{}
if contract.OwnerAddress, err = common.DecodeCheck(from); err != nil {
return nil, err
}
tx, err := g.Client.GetAvailableUnfreezeCount(ctx, contract)
if err != nil {
return nil, err
}
return tx, nil
}
// GetCanWithdrawUnfreezeAmount from base58 address
func (g *GrpcClient) GetCanWithdrawUnfreezeAmount(from string, timestamp int64) (*api.CanWithdrawUnfreezeAmountResponseMessage, error) {
ctx, cancel := g.newContext()
defer cancel()
return g.GetCanWithdrawUnfreezeAmountCtx(ctx, from, timestamp)
}
// GetCanWithdrawUnfreezeAmountCtx is the context-aware version of GetCanWithdrawUnfreezeAmount.
func (g *GrpcClient) GetCanWithdrawUnfreezeAmountCtx(ctx context.Context, from string, timestamp int64) (*api.CanWithdrawUnfreezeAmountResponseMessage, error) {
ctx = g.withAPIKey(ctx)
var err error
contract := &api.CanWithdrawUnfreezeAmountRequestMessage{}
if contract.OwnerAddress, err = common.DecodeCheck(from); err != nil {
return nil, err
}
contract.Timestamp = timestamp
tx, err := g.Client.GetCanWithdrawUnfreezeAmount(ctx, contract)
if err != nil {
return nil, err
}
return tx, nil
}
// WithdrawExpireUnfreeze from base58 address
func (g *GrpcClient) WithdrawExpireUnfreeze(from string, timestamp int64) (*api.TransactionExtention, error) {
ctx, cancel := g.newContext()
defer cancel()
return g.WithdrawExpireUnfreezeCtx(ctx, from, timestamp)
}
// WithdrawExpireUnfreezeCtx is the context-aware version of WithdrawExpireUnfreeze.
func (g *GrpcClient) WithdrawExpireUnfreezeCtx(ctx context.Context, from string, timestamp int64) (*api.TransactionExtention, error) {
ctx = g.withAPIKey(ctx)
var err error
contract := &core.WithdrawExpireUnfreezeContract{}
if contract.OwnerAddress, err = common.DecodeCheck(from); err != nil {
return nil, err
}
tx, err := g.Client.WithdrawExpireUnfreeze(ctx, contract)
if err != nil {
return nil, err
}
if proto.Size(tx) == 0 {
return nil, fmt.Errorf("bad transaction")
}
if tx.GetResult().GetCode() != 0 {
return nil, fmt.Errorf("%s", tx.GetResult().GetMessage())
}
return tx, nil
}