-
Notifications
You must be signed in to change notification settings - Fork 66
/
account_update_transaction.go
384 lines (317 loc) · 12.2 KB
/
account_update_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
package hedera
/*-
*
* Hedera Go SDK
*
* Copyright (C) 2020 - 2024 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 (
"time"
"google.golang.org/protobuf/types/known/wrapperspb"
"github.com/hashgraph/hedera-sdk-go/v2/proto/services"
)
// AccountUpdateTransaction
// Change properties for the given account. Any null field is ignored (left unchanged). This
// transaction must be signed by the existing key for this account. If the transaction is changing
// the key field, then the transaction must be signed by both the old key (from before the change)
// and the new key. The old key must sign for security. The new key must sign as a safeguard to
// avoid accidentally changing to an invalid key, and then having no way to recover.
type AccountUpdateTransaction struct {
*Transaction[*AccountUpdateTransaction]
accountID *AccountID
proxyAccountID *AccountID
key Key
autoRenewPeriod *time.Duration
memo string
receiverSignatureRequired bool
expirationTime *time.Time
maxAutomaticTokenAssociations int32
aliasKey *PublicKey
stakedAccountID *AccountID
stakedNodeID *int64
declineReward bool
}
// NewAccountUpdateTransaction
// Creates AccoutnUppdateTransaction which changes properties for the given account.
// Any null field is ignored (left unchanged).
// This transaction must be signed by the existing key for this account. If the transaction is changing
// the key field, then the transaction must be signed by both the old key (from before the change)
// and the new key. The old key must sign for security. The new key must sign as a safeguard to
// avoid accidentally changing to an invalid key, and then having no way to recover.
func NewAccountUpdateTransaction() *AccountUpdateTransaction {
tx := &AccountUpdateTransaction{}
tx.Transaction = _NewTransaction(tx)
tx.SetAutoRenewPeriod(7890000 * time.Second)
tx._SetDefaultMaxTransactionFee(NewHbar(2))
return tx
}
func _AccountUpdateTransactionFromProtobuf(tx Transaction[*AccountUpdateTransaction], pb *services.TransactionBody) AccountUpdateTransaction {
key, _ := _KeyFromProtobuf(pb.GetCryptoUpdateAccount().GetKey())
var receiverSignatureRequired bool
switch s := pb.GetCryptoUpdateAccount().GetReceiverSigRequiredField().(type) {
case *services.CryptoUpdateTransactionBody_ReceiverSigRequired:
receiverSignatureRequired = s.ReceiverSigRequired // nolint
case *services.CryptoUpdateTransactionBody_ReceiverSigRequiredWrapper:
receiverSignatureRequired = s.ReceiverSigRequiredWrapper.Value // nolint
}
autoRenew := _DurationFromProtobuf(pb.GetCryptoUpdateAccount().AutoRenewPeriod)
expiration := _TimeFromProtobuf(pb.GetCryptoUpdateAccount().ExpirationTime)
stakedNodeID := pb.GetCryptoUpdateAccount().GetStakedNodeId()
var stakeNodeAccountID *AccountID
if pb.GetCryptoUpdateAccount().GetStakedAccountId() != nil {
stakeNodeAccountID = _AccountIDFromProtobuf(pb.GetCryptoUpdateAccount().GetStakedAccountId())
}
accountUpdateTransaction := AccountUpdateTransaction{
accountID: _AccountIDFromProtobuf(pb.GetCryptoUpdateAccount().GetAccountIDToUpdate()),
key: key,
autoRenewPeriod: &autoRenew,
memo: pb.GetCryptoUpdateAccount().GetMemo().Value,
receiverSignatureRequired: receiverSignatureRequired,
expirationTime: &expiration,
maxAutomaticTokenAssociations: pb.GetCryptoUpdateAccount().MaxAutomaticTokenAssociations.GetValue(),
stakedAccountID: stakeNodeAccountID,
stakedNodeID: &stakedNodeID,
declineReward: pb.GetCryptoUpdateAccount().GetDeclineReward().GetValue(),
}
tx.childTransaction = &accountUpdateTransaction
accountUpdateTransaction.Transaction = &tx
return accountUpdateTransaction
}
// SetKey Sets the new key for the Account
func (tx *AccountUpdateTransaction) SetKey(key Key) *AccountUpdateTransaction {
tx._RequireNotFrozen()
tx.key = key
return tx
}
func (tx *AccountUpdateTransaction) GetKey() (Key, error) {
return tx.key, nil
}
// SetAccountID Sets the account ID which is being updated in tx transaction.
func (tx *AccountUpdateTransaction) SetAccountID(accountID AccountID) *AccountUpdateTransaction {
tx._RequireNotFrozen()
tx.accountID = &accountID
return tx
}
func (tx *AccountUpdateTransaction) GetAccountID() AccountID {
if tx.accountID == nil {
return AccountID{}
}
return *tx.accountID
}
// Deprecated
func (tx *AccountUpdateTransaction) SetAliasKey(alias PublicKey) *AccountUpdateTransaction {
tx._RequireNotFrozen()
tx.aliasKey = &alias
return tx
}
// Deprecated
func (tx *AccountUpdateTransaction) GetAliasKey() PublicKey {
if tx.aliasKey == nil {
return PublicKey{}
}
return *tx.aliasKey
}
func (tx *AccountUpdateTransaction) SetStakedAccountID(id AccountID) *AccountUpdateTransaction {
tx._RequireNotFrozen()
tx.stakedAccountID = &id
return tx
}
func (tx *AccountUpdateTransaction) GetStakedAccountID() AccountID {
if tx.stakedAccountID != nil {
return *tx.stakedAccountID
}
return AccountID{}
}
func (tx *AccountUpdateTransaction) SetStakedNodeID(id int64) *AccountUpdateTransaction {
tx._RequireNotFrozen()
tx.stakedNodeID = &id
return tx
}
func (tx *AccountUpdateTransaction) GetStakedNodeID() int64 {
if tx.stakedNodeID != nil {
return *tx.stakedNodeID
}
return 0
}
func (tx *AccountUpdateTransaction) SetDeclineStakingReward(decline bool) *AccountUpdateTransaction {
tx._RequireNotFrozen()
tx.declineReward = decline
return tx
}
func (tx *AccountUpdateTransaction) ClearStakedAccountID() *AccountUpdateTransaction {
tx._RequireNotFrozen()
tx.stakedAccountID = &AccountID{Account: 0}
return tx
}
func (tx *AccountUpdateTransaction) ClearStakedNodeID() *AccountUpdateTransaction {
tx._RequireNotFrozen()
*tx.stakedNodeID = -1
return tx
}
func (tx *AccountUpdateTransaction) GetDeclineStakingReward() bool {
return tx.declineReward
}
// SetMaxAutomaticTokenAssociations
// Sets the maximum number of tokens that an Account can be implicitly associated with. Up to a 1000
// including implicit and explicit associations.
func (tx *AccountUpdateTransaction) SetMaxAutomaticTokenAssociations(max int32) *AccountUpdateTransaction {
tx._RequireNotFrozen()
tx.maxAutomaticTokenAssociations = max
return tx
}
func (tx *AccountUpdateTransaction) GetMaxAutomaticTokenAssociations() int32 {
return tx.maxAutomaticTokenAssociations
}
// SetReceiverSignatureRequired
// If true, this account's key must sign any transaction depositing into this account (in
// addition to all withdrawals)
func (tx *AccountUpdateTransaction) SetReceiverSignatureRequired(receiverSignatureRequired bool) *AccountUpdateTransaction {
tx._RequireNotFrozen()
tx.receiverSignatureRequired = receiverSignatureRequired
return tx
}
func (tx *AccountUpdateTransaction) GetReceiverSignatureRequired() bool {
return tx.receiverSignatureRequired
}
// Deprecated
// SetProxyAccountID Sets the ID of the account to which this account is proxy staked.
func (tx *AccountUpdateTransaction) SetProxyAccountID(proxyAccountID AccountID) *AccountUpdateTransaction {
tx._RequireNotFrozen()
tx.proxyAccountID = &proxyAccountID
return tx
}
// Deprecated
func (tx *AccountUpdateTransaction) GetProxyAccountID() AccountID {
if tx.proxyAccountID == nil {
return AccountID{}
}
return *tx.proxyAccountID
}
// SetAutoRenewPeriod Sets the duration in which it will automatically extend the expiration period.
func (tx *AccountUpdateTransaction) SetAutoRenewPeriod(autoRenewPeriod time.Duration) *AccountUpdateTransaction {
tx._RequireNotFrozen()
tx.autoRenewPeriod = &autoRenewPeriod
return tx
}
func (tx *AccountUpdateTransaction) GetAutoRenewPeriod() time.Duration {
if tx.autoRenewPeriod != nil {
return *tx.autoRenewPeriod
}
return time.Duration(0)
}
// SetExpirationTime sets the new expiration time to extend to (ignored if equal to or before the current one)
func (tx *AccountUpdateTransaction) SetExpirationTime(expirationTime time.Time) *AccountUpdateTransaction {
tx._RequireNotFrozen()
tx.expirationTime = &expirationTime
return tx
}
func (tx *AccountUpdateTransaction) GetExpirationTime() time.Time {
if tx.expirationTime != nil {
return *tx.expirationTime
}
return time.Time{}
}
// SetAccountMemo sets the new memo to be associated with the account (UTF-8 encoding max 100 bytes)
func (tx *AccountUpdateTransaction) SetAccountMemo(memo string) *AccountUpdateTransaction {
tx._RequireNotFrozen()
tx.memo = memo
return tx
}
func (tx *AccountUpdateTransaction) GetAccountMemo() string {
return tx.memo
}
// ----------- Overridden functions ----------------
func (tx AccountUpdateTransaction) getName() string {
return "AccountUpdateTransaction"
}
func (tx AccountUpdateTransaction) validateNetworkOnIDs(client *Client) error {
if client == nil || !client.autoValidateChecksums {
return nil
}
if tx.accountID != nil {
if err := tx.accountID.ValidateChecksum(client); err != nil {
return err
}
}
if tx.proxyAccountID != nil {
if err := tx.proxyAccountID.ValidateChecksum(client); err != nil {
return err
}
}
return nil
}
func (tx AccountUpdateTransaction) build() *services.TransactionBody {
body := tx.buildProtoBody()
pb := services.TransactionBody{
TransactionFee: tx.transactionFee,
Memo: tx.Transaction.memo,
TransactionValidDuration: _DurationToProtobuf(tx.GetTransactionValidDuration()),
TransactionID: tx.transactionID._ToProtobuf(),
Data: &services.TransactionBody_CryptoUpdateAccount{
CryptoUpdateAccount: body,
},
}
body.MaxAutomaticTokenAssociations = &wrapperspb.Int32Value{Value: tx.maxAutomaticTokenAssociations}
return &pb
}
func (tx AccountUpdateTransaction) buildScheduled() (*services.SchedulableTransactionBody, error) {
return &services.SchedulableTransactionBody{
TransactionFee: tx.transactionFee,
Memo: tx.Transaction.memo,
Data: &services.SchedulableTransactionBody_CryptoUpdateAccount{
CryptoUpdateAccount: tx.buildProtoBody(),
},
}, nil
}
func (tx AccountUpdateTransaction) buildProtoBody() *services.CryptoUpdateTransactionBody {
body := &services.CryptoUpdateTransactionBody{
ReceiverSigRequiredField: &services.CryptoUpdateTransactionBody_ReceiverSigRequiredWrapper{
ReceiverSigRequiredWrapper: &wrapperspb.BoolValue{Value: tx.receiverSignatureRequired},
},
Memo: &wrapperspb.StringValue{Value: tx.memo},
DeclineReward: &wrapperspb.BoolValue{Value: tx.declineReward},
MaxAutomaticTokenAssociations: &wrapperspb.Int32Value{Value: tx.maxAutomaticTokenAssociations},
}
if tx.autoRenewPeriod != nil {
body.AutoRenewPeriod = _DurationToProtobuf(*tx.autoRenewPeriod)
}
if tx.expirationTime != nil {
body.ExpirationTime = _TimeToProtobuf(*tx.expirationTime)
}
if tx.accountID != nil {
body.AccountIDToUpdate = tx.accountID._ToProtobuf()
}
if tx.key != nil {
body.Key = tx.key._ToProtoKey()
}
if tx.stakedAccountID != nil {
body.StakedId = &services.CryptoUpdateTransactionBody_StakedAccountId{StakedAccountId: tx.stakedAccountID._ToProtobuf()}
} else if tx.stakedNodeID != nil {
body.StakedId = &services.CryptoUpdateTransactionBody_StakedNodeId{StakedNodeId: *tx.stakedNodeID}
}
return body
}
func (tx AccountUpdateTransaction) getMethod(channel *_Channel) _Method {
return _Method{
transaction: channel._GetCrypto().UpdateAccount,
}
}
func (tx AccountUpdateTransaction) constructScheduleProtobuf() (*services.SchedulableTransactionBody, error) {
return tx.buildScheduled()
}
func (tx AccountUpdateTransaction) getBaseTransaction() *Transaction[TransactionInterface] {
return castFromConcreteToBaseTransaction(tx.Transaction, &tx)
}