-
Notifications
You must be signed in to change notification settings - Fork 65
/
account_allowance_delete_transaction.go
211 lines (179 loc) · 6.74 KB
/
account_allowance_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
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"
)
// AccountAllowanceDeleteTransaction
// Deletes one or more non-fungible approved allowances from an owner's account. This operation
// will remove the allowances granted to one or more specific non-fungible token serial numbers. Each owner account
// listed as wiping an allowance must sign the transaction. Hbar and fungible token allowances
// can be removed by setting the amount to zero in CryptoApproveAllowance.
type AccountAllowanceDeleteTransaction struct {
*Transaction[*AccountAllowanceDeleteTransaction]
hbarWipe []*HbarAllowance
tokenWipe []*TokenAllowance
nftWipe []*TokenNftAllowance
}
// NewAccountAllowanceDeleteTransaction
// Creates AccountAllowanceDeleteTransaction whoch deletes one or more non-fungible approved allowances from an owner's account. This operation
// will remove the allowances granted to one or more specific non-fungible token serial numbers. Each owner account
// listed as wiping an allowance must sign the transaction. Hbar and fungible token allowances
// can be removed by setting the amount to zero in CryptoApproveAllowance.
func NewAccountAllowanceDeleteTransaction() *AccountAllowanceDeleteTransaction {
tx := &AccountAllowanceDeleteTransaction{}
tx.Transaction = _NewTransaction(tx)
tx._SetDefaultMaxTransactionFee(NewHbar(2))
return tx
}
func _AccountAllowanceDeleteTransactionFromProtobuf(tx Transaction[*AccountAllowanceDeleteTransaction], pb *services.TransactionBody) AccountAllowanceDeleteTransaction {
nftWipe := make([]*TokenNftAllowance, 0)
for _, ap := range pb.GetCryptoDeleteAllowance().GetNftAllowances() {
temp := _TokenNftWipeAllowanceProtobuf(ap)
nftWipe = append(nftWipe, &temp)
}
accountAllowanceDeleteTransaction := AccountAllowanceDeleteTransaction{
nftWipe: nftWipe,
}
tx.childTransaction = &accountAllowanceDeleteTransaction
accountAllowanceDeleteTransaction.Transaction = &tx
return accountAllowanceDeleteTransaction
}
// Deprecated
func (tx *AccountAllowanceDeleteTransaction) DeleteAllHbarAllowances(ownerAccountID *AccountID) *AccountAllowanceDeleteTransaction {
tx._RequireNotFrozen()
tx.hbarWipe = append(tx.hbarWipe, &HbarAllowance{
OwnerAccountID: ownerAccountID,
})
return tx
}
// Deprecated
func (tx *AccountAllowanceDeleteTransaction) GetAllHbarDeleteAllowances() []*HbarAllowance {
return tx.hbarWipe
}
// Deprecated
func (tx *AccountAllowanceDeleteTransaction) DeleteAllTokenAllowances(tokenID TokenID, ownerAccountID *AccountID) *AccountAllowanceDeleteTransaction {
tx._RequireNotFrozen()
tokenApproval := TokenAllowance{
TokenID: &tokenID,
OwnerAccountID: ownerAccountID,
}
tx.tokenWipe = append(tx.tokenWipe, &tokenApproval)
return tx
}
// Deprecated
func (tx *AccountAllowanceDeleteTransaction) GetAllTokenDeleteAllowances() []*TokenAllowance {
return tx.tokenWipe
}
// DeleteAllTokenNftAllowances
// The non-fungible token allowance/allowances to remove.
func (tx *AccountAllowanceDeleteTransaction) DeleteAllTokenNftAllowances(nftID NftID, ownerAccountID *AccountID) *AccountAllowanceDeleteTransaction {
tx._RequireNotFrozen()
for _, t := range tx.nftWipe {
if t.TokenID.String() == nftID.TokenID.String() {
if t.OwnerAccountID.String() == ownerAccountID.String() {
b := false
for _, s := range t.SerialNumbers {
if s == nftID.SerialNumber {
b = true
}
}
if !b {
t.SerialNumbers = append(t.SerialNumbers, nftID.SerialNumber)
}
return tx
}
}
}
tx.nftWipe = append(tx.nftWipe, &TokenNftAllowance{
TokenID: &nftID.TokenID,
OwnerAccountID: ownerAccountID,
SerialNumbers: []int64{nftID.SerialNumber},
AllSerials: false,
})
return tx
}
// GetAllTokenNftDeleteAllowances
// Get the non-fungible token allowance/allowances that will be removed.
func (tx *AccountAllowanceDeleteTransaction) GetAllTokenNftDeleteAllowances() []*TokenNftAllowance {
return tx.nftWipe
}
// ----------- Overridden functions ----------------
func (tx AccountAllowanceDeleteTransaction) getName() string {
return "AccountAllowanceDeleteTransaction"
}
func (tx AccountAllowanceDeleteTransaction) validateNetworkOnIDs(client *Client) error {
if client == nil || !client.autoValidateChecksums {
return nil
}
for _, ap := range tx.nftWipe {
if ap.TokenID != nil {
if err := ap.TokenID.ValidateChecksum(client); err != nil {
return err
}
}
if ap.OwnerAccountID != nil {
if err := ap.OwnerAccountID.ValidateChecksum(client); err != nil {
return err
}
}
}
return nil
}
func (tx AccountAllowanceDeleteTransaction) build() *services.TransactionBody {
return &services.TransactionBody{
TransactionID: tx.transactionID._ToProtobuf(),
TransactionFee: tx.transactionFee,
TransactionValidDuration: _DurationToProtobuf(tx.GetTransactionValidDuration()),
Memo: tx.Transaction.memo,
Data: &services.TransactionBody_CryptoDeleteAllowance{
CryptoDeleteAllowance: tx.buildProtoBody(),
},
}
}
func (tx AccountAllowanceDeleteTransaction) buildScheduled() (*services.SchedulableTransactionBody, error) {
return &services.SchedulableTransactionBody{
TransactionFee: tx.transactionFee,
Memo: tx.Transaction.memo,
Data: &services.SchedulableTransactionBody_CryptoDeleteAllowance{
CryptoDeleteAllowance: tx.buildProtoBody(),
},
}, nil
}
func (tx AccountAllowanceDeleteTransaction) buildProtoBody() *services.CryptoDeleteAllowanceTransactionBody {
body := &services.CryptoDeleteAllowanceTransactionBody{}
nftWipe := make([]*services.NftRemoveAllowance, 0)
for _, ap := range tx.nftWipe {
nftWipe = append(nftWipe, ap._ToWipeProtobuf())
}
body.NftAllowances = nftWipe
return body
}
func (tx AccountAllowanceDeleteTransaction) getMethod(channel *_Channel) _Method {
return _Method{
transaction: channel._GetCrypto().DeleteAllowances,
}
}
func (this AccountAllowanceDeleteTransaction) constructScheduleProtobuf() (*services.SchedulableTransactionBody, error) {
return this.buildScheduled()
}
func (tx AccountAllowanceDeleteTransaction) getBaseTransaction() *Transaction[TransactionInterface] {
return castFromConcreteToBaseTransaction(tx.Transaction, &tx)
}