-
Notifications
You must be signed in to change notification settings - Fork 7
/
account.go
642 lines (573 loc) · 16.9 KB
/
account.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
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
package near
import (
"crypto/ed25519"
"encoding/base64"
"encoding/json"
"math/big"
"path/filepath"
"strconv"
"sync"
"github.com/aurora-is-near/near-api-go/keystore"
"github.com/aurora-is-near/near-api-go/utils"
"github.com/btcsuite/btcd/btcutil/base58"
"github.com/near/borsh-go"
)
// Default number of retries with different nonce before giving up on a transaction.
const txNonceRetryNumber = 12
// Default wait until next retry in milliseconds.
const txNonceRetryWait = 500
// Exponential back off for waiting to retry.
const txNonceRetryWaitBackoff = 1.5
// Account defines functions to work with a NEAR account.
// Keeps a connection to NEAR JSON-RPC, the account's access keys, and maintains a
// local cache of nonces per account's access key.
type Account struct {
// NEAR JSON-RPC connection
conn *Connection
// keeps full access key for account and operations
fullAccessKeyPair *keystore.Ed25519KeyPair
// consists of function call key pairs if they exist, otherwise contains only full access key
// (i.e.: contains one key which points to same fullAccessKeyPair)
funcCallKeyPairs map[string]*keystore.Ed25519KeyPair
// to atomically get Near Nonce per key
funcCallKeyMutexes map[string]*sync.Mutex
accessKeyByPublicKeyCache map[string]map[string]interface{}
}
// LoadAccount initializes an Account object by loading the account credentials from disk.
func LoadAccount(c *Connection, cfg *Config, accountID string) (*Account, error) {
var (
a Account
err error
keyPair *keystore.Ed25519KeyPair
)
a.conn = c
a.funcCallKeyPairs = make(map[string]*keystore.Ed25519KeyPair)
a.funcCallKeyMutexes = make(map[string]*sync.Mutex)
a.accessKeyByPublicKeyCache = make(map[string]map[string]interface{})
path := cfg.KeyPath
if path == "" {
// set default path if not defined in config
path = filepath.Join(home, ".near-credentials", cfg.NetworkID, accountID+".json")
}
// set full access key first
a.fullAccessKeyPair, err = keystore.LoadKeyPairFromPath(path, accountID)
if err != nil {
return nil, err
}
// set function call keys if any
keyPairFilePaths := getFunctionCallKeyPairFilePaths(path, cfg.FunctionKeyPrefixPattern)
for _, p := range keyPairFilePaths {
keyPair, err = keystore.LoadKeyPairFromPath(p, accountID)
if err != nil {
return nil, err
}
a.funcCallKeyPairs[keyPair.PublicKey] = keyPair
a.funcCallKeyMutexes[keyPair.PublicKey] = &sync.Mutex{}
}
return &a, nil
}
// LoadAccountWithKeyPair initializes an Account object given its access key pair.
func LoadAccountWithKeyPair(c *Connection, keyPair *keystore.Ed25519KeyPair) *Account {
return &Account{
conn: c,
fullAccessKeyPair: keyPair,
funcCallKeyPairs: map[string]*keystore.Ed25519KeyPair{
keyPair.PublicKey: keyPair,
},
funcCallKeyMutexes: map[string]*sync.Mutex{
keyPair.PublicKey: {},
},
accessKeyByPublicKeyCache: make(map[string]map[string]interface{}),
}
}
// LoadAccountWithPrivateKey initializes an Account object given its accountID and a private key.
func LoadAccountWithPrivateKey(c *Connection, accountID string, privateKey ed25519.PrivateKey) *Account {
return LoadAccountWithKeyPair(c, keystore.KeyPairFromPrivateKey(accountID, privateKey))
}
// AccountID returns sender account ID
func (a *Account) AccountID() string {
return a.fullAccessKeyPair.AccountID
}
// GetVerifiedAccessKeys verifies and returns the public keys of the access keys
func (a *Account) GetVerifiedAccessKeys() []string {
accessKeys := make([]string, 0)
for k, v := range a.funcCallKeyPairs {
_, err := a.conn.ViewAccessKey(v.AccountID, k)
if err != nil {
continue
}
accessKeys = append(accessKeys, k)
}
return accessKeys
}
// SendMoney sends amount NEAR from account to receiverID.
func (a *Account) SendMoney(
receiverID string,
amount big.Int,
) (map[string]interface{}, error) {
return a.SignAndSendTransaction(receiverID, []Action{
{
Enum: 3,
Transfer: Transfer{
Deposit: amount,
},
},
})
}
// AddKeys adds the given publicKeys to the account with full access.
func (a *Account) AddKeys(
publicKeys ...utils.PublicKey,
) (map[string]interface{}, error) {
fullAccessKey := fullAccessKey()
actions := make([]Action, 0)
for _, pk := range publicKeys {
actions = append(actions, Action{
Enum: 5,
AddKey: AddKey{
PublicKey: pk,
AccessKey: fullAccessKey,
},
})
}
return a.SignAndSendTransaction(a.fullAccessKeyPair.AccountID, actions)
}
// DeleteKeys deletes the given publicKeys from the account.
func (a *Account) DeleteKeys(
publicKeys ...utils.PublicKey,
) (map[string]interface{}, error) {
actions := make([]Action, 0)
for _, pk := range publicKeys {
actions = append(actions, Action{
Enum: 6,
DeleteKey: DeleteKey{
PublicKey: pk,
},
})
}
return a.SignAndSendTransaction(a.fullAccessKeyPair.AccountID, actions)
}
// CreateAccount creates the newAccountID with the given publicKey and amount.
func (a *Account) CreateAccount(
newAccountID string,
publicKey utils.PublicKey,
amount big.Int,
) (map[string]interface{}, error) {
return a.SignAndSendTransaction(newAccountID, []Action{
{
Enum: 0,
CreateAccount: 0,
},
{
Enum: 3,
Transfer: Transfer{
Deposit: amount,
},
},
{
Enum: 5,
AddKey: AddKey{
PublicKey: publicKey,
AccessKey: fullAccessKey(),
},
},
})
}
// DeleteAccount deletes the account and sends the remaining Ⓝ balance to the
// account beneficiaryID.
func (a *Account) DeleteAccount(
beneficiaryID string,
) (map[string]interface{}, error) {
return a.SignAndSendTransaction(a.fullAccessKeyPair.AccountID, []Action{
{
Enum: 7,
DeleteAccount: DeleteAccount{
BeneficiaryID: beneficiaryID,
},
},
})
}
// SignAndSendTransaction signs the given actions and sends them as a transaction to receiverID.
func (a *Account) SignAndSendTransaction(
receiverID string,
actions []Action,
) (map[string]interface{}, error) {
buf, err := utils.ExponentialBackoff(txNonceRetryWait, txNonceRetryNumber, txNonceRetryWaitBackoff,
func() ([]byte, error) {
_, signedTx, err := a.signTransaction(receiverID, actions)
if err != nil {
return nil, err
}
buf, err := borsh.Serialize(*signedTx)
if err != nil {
return nil, err
}
return buf, nil
})
if err != nil {
return nil, err
}
return a.conn.SendTransaction(buf)
}
// SignAndSendTransactionWithKey signs the given actions and sends them as a transaction to receiverID.
func (a *Account) SignAndSendTransactionWithKey(
receiverID string,
publicKey string,
actions []Action,
) (map[string]interface{}, error) {
buf, err := utils.ExponentialBackoff(txNonceRetryWait, txNonceRetryNumber, txNonceRetryWaitBackoff,
func() ([]byte, error) {
_, signedTx, err := a.signTransactionWithKey(receiverID, publicKey, actions)
if err != nil {
return nil, err
}
buf, err := borsh.Serialize(*signedTx)
if err != nil {
return nil, err
}
return buf, nil
})
if err != nil {
return nil, err
}
return a.conn.SendTransaction(buf)
}
// SignAndSendTransactionWithKeyAndNonce signs the given actions and sends them as a transaction to receiverID.
func (a *Account) SignAndSendTransactionWithKeyAndNonce(
receiverID string,
publicKey string,
nonce uint64,
actions []Action,
) (map[string]interface{}, error) {
buf, err := utils.ExponentialBackoff(txNonceRetryWait, txNonceRetryNumber, txNonceRetryWaitBackoff,
func() ([]byte, error) {
_, signedTx, err := a.signTransactionWithKeyAndNonce(receiverID, publicKey, nonce, actions)
if err != nil {
return nil, err
}
buf, err := borsh.Serialize(*signedTx)
if err != nil {
return nil, err
}
return buf, nil
})
if err != nil {
return nil, err
}
return a.conn.SendTransaction(buf)
}
// SignAndSendTransactionAsync signs the given actions and sends it immediately
func (a *Account) SignAndSendTransactionAsync(
receiverID string,
actions []Action,
) (string, error) {
_, signedTx, err := a.signTransaction(receiverID, actions)
if err != nil {
return "", err
}
buf, err := borsh.Serialize(*signedTx)
if err != nil {
return "", err
}
return a.conn.SendTransactionAsync(buf)
}
// SignAndSendTransactionAsyncWithKey signs the given actions and sends it immediately
func (a *Account) SignAndSendTransactionAsyncWithKey(
receiverID string,
publicKey string,
actions []Action,
) (string, error) {
_, signedTx, err := a.signTransactionWithKey(receiverID, publicKey, actions)
if err != nil {
return "", err
}
buf, err := borsh.Serialize(*signedTx)
if err != nil {
return "", err
}
return a.conn.SendTransactionAsync(buf)
}
func (a *Account) signTransaction(
receiverID string,
actions []Action,
) (txHash []byte, signedTx *SignedTransaction, err error) {
_, ak, err := a.findAccessKey()
if err != nil {
return nil, nil, err
}
// get current block hash
block, err := a.conn.Block()
if err != nil {
return nil, nil, err
}
blockHash := block["header"].(map[string]interface{})["hash"].(string)
// create next nonce
var nonce int64
jsonNonce, ok := ak["nonce"].(json.Number)
if ok {
nonce, err = jsonNonce.Int64()
if err != nil {
return nil, nil, err
}
nonce++
}
// save nonce
ak["nonce"] = json.Number(strconv.FormatInt(nonce, 10))
// sign transaction
return signTransaction(receiverID, uint64(nonce), actions, base58.Decode(blockHash),
a.fullAccessKeyPair.Ed25519PubKey, a.fullAccessKeyPair.Ed25519PrivKey, a.fullAccessKeyPair.AccountID)
}
func (a *Account) signTransactionWithKey(
receiverID string,
publicKey string,
actions []Action,
) ([]byte, *SignedTransaction, error) {
ak, err := a.findAccessKeyWithPublicKey(publicKey)
if err != nil {
return nil, nil, err
}
// get current block hash
block, err := a.conn.Block()
if err != nil {
return nil, nil, err
}
blockHash := block["header"].(map[string]interface{})["hash"].(string)
// create next nonce
var nonce int64
jsonNonce, ok := ak["nonce"].(json.Number)
if ok {
nonce, err = jsonNonce.Int64()
if err != nil {
return nil, nil, err
}
nonce++
}
// save nonce
ak["nonce"] = json.Number(strconv.FormatInt(nonce, 10))
// sign transaction
return signTransaction(receiverID, uint64(nonce), actions, base58.Decode(blockHash),
a.funcCallKeyPairs[publicKey].Ed25519PubKey, a.funcCallKeyPairs[publicKey].Ed25519PrivKey, a.funcCallKeyPairs[publicKey].AccountID)
}
func (a *Account) signTransactionWithKeyAndNonce(
receiverID string,
publicKey string,
nonce uint64,
actions []Action,
) ([]byte, *SignedTransaction, error) {
// get current block hash
block, err := a.conn.Block()
if err != nil {
return nil, nil, err
}
blockHash := block["header"].(map[string]interface{})["hash"].(string)
// sign transaction
return signTransaction(receiverID, nonce, actions, base58.Decode(blockHash),
a.funcCallKeyPairs[publicKey].Ed25519PubKey, a.funcCallKeyPairs[publicKey].Ed25519PrivKey, a.funcCallKeyPairs[publicKey].AccountID)
}
func (a *Account) findAccessKey() (publicKey ed25519.PublicKey, accessKey map[string]interface{}, err error) {
// TODO: Find matching access key based on transaction
// TODO: use accountId and networkId?
pk := a.fullAccessKeyPair.Ed25519PubKey
if ak := a.accessKeyByPublicKeyCache[string(publicKey)]; ak != nil {
return pk, ak, nil
}
ak, err := a.conn.ViewAccessKey(a.fullAccessKeyPair.AccountID, a.fullAccessKeyPair.PublicKey)
if err != nil {
return nil, nil, err
}
a.accessKeyByPublicKeyCache[string(publicKey)] = ak
return pk, ak, nil
}
func (a *Account) findAccessKeyWithPublicKey(publicKey string) (map[string]interface{}, error) {
a.funcCallKeyMutexes[publicKey].Lock()
defer a.funcCallKeyMutexes[publicKey].Unlock()
if ak := a.accessKeyByPublicKeyCache[publicKey]; ak != nil {
return ak, nil
}
ak, err := a.conn.ViewAccessKey(a.funcCallKeyPairs[publicKey].AccountID, publicKey)
if err != nil {
return nil, err
}
a.accessKeyByPublicKeyCache[publicKey] = ak
return ak, nil
}
// FunctionCall performs a NEAR function call.
func (a *Account) FunctionCall(
contractID, methodName string,
args []byte,
gas uint64,
amount big.Int,
) (map[string]interface{}, error) {
return a.SignAndSendTransaction(contractID, []Action{{
Enum: 2,
FunctionCall: FunctionCall{
MethodName: methodName,
Args: args,
Gas: gas,
Deposit: amount,
},
}})
}
// FunctionCallWithMultiActionAndKey performs a NEAR function call for multiple actions with specific access key.
func (a *Account) FunctionCallWithMultiActionAndKey(
contractID string,
methodName string,
publicKey string,
argsSlice [][]byte,
gas uint64,
amount big.Int,
) (map[string]interface{}, error) {
actions := make([]Action, 0)
for _, args := range argsSlice {
actions = append(actions, Action{
Enum: 2,
FunctionCall: FunctionCall{
MethodName: methodName,
Args: args,
Gas: gas,
Deposit: amount,
},
})
}
return a.SignAndSendTransactionWithKey(contractID, publicKey, actions)
}
// FunctionCallWithMultiActionAndKeyAndNonce performs a NEAR function call for multiple actions with specific access key
// and nonce.
func (a *Account) FunctionCallWithMultiActionAndKeyAndNonce(
contractID string,
methodName string,
publicKey string,
argsSlice [][]byte,
gas uint64,
nonce uint64,
amount big.Int,
) (map[string]interface{}, error) {
actions := make([]Action, 0)
for _, args := range argsSlice {
actions = append(actions, Action{
Enum: 2,
FunctionCall: FunctionCall{
MethodName: methodName,
Args: args,
Gas: gas,
Deposit: amount,
},
})
}
return a.SignAndSendTransactionWithKeyAndNonce(contractID, publicKey, nonce, actions)
}
// FunctionCallAsync performs an async NEAR function call.
func (a *Account) FunctionCallAsync(
contractID, methodName string,
args []byte,
gas uint64,
amount big.Int,
) (string, error) {
return a.SignAndSendTransactionAsync(contractID, []Action{{
Enum: 2,
FunctionCall: FunctionCall{
MethodName: methodName,
Args: args,
Gas: gas,
Deposit: amount,
},
}})
}
// FunctionCallAsyncWithMultiActionAndKey performs an async NEAR function call.
func (a *Account) FunctionCallAsyncWithMultiActionAndKey(
contractID string,
methodName string,
publicKey string,
argsSlice [][]byte,
gas uint64,
amount big.Int,
) (string, error) {
actions := make([]Action, 0)
for _, args := range argsSlice {
actions = append(actions, Action{
Enum: 2,
FunctionCall: FunctionCall{
MethodName: methodName,
Args: args,
Gas: gas,
Deposit: amount,
},
})
}
return a.SignAndSendTransactionAsyncWithKey(contractID, publicKey, actions)
}
// ViewFunction calls the provided contract method as a readonly function
func (a *Account) ViewFunction(accountId, methodName string, argsBuf []byte, options *int64) (interface{}, error) {
finality := "final"
var blockId int64
if options != nil {
switch *options {
case 0: // "earliest"
blockId = 1
case -1: // "latest"
finality = "final"
case -2: // "pending"
finality = "optimistic"
case -3: // "finalized"
finality = "final"
case -4: // "safe":
finality = "final"
default:
blockId = *options
}
}
rpcQueryMap := map[string]interface{}{
"request_type": "call_function",
"account_id": accountId,
"method_name": methodName,
"args_base64": base64.StdEncoding.EncodeToString(argsBuf),
}
if blockId > 0 {
rpcQueryMap["block_id"] = blockId
} else {
rpcQueryMap["finality"] = finality
}
res, err := a.conn.call("query", rpcQueryMap)
if err != nil {
return nil, err
}
r, ok := res.(map[string]interface{})
if !ok {
return nil, ErrNotObject
}
return r, nil
}
// getFunctionCallKeyPairFilePaths takes a path of full access key file and returns a list of access key(s) according the below rules;
// Given the path to full access key /home/user/.near-credentials/mainnet/user.near.json
// - if there are files matching the pattern /home/user/.near-credentials/mainnet/fk*.user.near.json, it only returns the file paths to function call keys
// - if there is only /home/user/.near-credentials/mainnet/user.near.json, it returns the full access key defined in `path` arg
// - if there is any error, it returns the full access key defined in `path` arg
func getFunctionCallKeyPairFilePaths(path, prefixPattern string) []string {
dir, file := filepath.Split(path)
pattern := filepath.Join(dir, prefixPattern+file)
keyPairFiles := make([]string, 0)
files, err := filepath.Glob(pattern)
if err != nil || len(files) == 0 {
keyPairFiles = append(keyPairFiles, path)
} else {
keyPairFiles = append(keyPairFiles, files...)
}
return keyPairFiles
}
func (a *Account) ViewAccessKey(publicKey string) (map[string]interface{}, error) {
return a.conn.ViewAccessKey(a.funcCallKeyPairs[publicKey].AccountID, publicKey)
}
func (a *Account) ViewNonce(publicKey string) (uint64, error) {
ak, err := a.conn.ViewAccessKey(a.funcCallKeyPairs[publicKey].AccountID, publicKey)
if err != nil {
return 0, err
}
if jsonNonce, ok := ak["nonce"].(json.Number); !ok {
return 0, err
} else {
n, err := jsonNonce.Int64()
if err != nil {
return 0, err
}
return uint64(n), nil
}
}