-
Notifications
You must be signed in to change notification settings - Fork 66
/
contract_delete_transaction.go
218 lines (182 loc) · 6.91 KB
/
contract_delete_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
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"
)
// ContractDeleteTransaction marks a contract as deleted and transfers its remaining hBars, if any, to a
// designated receiver. After a contract is deleted, it can no longer be called.
type ContractDeleteTransaction struct {
*Transaction[*ContractDeleteTransaction]
contractID *ContractID
transferContactID *ContractID
transferAccountID *AccountID
permanentRemoval bool
}
// NewContractDeleteTransaction creates ContractDeleteTransaction which marks a contract as deleted and transfers its remaining hBars, if any, to a
// designated receiver. After a contract is deleted, it can no longer be called.
func NewContractDeleteTransaction() *ContractDeleteTransaction {
tx := &ContractDeleteTransaction{}
tx.Transaction = _NewTransaction(tx)
tx._SetDefaultMaxTransactionFee(NewHbar(2))
return tx
}
func _ContractDeleteTransactionFromProtobuf(tx Transaction[*ContractDeleteTransaction], pb *services.TransactionBody) ContractDeleteTransaction {
contractDeleteTransaction := ContractDeleteTransaction{
contractID: _ContractIDFromProtobuf(pb.GetContractDeleteInstance().GetContractID()),
transferContactID: _ContractIDFromProtobuf(pb.GetContractDeleteInstance().GetTransferContractID()),
transferAccountID: _AccountIDFromProtobuf(pb.GetContractDeleteInstance().GetTransferAccountID()),
permanentRemoval: pb.GetContractDeleteInstance().GetPermanentRemoval(),
}
tx.childTransaction = &contractDeleteTransaction
contractDeleteTransaction.Transaction = &tx
return contractDeleteTransaction
}
// Sets the contract ID which will be deleted.
func (tx *ContractDeleteTransaction) SetContractID(contractID ContractID) *ContractDeleteTransaction {
tx._RequireNotFrozen()
tx.contractID = &contractID
return tx
}
// Returns the contract ID which will be deleted.
func (tx *ContractDeleteTransaction) GetContractID() ContractID {
if tx.contractID == nil {
return ContractID{}
}
return *tx.contractID
}
// Sets the contract ID which will receive all remaining hbars.
func (tx *ContractDeleteTransaction) SetTransferContractID(transferContactID ContractID) *ContractDeleteTransaction {
tx._RequireNotFrozen()
tx.transferContactID = &transferContactID
return tx
}
// Returns the contract ID which will receive all remaining hbars.
func (tx *ContractDeleteTransaction) GetTransferContractID() ContractID {
if tx.transferContactID == nil {
return ContractID{}
}
return *tx.transferContactID
}
// Sets the account ID which will receive all remaining hbars.
func (tx *ContractDeleteTransaction) SetTransferAccountID(accountID AccountID) *ContractDeleteTransaction {
tx._RequireNotFrozen()
tx.transferAccountID = &accountID
return tx
}
// Returns the account ID which will receive all remaining hbars.
func (tx *ContractDeleteTransaction) GetTransferAccountID() AccountID {
if tx.transferAccountID == nil {
return AccountID{}
}
return *tx.transferAccountID
}
// SetPermanentRemoval
// If set to true, means this is a "synthetic" system transaction being used to
// alert mirror nodes that the contract is being permanently removed from the ledger.
// IMPORTANT: User transactions cannot set this field to true, as permanent
// removal is always managed by the ledger itself. Any ContractDeleteTransaction
// submitted to HAPI with permanent_removal=true will be rejected with precheck status
// PERMANENT_REMOVAL_REQUIRES_SYSTEM_INITIATION.
func (tx *ContractDeleteTransaction) SetPermanentRemoval(remove bool) *ContractDeleteTransaction {
tx._RequireNotFrozen()
tx.permanentRemoval = remove
return tx
}
// GetPermanentRemoval returns true if this is a "synthetic" system transaction.
func (tx *ContractDeleteTransaction) GetPermanentRemoval() bool {
return tx.permanentRemoval
}
// ----------- Overridden functions ----------------
func (tx ContractDeleteTransaction) getName() string {
return "ContractDeleteTransaction"
}
func (tx ContractDeleteTransaction) 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.transferContactID != nil {
if err := tx.transferContactID.ValidateChecksum(client); err != nil {
return err
}
}
if tx.transferAccountID != nil {
if err := tx.transferAccountID.ValidateChecksum(client); err != nil {
return err
}
}
return nil
}
func (tx ContractDeleteTransaction) build() *services.TransactionBody {
pb := services.TransactionBody{
TransactionFee: tx.transactionFee,
Memo: tx.Transaction.memo,
TransactionValidDuration: _DurationToProtobuf(tx.GetTransactionValidDuration()),
TransactionID: tx.transactionID._ToProtobuf(),
Data: &services.TransactionBody_ContractDeleteInstance{
ContractDeleteInstance: tx.buildProtoBody(),
},
}
return &pb
}
func (tx ContractDeleteTransaction) buildProtoBody() *services.ContractDeleteTransactionBody {
body := &services.ContractDeleteTransactionBody{
PermanentRemoval: tx.permanentRemoval,
}
if tx.contractID != nil {
body.ContractID = tx.contractID._ToProtobuf()
}
if tx.transferContactID != nil {
body.Obtainers = &services.ContractDeleteTransactionBody_TransferContractID{
TransferContractID: tx.transferContactID._ToProtobuf(),
}
}
if tx.transferAccountID != nil {
body.Obtainers = &services.ContractDeleteTransactionBody_TransferAccountID{
TransferAccountID: tx.transferAccountID._ToProtobuf(),
}
}
return body
}
func (tx ContractDeleteTransaction) buildScheduled() (*services.SchedulableTransactionBody, error) {
return &services.SchedulableTransactionBody{
TransactionFee: tx.transactionFee,
Memo: tx.Transaction.memo,
Data: &services.SchedulableTransactionBody_ContractDeleteInstance{
ContractDeleteInstance: tx.buildProtoBody(),
},
}, nil
}
func (tx ContractDeleteTransaction) getMethod(channel *_Channel) _Method {
return _Method{
transaction: channel._GetContract().DeleteContract,
}
}
func (tx ContractDeleteTransaction) constructScheduleProtobuf() (*services.SchedulableTransactionBody, error) {
return tx.buildScheduled()
}
func (tx ContractDeleteTransaction) getBaseTransaction() *Transaction[TransactionInterface] {
return castFromConcreteToBaseTransaction(tx.Transaction, &tx)
}