-
Notifications
You must be signed in to change notification settings - Fork 65
/
client.go
726 lines (613 loc) · 23.4 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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
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 (
"context"
_ "embed"
"encoding/json"
"errors"
"fmt"
"io"
"os"
"time"
)
//go:embed addressbook/mainnet.pb
var mainnetAddress []byte
var mainnetNodes, _ = NodeAddressBookFromBytes(mainnetAddress)
//go:embed addressbook/previewnet.pb
var previewnetAddress []byte
var previewnetNodes, _ = NodeAddressBookFromBytes(previewnetAddress)
//go:embed addressbook/testnet.pb
var testnetAddress []byte
var testnetNodes, _ = NodeAddressBookFromBytes(testnetAddress)
// Client is the Hedera protocol wrapper for the SDK used by all
// transaction and query types.
type Client struct {
defaultMaxTransactionFee Hbar
defaultMaxQueryPayment Hbar
operator *_Operator
network _Network
mirrorNetwork *_MirrorNetwork
autoValidateChecksums bool
defaultRegenerateTransactionIDs bool
maxAttempts *int
maxBackoff time.Duration
minBackoff time.Duration
requestTimeout *time.Duration
defaultNetworkUpdatePeriod time.Duration
networkUpdateContext context.Context
cancelNetworkUpdate context.CancelFunc
logger Logger
}
// TransactionSigner is a closure or function that defines how transactions will be signed
type TransactionSigner func(message []byte) []byte
type _Operator struct {
accountID AccountID
privateKey *PrivateKey
publicKey PublicKey
signer TransactionSigner
}
var mainnetMirror = []string{"mainnet-public.mirrornode.hedera.com:443"}
var testnetMirror = []string{"testnet.mirrornode.hedera.com:443"}
var previewnetMirror = []string{"previewnet.mirrornode.hedera.com:443"}
// ClientForMirrorNetwork constructs a client given a set of mirror network nodes.
func ClientForMirrorNetwork(mirrorNetwork []string) (*Client, error) {
net := _NewNetwork()
client := _NewClient(net, mirrorNetwork, nil)
addressbook, err := NewAddressBookQuery().
SetFileID(FileIDForAddressBook()).
Execute(client)
if err != nil {
return nil, fmt.Errorf("failed to query address book: %v", err)
}
client.SetNetworkFromAddressBook(addressbook)
return client, nil
}
// ClientForNetwork constructs a client given a set of nodes.
func ClientForNetwork(network map[string]AccountID) *Client {
net := _NewNetwork()
client := _NewClient(net, []string{}, nil)
_ = client.SetNetwork(network)
net._SetLedgerID(*NewLedgerIDMainnet())
return client
}
// 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(*_NetworkForMainnet(mainnetNodes._ToMap()), mainnetMirror, NewLedgerIDMainnet())
}
// 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(*_NetworkForTestnet(testnetNodes._ToMap()), testnetMirror, NewLedgerIDTestnet())
}
// ClientForPreviewnet returns a preconfigured client for use with the standard
// Hedera previewnet.
// Most users will want to set an _Operator account with .SetOperator so
// transactions can be automatically given TransactionIDs and signed.
func ClientForPreviewnet() *Client {
return _NewClient(*_NetworkForPreviewnet(previewnetNodes._ToMap()), previewnetMirror, NewLedgerIDPreviewnet())
}
// 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 _Network, mirrorNetwork []string, ledgerId *LedgerID) *Client {
ctx, cancel := context.WithCancel(context.Background())
logger := NewLogger("hedera-sdk-go", LogLevel(os.Getenv("HEDERA_SDK_GO_LOG_LEVEL")))
var defaultLogger Logger = logger
client := Client{
defaultMaxQueryPayment: NewHbar(1),
network: network,
mirrorNetwork: _NewMirrorNetwork(),
autoValidateChecksums: false,
maxAttempts: nil,
minBackoff: 250 * time.Millisecond,
maxBackoff: 8 * time.Second,
defaultRegenerateTransactionIDs: true,
defaultNetworkUpdatePeriod: 24 * time.Hour,
networkUpdateContext: ctx,
cancelNetworkUpdate: cancel,
logger: defaultLogger,
}
client.SetMirrorNetwork(mirrorNetwork)
if ledgerId != nil {
client.SetLedgerID(*ledgerId)
}
// We can't ask for AddressBook from non existent Mirror node
if len(mirrorNetwork) > 0 {
// Update the Addressbook, before the default timeout starts
client._UpdateAddressBook()
go client._ScheduleNetworkUpdate(ctx, client.defaultNetworkUpdatePeriod)
}
return &client
}
func (client *Client) _UpdateAddressBook() {
addressbook, err := NewAddressBookQuery().
SetFileID(FileIDForAddressBook()).
Execute(client)
if err == nil && len(addressbook.NodeAddresses) > 0 {
client.SetNetworkFromAddressBook(addressbook)
}
}
func (client *Client) _ScheduleNetworkUpdate(ctx context.Context, duration time.Duration) {
for {
select {
case <-ctx.Done():
return
case <-time.After(duration):
client._UpdateAddressBook()
}
}
}
// CancelScheduledNetworkUpdate cancels the scheduled network update the network address book
func (client *Client) CancelScheduledNetworkUpdate() {
client.cancelNetworkUpdate()
}
// SetNetworkUpdatePeriod sets how often the client will update the network address book
func (client *Client) SetNetworkUpdatePeriod(period time.Duration) *Client {
client.defaultNetworkUpdatePeriod = period
client.CancelScheduledNetworkUpdate()
client.networkUpdateContext, client.cancelNetworkUpdate = context.WithCancel(context.Background())
go client._ScheduleNetworkUpdate(client.networkUpdateContext, period)
return client
}
// GetNetworkUpdatePeriod returns the current network update period
func (client *Client) GetNetworkUpdatePeriod() time.Duration {
return client.defaultNetworkUpdatePeriod
}
// ClientForName set up the client for the selected network.
func ClientForName(name string) (*Client, error) {
switch name {
case string(NetworkNameTestnet):
return ClientForTestnet(), nil
case string(NetworkNamePreviewnet):
return ClientForPreviewnet(), nil
case string(NetworkNameMainnet):
return ClientForMainnet(), nil
case "local", "localhost":
network := make(map[string]AccountID)
network["127.0.0.1:50213"] = AccountID{Account: 3}
mirror := []string{"127.0.0.1:5600"}
client := ClientForNetwork(network)
client.SetMirrorNetwork(mirror)
return client, nil
default:
return &Client{}, fmt.Errorf("%q is not recognized as a valid Hedera _Network", name)
}
}
type _ConfigOperator struct {
AccountID string `json:"accountId"`
PrivateKey string `json:"privateKey"`
}
// TODO: Implement complete spec: https://gitlab.com/launchbadge/hedera/sdk/python/-/issues/45
type _ClientConfig struct {
Network interface{} `json:"network"`
MirrorNetwork interface{} `json:"mirrorNetwork"`
Operator *_ConfigOperator `json:"operator"`
}
// ClientFromConfig takes in the byte slice representation of a JSON string or
// document and returns Client based on the configuration.
func ClientFromConfig(jsonBytes []byte) (*Client, error) {
var clientConfig _ClientConfig
var client *Client
err := json.Unmarshal(jsonBytes, &clientConfig)
if err != nil {
return nil, err
}
network := _NewNetwork()
networkAddresses := make(map[string]AccountID)
switch net := clientConfig.Network.(type) {
case map[string]interface{}:
for url, inter := range net {
switch id := inter.(type) {
case string:
accountID, err := AccountIDFromString(id)
if err != nil {
return client, err
}
networkAddresses[url] = accountID
default:
return client, errors.New("network is expected to be map of string to string, or string")
}
}
err = network.SetNetwork(networkAddresses)
if err != nil {
return &Client{}, err
}
case string:
if len(net) > 0 {
switch net {
case string(NetworkNameMainnet):
network = *_NetworkForMainnet(mainnetNodes._ToMap())
case string(NetworkNamePreviewnet):
network = *_NetworkForPreviewnet(previewnetNodes._ToMap())
case string(NetworkNameTestnet):
network = *_NetworkForTestnet(testnetNodes._ToMap())
}
}
default:
return client, errors.New("network is expected to be map of string to string, or string")
}
switch mirror := clientConfig.MirrorNetwork.(type) {
case []interface{}:
arr := make([]string, len(mirror))
for i, inter := range mirror {
switch str := inter.(type) {
case string:
arr[i] = str
default:
return client, errors.New("mirrorNetwork is expected to be either string or an array of strings")
}
}
client = _NewClient(network, arr, nil)
case string:
if len(mirror) > 0 {
switch mirror {
case string(NetworkNameMainnet):
client = _NewClient(network, mainnetMirror, NewLedgerIDMainnet())
case string(NetworkNameTestnet):
client = _NewClient(network, testnetMirror, NewLedgerIDTestnet())
case string(NetworkNamePreviewnet):
client = _NewClient(network, previewnetMirror, NewLedgerIDPreviewnet())
}
}
case nil:
client = _NewClient(network, []string{}, nil)
default:
return client, errors.New("mirrorNetwork is expected to be a string, an array of strings or nil")
}
// 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 client, err
}
operatorKey, err := PrivateKeyFromString(clientConfig.Operator.PrivateKey)
if err != nil {
return client, err
}
operator := _Operator{
accountID: operatorID,
privateKey: &operatorKey,
publicKey: operatorKey.PublicKey(),
signer: operatorKey.Sign,
}
client.operator = &operator
return client, nil
}
// ClientFromConfigFile takes a filename string representing the path to a JSON encoded
// Client file and returns a Client based on the configuration.
func ClientFromConfigFile(filename string) (*Client, error) {
file, err := os.Open(filename)
if err != nil {
return nil, err
}
defer func() {
err = file.Close()
}()
configBytes, err := io.ReadAll(file)
if err != nil {
return nil, err
}
return ClientFromConfig(configBytes)
}
// Close is used to disconnect the Client from the _Network
func (client *Client) Close() error {
client.CancelScheduledNetworkUpdate()
err := client.network._Close()
if err != nil {
return err
}
err = client.mirrorNetwork._Close()
if err != nil {
return err
}
return nil
}
// SetNetwork replaces all nodes in this Client with a new set of nodes.
func (client *Client) SetNetwork(network map[string]AccountID) error {
return client.network.SetNetwork(network)
}
// GetNetwork returns the current set of nodes in this Client.
func (client *Client) GetNetwork() map[string]AccountID {
return client.network._GetNetwork()
}
// SetMaxNodeReadmitTime The maximum amount of time to wait before attempting to
// reconnect to a node that has been removed from the network.
func (client *Client) SetMaxNodeReadmitTime(readmitTime time.Duration) {
client.network._SetMaxNodeReadmitPeriod(readmitTime)
}
// GetMaxNodeReadmitTime returns the maximum amount of time to wait before attempting to
// reconnect to a node that has been removed from the network.
func (client *Client) GetMaxNodeReadmitPeriod() time.Duration {
return client.network._GetMaxNodeReadmitPeriod()
}
// SetMinNodeReadmitTime The minimum amount of time to wait before attempting to
// reconnect to a node that has been removed from the network.
func (client *Client) SetMinNodeReadmitTime(readmitTime time.Duration) {
client.network._SetMinNodeReadmitPeriod(readmitTime)
}
// GetMinNodeReadmitTime returns the minimum amount of time to wait before attempting to
// reconnect to a node that has been removed from the network.
func (client *Client) GetMinNodeReadmitPeriod() time.Duration {
return client.network._GetMinNodeReadmitPeriod()
}
// 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 (client *Client) SetMaxBackoff(max time.Duration) {
if max.Nanoseconds() < 0 {
panic("maxBackoff must be a positive duration")
} else if max.Nanoseconds() < client.minBackoff.Nanoseconds() {
panic("maxBackoff must be greater than or equal to minBackoff")
}
client.maxBackoff = max
}
// GetMaxBackoff returns the maximum amount of time to wait between retries.
func (client *Client) GetMaxBackoff() time.Duration {
return client.maxBackoff
}
// SetMinBackoff sets the minimum amount of time to wait between retries.
func (client *Client) SetMinBackoff(min time.Duration) {
if min.Nanoseconds() < 0 {
panic("minBackoff must be a positive duration")
} else if client.maxBackoff.Nanoseconds() < min.Nanoseconds() {
panic("minBackoff must be less than or equal to maxBackoff")
}
client.minBackoff = min
}
// GetMinBackoff returns the minimum amount of time to wait between retries.
func (client *Client) GetMinBackoff() time.Duration {
return client.minBackoff
}
// SetMaxAttempts sets the maximum number of times to attempt a transaction or query.
func (client *Client) SetMaxAttempts(max int) {
client.maxAttempts = &max
}
// GetMaxAttempts returns the maximum number of times to attempt a transaction or query.
func (client *Client) GetMaxAttempts() int {
if client.maxAttempts == nil {
return -1
}
return *client.maxAttempts
}
// SetMaxNodeAttempts sets the maximum number of times to attempt a transaction or query on a single node.
func (client *Client) SetMaxNodeAttempts(max int) {
client.network._SetMaxNodeAttempts(max)
}
// GetMaxNodeAttempts returns the maximum number of times to attempt a transaction or query on a single node.
func (client *Client) GetMaxNodeAttempts() int {
return client.network._GetMaxNodeAttempts()
}
// Deprecated: use SetNodeMinBackoff
func (client *Client) SetNodeWaitTime(nodeWait time.Duration) {
client.network._SetNodeMinBackoff(nodeWait)
}
// Deprecated: use GetNodeMinBackoff
func (client *Client) GetNodeWaitTime() time.Duration {
return client.network._GetNodeMinBackoff()
}
// SetNodeMinBackoff sets the minimum amount of time to wait between retries on a single node.
func (client *Client) SetNodeMinBackoff(nodeWait time.Duration) {
client.network._SetNodeMinBackoff(nodeWait)
}
// GetNodeMinBackoff returns the minimum amount of time to wait between retries on a single node.
func (client *Client) GetNodeMinBackoff() time.Duration {
return client.network._GetNodeMinBackoff()
}
// SetNodeMaxBackoff sets the maximum amount of time to wait between retries on a single node.
func (client *Client) SetNodeMaxBackoff(nodeWait time.Duration) {
client.network._SetNodeMaxBackoff(nodeWait)
}
// GetNodeMaxBackoff returns the maximum amount of time to wait between retries on a single node.
func (client *Client) GetNodeMaxBackoff() time.Duration {
return client.network._GetNodeMaxBackoff()
}
// SetMaxNodesPerTransaction sets the maximum number of nodes to try for a single transaction.
func (client *Client) SetMaxNodesPerTransaction(max int) {
client.network._SetMaxNodesPerTransaction(max)
}
// SetNetwork replaces all _Nodes in the Client with a new set of _Nodes.
// (e.g. for an Address Book update).
func (client *Client) SetMirrorNetwork(mirrorNetwork []string) {
_ = client.mirrorNetwork._SetNetwork(mirrorNetwork)
}
// GetNetwork returns the mirror network node list.
func (client *Client) GetMirrorNetwork() []string {
return client.mirrorNetwork._GetNetwork()
}
// SetTransportSecurity sets if transport security should be used to connect to consensus nodes.
// If transport security is enabled all connections to consensus nodes will use TLS, and
// the server's certificate hash will be compared to the hash stored in the NodeAddressBook
// for the given network.
// *Note*: If transport security is enabled, but {@link Client#isVerifyCertificates()} is disabled
// then server certificates will not be verified.
func (client *Client) SetTransportSecurity(tls bool) *Client {
client.network._SetTransportSecurity(tls)
return client
}
// SetCertificateVerification sets if server certificates should be verified against an existing address book.
func (client *Client) SetCertificateVerification(verify bool) *Client {
client.network._SetVerifyCertificate(verify)
return client
}
// GetCertificateVerification returns if server certificates should be verified against an existing address book.
func (client *Client) GetCertificateVerification() bool {
return client.network._GetVerifyCertificate()
}
// Deprecated: Use SetLedgerID instead
func (client *Client) SetNetworkName(name NetworkName) {
ledgerID, _ := LedgerIDFromNetworkName(name)
client.SetLedgerID(*ledgerID)
}
// Deprecated: Use GetLedgerID instead
func (client *Client) GetNetworkName() *NetworkName {
name, _ := client.GetLedgerID().ToNetworkName()
return &name
}
// SetLedgerID sets the ledger ID for the Client.
func (client *Client) SetLedgerID(id LedgerID) {
client.network._SetLedgerID(id)
}
// GetLedgerID returns the ledger ID for the Client.
func (client *Client) GetLedgerID() *LedgerID {
return client.network._GetLedgerID()
}
// SetAutoValidateChecksums sets if an automatic entity ID checksum validation should be performed.
func (client *Client) SetAutoValidateChecksums(validate bool) {
client.autoValidateChecksums = validate
}
// GetAutoValidateChecksums returns if an automatic entity ID checksum validation should be performed.
func (client *Client) GetAutoValidateChecksums() bool {
return client.autoValidateChecksums
}
// SetDefaultRegenerateTransactionIDs sets if an automatic transaction ID regeneration should be performed.
func (client *Client) SetDefaultRegenerateTransactionIDs(regen bool) {
client.defaultRegenerateTransactionIDs = regen
}
// GetDefaultRegenerateTransactionIDs returns if an automatic transaction ID regeneration should be performed.
func (client *Client) GetDefaultRegenerateTransactionIDs() bool {
return client.defaultRegenerateTransactionIDs
}
// SetNodeMinReadmitPeriod sets the minimum amount of time to wait before attempting to
// reconnect to a node that has been removed from the network.
func (client *Client) SetNodeMinReadmitPeriod(period time.Duration) {
client.network._SetNodeMinReadmitPeriod(period)
}
// SetNodeMaxReadmitPeriod sets the maximum amount of time to wait before attempting to
// reconnect to a node that has been removed from the network.
func (client *Client) SetNodeMaxReadmitPeriod(period time.Duration) {
client.network._SetNodeMaxReadmitPeriod(period)
}
// GetNodeMinReadmitPeriod returns the minimum amount of time to wait before attempting to
// reconnect to a node that has been removed from the network.
func (client *Client) GetNodeMinReadmitPeriod() time.Duration {
return client.network._GetNodeMinReadmitPeriod()
}
// GetNodeMaxReadmitPeriod returns the maximum amount of time to wait before attempting to
// reconnect to a node that has been removed from the network.
func (client *Client) GetNodeMaxReadmitPeriod() time.Duration {
return client.network._GetNodeMaxReadmitPeriod()
}
// 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 PrivateKey) *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 PublicKey
// and a callback that will be invoked when a transaction needs to be signed.
func (client *Client) SetOperatorWith(accountID AccountID, publicKey PublicKey, signer TransactionSigner) *Client {
client.operator = &_Operator{
accountID: accountID,
privateKey: nil,
publicKey: publicKey,
signer: signer,
}
return client
}
// SetRequestTimeout sets the timeout for all requests made by the client.
func (client *Client) SetRequestTimeout(timeout *time.Duration) {
client.requestTimeout = timeout
}
// GetRequestTimeout returns the timeout for all requests made by the client.
func (client *Client) GetRequestTimeout() *time.Duration {
return client.requestTimeout
}
// GetOperatorAccountID returns the ID for the _Operator
func (client *Client) GetOperatorAccountID() AccountID {
if client.operator != nil {
return client.operator.accountID
}
return AccountID{}
}
// GetOperatorPublicKey returns the Key for the _Operator
func (client *Client) GetOperatorPublicKey() PublicKey {
if client.operator != nil {
return client.operator.publicKey
}
return PublicKey{}
}
// 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 {
_, err := NewAccountBalanceQuery().
SetNodeAccountIDs([]AccountID{nodeID}).
SetAccountID(client.GetOperatorAccountID()).
Execute(client)
return err
}
func (client *Client) PingAll() {
for _, s := range client.GetNetwork() {
_ = client.Ping(s)
}
}
// SetNetworkFromAddressBook replaces all nodes in this Client with the nodes in the Address Book.
func (client *Client) SetNetworkFromAddressBook(addressBook NodeAddressBook) *Client {
client.network._SetNetworkFromAddressBook(addressBook)
return client
}
// SetDefaultMaxQueryPayment sets the default maximum payment allowed for queries.
func (client *Client) SetDefaultMaxQueryPayment(defaultMaxQueryPayment Hbar) error {
if defaultMaxQueryPayment.AsTinybar() < 0 {
return errors.New("DefaultMaxQueryPayment must be non-negative")
}
client.defaultMaxQueryPayment = defaultMaxQueryPayment
return nil
}
// GetDefaultMaxQueryPayment returns the default maximum payment allowed for queries.
func (client *Client) GetDefaultMaxQueryPayment() Hbar {
return client.defaultMaxQueryPayment
}
// SetDefaultMaxTransactionFee sets the default maximum fee allowed for transactions.
func (client *Client) SetDefaultMaxTransactionFee(defaultMaxTransactionFee Hbar) error {
if defaultMaxTransactionFee.AsTinybar() < 0 {
return errors.New("DefaultMaxTransactionFee must be non-negative")
}
client.defaultMaxTransactionFee = defaultMaxTransactionFee
return nil
}
// GetDefaultMaxTransactionFee returns the default maximum fee allowed for transactions.
func (client *Client) GetDefaultMaxTransactionFee() Hbar {
return client.defaultMaxTransactionFee
}
func (client *Client) SetLogger(logger Logger) *Client {
client.logger = logger
return client
}
func (client *Client) GetLogger() Logger {
return client.logger
}
func (client *Client) SetLogLevel(level LogLevel) *Client {
client.logger.SetLevel(level)
return client
}