forked from hiero-ledger/hiero-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
account_balance_query.go
187 lines (159 loc) · 5.44 KB
/
account_balance_query.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
import (
"github.com/hashgraph/hedera-sdk-go/v2/proto"
)
// AccountBalanceQuery gets the balance of a CryptoCurrency account. This returns only the balance, so it is a smaller
// and faster reply than AccountInfoQuery, which returns the balance plus additional information.
type AccountBalanceQuery struct {
Query
pb *proto.CryptoGetAccountBalanceQuery
}
// NewAccountBalanceQuery creates an AccountBalanceQuery query which can be used to construct and execute
// an AccountBalanceQuery.
// It is recommended that you use this for creating new instances of an AccountBalanceQuery
// instead of manually creating an instance of the struct.
func NewAccountBalanceQuery() *AccountBalanceQuery {
header := proto.QueryHeader{}
query := newQuery(false, &header)
pb := proto.CryptoGetAccountBalanceQuery{Header: &header}
query.pb.Query = &proto.Query_CryptogetAccountBalance{
CryptogetAccountBalance: &pb,
}
return &AccountBalanceQuery{
Query: query,
pb: &pb,
}
}
// SetAccountID sets the AccountID for which you wish to query the balance.
//
// Note: you can only query an Account or Contract but not both -- if a Contract ID or Account ID has already been set,
// it will be overwritten by this method.
func (query *AccountBalanceQuery) SetAccountID(id AccountID) *AccountBalanceQuery {
query.pb.BalanceSource = &proto.CryptoGetAccountBalanceQuery_AccountID{
AccountID: id.toProtobuf(),
}
return query
}
func (query *AccountBalanceQuery) GetAccountID() AccountID {
if query.pb.BalanceSource != nil {
return AccountID{}
} else {
switch id := query.pb.BalanceSource.(type) {
case *proto.CryptoGetAccountBalanceQuery_AccountID:
return accountIDFromProtobuf(id.AccountID)
default:
return AccountID{}
}
}
}
// SetContractID sets the ContractID for which you wish to query the balance.
//
// Note: you can only query an Account or Contract but not both -- if a Contract ID or Account ID has already been set,
// it will be overwritten by this method.
func (query *AccountBalanceQuery) SetContractID(id ContractID) *AccountBalanceQuery {
query.pb.BalanceSource = &proto.CryptoGetAccountBalanceQuery_ContractID{
ContractID: id.toProtobuf(),
}
return query
}
func (query *AccountBalanceQuery) GetContractID() ContractID {
if query.pb.BalanceSource != nil {
return ContractID{}
} else {
switch id := query.pb.BalanceSource.(type) {
case *proto.CryptoGetAccountBalanceQuery_ContractID:
return contractIDFromProtobuf(id.ContractID)
default:
return ContractID{}
}
}
}
func (query *AccountBalanceQuery) GetCost(client *Client) (Hbar, error) {
if client == nil || client.operator == nil {
return Hbar{}, errNoClientProvided
}
paymentTransaction, err := query_makePaymentTransaction(TransactionID{}, AccountID{}, client.operator, Hbar{})
if err != nil {
return Hbar{}, err
}
query.pbHeader.Payment = paymentTransaction
query.pbHeader.ResponseType = proto.ResponseType_COST_ANSWER
query.nodeIDs = client.network.getNodeAccountIDsForExecute()
resp, err := execute(
client,
request{
query: &query.Query,
},
query_shouldRetry,
costQuery_makeRequest,
costQuery_advanceRequest,
costQuery_getNodeAccountID,
accountBalanceQuery_getMethod,
accountBalanceQuery_mapResponseStatus,
query_mapResponse,
)
if err != nil {
return Hbar{}, err
}
cost := int64(resp.query.GetCryptogetAccountBalance().Header.Cost)
return HbarFromTinybar(cost), nil
}
func accountBalanceQuery_mapResponseStatus(_ request, response response) Status {
return Status(response.query.GetCryptogetAccountBalance().Header.NodeTransactionPrecheckCode)
}
func accountBalanceQuery_getMethod(_ request, channel *channel) method {
return method{
query: channel.getCrypto().CryptoGetBalance,
}
}
func (query *AccountBalanceQuery) Execute(client *Client) (AccountBalance, error) {
if client == nil || client.operator == nil {
return AccountBalance{}, errNoClientProvided
}
if len(query.Query.GetNodeAccountIDs()) == 0 {
query.SetNodeAccountIDs(client.network.getNodeAccountIDsForExecute())
}
resp, err := execute(
client,
request{
query: &query.Query,
},
query_shouldRetry,
query_makeRequest,
query_advanceRequest,
query_getNodeAccountID,
accountBalanceQuery_getMethod,
accountBalanceQuery_mapResponseStatus,
query_mapResponse,
)
if err != nil {
return AccountBalance{}, err
}
tokens := make(map[TokenID]uint64, len(resp.query.GetCryptogetAccountBalance().TokenBalances))
for _, token := range resp.query.GetCryptogetAccountBalance().TokenBalances {
tokens[tokenIDFromProtobuf(token.TokenId)] = token.Balance
}
return AccountBalance{
Hbars: HbarFromTinybar(int64(resp.query.GetCryptogetAccountBalance().Balance)),
Token: tokens,
}, nil
}
// SetMaxQueryPayment sets the maximum payment allowed for this Query.
func (query *AccountBalanceQuery) SetMaxQueryPayment(maxPayment Hbar) *AccountBalanceQuery {
query.Query.SetMaxQueryPayment(maxPayment)
return query
}
// SetQueryPayment sets the payment amount for this Query.
func (query *AccountBalanceQuery) SetQueryPayment(paymentAmount Hbar) *AccountBalanceQuery {
query.Query.SetQueryPayment(paymentAmount)
return query
}
// SetNodeAccountIDs sets the node AccountID for this AccountBalanceQuery.
func (query *AccountBalanceQuery) SetNodeAccountIDs(accountID []AccountID) *AccountBalanceQuery {
query.Query.SetNodeAccountIDs(accountID)
return query
}
func (query *AccountBalanceQuery) SetMaxRetry(count int) *AccountBalanceQuery {
query.Query.SetMaxRetry(count)
return query
}