forked from hiero-ledger/hiero-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccount_delete_transaction.go
296 lines (247 loc) · 9.6 KB
/
account_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
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
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"
"github.com/hashgraph/hedera-protobufs-go/services"
)
// AccountDeleteTransaction
// Mark an account as deleted, moving all its current hbars to another account. It will remain in
// the ledger, marked as deleted, until it expires. Transfers into it a deleted account fail. But a
// deleted account can still have its expiration extended in the normal way.
type AccountDeleteTransaction struct {
Transaction
transferAccountID *AccountID
deleteAccountID *AccountID
}
func _AccountDeleteTransactionFromProtobuf(transaction Transaction, pb *services.TransactionBody) *AccountDeleteTransaction {
return &AccountDeleteTransaction{
Transaction: transaction,
transferAccountID: _AccountIDFromProtobuf(pb.GetCryptoDelete().GetTransferAccountID()),
deleteAccountID: _AccountIDFromProtobuf(pb.GetCryptoDelete().GetDeleteAccountID()),
}
}
// NewAccountDeleteTransaction creates AccountDeleteTransaction which marks an account as deleted, moving all its current hbars to another account. It will remain in
// the ledger, marked as deleted, until it expires. Transfers into it a deleted account fail. But a
// deleted account can still have its expiration extended in the normal way.
func NewAccountDeleteTransaction() *AccountDeleteTransaction {
tx := AccountDeleteTransaction{
Transaction: _NewTransaction(),
}
tx._SetDefaultMaxTransactionFee(NewHbar(2))
return &tx
}
// SetNodeAccountID sets the _Node AccountID for this AccountDeleteTransaction.
func (tx *AccountDeleteTransaction) SetAccountID(accountID AccountID) *AccountDeleteTransaction {
tx._RequireNotFrozen()
tx.deleteAccountID = &accountID
return tx
}
// GetAccountID returns the AccountID which will be deleted.
func (tx *AccountDeleteTransaction) GetAccountID() AccountID {
if tx.deleteAccountID == nil {
return AccountID{}
}
return *tx.deleteAccountID
}
// SetTransferAccountID sets the AccountID which will receive all remaining hbars.
func (tx *AccountDeleteTransaction) SetTransferAccountID(transferAccountID AccountID) *AccountDeleteTransaction {
tx._RequireNotFrozen()
tx.transferAccountID = &transferAccountID
return tx
}
// GetTransferAccountID returns the AccountID which will receive all remaining hbars.
func (tx *AccountDeleteTransaction) GetTransferAccountID() AccountID {
if tx.transferAccountID == nil {
return AccountID{}
}
return *tx.transferAccountID
}
// ---- Required Interfaces ---- //
// Sign uses the provided privateKey to sign the transaction.
func (tx *AccountDeleteTransaction) Sign(
privateKey PrivateKey,
) *AccountDeleteTransaction {
tx.Transaction.Sign(privateKey)
return tx
}
// SignWithOperator signs the transaction with client's operator privateKey.
func (tx *AccountDeleteTransaction) SignWithOperator(
client *Client,
) (*AccountDeleteTransaction, error) {
_, 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 *AccountDeleteTransaction) SignWith(
publicKey PublicKey,
signer TransactionSigner,
) *AccountDeleteTransaction {
tx.Transaction.SignWith(publicKey, signer)
return tx
}
// AddSignature adds a signature to the transaction.
func (tx *AccountDeleteTransaction) AddSignature(publicKey PublicKey, signature []byte) *AccountDeleteTransaction {
tx.Transaction.AddSignature(publicKey, signature)
return tx
}
// When execution is attempted, a single attempt will timeout when this deadline is reached. (The SDK may subsequently retry the execution.)
func (tx *AccountDeleteTransaction) SetGrpcDeadline(deadline *time.Duration) *AccountDeleteTransaction {
tx.Transaction.SetGrpcDeadline(deadline)
return tx
}
func (tx *AccountDeleteTransaction) Freeze() (*AccountDeleteTransaction, error) {
return tx.FreezeWith(nil)
}
func (tx *AccountDeleteTransaction) FreezeWith(client *Client) (*AccountDeleteTransaction, 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 *AccountDeleteTransaction) SetMaxTransactionFee(fee Hbar) *AccountDeleteTransaction {
tx._RequireNotFrozen()
tx.Transaction.SetMaxTransactionFee(fee)
return tx
}
// SetRegenerateTransactionID sets if transaction IDs should be regenerated when `TRANSACTION_EXPIRED` is received
func (tx *AccountDeleteTransaction) SetRegenerateTransactionID(regenerateTransactionID bool) *AccountDeleteTransaction {
tx._RequireNotFrozen()
tx.Transaction.SetRegenerateTransactionID(regenerateTransactionID)
return tx
}
// SetTransactionMemo sets the memo for this AccountDeleteTransaction.
func (tx *AccountDeleteTransaction) SetTransactionMemo(memo string) *AccountDeleteTransaction {
tx._RequireNotFrozen()
tx.Transaction.SetTransactionMemo(memo)
return tx
}
// SetTransactionValidDuration sets the valid duration for this AccountDeleteTransaction.
func (tx *AccountDeleteTransaction) SetTransactionValidDuration(duration time.Duration) *AccountDeleteTransaction {
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 *AccountDeleteTransaction) ToBytes() ([]byte, error) {
bytes, err := tx.Transaction.toBytes(tx)
if err != nil {
return nil, err
}
return bytes, nil
}
// SetTransactionID sets the TransactionID for this AccountDeleteTransaction.
func (tx *AccountDeleteTransaction) SetTransactionID(transactionID TransactionID) *AccountDeleteTransaction {
tx._RequireNotFrozen()
tx.Transaction.SetTransactionID(transactionID)
return tx
}
// SetNodeAccountIDs sets the _Node AccountID for this AccountDeleteTransaction.
func (tx *AccountDeleteTransaction) SetNodeAccountIDs(nodeID []AccountID) *AccountDeleteTransaction {
tx._RequireNotFrozen()
tx.Transaction.SetNodeAccountIDs(nodeID)
return tx
}
// SetMaxRetry sets the max number of errors before execution will fail.
func (tx *AccountDeleteTransaction) SetMaxRetry(count int) *AccountDeleteTransaction {
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 *AccountDeleteTransaction) SetMaxBackoff(max time.Duration) *AccountDeleteTransaction {
tx.Transaction.SetMaxBackoff(max)
return tx
}
// GetMaxBackoff returns the maximum amount of time to wait between retries.
func (tx *AccountDeleteTransaction) SetMinBackoff(min time.Duration) *AccountDeleteTransaction {
tx.Transaction.SetMinBackoff(min)
return tx
}
func (tx *AccountDeleteTransaction) SetLogLevel(level LogLevel) *AccountDeleteTransaction {
tx.Transaction.SetLogLevel(level)
return tx
}
func (tx *AccountDeleteTransaction) Execute(client *Client) (TransactionResponse, error) {
return tx.Transaction.execute(client, tx)
}
func (tx *AccountDeleteTransaction) Schedule() (*ScheduleCreateTransaction, error) {
return tx.Transaction.schedule(tx)
}
// ----------- Overridden functions ----------------
func (tx *AccountDeleteTransaction) getName() string {
return "AccountDeleteTransaction"
}
func (tx *AccountDeleteTransaction) validateNetworkOnIDs(client *Client) error {
if client == nil || !client.autoValidateChecksums {
return nil
}
if tx.deleteAccountID != nil {
if err := tx.deleteAccountID.ValidateChecksum(client); err != nil {
return err
}
}
if tx.transferAccountID != nil {
if err := tx.transferAccountID.ValidateChecksum(client); err != nil {
return err
}
}
return nil
}
func (tx *AccountDeleteTransaction) build() *services.TransactionBody {
return &services.TransactionBody{
TransactionFee: tx.transactionFee,
Memo: tx.Transaction.memo,
TransactionValidDuration: _DurationToProtobuf(tx.GetTransactionValidDuration()),
TransactionID: tx.transactionID._ToProtobuf(),
Data: &services.TransactionBody_CryptoDelete{
CryptoDelete: tx.buildProtoBody(),
},
}
}
func (tx *AccountDeleteTransaction) buildScheduled() (*services.SchedulableTransactionBody, error) {
return &services.SchedulableTransactionBody{
TransactionFee: tx.transactionFee,
Memo: tx.Transaction.memo,
Data: &services.SchedulableTransactionBody_CryptoDelete{
CryptoDelete: tx.buildProtoBody(),
},
}, nil
}
func (tx *AccountDeleteTransaction) buildProtoBody() *services.CryptoDeleteTransactionBody {
body := &services.CryptoDeleteTransactionBody{}
if tx.transferAccountID != nil {
body.TransferAccountID = tx.transferAccountID._ToProtobuf()
}
if tx.deleteAccountID != nil {
body.DeleteAccountID = tx.deleteAccountID._ToProtobuf()
}
return body
}
func (tx *AccountDeleteTransaction) getMethod(channel *_Channel) _Method {
return _Method{
transaction: channel._GetCrypto().ApproveAllowances,
}
}
func (tx *AccountDeleteTransaction) _ConstructScheduleProtobuf() (*services.SchedulableTransactionBody, error) {
return tx.buildScheduled()
}