forked from hashgraph/hedera-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom_fixed_fee.go
187 lines (159 loc) · 5.51 KB
/
custom_fixed_fee.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
package hedera
/*-
*
* Hedera Go SDK
*
* Copyright (C) 2020 - 2022 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 (
"fmt"
"github.com/hashgraph/hedera-protobufs-go/services"
protobuf "google.golang.org/protobuf/proto"
)
type Fee interface {
_ToProtobuf() *services.CustomFee
_ValidateNetworkOnIDs(client *Client) error
}
// A fixed fee transfers a specified amount of the token, to the specified collection account(s),
// each time a token transfer is initiated. The custom token fee does not depend on the amount of the
// token that is being transferred.
type CustomFixedFee struct {
CustomFee
Amount int64
DenominationTokenID *TokenID
}
// A fixed fee transfers a specified amount of the token, to the specified collection account(s),
// each time a token transfer is initiated. The custom token fee does not depend on the amount of the
// token that is being transferred.
func NewCustomFixedFee() *CustomFixedFee {
return &CustomFixedFee{
CustomFee: CustomFee{},
Amount: 0,
DenominationTokenID: nil,
}
}
func _CustomFixedFeeFromProtobuf(fixedFee *services.FixedFee, customFee CustomFee) CustomFixedFee {
return CustomFixedFee{
CustomFee: customFee,
Amount: fixedFee.Amount,
DenominationTokenID: _TokenIDFromProtobuf(fixedFee.DenominatingTokenId),
}
}
func (fee CustomFixedFee) _ValidateNetworkOnIDs(client *Client) error {
if client == nil || !client.autoValidateChecksums {
return nil
}
if fee.DenominationTokenID != nil {
if fee.DenominationTokenID != nil {
if err := fee.DenominationTokenID.ValidateChecksum(client); err != nil {
return err
}
}
}
if fee.FeeCollectorAccountID != nil {
if fee.FeeCollectorAccountID != nil {
if err := fee.FeeCollectorAccountID.ValidateChecksum(client); err != nil {
return err
}
}
}
return nil
}
func (fee CustomFixedFee) _ToProtobuf() *services.CustomFee {
var tokenID *services.TokenID
if fee.DenominationTokenID != nil {
tokenID = fee.DenominationTokenID._ToProtobuf()
}
var FeeCollectorAccountID *services.AccountID
if fee.FeeCollectorAccountID != nil {
FeeCollectorAccountID = fee.CustomFee.FeeCollectorAccountID._ToProtobuf()
}
return &services.CustomFee{
Fee: &services.CustomFee_FixedFee{
FixedFee: &services.FixedFee{
Amount: fee.Amount,
DenominatingTokenId: tokenID,
},
},
FeeCollectorAccountId: FeeCollectorAccountID,
AllCollectorsAreExempt: fee.AllCollectorsAreExempt,
}
}
// SetAmount sets the amount of the fixed fee in tinybar
func (fee *CustomFixedFee) SetAmount(tinybar int64) *CustomFixedFee {
fee.Amount = tinybar
return fee
}
// GetAmount returns the amount of the fixed fee
func (fee *CustomFixedFee) GetAmount() Hbar {
return NewHbar(float64(fee.Amount))
}
// SetHbarAmount sets the amount of the fixed fee in hbar
func (fee *CustomFixedFee) SetHbarAmount(hbar Hbar) *CustomFixedFee {
fee.Amount = int64(hbar.As(HbarUnits.Tinybar))
fee.DenominationTokenID = nil
return fee
}
// GetHbarAmount returns the amount of the fixed fee in hbar
func (fee *CustomFixedFee) GetHbarAmount() Hbar {
return NewHbar(float64(fee.Amount))
}
// SetDenominatingTokenToSameToken sets the denomination token ID to the same token as the fee
func (fee *CustomFixedFee) SetDenominatingTokenToSameToken() *CustomFixedFee {
fee.DenominationTokenID = &TokenID{0, 0, 0, nil}
return fee
}
// SetDenominatingTokenID sets the denomination token ID
func (fee *CustomFixedFee) SetDenominatingTokenID(id TokenID) *CustomFixedFee {
fee.DenominationTokenID = &id
return fee
}
// GetDenominatingTokenID returns the denomination token ID
func (fee *CustomFixedFee) GetDenominatingTokenID() TokenID {
if fee.DenominationTokenID != nil {
return *fee.DenominationTokenID
}
return TokenID{}
}
// SetFeeCollectorAccountID sets the account ID that will receive the custom fee
func (fee *CustomFixedFee) SetFeeCollectorAccountID(id AccountID) *CustomFixedFee {
fee.FeeCollectorAccountID = &id
return fee
}
// GetFeeCollectorAccountID returns the account ID that will receive the custom fee
func (fee *CustomFixedFee) GetFeeCollectorAccountID() AccountID {
return *fee.FeeCollectorAccountID
}
// SetAllCollectorsAreExempt sets whether all collectors are exempt from the custom fee
func (fee *CustomFixedFee) SetAllCollectorsAreExempt(exempt bool) *CustomFixedFee {
fee.AllCollectorsAreExempt = exempt
return fee
}
// ToBytes returns the byte representation of the CustomFixedFee
func (fee CustomFixedFee) ToBytes() []byte {
data, err := protobuf.Marshal(fee._ToProtobuf())
if err != nil {
return make([]byte, 0)
}
return data
}
// String returns a string representation of the CustomFixedFee
func (fee CustomFixedFee) String() string {
if fee.DenominationTokenID != nil {
return fmt.Sprintf("feeCollectorAccountID: %s, amount: %d, denominatingTokenID: %s", fee.FeeCollectorAccountID.String(), fee.Amount, fee.DenominationTokenID.String())
}
return fmt.Sprintf("feeCollectorAccountID: %s, amount: %d", fee.FeeCollectorAccountID.String(), fee.Amount)
}