forked from hashgraph/hedera-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 1
/
client.go
300 lines (242 loc) · 7.85 KB
/
client.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
297
298
299
300
package hedera
import (
"context"
"encoding/json"
"fmt"
"github.com/hashgraph/hedera-sdk-go/proto"
"google.golang.org/grpc"
"io/ioutil"
"math/rand"
"os"
)
// Default max fees and payments to 1 h-bar
var defaultMaxTransactionFee Hbar = NewHbar(1)
var defaultMaxQueryPayment Hbar = NewHbar(1)
// Client is the Hedera protocol wrapper for the SDK used by all
// transaction and query types.
type Client struct {
maxTransactionFee Hbar
maxQueryPayment Hbar
operator *operator
networkNodes map[AccountID]*node
networkNodeIds []AccountID
}
type node struct {
conn *grpc.ClientConn
id AccountID
address string
}
// Transaction signer is a closure or function that defines how transactions will be signed
type TransactionSigner func(message []byte) []byte
type operator struct {
accountID AccountID
privateKey *Ed25519PrivateKey
publicKey Ed25519PublicKey
signer TransactionSigner
}
var mainnetNodes = map[string]AccountID{
"35.237.200.180:50211": AccountID{Account: 3},
"35.186.191.247:50211": AccountID{Account: 4},
"35.192.2.25:50211": AccountID{Account: 5},
"35.199.161.108:50211": AccountID{Account: 6},
"35.203.82.240:50211": AccountID{Account: 7},
"35.236.5.219:50211": AccountID{Account: 8},
"35.197.192.225:50211": AccountID{Account: 9},
"35.242.233.154:50211": AccountID{Account: 10},
"35.240.118.96:50211": AccountID{Account: 11},
"35.204.86.32:50211": AccountID{Account: 12},
}
var testnetNodes = map[string]AccountID{
"0.testnet.hedera.com:50211": AccountID{Account: 3},
"1.testnet.hedera.com:50211": AccountID{Account: 4},
"2.testnet.hedera.com:50211": AccountID{Account: 5},
"3.testnet.hedera.com:50211": AccountID{Account: 6},
}
// ClientForMainnet returns a preconfigured client for use with the standard
// Hedera mainnet.
// Most users will want to set an operator account with .SetOperator so
// transactions can be automatically given TransactionIDs and signed.
func ClientForMainnet() *Client {
return NewClient(mainnetNodes)
}
// ClientForTestnet returns a preconfigured client for use with the standard
// Hedera testnet.
// Most users will want to set an operator account with .SetOperator so
// transactions can be automatically given TransactionIDs and signed.
func ClientForTestnet() *Client {
return NewClient(testnetNodes)
}
// NewClient takes in a map of node addresses to their respective IDS (network)
// and returns a Client instance which can be used to
func NewClient(network map[string]AccountID) *Client {
client := &Client{
maxQueryPayment: defaultMaxQueryPayment,
maxTransactionFee: defaultMaxTransactionFee,
networkNodes: map[AccountID]*node{},
networkNodeIds: []AccountID{},
}
client.ReplaceNodes(network)
return client
}
type configOperator struct {
AccountID string `json:"accountId"`
PrivateKey string `json:"privateKey"`
}
type clientConfig struct {
Network map[string]AccountID `json:"network"`
Operator *configOperator `json:"operator"`
}
// ClientFromJSON takes in the byte slice representation of a JSON string or
// document and returns Client based on the configuration.
func ClientFromJSON(jsonBytes []byte) (*Client, error) {
var clientConfig clientConfig
err := json.Unmarshal(jsonBytes, &clientConfig)
if err != nil {
return nil, err
}
client := NewClient(clientConfig.Network)
// if the operator is not provided, finish here
if clientConfig.Operator == nil {
return client, nil
}
operatorId, err := AccountIDFromString(clientConfig.Operator.AccountID)
if err != nil {
return nil, err
}
operatorKey, err := Ed25519PrivateKeyFromString(clientConfig.Operator.PrivateKey)
if err != nil {
return nil, err
}
operator := operator{
accountID: operatorId,
privateKey: &operatorKey,
publicKey: operatorKey.PublicKey(),
signer: operatorKey.Sign,
}
client.operator = &operator
return client, nil
}
// ClientFromFile takes a filename string representing the path to a JSON encoded
// Client file and returns a Client based on the configuration.
func ClientFromFile(filename string) (*Client, error) {
file, err := os.Open(filename)
if err != nil {
return nil, err
}
defer func() {
err = file.Close()
}()
configBytes, err := ioutil.ReadAll(file)
if err != nil {
return nil, err
}
return ClientFromJSON(configBytes)
}
// Close is used to disconnect the Client from the network
func (client *Client) Close() error {
for _, node := range client.networkNodes {
if node.conn != nil {
err := node.conn.Close()
if err != nil {
return err
}
}
}
return nil
}
// ReplaceNodes replaces all nodes in the Client with a new set of nodes.
// (e.g. for an Address Book update).
func (client *Client) ReplaceNodes(network map[string]AccountID) *Client {
for address, id := range network {
client.networkNodeIds = append(client.networkNodeIds, id)
client.networkNodes[id] = &node{
id: id,
address: address,
}
}
return client
}
// SetOperator sets that account that will, by default, be paying for
// transactions and queries built with the client and the associated key
// with which to automatically sign transactions.
func (client *Client) SetOperator(accountID AccountID, privateKey Ed25519PrivateKey) *Client {
client.operator = &operator{
accountID: accountID,
privateKey: &privateKey,
publicKey: privateKey.PublicKey(),
signer: privateKey.Sign,
}
return client
}
// SetOperatorWith sets that account that will, by default, be paying for
// transactions and queries built with the client, the account's Ed25519PublicKey
// and a callback that will be invoked when a transaction needs to be signed.
func (client *Client) SetOperatorWith(accountID AccountID, publicKey Ed25519PublicKey, signer TransactionSigner) *Client {
client.operator = &operator{
accountID: accountID,
privateKey: nil,
publicKey: publicKey,
signer: signer,
}
return client
}
// SetMaxTransactionFee sets the maximum fee to be paid for the transactions
// executed by the Client.
// Because transaction fees are always maximums the actual fee assessed for
// a given transaction may be less than this value, but never greater.
func (client *Client) SetMaxTransactionFee(fee Hbar) *Client {
client.maxTransactionFee = fee
return client
}
// SetMaxQueryPayment sets the default maximum payment allowable for queries.
func (client *Client) SetMaxQueryPayment(payment Hbar) *Client {
client.maxQueryPayment = payment
return client
}
// Ping sends an AccountBalanceQuery to the specified node returning nil if no
// problems occur. Otherwise, an error representing the status of the node will
// be returned.
func (client *Client) Ping(nodeID AccountID) error {
node := client.networkNodes[nodeID]
if node == nil {
return fmt.Errorf("node with ID %s not registered on this client", nodeID)
}
pingQuery := NewAccountBalanceQuery().
SetAccountID(nodeID)
pb := pingQuery.QueryBuilder.pb
resp := new(proto.Response)
err := node.invoke(methodName(pb), pb, resp)
if err != nil {
return newErrPingStatus(err)
}
respHeader := mapResponseHeader(resp)
if respHeader.NodeTransactionPrecheckCode == proto.ResponseCodeEnum_BUSY {
return newErrPingStatus(fmt.Errorf("%s", Status(respHeader.NodeTransactionPrecheckCode).String()))
}
if isResponseUnknown(resp) {
return newErrPingStatus(fmt.Errorf("unknown"))
}
return nil
}
func (client *Client) randomNode() *node {
nodeIndex := rand.Intn(len(client.networkNodeIds))
nodeID := client.networkNodeIds[nodeIndex]
return client.networkNodes[nodeID]
}
func (client *Client) node(id AccountID) *node {
return client.networkNodes[id]
}
func (node *node) invoke(method string, in interface{}, out interface{}) error {
if node.conn == nil {
conn, err := grpc.Dial(node.address, grpc.WithInsecure())
if err != nil {
return newErrHederaNetwork(err)
}
node.conn = conn
}
err := node.conn.Invoke(context.TODO(), method, in, out)
if err != nil {
return newErrHederaNetwork(err)
}
return nil
}