forked from ava-labs/avalanchego
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
575 lines (538 loc) · 15.7 KB
/
client.go
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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
// Copyright (C) 2019-2021, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package avm
import (
"context"
"fmt"
"time"
"github.com/haowang0402/avalanchego/api"
"github.com/haowang0402/avalanchego/ids"
"github.com/haowang0402/avalanchego/snow/choices"
"github.com/haowang0402/avalanchego/utils/constants"
"github.com/haowang0402/avalanchego/utils/formatting"
"github.com/haowang0402/avalanchego/utils/rpc"
cjson "github.com/haowang0402/avalanchego/utils/json"
)
// Interface compliance
var _ Client = &client{}
// Client for interacting with an AVM (X-Chain) instance
type Client interface {
WalletClient
// GetTxStatus returns the status of [txID]
GetTxStatus(ctx context.Context, txID ids.ID) (choices.Status, error)
// ConfirmTx attempts to confirm [txID] by repeatedly checking its status.
// Note: ConfirmTx will block until either the context is done or the client
// returns a decided status.
ConfirmTx(ctx context.Context, txID ids.ID, freq time.Duration) (choices.Status, error)
// GetTx returns the byte representation of [txID]
GetTx(ctx context.Context, txID ids.ID) ([]byte, error)
// IssueStopVertex issues a stop vertex.
IssueStopVertex(ctx context.Context) error
// GetUTXOs returns the byte representation of the UTXOs controlled by [addrs]
GetUTXOs(
ctx context.Context,
addrs []string,
limit uint32,
startAddress,
startUTXOID string,
) ([][]byte, api.Index, error)
// GetAtomicUTXOs returns the byte representation of the atomic UTXOs controlled by [addresses]
// from [sourceChain]
GetAtomicUTXOs(
ctx context.Context,
addrs []string,
sourceChain string,
limit uint32,
startAddress,
startUTXOID string,
) ([][]byte, api.Index, error)
// GetAssetDescription returns a description of [assetID]
GetAssetDescription(ctx context.Context, assetID string) (*GetAssetDescriptionReply, error)
// GetBalance returns the balance of [assetID] held by [addr].
// If [includePartial], balance includes partial owned (i.e. in a multisig) funds.
GetBalance(ctx context.Context, addr string, assetID string, includePartial bool) (*GetBalanceReply, error)
// GetAllBalances returns all asset balances for [addr]
// CreateAsset creates a new asset and returns its assetID
GetAllBalances(context.Context, string, bool) (*GetAllBalancesReply, error)
CreateAsset(
ctx context.Context,
user api.UserPass,
from []string,
changeAddr,
name,
symbol string,
denomination byte,
holders []*Holder,
minters []Owners,
) (ids.ID, error)
// CreateFixedCapAsset creates a new fixed cap asset and returns its assetID
CreateFixedCapAsset(
ctx context.Context,
user api.UserPass,
from []string,
changeAddr,
name,
symbol string,
denomination byte,
holders []*Holder,
) (ids.ID, error)
// CreateVariableCapAsset creates a new variable cap asset and returns its assetID
CreateVariableCapAsset(
ctx context.Context,
user api.UserPass,
from []string,
changeAddr,
name,
symbol string,
denomination byte,
minters []Owners,
) (ids.ID, error)
// CreateNFTAsset creates a new NFT asset and returns its assetID
CreateNFTAsset(
ctx context.Context,
user api.UserPass,
from []string,
changeAddr,
name,
symbol string,
minters []Owners,
) (ids.ID, error)
// CreateAddress creates a new address controlled by [user]
CreateAddress(ctx context.Context, user api.UserPass) (string, error)
// ListAddresses returns all addresses on this chain controlled by [user]
ListAddresses(ctx context.Context, user api.UserPass) ([]string, error)
// ExportKey returns the private key corresponding to [addr] controlled by [user]
ExportKey(ctx context.Context, user api.UserPass, addr string) (string, error)
// ImportKey imports [privateKey] to [user]
ImportKey(ctx context.Context, user api.UserPass, privateKey string) (string, error)
// Mint [amount] of [assetID] to be owned by [to]
Mint(
ctx context.Context,
user api.UserPass,
from []string,
changeAddr string,
amount uint64,
assetID,
to string,
) (ids.ID, error)
// SendNFT sends an NFT and returns the ID of the newly created transaction
SendNFT(
ctx context.Context,
user api.UserPass,
from []string,
changeAddr string,
assetID string,
groupID uint32,
to string,
) (ids.ID, error)
// MintNFT issues a MintNFT transaction and returns the ID of the newly created transaction
MintNFT(
ctx context.Context,
user api.UserPass,
from []string,
changeAddr string,
assetID string,
payload []byte,
to string,
) (ids.ID, error)
// Import sends an import transaction to import funds from [sourceChain] and
// returns the ID of the newly created transaction
Import(ctx context.Context, user api.UserPass, to, sourceChain string) (ids.ID, error) // Export sends an asset from this chain to the P/C-Chain.
// After this tx is accepted, the AVAX must be imported to the P/C-chain with an importTx.
// Returns the ID of the newly created atomic transaction
Export(
ctx context.Context,
user api.UserPass,
from []string,
changeAddr string,
amount uint64,
to string,
assetID string,
) (ids.ID, error)
}
// implementation for an AVM client for interacting with avm [chain]
type client struct {
requester rpc.EndpointRequester
}
// NewClient returns an AVM client for interacting with avm [chain]
func NewClient(uri, chain string) Client {
return &client{
requester: rpc.NewEndpointRequester(uri, fmt.Sprintf("/ext/%s", constants.ChainAliasPrefix+chain), "avm"),
}
}
func (c *client) IssueTx(ctx context.Context, txBytes []byte) (ids.ID, error) {
txStr, err := formatting.EncodeWithChecksum(formatting.Hex, txBytes)
if err != nil {
return ids.ID{}, err
}
res := &api.JSONTxID{}
err = c.requester.SendRequest(ctx, "issueTx", &api.FormattedTx{
Tx: txStr,
Encoding: formatting.Hex,
}, res)
return res.TxID, err
}
func (c *client) IssueStopVertex(ctx context.Context) error {
return c.requester.SendRequest(ctx, "issueStopVertex", &struct{}{}, &struct{}{})
}
func (c *client) GetTxStatus(ctx context.Context, txID ids.ID) (choices.Status, error) {
res := &GetTxStatusReply{}
err := c.requester.SendRequest(ctx, "getTxStatus", &api.JSONTxID{
TxID: txID,
}, res)
return res.Status, err
}
func (c *client) ConfirmTx(ctx context.Context, txID ids.ID, freq time.Duration) (choices.Status, error) {
ticker := time.NewTicker(freq)
defer ticker.Stop()
for {
status, err := c.GetTxStatus(ctx, txID)
if err == nil {
if status.Decided() {
return status, nil
}
}
select {
case <-ticker.C:
case <-ctx.Done():
return status, ctx.Err()
}
}
}
func (c *client) GetTx(ctx context.Context, txID ids.ID) ([]byte, error) {
res := &api.FormattedTx{}
err := c.requester.SendRequest(ctx, "getTx", &api.GetTxArgs{
TxID: txID,
Encoding: formatting.Hex,
}, res)
if err != nil {
return nil, err
}
txBytes, err := formatting.Decode(res.Encoding, res.Tx)
if err != nil {
return nil, err
}
return txBytes, nil
}
func (c *client) GetUTXOs(ctx context.Context, addrs []string, limit uint32, startAddress, startUTXOID string) ([][]byte, api.Index, error) {
return c.GetAtomicUTXOs(ctx, addrs, "", limit, startAddress, startUTXOID)
}
func (c *client) GetAtomicUTXOs(ctx context.Context, addrs []string, sourceChain string, limit uint32, startAddress, startUTXOID string) ([][]byte, api.Index, error) {
res := &api.GetUTXOsReply{}
err := c.requester.SendRequest(ctx, "getUTXOs", &api.GetUTXOsArgs{
Addresses: addrs,
SourceChain: sourceChain,
Limit: cjson.Uint32(limit),
StartIndex: api.Index{
Address: startAddress,
UTXO: startUTXOID,
},
Encoding: formatting.Hex,
}, res)
if err != nil {
return nil, api.Index{}, err
}
utxos := make([][]byte, len(res.UTXOs))
for i, utxo := range res.UTXOs {
utxoBytes, err := formatting.Decode(res.Encoding, utxo)
if err != nil {
return nil, api.Index{}, err
}
utxos[i] = utxoBytes
}
return utxos, res.EndIndex, nil
}
func (c *client) GetAssetDescription(ctx context.Context, assetID string) (*GetAssetDescriptionReply, error) {
res := &GetAssetDescriptionReply{}
err := c.requester.SendRequest(ctx, "getAssetDescription", &GetAssetDescriptionArgs{
AssetID: assetID,
}, res)
return res, err
}
func (c *client) GetBalance(ctx context.Context, addr string, assetID string, includePartial bool) (*GetBalanceReply, error) {
res := &GetBalanceReply{}
err := c.requester.SendRequest(ctx, "getBalance", &GetBalanceArgs{
Address: addr,
AssetID: assetID,
IncludePartial: includePartial,
}, res)
return res, err
}
func (c *client) GetAllBalances(ctx context.Context, addr string, includePartial bool) (*GetAllBalancesReply, error) {
res := &GetAllBalancesReply{}
err := c.requester.SendRequest(ctx, "getAllBalances", &GetAllBalancesArgs{
JSONAddress: api.JSONAddress{Address: addr},
IncludePartial: includePartial,
}, res)
return res, err
}
func (c *client) CreateAsset(
ctx context.Context,
user api.UserPass,
from []string,
changeAddr,
name,
symbol string,
denomination byte,
holders []*Holder,
minters []Owners,
) (ids.ID, error) {
res := &FormattedAssetID{}
err := c.requester.SendRequest(ctx, "createAsset", &CreateAssetArgs{
JSONSpendHeader: api.JSONSpendHeader{
UserPass: user,
JSONFromAddrs: api.JSONFromAddrs{From: from},
JSONChangeAddr: api.JSONChangeAddr{ChangeAddr: changeAddr},
},
Name: name,
Symbol: symbol,
Denomination: denomination,
InitialHolders: holders,
MinterSets: minters,
}, res)
return res.AssetID, err
}
func (c *client) CreateFixedCapAsset(
ctx context.Context,
user api.UserPass,
from []string,
changeAddr,
name,
symbol string,
denomination byte,
holders []*Holder,
) (ids.ID, error) {
res := &FormattedAssetID{}
err := c.requester.SendRequest(ctx, "createAsset", &CreateAssetArgs{
JSONSpendHeader: api.JSONSpendHeader{
UserPass: user,
JSONFromAddrs: api.JSONFromAddrs{From: from},
JSONChangeAddr: api.JSONChangeAddr{ChangeAddr: changeAddr},
},
Name: name,
Symbol: symbol,
Denomination: denomination,
InitialHolders: holders,
}, res)
return res.AssetID, err
}
func (c *client) CreateVariableCapAsset(
ctx context.Context,
user api.UserPass,
from []string,
changeAddr,
name,
symbol string,
denomination byte,
minters []Owners,
) (ids.ID, error) {
res := &FormattedAssetID{}
err := c.requester.SendRequest(ctx, "createAsset", &CreateAssetArgs{
JSONSpendHeader: api.JSONSpendHeader{
UserPass: user,
JSONFromAddrs: api.JSONFromAddrs{From: from},
JSONChangeAddr: api.JSONChangeAddr{ChangeAddr: changeAddr},
},
Name: name,
Symbol: symbol,
Denomination: denomination,
MinterSets: minters,
}, res)
return res.AssetID, err
}
func (c *client) CreateNFTAsset(
ctx context.Context,
user api.UserPass,
from []string,
changeAddr,
name,
symbol string,
minters []Owners,
) (ids.ID, error) {
res := &FormattedAssetID{}
err := c.requester.SendRequest(ctx, "createNFTAsset", &CreateNFTAssetArgs{
JSONSpendHeader: api.JSONSpendHeader{
UserPass: user,
JSONFromAddrs: api.JSONFromAddrs{From: from},
JSONChangeAddr: api.JSONChangeAddr{ChangeAddr: changeAddr},
},
Name: name,
Symbol: symbol,
MinterSets: minters,
}, res)
return res.AssetID, err
}
func (c *client) CreateAddress(ctx context.Context, user api.UserPass) (string, error) {
res := &api.JSONAddress{}
err := c.requester.SendRequest(ctx, "createAddress", &user, res)
return res.Address, err
}
func (c *client) ListAddresses(ctx context.Context, user api.UserPass) ([]string, error) {
res := &api.JSONAddresses{}
err := c.requester.SendRequest(ctx, "listAddresses", &user, res)
return res.Addresses, err
}
func (c *client) ExportKey(ctx context.Context, user api.UserPass, addr string) (string, error) {
res := &ExportKeyReply{}
err := c.requester.SendRequest(ctx, "exportKey", &ExportKeyArgs{
UserPass: user,
Address: addr,
}, res)
return res.PrivateKey, err
}
func (c *client) ImportKey(ctx context.Context, user api.UserPass, privateKey string) (string, error) {
res := &api.JSONAddress{}
err := c.requester.SendRequest(ctx, "importKey", &ImportKeyArgs{
UserPass: user,
PrivateKey: privateKey,
}, res)
return res.Address, err
}
func (c *client) Send(
ctx context.Context,
user api.UserPass,
from []string,
changeAddr string,
amount uint64,
assetID,
to,
memo string,
) (ids.ID, error) {
res := &api.JSONTxID{}
err := c.requester.SendRequest(ctx, "send", &SendArgs{
JSONSpendHeader: api.JSONSpendHeader{
UserPass: user,
JSONFromAddrs: api.JSONFromAddrs{From: from},
JSONChangeAddr: api.JSONChangeAddr{ChangeAddr: changeAddr},
},
SendOutput: SendOutput{
Amount: cjson.Uint64(amount),
AssetID: assetID,
To: to,
},
Memo: memo,
}, res)
return res.TxID, err
}
func (c *client) SendMultiple(
ctx context.Context,
user api.UserPass,
from []string,
changeAddr string,
outputs []SendOutput,
memo string,
) (ids.ID, error) {
res := &api.JSONTxID{}
err := c.requester.SendRequest(ctx, "sendMultiple", &SendMultipleArgs{
JSONSpendHeader: api.JSONSpendHeader{
UserPass: user,
JSONFromAddrs: api.JSONFromAddrs{From: from},
JSONChangeAddr: api.JSONChangeAddr{ChangeAddr: changeAddr},
},
Outputs: outputs,
Memo: memo,
}, res)
return res.TxID, err
}
func (c *client) Mint(
ctx context.Context,
user api.UserPass,
from []string,
changeAddr string,
amount uint64,
assetID,
to string,
) (ids.ID, error) {
res := &api.JSONTxID{}
err := c.requester.SendRequest(ctx, "mint", &MintArgs{
JSONSpendHeader: api.JSONSpendHeader{
UserPass: user,
JSONFromAddrs: api.JSONFromAddrs{From: from},
JSONChangeAddr: api.JSONChangeAddr{ChangeAddr: changeAddr},
},
Amount: cjson.Uint64(amount),
AssetID: assetID,
To: to,
}, res)
return res.TxID, err
}
func (c *client) SendNFT(
ctx context.Context,
user api.UserPass,
from []string,
changeAddr string,
assetID string,
groupID uint32,
to string,
) (ids.ID, error) {
res := &api.JSONTxID{}
err := c.requester.SendRequest(ctx, "sendNFT", &SendNFTArgs{
JSONSpendHeader: api.JSONSpendHeader{
UserPass: user,
JSONFromAddrs: api.JSONFromAddrs{From: from},
JSONChangeAddr: api.JSONChangeAddr{ChangeAddr: changeAddr},
},
AssetID: assetID,
GroupID: cjson.Uint32(groupID),
To: to,
}, res)
return res.TxID, err
}
func (c *client) MintNFT(
ctx context.Context,
user api.UserPass,
from []string,
changeAddr string,
assetID string,
payload []byte,
to string,
) (ids.ID, error) {
payloadStr, err := formatting.EncodeWithChecksum(formatting.Hex, payload)
if err != nil {
return ids.ID{}, err
}
res := &api.JSONTxID{}
err = c.requester.SendRequest(ctx, "mintNFT", &MintNFTArgs{
JSONSpendHeader: api.JSONSpendHeader{
UserPass: user,
JSONFromAddrs: api.JSONFromAddrs{From: from},
JSONChangeAddr: api.JSONChangeAddr{ChangeAddr: changeAddr},
},
AssetID: assetID,
Payload: payloadStr,
To: to,
Encoding: formatting.Hex,
}, res)
return res.TxID, err
}
func (c *client) Import(ctx context.Context, user api.UserPass, to, sourceChain string) (ids.ID, error) {
res := &api.JSONTxID{}
err := c.requester.SendRequest(ctx, "import", &ImportArgs{
UserPass: user,
To: to,
SourceChain: sourceChain,
}, res)
return res.TxID, err
}
func (c *client) Export(
ctx context.Context,
user api.UserPass,
from []string,
changeAddr string,
amount uint64,
to string,
assetID string,
) (ids.ID, error) {
res := &api.JSONTxID{}
err := c.requester.SendRequest(ctx, "export", &ExportArgs{
JSONSpendHeader: api.JSONSpendHeader{
UserPass: user,
JSONFromAddrs: api.JSONFromAddrs{From: from},
JSONChangeAddr: api.JSONChangeAddr{ChangeAddr: changeAddr},
},
Amount: cjson.Uint64(amount),
To: to,
AssetID: assetID,
}, res)
return res.TxID, err
}