-
Notifications
You must be signed in to change notification settings - Fork 65
/
contract_execute_transaction.go
195 lines (165 loc) · 6.22 KB
/
contract_execute_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
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 (
"github.com/hashgraph/hedera-sdk-go/v2/proto/services"
)
// ContractExecuteTransaction calls a function of the given smart contract instance, giving it ContractFuncionParams as
// its inputs. it can use the given amount of gas, and any unspent gas will be refunded to the paying account.
//
// If tx function stores information, it is charged gas to store it. There is a fee in hbars to maintain that storage
// until the expiration time, and that fee is added as part of the transaction fee.
//
// For a cheaper but more limited _Method to call functions, see ContractCallQuery.
type ContractExecuteTransaction struct {
*Transaction[*ContractExecuteTransaction]
contractID *ContractID
gas int64
amount int64
parameters []byte
}
// NewContractExecuteTransaction creates a ContractExecuteTransaction transaction which can be
// used to construct and execute a Contract Call Transaction.
func NewContractExecuteTransaction() *ContractExecuteTransaction {
tx := &ContractExecuteTransaction{}
tx.Transaction = _NewTransaction(tx)
tx._SetDefaultMaxTransactionFee(NewHbar(2))
return tx
}
func _ContractExecuteTransactionFromProtobuf(tx Transaction[*ContractExecuteTransaction], pb *services.TransactionBody) ContractExecuteTransaction {
contractExecuteTransaction := ContractExecuteTransaction{
contractID: _ContractIDFromProtobuf(pb.GetContractCall().GetContractID()),
gas: pb.GetContractCall().GetGas(),
amount: pb.GetContractCall().GetAmount(),
parameters: pb.GetContractCall().GetFunctionParameters(),
}
tx.childTransaction = &contractExecuteTransaction
contractExecuteTransaction.Transaction = &tx
return contractExecuteTransaction
}
// SetContractID sets the contract instance to call.
func (tx *ContractExecuteTransaction) SetContractID(contractID ContractID) *ContractExecuteTransaction {
tx._RequireNotFrozen()
tx.contractID = &contractID
return tx
}
// GetContractID returns the contract instance to call.
func (tx *ContractExecuteTransaction) GetContractID() ContractID {
if tx.contractID == nil {
return ContractID{}
}
return *tx.contractID
}
// SetGas sets the maximum amount of gas to use for the call.
func (tx *ContractExecuteTransaction) SetGas(gas uint64) *ContractExecuteTransaction {
tx._RequireNotFrozen()
tx.gas = int64(gas)
return tx
}
// GetGas returns the maximum amount of gas to use for the call.
func (tx *ContractExecuteTransaction) GetGas() uint64 {
return uint64(tx.gas)
}
// SetPayableAmount sets the amount of Hbar sent (the function must be payable if this is nonzero)
func (tx *ContractExecuteTransaction) SetPayableAmount(amount Hbar) *ContractExecuteTransaction {
tx._RequireNotFrozen()
tx.amount = amount.AsTinybar()
return tx
}
// GetPayableAmount returns the amount of Hbar sent (the function must be payable if this is nonzero)
func (tx *ContractExecuteTransaction) GetPayableAmount() Hbar {
return HbarFromTinybar(tx.amount)
}
// SetFunctionParameters sets the function parameters
func (tx *ContractExecuteTransaction) SetFunctionParameters(params []byte) *ContractExecuteTransaction {
tx._RequireNotFrozen()
tx.parameters = params
return tx
}
// GetFunctionParameters returns the function parameters
func (tx *ContractExecuteTransaction) GetFunctionParameters() []byte {
return tx.parameters
}
// SetFunction sets which function to call, and the ContractFunctionParams to pass to the function
func (tx *ContractExecuteTransaction) SetFunction(name string, params *ContractFunctionParameters) *ContractExecuteTransaction {
tx._RequireNotFrozen()
if params == nil {
params = NewContractFunctionParameters()
}
tx.parameters = params._Build(&name)
return tx
}
// ----------- Overridden functions ----------------
func (tx ContractExecuteTransaction) getName() string {
return "ContractExecuteTransaction"
}
func (tx ContractExecuteTransaction) 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
}
}
return nil
}
func (tx ContractExecuteTransaction) build() *services.TransactionBody {
return &services.TransactionBody{
TransactionFee: tx.transactionFee,
Memo: tx.Transaction.memo,
TransactionValidDuration: _DurationToProtobuf(tx.GetTransactionValidDuration()),
TransactionID: tx.transactionID._ToProtobuf(),
Data: &services.TransactionBody_ContractCall{
ContractCall: tx.buildProtoBody(),
},
}
}
func (tx ContractExecuteTransaction) buildScheduled() (*services.SchedulableTransactionBody, error) {
return &services.SchedulableTransactionBody{
TransactionFee: tx.transactionFee,
Memo: tx.Transaction.memo,
Data: &services.SchedulableTransactionBody_ContractCall{
ContractCall: tx.buildProtoBody(),
},
}, nil
}
func (tx ContractExecuteTransaction) buildProtoBody() *services.ContractCallTransactionBody {
body := &services.ContractCallTransactionBody{
Gas: tx.gas,
Amount: tx.amount,
FunctionParameters: tx.parameters,
}
if tx.contractID != nil {
body.ContractID = tx.contractID._ToProtobuf()
}
return body
}
func (tx ContractExecuteTransaction) getMethod(channel *_Channel) _Method {
return _Method{
transaction: channel._GetContract().ContractCallMethod,
}
}
func (tx ContractExecuteTransaction) constructScheduleProtobuf() (*services.SchedulableTransactionBody, error) {
return tx.buildScheduled()
}
func (tx ContractExecuteTransaction) getBaseTransaction() *Transaction[TransactionInterface] {
return castFromConcreteToBaseTransaction(tx.Transaction, &tx)
}