forked from hiero-ledger/hiero-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontract_update_transaction.go
566 lines (475 loc) · 19.7 KB
/
contract_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
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
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-protobufs-go/services"
)
// ContractUpdateTransaction is used to modify a smart contract instance to have the given parameter values. Any nil
// field is ignored (left unchanged). If only the contractInstanceExpirationTime is being modified, then no signature is
// needed on this transaction other than for the account paying for the transaction itself. But if any of the other
// fields are being modified, then it must be signed by the adminKey. The use of adminKey is not currently supported in
// this API, but in the future will be implemented to allow these fields to be modified, and also to make modifications
// to the state of the instance. If the contract is created with no admin key, then none of the fields can be changed
// that need an admin signature, and therefore no admin key can ever be added. So if there is no admin key, then things
// like the bytecode are immutable. But if there is an admin key, then they can be changed.
//
// For example, the admin key might be a threshold key, which requires 3 of 5 binding arbitration judges to agree before
// the bytecode can be changed. This can be used to add flexibility to the management of smart contract behavior. But
// this is optional. If the smart contract is created without an admin key, then such a key can never be added, and its
// bytecode will be immutable.
type ContractUpdateTransaction struct {
Transaction
contractID *ContractID
proxyAccountID *AccountID
bytecodeFileID *FileID
adminKey Key
autoRenewPeriod *time.Duration
expirationTime *time.Time
memo string
autoRenewAccountID *AccountID
maxAutomaticTokenAssociations int32
stakedAccountID *AccountID
stakedNodeID *int64
declineReward bool
}
// NewContractUpdateTransaction creates a ContractUpdateTransaction transaction which can be
// used to construct and execute a Contract Update Transaction.
// ContractUpdateTransaction is used to modify a smart contract instance to have the given parameter values. Any nil
// field is ignored (left unchanged). If only the contractInstanceExpirationTime is being modified, then no signature is
// needed on this transaction other than for the account paying for the transaction itself. But if any of the other
// fields are being modified, then it must be signed by the adminKey. The use of adminKey is not currently supported in
// this API, but in the future will be implemented to allow these fields to be modified, and also to make modifications
// to the state of the instance. If the contract is created with no admin key, then none of the fields can be changed
// that need an admin signature, and therefore no admin key can ever be added. So if there is no admin key, then things
// like the bytecode are immutable. But if there is an admin key, then they can be changed.
//
// For example, the admin key might be a threshold key, which requires 3 of 5 binding arbitration judges to agree before
// the bytecode can be changed. This can be used to add flexibility to the management of smart contract behavior. But
// this is optional. If the smart contract is created without an admin key, then such a key can never be added, and its
// bytecode will be immutable.
func NewContractUpdateTransaction() *ContractUpdateTransaction {
tx := ContractUpdateTransaction{
Transaction: _NewTransaction(),
}
tx._SetDefaultMaxTransactionFee(NewHbar(2))
return &tx
}
func _ContractUpdateTransactionFromProtobuf(tx Transaction, pb *services.TransactionBody) *ContractUpdateTransaction {
key, _ := _KeyFromProtobuf(pb.GetContractUpdateInstance().AdminKey)
autoRenew := _DurationFromProtobuf(pb.GetContractUpdateInstance().GetAutoRenewPeriod())
expiration := _TimeFromProtobuf(pb.GetContractUpdateInstance().GetExpirationTime())
var memo string
switch m := pb.GetContractUpdateInstance().GetMemoField().(type) {
case *services.ContractUpdateTransactionBody_Memo:
memo = m.Memo // nolint
case *services.ContractUpdateTransactionBody_MemoWrapper:
memo = m.MemoWrapper.Value
}
stakedNodeID := pb.GetContractUpdateInstance().GetStakedNodeId()
var stakeNodeAccountID *AccountID
if pb.GetContractUpdateInstance().GetStakedAccountId() != nil {
stakeNodeAccountID = _AccountIDFromProtobuf(pb.GetContractUpdateInstance().GetStakedAccountId())
}
var autoRenewAccountID *AccountID
if pb.GetContractUpdateInstance().AutoRenewAccountId != nil {
autoRenewAccountID = _AccountIDFromProtobuf(pb.GetContractUpdateInstance().GetAutoRenewAccountId())
}
return &ContractUpdateTransaction{
Transaction: tx,
contractID: _ContractIDFromProtobuf(pb.GetContractUpdateInstance().GetContractID()),
adminKey: key,
autoRenewPeriod: &autoRenew,
expirationTime: &expiration,
memo: memo,
autoRenewAccountID: autoRenewAccountID,
maxAutomaticTokenAssociations: pb.GetContractUpdateInstance().MaxAutomaticTokenAssociations.GetValue(),
stakedAccountID: stakeNodeAccountID,
stakedNodeID: &stakedNodeID,
declineReward: pb.GetContractUpdateInstance().GetDeclineReward().GetValue(),
}
}
// SetContractID sets The Contract ID instance to update (this can't be changed on the contract)
func (tx *ContractUpdateTransaction) SetContractID(contractID ContractID) *ContractUpdateTransaction {
tx.contractID = &contractID
return tx
}
func (tx *ContractUpdateTransaction) GetContractID() ContractID {
if tx.contractID == nil {
return ContractID{}
}
return *tx.contractID
}
// Deprecated
func (tx *ContractUpdateTransaction) SetBytecodeFileID(bytecodeFileID FileID) *ContractUpdateTransaction {
tx._RequireNotFrozen()
tx.bytecodeFileID = &bytecodeFileID
return tx
}
// Deprecated
func (tx *ContractUpdateTransaction) GetBytecodeFileID() FileID {
if tx.bytecodeFileID == nil {
return FileID{}
}
return *tx.bytecodeFileID
}
// SetAdminKey sets the key which can be used to arbitrarily modify the state of the instance by signing a
// ContractUpdateTransaction to modify it. If the admin key was never set then such modifications are not possible,
// and there is no administrator that can overrIDe the normal operation of the smart contract instance.
func (tx *ContractUpdateTransaction) SetAdminKey(publicKey PublicKey) *ContractUpdateTransaction {
tx._RequireNotFrozen()
tx.adminKey = publicKey
return tx
}
func (tx *ContractUpdateTransaction) GetAdminKey() (Key, error) {
return tx.adminKey, nil
}
// Deprecated
// SetProxyAccountID sets the ID of the account to which this contract is proxy staked. If proxyAccountID is left unset,
// is an invalID account, or is an account that isn't a _Node, then this contract 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 never set.
func (tx *ContractUpdateTransaction) SetProxyAccountID(proxyAccountID AccountID) *ContractUpdateTransaction {
tx._RequireNotFrozen()
tx.proxyAccountID = &proxyAccountID
return tx
}
// Deprecated
func (tx *ContractUpdateTransaction) GetProxyAccountID() AccountID {
if tx.proxyAccountID == nil {
return AccountID{}
}
return *tx.proxyAccountID
}
// SetAutoRenewPeriod sets the duration for which the contract instance will automatically charge its account to
// renew for.
func (tx *ContractUpdateTransaction) SetAutoRenewPeriod(autoRenewPeriod time.Duration) *ContractUpdateTransaction {
tx._RequireNotFrozen()
tx.autoRenewPeriod = &autoRenewPeriod
return tx
}
func (tx *ContractUpdateTransaction) GetAutoRenewPeriod() time.Duration {
if tx.autoRenewPeriod != nil {
return *tx.autoRenewPeriod
}
return time.Duration(0)
}
// SetExpirationTime extends the expiration of the instance and its account to the provIDed time. If the time provIDed
// is the current or past time, then there will be no effect.
func (tx *ContractUpdateTransaction) SetExpirationTime(expiration time.Time) *ContractUpdateTransaction {
tx._RequireNotFrozen()
tx.expirationTime = &expiration
return tx
}
func (tx *ContractUpdateTransaction) GetExpirationTime() time.Time {
if tx.expirationTime != nil {
return *tx.expirationTime
}
return time.Time{}
}
// SetContractMemo sets the memo associated with the contract (max 100 bytes)
func (tx *ContractUpdateTransaction) SetContractMemo(memo string) *ContractUpdateTransaction {
tx._RequireNotFrozen()
tx.memo = memo
// if transaction.pb.GetMemoWrapper() != nil {
// transaction.pb.GetMemoWrapper().Value = memo
// } else {
// transaction.pb.MemoField = &services.ContractUpdateTransactionBody_MemoWrapper{
// MemoWrapper: &wrapperspb.StringValue{Value: memo},
// }
// }
return tx
}
// SetAutoRenewAccountID
// An account to charge for auto-renewal of this contract. If not set, or set to an
// account with zero hbar balance, the contract's own hbar balance will be used to
// cover auto-renewal fees.
func (tx *ContractUpdateTransaction) SetAutoRenewAccountID(id AccountID) *ContractUpdateTransaction {
tx._RequireNotFrozen()
tx.autoRenewAccountID = &id
return tx
}
func (tx *ContractUpdateTransaction) GetAutoRenewAccountID() AccountID {
if tx.autoRenewAccountID == nil {
return AccountID{}
}
return *tx.autoRenewAccountID
}
// SetMaxAutomaticTokenAssociations
// The maximum number of tokens that this contract can be automatically associated
// with (i.e., receive air-drops from).
func (tx *ContractUpdateTransaction) SetMaxAutomaticTokenAssociations(max int32) *ContractUpdateTransaction {
tx._RequireNotFrozen()
tx.maxAutomaticTokenAssociations = max
return tx
}
func (tx *ContractUpdateTransaction) GetMaxAutomaticTokenAssociations() int32 {
return tx.maxAutomaticTokenAssociations
}
func (tx *ContractUpdateTransaction) GetContractMemo() string {
return tx.memo
}
func (tx *ContractUpdateTransaction) SetStakedAccountID(id AccountID) *ContractUpdateTransaction {
tx._RequireNotFrozen()
tx.stakedAccountID = &id
return tx
}
func (tx *ContractUpdateTransaction) GetStakedAccountID() AccountID {
if tx.stakedAccountID != nil {
return *tx.stakedAccountID
}
return AccountID{}
}
func (tx *ContractUpdateTransaction) SetStakedNodeID(id int64) *ContractUpdateTransaction {
tx._RequireNotFrozen()
tx.stakedNodeID = &id
return tx
}
func (tx *ContractUpdateTransaction) GetStakedNodeID() int64 {
if tx.stakedNodeID != nil {
return *tx.stakedNodeID
}
return 0
}
func (tx *ContractUpdateTransaction) SetDeclineStakingReward(decline bool) *ContractUpdateTransaction {
tx._RequireNotFrozen()
tx.declineReward = decline
return tx
}
func (tx *ContractUpdateTransaction) GetDeclineStakingReward() bool {
return tx.declineReward
}
func (tx *ContractUpdateTransaction) ClearStakedAccountID() *ContractUpdateTransaction {
tx._RequireNotFrozen()
tx.stakedAccountID = &AccountID{Account: 0}
return tx
}
func (tx *ContractUpdateTransaction) ClearStakedNodeID() *ContractUpdateTransaction {
tx._RequireNotFrozen()
*tx.stakedNodeID = -1
return tx
}
// ---- Required Interfaces ---- //
// Sign uses the provided privateKey to sign the transaction.
func (tx *ContractUpdateTransaction) Sign(
privateKey PrivateKey,
) *ContractUpdateTransaction {
tx.Transaction.Sign(privateKey)
return tx
}
// SignWithOperator signs the transaction with client's operator privateKey.
func (tx *ContractUpdateTransaction) SignWithOperator(
client *Client,
) (*ContractUpdateTransaction, error) {
// If the transaction is not signed by the _Operator, we need
// to sign the transaction with the _Operator
_, err := tx.Transaction.signWithOperator(client, tx)
if err != nil {
return nil, err
}
return tx, 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 (tx *ContractUpdateTransaction) SignWith(
publicKey PublicKey,
signer TransactionSigner,
) *ContractUpdateTransaction {
tx.Transaction.SignWith(publicKey, signer)
return tx
}
// AddSignature adds a signature to the transaction.
func (tx *ContractUpdateTransaction) AddSignature(publicKey PublicKey, signature []byte) *ContractUpdateTransaction {
tx.Transaction.AddSignature(publicKey, signature)
return tx
}
// When execution is attempted, a single attempt will timeout when tx deadline is reached. (The SDK may subsequently retry the execution.)
func (tx *ContractUpdateTransaction) SetGrpcDeadline(deadline *time.Duration) *ContractUpdateTransaction {
tx.Transaction.SetGrpcDeadline(deadline)
return tx
}
func (tx *ContractUpdateTransaction) Freeze() (*ContractUpdateTransaction, error) {
return tx.FreezeWith(nil)
}
func (tx *ContractUpdateTransaction) FreezeWith(client *Client) (*ContractUpdateTransaction, error) {
_, err := tx.Transaction.freezeWith(client, tx)
return tx, err
}
// SetMaxTransactionFee sets the maximum transaction fee the operator (paying account) is willing to pay.
func (tx *ContractUpdateTransaction) SetMaxTransactionFee(fee Hbar) *ContractUpdateTransaction {
tx._RequireNotFrozen()
tx.Transaction.SetMaxTransactionFee(fee)
return tx
}
// SetRegenerateTransactionID sets if transaction IDs should be regenerated when `TRANSACTION_EXPIRED` is received
func (tx *ContractUpdateTransaction) SetRegenerateTransactionID(regenerateTransactionID bool) *ContractUpdateTransaction {
tx._RequireNotFrozen()
tx.Transaction.SetRegenerateTransactionID(regenerateTransactionID)
return tx
}
// SetTransactionMemo sets the memo for this ContractUpdateTransaction.
func (tx *ContractUpdateTransaction) SetTransactionMemo(memo string) *ContractUpdateTransaction {
tx._RequireNotFrozen()
tx.Transaction.SetTransactionMemo(memo)
return tx
}
// SetTransactionValidDuration sets the valid duration for this ContractUpdateTransaction.
func (tx *ContractUpdateTransaction) SetTransactionValidDuration(duration time.Duration) *ContractUpdateTransaction {
tx._RequireNotFrozen()
tx.Transaction.SetTransactionValidDuration(duration)
return tx
}
// ToBytes serialise the tx to bytes, no matter if it is signed (locked), or not
func (tx *ContractUpdateTransaction) ToBytes() ([]byte, error) {
bytes, err := tx.Transaction.toBytes(tx)
if err != nil {
return nil, err
}
return bytes, nil
}
// SetTransactionID sets the TransactionID for this ContractUpdateTransaction.
func (tx *ContractUpdateTransaction) SetTransactionID(transactionID TransactionID) *ContractUpdateTransaction {
tx._RequireNotFrozen()
tx.Transaction.SetTransactionID(transactionID)
return tx
}
// SetNodeAccountID sets the _Node AccountID for this ContractUpdateTransaction.
func (tx *ContractUpdateTransaction) SetNodeAccountIDs(nodeID []AccountID) *ContractUpdateTransaction {
tx._RequireNotFrozen()
tx.Transaction.SetNodeAccountIDs(nodeID)
return tx
}
// SetMaxRetry sets the max number of errors before execution will fail.
func (tx *ContractUpdateTransaction) SetMaxRetry(count int) *ContractUpdateTransaction {
tx.Transaction.SetMaxRetry(count)
return tx
}
// 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 (tx *ContractUpdateTransaction) SetMaxBackoff(max time.Duration) *ContractUpdateTransaction {
tx.Transaction.SetMaxBackoff(max)
return tx
}
// SetMinBackoff sets the minimum amount of time to wait between retries.
func (tx *ContractUpdateTransaction) SetMinBackoff(min time.Duration) *ContractUpdateTransaction {
tx.Transaction.SetMinBackoff(min)
return tx
}
func (tx *ContractUpdateTransaction) SetLogLevel(level LogLevel) *ContractUpdateTransaction {
tx.Transaction.SetLogLevel(level)
return tx
}
func (tx *ContractUpdateTransaction) Execute(client *Client) (TransactionResponse, error) {
return tx.Transaction.execute(client, tx)
}
func (tx *ContractUpdateTransaction) Schedule() (*ScheduleCreateTransaction, error) {
return tx.Transaction.schedule(tx)
}
// ----------- Overridden functions ----------------
func (tx *ContractUpdateTransaction) getName() string {
return "ContractUpdateTransaction"
}
func (tx *ContractUpdateTransaction) validateNetworkOnIDs(client *Client) error {
if client == nil || !client.autoValidateChecksums {
return nil
}
if tx.contractID != nil {
if err := tx.contractID.ValidateChecksum(client); err != nil {
return err
}
}
if tx.proxyAccountID != nil {
if err := tx.proxyAccountID.ValidateChecksum(client); err != nil {
return err
}
}
return nil
}
func (tx *ContractUpdateTransaction) build() *services.TransactionBody {
return &services.TransactionBody{
TransactionFee: tx.transactionFee,
Memo: tx.Transaction.memo,
TransactionValidDuration: _DurationToProtobuf(tx.GetTransactionValidDuration()),
TransactionID: tx.transactionID._ToProtobuf(),
Data: &services.TransactionBody_ContractUpdateInstance{
ContractUpdateInstance: tx.buildProtoBody(),
},
}
}
func (tx *ContractUpdateTransaction) buildScheduled() (*services.SchedulableTransactionBody, error) {
return &services.SchedulableTransactionBody{
TransactionFee: tx.transactionFee,
Memo: tx.Transaction.memo,
Data: &services.SchedulableTransactionBody_ContractUpdateInstance{
ContractUpdateInstance: tx.buildProtoBody(),
},
}, nil
}
func (tx *ContractUpdateTransaction) buildProtoBody() *services.ContractUpdateTransactionBody {
body := &services.ContractUpdateTransactionBody{
DeclineReward: &wrapperspb.BoolValue{Value: tx.declineReward},
}
if tx.maxAutomaticTokenAssociations != 0 {
body.MaxAutomaticTokenAssociations = &wrapperspb.Int32Value{Value: tx.maxAutomaticTokenAssociations}
}
if tx.expirationTime != nil {
body.ExpirationTime = _TimeToProtobuf(*tx.expirationTime)
}
if tx.autoRenewPeriod != nil {
body.AutoRenewPeriod = _DurationToProtobuf(*tx.autoRenewPeriod)
}
if tx.adminKey != nil {
body.AdminKey = tx.adminKey._ToProtoKey()
}
if tx.contractID != nil {
body.ContractID = tx.contractID._ToProtobuf()
}
if tx.autoRenewAccountID != nil {
body.AutoRenewAccountId = tx.autoRenewAccountID._ToProtobuf()
}
if body.GetMemoWrapper() != nil {
body.GetMemoWrapper().Value = tx.memo
} else {
body.MemoField = &services.ContractUpdateTransactionBody_MemoWrapper{
MemoWrapper: &wrapperspb.StringValue{Value: tx.memo},
}
}
if tx.adminKey != nil {
body.AdminKey = tx.adminKey._ToProtoKey()
}
if tx.contractID != nil {
body.ContractID = tx.contractID._ToProtobuf()
}
if tx.stakedAccountID != nil {
body.StakedId = &services.ContractUpdateTransactionBody_StakedAccountId{StakedAccountId: tx.stakedAccountID._ToProtobuf()}
} else if tx.stakedNodeID != nil {
body.StakedId = &services.ContractUpdateTransactionBody_StakedNodeId{StakedNodeId: *tx.stakedNodeID}
}
return body
}
func (tx *ContractUpdateTransaction) getMethod(channel *_Channel) _Method {
return _Method{
transaction: channel._GetContract().UpdateContract,
}
}
func (tx *ContractUpdateTransaction) _ConstructScheduleProtobuf() (*services.SchedulableTransactionBody, error) {
return tx.buildScheduled()
}