-
Notifications
You must be signed in to change notification settings - Fork 65
/
account_stakers_query.go
193 lines (158 loc) · 5.56 KB
/
account_stakers_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
188
189
190
191
192
193
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-sdk-go/v2/proto/services"
)
// AccountStakersQuery gets all of the accounts that are proxy staking to this account. For each of them, the amount
// currently staked will be given. This is not yet implemented, but will be in a future version of the API.
type AccountStakersQuery struct {
Query
accountID *AccountID
}
// NewAccountStakersQuery creates an AccountStakersQuery query which can be used to construct and execute
// an AccountStakersQuery.
//
// It is recommended that you use this for creating new instances of an AccountStakersQuery
// instead of manually creating an instance of the struct.
func NewAccountStakersQuery() *AccountStakersQuery {
header := services.QueryHeader{}
return &AccountStakersQuery{
Query: _NewQuery(true, &header),
}
}
// When execution is attempted, a single attempt will timeout when this deadline is reached. (The SDK may subsequently retry the execution.)
func (q *AccountStakersQuery) SetGrpcDeadline(deadline *time.Duration) *AccountStakersQuery {
q.Query.SetGrpcDeadline(deadline)
return q
}
// SetAccountID sets the Account ID for which the stakers should be retrieved
func (q *AccountStakersQuery) SetAccountID(accountID AccountID) *AccountStakersQuery {
q.accountID = &accountID
return q
}
// GetAccountID returns the AccountID for this AccountStakersQuery.
func (q *AccountStakersQuery) GetAccountID() AccountID {
if q.accountID == nil {
return AccountID{}
}
return *q.accountID
}
func (q *AccountStakersQuery) GetCost(client *Client) (Hbar, error) {
return q.Query.getCost(client, q)
}
// Execute executes the Query with the provided client
func (q *AccountStakersQuery) Execute(client *Client) ([]Transfer, error) {
resp, err := q.Query.execute(client, q)
if err != nil {
return []Transfer{}, err
}
var stakers = make([]Transfer, len(resp.GetCryptoGetProxyStakers().Stakers.ProxyStaker))
// TODO: This is wrong, q _Method shold return `[]ProxyStaker` not `[]Transfer`
for i, element := range resp.GetCryptoGetProxyStakers().Stakers.ProxyStaker {
id := _AccountIDFromProtobuf(element.AccountID)
accountID := AccountID{}
if id == nil {
accountID = *id
}
stakers[i] = Transfer{
AccountID: accountID,
Amount: HbarFromTinybar(element.Amount),
}
}
return stakers, err
}
// SetMaxQueryPayment sets the maximum payment allowed for this Query.
func (q *AccountStakersQuery) SetMaxQueryPayment(maxPayment Hbar) *AccountStakersQuery {
q.Query.SetMaxQueryPayment(maxPayment)
return q
}
// SetQueryPayment sets the payment amount for this Query.
func (q *AccountStakersQuery) SetQueryPayment(paymentAmount Hbar) *AccountStakersQuery {
q.Query.SetQueryPayment(paymentAmount)
return q
}
// SetNodeAccountIDs sets the _Node AccountID for this AccountStakersQuery.
func (q *AccountStakersQuery) SetNodeAccountIDs(accountID []AccountID) *AccountStakersQuery {
q.Query.SetNodeAccountIDs(accountID)
return q
}
// SetMaxRetry sets the max number of errors before execution will fail.
func (q *AccountStakersQuery) SetMaxRetry(count int) *AccountStakersQuery {
q.Query.SetMaxRetry(count)
return q
}
// 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 (q *AccountStakersQuery) SetMaxBackoff(max time.Duration) *AccountStakersQuery {
q.Query.SetMaxBackoff(max)
return q
}
// SetMinBackoff sets the minimum amount of time to wait between retries.
func (q *AccountStakersQuery) SetMinBackoff(min time.Duration) *AccountStakersQuery {
q.Query.SetMinBackoff(min)
return q
}
// SetPaymentTransactionID assigns the payment transaction id.
func (q *AccountStakersQuery) SetPaymentTransactionID(transactionID TransactionID) *AccountStakersQuery {
q.Query.SetPaymentTransactionID(transactionID)
return q
}
func (q *AccountStakersQuery) SetLogLevel(level LogLevel) *AccountStakersQuery {
q.Query.SetLogLevel(level)
return q
}
// ---------- Parent functions specific implementation ----------
func (q *AccountStakersQuery) getMethod(channel *_Channel) _Method {
return _Method{
query: channel._GetCrypto().GetStakersByAccountID,
}
}
func (q *AccountStakersQuery) getName() string {
return "AccountStakersQuery"
}
func (q *AccountStakersQuery) buildQuery() *services.Query {
pb := services.Query_CryptoGetProxyStakers{
CryptoGetProxyStakers: &services.CryptoGetStakersQuery{
Header: q.pbHeader,
},
}
if q.accountID != nil {
pb.CryptoGetProxyStakers.AccountID = q.accountID._ToProtobuf()
}
return &services.Query{
Query: &pb,
}
}
func (q *AccountStakersQuery) validateNetworkOnIDs(client *Client) error {
if client == nil || !client.autoValidateChecksums {
return nil
}
if q.accountID != nil {
if err := q.accountID.ValidateChecksum(client); err != nil {
return err
}
}
return nil
}
func (q *AccountStakersQuery) getQueryResponse(response *services.Response) queryResponse {
return response.GetCryptoGetProxyStakers()
}