forked from hiero-ledger/hiero-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccount_create_transaction.go
656 lines (553 loc) · 24 KB
/
account_create_transaction.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
643
644
645
646
647
648
649
650
651
652
653
654
655
656
package hedera
/*-
*
* Hedera Go SDK
*
* Copyright (C) 2020 - 2022 Hedera Hashgraph, LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
import (
"encoding/hex"
"fmt"
"strings"
"time"
"github.com/hashgraph/hedera-protobufs-go/services"
)
// AccountCreateTransaction creates a new account. After the account is created, the AccountID for it is in the receipt,
// or by asking for a Record of the transaction to be created, and retrieving that. The account can then automatically
// generate records for large transfers into it or out of it, which each last for 25 hours. Records are generated for
// any transfer that exceeds the thresholds given here. This account is charged hbar for each record generated, so the
// thresholds are useful for limiting Record generation to happen only for large transactions.
//
// The current API ignores shardID, realmID, and newRealmAdminKey, and creates everything in shard 0 and realm 0,
// with a null key. Future versions of the API will support multiple realms and multiple shards.
type AccountCreateTransaction struct {
Transaction
proxyAccountID *AccountID
key Key
initialBalance uint64
autoRenewPeriod *time.Duration
memo string
receiverSignatureRequired bool
maxAutomaticTokenAssociations uint32
stakedAccountID *AccountID
stakedNodeID *int64
declineReward bool
alias []byte
}
// NewAccountCreateTransaction creates an AccountCreateTransaction transaction which can be used to construct and
// execute a Crypto Create Transaction.
func NewAccountCreateTransaction() *AccountCreateTransaction {
transaction := AccountCreateTransaction{
Transaction: _NewTransaction(),
}
transaction.SetAutoRenewPeriod(7890000 * time.Second)
transaction._SetDefaultMaxTransactionFee(NewHbar(5))
return &transaction
}
func _AccountCreateTransactionFromProtobuf(transaction Transaction, pb *services.TransactionBody) *AccountCreateTransaction {
key, _ := _KeyFromProtobuf(pb.GetCryptoCreateAccount().GetKey())
renew := _DurationFromProtobuf(pb.GetCryptoCreateAccount().GetAutoRenewPeriod())
stakedNodeID := pb.GetCryptoCreateAccount().GetStakedNodeId()
var stakeNodeAccountID *AccountID
if pb.GetCryptoCreateAccount().GetStakedAccountId() != nil {
stakeNodeAccountID = _AccountIDFromProtobuf(pb.GetCryptoCreateAccount().GetStakedAccountId())
}
body := AccountCreateTransaction{
Transaction: transaction,
key: key,
initialBalance: pb.GetCryptoCreateAccount().InitialBalance,
autoRenewPeriod: &renew,
memo: pb.GetCryptoCreateAccount().GetMemo(),
receiverSignatureRequired: pb.GetCryptoCreateAccount().ReceiverSigRequired,
maxAutomaticTokenAssociations: uint32(pb.GetCryptoCreateAccount().MaxAutomaticTokenAssociations),
stakedAccountID: stakeNodeAccountID,
stakedNodeID: &stakedNodeID,
declineReward: pb.GetCryptoCreateAccount().GetDeclineReward(),
}
if pb.GetCryptoCreateAccount().GetAlias() != nil {
body.alias = pb.GetCryptoCreateAccount().GetAlias()
}
return &body
}
// When execution is attempted, a single attempt will timeout when this deadline is reached. (The SDK may subsequently retry the execution.)
func (transaction *AccountCreateTransaction) SetGrpcDeadline(deadline *time.Duration) *AccountCreateTransaction {
transaction.Transaction.SetGrpcDeadline(deadline)
return transaction
}
// SetKey sets the key that must sign each transfer out of the account. If RecieverSignatureRequired is true, then it
// must also sign any transfer into the account.
func (transaction *AccountCreateTransaction) SetKey(key Key) *AccountCreateTransaction {
transaction._RequireNotFrozen()
transaction.key = key
return transaction
}
// GetKey returns the key that must sign each transfer out of the account.
func (transaction *AccountCreateTransaction) GetKey() (Key, error) {
return transaction.key, nil
}
// SetInitialBalance sets the initial number of Hbar to put into the account
func (transaction *AccountCreateTransaction) SetInitialBalance(initialBalance Hbar) *AccountCreateTransaction {
transaction._RequireNotFrozen()
transaction.initialBalance = uint64(initialBalance.AsTinybar())
return transaction
}
// GetInitialBalance returns the initial number of Hbar to put into the account
func (transaction *AccountCreateTransaction) GetInitialBalance() Hbar {
return HbarFromTinybar(int64(transaction.initialBalance))
}
// SetMaxAutomaticTokenAssociations
// Set the maximum number of tokens that an Account can be implicitly associated with. Defaults to 0
// and up to a maximum value of 1000.
func (transaction *AccountCreateTransaction) SetMaxAutomaticTokenAssociations(max uint32) *AccountCreateTransaction {
transaction._RequireNotFrozen()
transaction.maxAutomaticTokenAssociations = max
return transaction
}
// GetMaxAutomaticTokenAssociations returns the maximum number of tokens that an Account can be implicitly associated with.
func (transaction *AccountCreateTransaction) GetMaxAutomaticTokenAssociations() uint32 {
return transaction.maxAutomaticTokenAssociations
}
// SetAutoRenewPeriod sets the time duration for when account is charged to extend its expiration date. When the account
// is created, the payer account is charged enough hbars so that the new account will not expire for the next
// auto renew period. When it reaches the expiration time, the new account will then be automatically charged to
// renew for another auto renew period. If it does not have enough hbars to renew for that long, then the remaining
// hbars are used to extend its expiration as long as possible. If it is has a zero balance when it expires,
// then it is deleted.
func (transaction *AccountCreateTransaction) SetAutoRenewPeriod(autoRenewPeriod time.Duration) *AccountCreateTransaction {
transaction._RequireNotFrozen()
transaction.autoRenewPeriod = &autoRenewPeriod
return transaction
}
// GetAutoRenewPeriod returns the time duration for when account is charged to extend its expiration date.
func (transaction *AccountCreateTransaction) GetAutoRenewPeriod() time.Duration {
if transaction.autoRenewPeriod != nil {
return *transaction.autoRenewPeriod
}
return time.Duration(0)
}
// Deprecated
// SetProxyAccountID sets the ID of the account to which this account is proxy staked. If proxyAccountID is not set,
// is an invalid account, or is an account that isn't a _Node, then this account is automatically proxy staked to a _Node
// chosen by the _Network, but without earning payments. If the proxyAccountID account refuses to accept proxy staking ,
// or if it is not currently running a _Node, then it will behave as if proxyAccountID was not set.
func (transaction *AccountCreateTransaction) SetProxyAccountID(id AccountID) *AccountCreateTransaction {
transaction._RequireNotFrozen()
transaction.proxyAccountID = &id
return transaction
}
// Deprecated
func (transaction *AccountCreateTransaction) GetProxyAccountID() AccountID {
if transaction.proxyAccountID == nil {
return AccountID{}
}
return *transaction.proxyAccountID
}
// SetAccountMemo Sets the memo associated with the account (UTF-8 encoding max 100 bytes)
func (transaction *AccountCreateTransaction) SetAccountMemo(memo string) *AccountCreateTransaction {
transaction._RequireNotFrozen()
transaction.memo = memo
return transaction
}
// GetAccountMemo Gets the memo associated with the account (UTF-8 encoding max 100 bytes)
func (transaction *AccountCreateTransaction) GetAccountMemo() string {
return transaction.memo
}
// SetStakedAccountID Set the account to which this account will stake.
func (transaction *AccountCreateTransaction) SetStakedAccountID(id AccountID) *AccountCreateTransaction {
transaction._RequireNotFrozen()
transaction.stakedAccountID = &id
return transaction
}
// GetStakedAccountID returns the account to which this account will stake.
func (transaction *AccountCreateTransaction) GetStakedAccountID() AccountID {
if transaction.stakedAccountID != nil {
return *transaction.stakedAccountID
}
return AccountID{}
}
// SetStakedNodeID Set the node to which this account will stake
func (transaction *AccountCreateTransaction) SetStakedNodeID(id int64) *AccountCreateTransaction {
transaction._RequireNotFrozen()
transaction.stakedNodeID = &id
return transaction
}
// GetStakedNodeID returns the node to which this account will stake
func (transaction *AccountCreateTransaction) GetStakedNodeID() int64 {
if transaction.stakedNodeID != nil {
return *transaction.stakedNodeID
}
return 0
}
// SetDeclineStakingReward If set to true, the account declines receiving a staking reward. The default value is false.
func (transaction *AccountCreateTransaction) SetDeclineStakingReward(decline bool) *AccountCreateTransaction {
transaction._RequireNotFrozen()
transaction.declineReward = decline
return transaction
}
// GetDeclineStakingReward returns true if the account declines receiving a staking reward.
func (transaction *AccountCreateTransaction) GetDeclineStakingReward() bool {
return transaction.declineReward
}
func (transaction *AccountCreateTransaction) SetAlias(evmAddress string) *AccountCreateTransaction {
transaction._RequireNotFrozen()
evmAddress = strings.TrimPrefix(evmAddress, "0x")
evmAddressBytes, _ := hex.DecodeString(evmAddress)
transaction.alias = evmAddressBytes
return transaction
}
func (transaction *AccountCreateTransaction) GetAlias() []byte {
return transaction.alias
}
func (transaction *AccountCreateTransaction) _ValidateNetworkOnIDs(client *Client) error {
if client == nil || !client.autoValidateChecksums {
return nil
}
if transaction.proxyAccountID != nil {
if transaction.proxyAccountID != nil {
if err := transaction.proxyAccountID.ValidateChecksum(client); err != nil {
return err
}
}
}
return nil
}
func (transaction *AccountCreateTransaction) _Build() *services.TransactionBody {
body := &services.CryptoCreateTransactionBody{
InitialBalance: transaction.initialBalance,
ReceiverSigRequired: transaction.receiverSignatureRequired,
Memo: transaction.memo,
MaxAutomaticTokenAssociations: int32(transaction.maxAutomaticTokenAssociations),
DeclineReward: transaction.declineReward,
Alias: transaction.alias,
}
if transaction.key != nil {
body.Key = transaction.key._ToProtoKey()
}
if transaction.autoRenewPeriod != nil {
body.AutoRenewPeriod = _DurationToProtobuf(*transaction.autoRenewPeriod)
}
if transaction.stakedAccountID != nil {
body.StakedId = &services.CryptoCreateTransactionBody_StakedAccountId{StakedAccountId: transaction.stakedAccountID._ToProtobuf()}
} else if transaction.stakedNodeID != nil {
body.StakedId = &services.CryptoCreateTransactionBody_StakedNodeId{StakedNodeId: *transaction.stakedNodeID}
}
return &services.TransactionBody{
TransactionID: transaction.transactionID._ToProtobuf(),
TransactionFee: transaction.transactionFee,
TransactionValidDuration: _DurationToProtobuf(transaction.GetTransactionValidDuration()),
Memo: transaction.Transaction.memo,
Data: &services.TransactionBody_CryptoCreateAccount{
CryptoCreateAccount: body,
},
}
}
// SetReceiverSignatureRequired sets the receiverSigRequired flag. If the receiverSigRequired flag is set to true, then
// all cryptocurrency transfers must be signed by this account's key, both for transfers in and out. If it is false,
// then only transfers out have to be signed by it. This transaction must be signed by the
// payer account. If receiverSigRequired is false, then the transaction does not have to be signed by the keys in the
// keys field. If it is true, then it must be signed by them, in addition to the keys of the payer account.
func (transaction *AccountCreateTransaction) SetReceiverSignatureRequired(required bool) *AccountCreateTransaction {
transaction.receiverSignatureRequired = required
return transaction
}
// GetReceiverSignatureRequired returns the receiverSigRequired flag.
func (transaction *AccountCreateTransaction) GetReceiverSignatureRequired() bool {
return transaction.receiverSignatureRequired
}
// Schedule a Create Account transaction
func (transaction *AccountCreateTransaction) Schedule() (*ScheduleCreateTransaction, error) {
transaction._RequireNotFrozen()
scheduled, err := transaction._ConstructScheduleProtobuf()
if err != nil {
return nil, err
}
return NewScheduleCreateTransaction()._SetSchedulableTransactionBody(scheduled), nil
}
func (transaction *AccountCreateTransaction) _ConstructScheduleProtobuf() (*services.SchedulableTransactionBody, error) {
body := &services.CryptoCreateTransactionBody{
InitialBalance: transaction.initialBalance,
ReceiverSigRequired: transaction.receiverSignatureRequired,
Memo: transaction.memo,
MaxAutomaticTokenAssociations: int32(transaction.maxAutomaticTokenAssociations),
DeclineReward: transaction.declineReward,
}
if transaction.key != nil {
body.Key = transaction.key._ToProtoKey()
}
if transaction.autoRenewPeriod != nil {
body.AutoRenewPeriod = _DurationToProtobuf(*transaction.autoRenewPeriod)
}
if transaction.stakedAccountID != nil {
body.StakedId = &services.CryptoCreateTransactionBody_StakedAccountId{StakedAccountId: transaction.stakedAccountID._ToProtobuf()}
} else if transaction.stakedNodeID != nil {
body.StakedId = &services.CryptoCreateTransactionBody_StakedNodeId{StakedNodeId: *transaction.stakedNodeID}
}
if transaction.alias != nil {
body.Alias = transaction.alias
}
return &services.SchedulableTransactionBody{
TransactionFee: transaction.transactionFee,
Memo: transaction.Transaction.memo,
Data: &services.SchedulableTransactionBody_CryptoCreateAccount{
CryptoCreateAccount: body,
},
}, nil
}
func _AccountCreateTransactionGetMethod(request interface{}, channel *_Channel) _Method {
return _Method{
transaction: channel._GetCrypto().CreateAccount,
}
}
func (transaction *AccountCreateTransaction) IsFrozen() bool {
return transaction._IsFrozen()
}
// Sign uses the provided privateKey to sign the transaction.
func (transaction *AccountCreateTransaction) Sign(
privateKey PrivateKey,
) *AccountCreateTransaction {
return transaction.SignWith(privateKey.PublicKey(), privateKey.Sign)
}
// SignWithOperator signs the transaction with client's operator privateKey.
func (transaction *AccountCreateTransaction) SignWithOperator(
client *Client,
) (*AccountCreateTransaction, error) {
// If the transaction is not signed by the _Operator, we need
// to sign the transaction with the _Operator
if client == nil {
return nil, errNoClientProvided
} else if client.operator == nil {
return nil, errClientOperatorSigning
}
if !transaction.IsFrozen() {
_, err := transaction.FreezeWith(client)
if err != nil {
return transaction, err
}
}
return transaction.SignWith(client.operator.publicKey, client.operator.signer), nil
}
// SignWith executes the TransactionSigner and adds the resulting signature data to the Transaction's signature map
// with the publicKey as the map key.
func (transaction *AccountCreateTransaction) SignWith(
publicKey PublicKey,
signer TransactionSigner,
) *AccountCreateTransaction {
if !transaction._KeyAlreadySigned(publicKey) {
transaction._SignWith(publicKey, signer)
}
return transaction
}
// Execute executes the Transaction with the provided client
func (transaction *AccountCreateTransaction) Execute(
client *Client,
) (TransactionResponse, error) {
if client == nil {
return TransactionResponse{}, errNoClientProvided
}
if transaction.freezeError != nil {
return TransactionResponse{}, transaction.freezeError
}
if !transaction.IsFrozen() {
_, err := transaction.FreezeWith(client)
if err != nil {
return TransactionResponse{}, err
}
}
transactionID := transaction.transactionIDs._GetCurrent().(TransactionID)
if !client.GetOperatorAccountID()._IsZero() && client.GetOperatorAccountID()._Equals(*transactionID.AccountID) {
transaction.SignWith(
client.GetOperatorPublicKey(),
client.operator.signer,
)
}
if transaction.grpcDeadline == nil {
transaction.grpcDeadline = client.requestTimeout
}
resp, err := _Execute(
client,
&transaction.Transaction,
_TransactionShouldRetry,
_TransactionMakeRequest,
_TransactionAdvanceRequest,
_TransactionGetNodeAccountID,
_AccountCreateTransactionGetMethod,
_TransactionMapStatusError,
_TransactionMapResponse,
transaction._GetLogID(),
transaction.grpcDeadline,
transaction.maxBackoff,
transaction.minBackoff,
transaction.maxRetry,
)
if err != nil {
return TransactionResponse{
TransactionID: transaction.GetTransactionID(),
NodeID: resp.(TransactionResponse).NodeID,
ValidateStatus: true,
}, err
}
return TransactionResponse{
TransactionID: transaction.GetTransactionID(),
NodeID: resp.(TransactionResponse).NodeID,
Hash: resp.(TransactionResponse).Hash,
ValidateStatus: true,
}, nil
}
func (transaction *AccountCreateTransaction) Freeze() (*AccountCreateTransaction, error) {
return transaction.FreezeWith(nil)
}
func (transaction *AccountCreateTransaction) FreezeWith(client *Client) (*AccountCreateTransaction, error) {
if transaction.IsFrozen() {
return transaction, nil
}
transaction._InitFee(client)
if err := transaction._InitTransactionID(client); err != nil {
return transaction, err
}
err := transaction._ValidateNetworkOnIDs(client)
body := transaction._Build()
if err != nil {
return &AccountCreateTransaction{}, err
}
return transaction, _TransactionFreezeWith(&transaction.Transaction, client, body)
}
// GetMaxTransactionFee returns the maximum transaction fee the operator (paying account) is willing to pay.
func (transaction *AccountCreateTransaction) GetMaxTransactionFee() Hbar {
return transaction.Transaction.GetMaxTransactionFee()
}
// SetMaxTransactionFee sets the maximum transaction fee the operator (paying account) is willing to pay.
func (transaction *AccountCreateTransaction) SetMaxTransactionFee(fee Hbar) *AccountCreateTransaction {
transaction._RequireNotFrozen()
transaction.Transaction.SetMaxTransactionFee(fee)
return transaction
}
// SetRegenerateTransactionID sets if transaction IDs should be regenerated when `TRANSACTION_EXPIRED` is received
func (transaction *AccountCreateTransaction) SetRegenerateTransactionID(regenerateTransactionID bool) *AccountCreateTransaction {
transaction._RequireNotFrozen()
transaction.Transaction.SetRegenerateTransactionID(regenerateTransactionID)
return transaction
}
// GetRegenerateTransactionID returns true if transaction ID regeneration is enabled.
func (transaction *AccountCreateTransaction) GetRegenerateTransactionID() bool {
return transaction.Transaction.GetRegenerateTransactionID()
}
// GetTransactionMemo returns the memo for this AccountCreateTransaction.
func (transaction *AccountCreateTransaction) GetTransactionMemo() string {
return transaction.Transaction.GetTransactionMemo()
}
// SetTransactionMemo sets the memo for this AccountCreateTransaction.
func (transaction *AccountCreateTransaction) SetTransactionMemo(memo string) *AccountCreateTransaction {
transaction._RequireNotFrozen()
transaction.Transaction.SetTransactionMemo(memo)
return transaction
}
// GetTransactionValidDuration returns the duration that this transaction is valid for.
func (transaction *AccountCreateTransaction) GetTransactionValidDuration() time.Duration {
return transaction.Transaction.GetTransactionValidDuration()
}
// SetTransactionValidDuration sets the valid duration for this AccountCreateTransaction.
func (transaction *AccountCreateTransaction) SetTransactionValidDuration(duration time.Duration) *AccountCreateTransaction {
transaction._RequireNotFrozen()
transaction.Transaction.SetTransactionValidDuration(duration)
return transaction
}
// GetTransactionID returns the TransactionID for this AccountCreateTransaction.
func (transaction *AccountCreateTransaction) GetTransactionID() TransactionID {
return transaction.Transaction.GetTransactionID()
}
// SetTransactionID sets the TransactionID for this AccountCreateTransaction.
func (transaction *AccountCreateTransaction) SetTransactionID(transactionID TransactionID) *AccountCreateTransaction {
transaction._RequireNotFrozen()
transaction.Transaction.SetTransactionID(transactionID)
return transaction
}
// SetNodeAccountIDs sets the _Node AccountID for this AccountCreateTransaction.
func (transaction *AccountCreateTransaction) SetNodeAccountIDs(nodeID []AccountID) *AccountCreateTransaction {
transaction._RequireNotFrozen()
transaction.Transaction.SetNodeAccountIDs(nodeID)
return transaction
}
// SetMaxRetry sets the max number of errors before execution will fail.
func (transaction *AccountCreateTransaction) SetMaxRetry(count int) *AccountCreateTransaction {
transaction.Transaction.SetMaxRetry(count)
return transaction
}
// AddSignature adds a signature to the Transaction.
func (transaction *AccountCreateTransaction) AddSignature(publicKey PublicKey, signature []byte) *AccountCreateTransaction {
transaction._RequireOneNodeAccountID()
if transaction._KeyAlreadySigned(publicKey) {
return transaction
}
if transaction.signedTransactions._Length() == 0 {
return transaction
}
transaction.transactions = _NewLockableSlice()
transaction.publicKeys = append(transaction.publicKeys, publicKey)
transaction.transactionSigners = append(transaction.transactionSigners, nil)
transaction.transactionIDs.locked = true
for index := 0; index < transaction.signedTransactions._Length(); index++ {
var temp *services.SignedTransaction
switch t := transaction.signedTransactions._Get(index).(type) { //nolint
case *services.SignedTransaction:
temp = t
}
temp.SigMap.SigPair = append(
temp.SigMap.SigPair,
publicKey._ToSignaturePairProtobuf(signature),
)
transaction.signedTransactions._Set(index, temp)
}
return transaction
}
// SetMaxBackoff The maximum amount of time to wait between retries.
// Every retry attempt will increase the wait time exponentially until it reaches this time.
func (transaction *AccountCreateTransaction) SetMaxBackoff(max time.Duration) *AccountCreateTransaction {
if max.Nanoseconds() < 0 {
panic("maxBackoff must be a positive duration")
} else if max.Nanoseconds() < transaction.minBackoff.Nanoseconds() {
panic("maxBackoff must be greater than or equal to minBackoff")
}
transaction.maxBackoff = &max
return transaction
}
// GetMaxBackoff returns the maximum amount of time to wait between retries.
func (transaction *AccountCreateTransaction) GetMaxBackoff() time.Duration {
if transaction.maxBackoff != nil {
return *transaction.maxBackoff
}
return 8 * time.Second
}
// SetMinBackoff sets the minimum amount of time to wait between retries.
func (transaction *AccountCreateTransaction) SetMinBackoff(min time.Duration) *AccountCreateTransaction {
if min.Nanoseconds() < 0 {
panic("minBackoff must be a positive duration")
} else if transaction.maxBackoff.Nanoseconds() < min.Nanoseconds() {
panic("minBackoff must be less than or equal to maxBackoff")
}
transaction.minBackoff = &min
return transaction
}
// GetMinBackoff returns the minimum amount of time to wait between retries.
func (transaction *AccountCreateTransaction) GetMinBackoff() time.Duration {
if transaction.minBackoff != nil {
return *transaction.minBackoff
}
return 250 * time.Millisecond
}
func (transaction *AccountCreateTransaction) _GetLogID() string {
timestamp := transaction.transactionIDs._GetCurrent().(TransactionID).ValidStart
return fmt.Sprintf("AccountCreateTransaction:%d", timestamp.UnixNano())
}