-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathfireblocks_sdk.go
963 lines (767 loc) · 23.7 KB
/
fireblocks_sdk.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
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
package fireblocks
import (
"bytes"
crand "crypto/rand"
"crypto/rsa"
"crypto/sha256"
"crypto/tls"
"encoding/binary"
"encoding/hex"
"encoding/json"
"errors"
"fmt"
"github.com/gojek/heimdall/v7/hystrix"
"github.com/golang-jwt/jwt"
"github.com/shopspring/decimal"
log "github.com/sirupsen/logrus"
"io"
"io/ioutil"
"math/rand"
"net/http"
"net/url"
"strings"
"time"
)
type FbKeyMgmt struct {
privateKey *rsa.PrivateKey
apiKey string
rnd *rand.Rand
}
func NewInstanceKeyMgmt(pk *rsa.PrivateKey, apiKey string) *FbKeyMgmt {
var s secrets
k := new(FbKeyMgmt)
k.privateKey = pk
k.apiKey = apiKey
k.rnd = rand.New(s)
return k
}
const timeout = 5 * time.Millisecond
type secrets struct{}
func (s secrets) Seed(seed int64) {}
func (s secrets) Uint64() (r uint64) {
err := binary.Read(crand.Reader, binary.BigEndian, &r)
if err != nil {
log.Error(err)
}
return r
}
func (s secrets) Int63() int64 {
return int64(s.Uint64() & ^uint64(1<<63))
}
func (k *FbKeyMgmt) createAndSignJWTToken(path string, bodyJSON string) (string, error) {
token := &jwt.MapClaims{
"uri": path,
"nonce": k.rnd.Int63(),
"iat": time.Now().Unix(),
"exp": time.Now().Add(time.Second * 55).Unix(),
"sub": k.apiKey,
"bodyHash": createHash(bodyJSON),
}
j := jwt.NewWithClaims(jwt.SigningMethodRS256, token)
signedToken, err := j.SignedString(k.privateKey)
if err != nil {
log.Error(err)
}
return signedToken, err
}
func createHash(data string) string {
h := sha256.New()
h.Write([]byte(data))
hashed := h.Sum(nil)
return hex.EncodeToString(hashed)
}
type SDK struct {
httpClient *hystrix.Client
apiBaseURL string
kto *FbKeyMgmt
}
// NewInstance - create new type to handle Fireblocks API requests
func NewInstance(pk []byte, ak string, url string, t time.Duration) *SDK {
if t == time.Duration(0) {
// use default
t = timeout
}
s := new(SDK)
s.apiBaseURL = url
privateK, err := jwt.ParseRSAPrivateKeyFromPEM(pk)
if err != nil {
log.Error(err)
}
s.kto = NewInstanceKeyMgmt(privateK, ak)
s.httpClient = newCircuitBreakerHttpClient(t)
return s
}
func newCircuitBreakerHttpClient(t time.Duration) *hystrix.Client {
http.DefaultTransport.(*http.Transport).TLSClientConfig = &tls.Config{
InsecureSkipVerify: false,
}
c := hystrix.NewClient(hystrix.WithHTTPTimeout(t),
hystrix.WithFallbackFunc(func(err error) error {
log.Errorf("no fallback func implemented: %s", err)
return err
}))
return c
}
// getRequest - internal method to handle API call to Fireblocks
func (s *SDK) getRequest(path string) (string, error) {
urlEndPoint := s.apiBaseURL + path
token, err := s.kto.createAndSignJWTToken(path, "")
if err != nil {
log.Error(err)
return fmt.Sprintf("{message: \"%s.\"}", "error signing JWT token"), err
}
request, err := http.NewRequest(http.MethodGet, urlEndPoint, nil)
if err != nil {
log.Error(err)
return fmt.Sprintf("{message: \"%s.\"}", "error creating NewRequest"), err
}
request.Header.Add("X-API-Key", s.kto.apiKey)
request.Header.Add("Authorization", fmt.Sprintf("Bearer %v", token))
response, err := s.httpClient.Do(request)
if err != nil {
log.Error(err)
return "", err
}
defer func(Body io.ReadCloser) {
err := Body.Close()
if err != nil {
log.Error(err)
}
}(response.Body)
data, err := ioutil.ReadAll(response.Body)
if err != nil {
log.Errorf("error communicating with fireblocks: %v", err)
return "", err
}
if response.StatusCode >= 300 {
errMsg := fmt.Sprintf("fireblocks server: %s \n %s", response.Status, string(data))
log.Warning(errMsg)
}
return string(data), err
}
func (s *SDK) changeRequest(path string, payload []byte, idempotencyKey string, requestType string) (string, error) {
urlEndPoint := s.apiBaseURL + path
token, err := s.kto.createAndSignJWTToken(path, string(payload))
if err != nil {
log.Error(err)
return fmt.Sprintf("{message: \"%s.\"}", "error signing JWT token"), err
}
request, err := http.NewRequest(requestType, urlEndPoint, bytes.NewBuffer(payload))
if err != nil {
log.Error(err)
return fmt.Sprintf("{message: \"%s.\"}", "error creating NewRequest"), err
}
request.Header.Add("X-API-Key", string(s.kto.apiKey))
request.Header.Add("Authorization", fmt.Sprintf("Bearer %v", token))
request.Header.Add("Content-Type", "application/json")
if len(idempotencyKey) > 0 {
request.Header.Add("Idempotency-Key", idempotencyKey)
}
response, err := s.httpClient.Do(request)
if err != nil {
log.Error(err)
return "", err
}
defer func(Body io.ReadCloser) {
err := Body.Close()
if err != nil {
log.Error(err)
}
}(response.Body)
data, err := ioutil.ReadAll(response.Body)
if err != nil {
log.Errorf("error on communicating with Fireblocks: %v \n data: %s", err, data)
return "", err
}
if response.StatusCode >= 300 {
errMsg := fmt.Sprintf("fireblocks server: %s \n %s", response.Status, string(data))
log.Warning(errMsg)
}
return string(data), err
}
func (s *SDK) GetUsers() ([]User, error) {
returnedData, err := s.getRequest("/v1/users")
if err != nil {
log.Error(err)
return nil, err
}
var users []User
err = json.Unmarshal([]byte(returnedData), &users)
if err != nil {
log.Error(err)
return nil, err
}
return users, nil
}
// GetSupportedAssets - Gets all assets that are currently supported by Fireblocks API.
func (s *SDK) GetSupportedAssets() ([]AssetTypeResponse, error) {
returnedData, err := s.getRequest("/v1/supported_assets")
if err != nil {
log.Error(err)
return nil, err
}
var assetsTypeResponse []AssetTypeResponse
err = json.Unmarshal([]byte(returnedData), &assetsTypeResponse)
if err != nil {
log.Error(err)
return nil, err
}
return assetsTypeResponse, nil
}
// GetVaultAccounts - gets all vault accounts for the tenant.
func (s *SDK) GetVaultAccounts(namePrefix string, nameSuffix string, minAmountThreshold decimal.Decimal) ([]VaultAccount, error) {
query := "/v1/vault/accounts"
params := url.Values{}
if namePrefix != "" {
params.Add("namePrefix", namePrefix)
}
if nameSuffix != "" {
params.Add("nameSuffix", nameSuffix)
}
if minAmountThreshold.GreaterThan(decimal.NewFromFloat(0.0)) {
params.Add("minAmountThreshold", fmt.Sprintf("%s", minAmountThreshold))
}
if len(params) > 0 {
query = query + "?" + params.Encode()
}
returnedData, err := s.getRequest(query)
if err != nil {
return nil, err
}
var vaultAccounts []VaultAccount
err = json.Unmarshal([]byte(returnedData), &vaultAccounts)
if err != nil {
log.Error(err)
return nil, err
}
return vaultAccounts, nil
}
// GetVaultAccount - retrieve the vault account for the specified id.
func (s *SDK) GetVaultAccount(vaultAccountID string) (VaultAccount, error) {
query := fmt.Sprintf("/v1/vault/accounts/%s", vaultAccountID)
returnedData, err := s.getRequest(query)
if err != nil {
return VaultAccount{}, err
}
var vaultAccount VaultAccount
err = json.Unmarshal([]byte(returnedData), &vaultAccount)
if err != nil {
log.Error(err)
return VaultAccount{}, err
}
if vaultAccount.Id == "" {
return VaultAccount{}, errors.New(returnedData)
}
return vaultAccount, err
}
// GetVaultAccountAsset - Gets a single vault account asset
func (s *SDK) GetVaultAccountAsset(vaultAccountID string, assetID string) (VaultAsset, error) {
query := fmt.Sprintf("/v1/vault/accounts/%s/%s", vaultAccountID, assetID)
var vaultAsset VaultAsset
returnedData, err := s.getRequest(query)
if err != nil {
log.Error(err)
}
err = json.Unmarshal([]byte(returnedData), &vaultAsset)
if err != nil {
log.Errorf("failed to parse payload: %s. %v", returnedData, err)
return VaultAsset{}, err
}
return vaultAsset, err
}
// GetAddresses - Gets deposit addresses for an asset in a vault account
func (s *SDK) GetAddresses(vaultAccountID string, assetID string) ([]VaultAccountAssetAddress, error) {
query := fmt.Sprintf("/v1/vault/accounts/%s/%s/addresses", vaultAccountID, assetID)
returnedData, err := s.getRequest(query)
if err != nil {
return nil, err
}
var assetAddress []VaultAccountAssetAddress
err = json.Unmarshal([]byte(returnedData), &assetAddress)
if err != nil {
log.Errorf("failed to parse payload: %s. %v", returnedData, err)
return nil, err
}
return assetAddress, nil
}
// GetUnspentInputs - Gets utxo list for an asset in a vault account
func (s *SDK) GetUnspentInputs(vaultAccountID string, assetID string) (string, error) {
query := fmt.Sprintf("/v1/vault/accounts/%s/%s/unspent_inouts", vaultAccountID, assetID)
return s.getRequest(query)
}
// GenerateNewAddress - Generates a new address for an asset in a vault account
func (s *SDK) GenerateNewAddress(vaultAccountID string, assetID string, description string, customerRefID string,
idempotencyKey string,
) (CreateAddressResponse, error) {
query := fmt.Sprintf("/v1/vault/accounts/%s/%s/addresses", vaultAccountID, assetID)
payload := make(map[string]interface{})
if len(description) > 0 {
payload["description"] = description
}
if len(customerRefID) > 0 {
payload["customerRefId"] = customerRefID
}
marshalled, err := json.Marshal(payload)
if err != nil {
return CreateAddressResponse{}, err
}
returnedData, err := s.changeRequest(query, marshalled, idempotencyKey, http.MethodPost)
if err != nil {
log.Error(err)
log.Errorf("returned payload: %s", returnedData)
return CreateAddressResponse{}, err
}
var createdAddress CreateAddressResponse
err = json.Unmarshal([]byte(returnedData), &createdAddress)
if err != nil {
log.Errorf("failed to parse payload: %s. %v", returnedData, err)
return CreateAddressResponse{}, err
}
return createdAddress, nil
}
// SetAddressDescription - Sets the description of an existing address
func (s *SDK) SetAddressDescription(vaultAccountID string, assetID string, description string, address string, tag string) (string, error) {
payload := make(map[string]interface{})
if len(description) > 0 {
payload["description"] = description
}
var query string
if len(tag) > 0 {
query = fmt.Sprintf("/v1/vault/accounts/%s/%s/addresses/%s:%s", vaultAccountID, assetID, address, tag)
} else {
query = fmt.Sprintf("/v1/vault/accounts/%s/%s/addresses/%s", vaultAccountID, assetID, address)
}
marshalled, err := json.Marshal(payload)
if err != nil {
return "", err
}
return s.changeRequest(query, marshalled, "", http.MethodPut)
}
// GetNetworkConnections - Gets all network connections for your tenant
func (s *SDK) GetNetworkConnections() (string, error) {
return s.getRequest("/v1/network_connections")
}
// GetNetworkConnectionByID - Gets a single network connection by id
func (s *SDK) GetNetworkConnectionByID(connectionID string) (string, error) {
query := fmt.Sprintf("/v1/network_connections/%s", connectionID)
return s.getRequest(query)
}
// GetExchangeAccounts - Gets all exchange accounts for your tenant
func (s *SDK) GetExchangeAccounts() ([]ExchangeAccount, error) {
returnedData, err := s.getRequest("/v1/exchange_accounts")
if err != nil {
log.Error(err)
}
var exchangeAccounts []ExchangeAccount
err = json.Unmarshal([]byte(returnedData), &exchangeAccounts)
if err != nil {
log.Error(err)
return nil, err
}
return exchangeAccounts, nil
}
// GetExchangeAccount - Gets an exchange account for your tenant
func (s *SDK) GetExchangeAccount(exchangeID string) (ExchangeAccount, error) {
query := fmt.Sprintf("/v1/exchange_accounts/%s", exchangeID)
returnedData, err := s.getRequest(query)
if err != nil {
log.Error(err)
return ExchangeAccount{}, err
}
var exchangeAccount ExchangeAccount
err = json.Unmarshal([]byte(returnedData), &exchangeAccount)
if err != nil {
log.Error(err)
return ExchangeAccount{}, err
}
return exchangeAccount, nil
}
// GetExchangeAccountAsset - Get a specific asset from an exchange account
func (s *SDK) GetExchangeAccountAsset(exchangeID string, assetID string) (ExchangeAsset, error) {
query := fmt.Sprintf("/v1/exchange_accounts/%s/%s", exchangeID, assetID)
returnedData, err := s.getRequest(query)
if err != nil {
log.Error(err)
return ExchangeAsset{}, err
}
var exchangeAsset ExchangeAsset
err = json.Unmarshal([]byte(returnedData), &exchangeAsset)
if err != nil {
log.Error(err)
return ExchangeAsset{}, err
}
return exchangeAsset, nil
}
func (s *SDK) SetCustomerRefId(vaultAccountId string, customerRefId string, idempotencyKey string) error {
payload := map[string]interface{}{
"customerRefId": customerRefId,
}
marshalled, err := json.Marshal(payload)
if err != nil {
return err
}
query := fmt.Sprintf("/v1/vault/accounts/%s", vaultAccountId)
_, err = s.changeRequest(query, marshalled, idempotencyKey, http.MethodPost)
if err != nil {
log.Error(err)
return err
}
return nil
}
//POST /v1/webhooks/resend
func (s *SDK) ResendFailedWebhookEvents() error {
_, err := s.changeRequest("/v1/webhooks/resend", nil, "", http.MethodPost)
if err != nil {
log.Error(err)
}
return err
}
// CreateVaultAccount
// name - vaultaccount name - usually we use as a join of userid + product_id (XXXX_YYYY)
func (s *SDK) CreateVaultAccount(name string, hiddenOnUI bool, customerRefID string, autoFuel bool, idempotencyKey string) (VaultAccount, error) {
payload := map[string]interface{}{
"name": name,
"hiddenOnUI": hiddenOnUI,
"autoFuel": autoFuel,
}
if len(customerRefID) > 0 {
payload["customerRefId"] = customerRefID
}
marshalled, err := json.Marshal(payload)
if err != nil {
return VaultAccount{}, err
}
returnedData, err := s.changeRequest("/v1/vault/accounts", marshalled, idempotencyKey, http.MethodPost)
if err != nil {
log.Error(err)
}
var vaultAccount VaultAccount
err = json.Unmarshal([]byte(returnedData), &vaultAccount)
if err != nil {
log.Error(err)
}
if vaultAccount.Id == "" {
return vaultAccount, errors.New(returnedData)
}
return vaultAccount, err
}
//CreateVaultAsset
// creates a new wallet under the VaultAccount
// args:
// vaultAccountId
// assetId
func (s *SDK) CreateVaultAsset(vaultAccountId string, assetId string, idempotencyKey string) (CreateVaultAssetResponse, error) {
cmd := fmt.Sprintf("/v1/vault/accounts/%s/%s", vaultAccountId, assetId)
var createVaultAssetResponse CreateVaultAssetResponse
returnedData, err := s.changeRequest(cmd, nil, idempotencyKey, http.MethodPost)
if err != nil {
log.Error(err)
}
err = json.Unmarshal([]byte(returnedData), &createVaultAssetResponse)
if err != nil {
log.Error(err)
}
if createVaultAssetResponse.Id == "" {
return createVaultAssetResponse, errors.New(returnedData)
}
return createVaultAssetResponse, err
}
// CreateExternalWallet
// customerRefId - used for identifying our clients.
func (s *SDK) CreateExternalWallet(name string, customerRefId string, idempotencyKey string) (ExternalWallet, error) {
payload := map[string]interface{}{
"name": name,
}
if len(customerRefId) > 0 {
payload["customerRefId"] = customerRefId
}
marshalled, err := json.Marshal(payload)
if err != nil {
log.Error(err)
return ExternalWallet{}, err
}
returnedData, err := s.changeRequest("/v1/external_wallets", marshalled, idempotencyKey, http.MethodPost)
if err != nil {
log.Error(err)
return ExternalWallet{}, err
}
var externalWallet ExternalWallet
err = json.Unmarshal([]byte(returnedData), &externalWallet)
if err != nil {
log.Error(err)
return ExternalWallet{}, err
}
return externalWallet, nil
}
func (s *SDK) CreateExternalWalletAsset(walletId string, assetId string, address string, tag string, idempotencyKey string) (ExternalWalletAsset, error) {
cmd := fmt.Sprintf("/v1/external_wallets/%s/%s", walletId, assetId)
payload := map[string]interface{}{
"address": address,
}
if len(tag) > 0 {
payload["tag"] = tag
}
marshalled, err := json.Marshal(payload)
if err != nil {
return ExternalWalletAsset{}, err
}
returnedData, err := s.changeRequest(cmd, marshalled, idempotencyKey, http.MethodPost)
if err != nil {
log.Error(err)
return ExternalWalletAsset{}, err
}
var extWalletAsset ExternalWalletAsset
err = json.Unmarshal([]byte(returnedData), &extWalletAsset)
if err != nil {
log.Error(err)
return ExternalWalletAsset{}, err
}
return extWalletAsset, nil
}
//CreateInternalWallet
func (s *SDK) CreateInternalWallet(name string, customerRefId string, idempotencyKey string) (UnmanagedWallet, error) {
payload := map[string]interface{}{
"name": name,
"customerRefId": customerRefId,
}
marshalled, err := json.Marshal(payload)
if err != nil {
return UnmanagedWallet{}, err
}
returnedData, err := s.changeRequest("/v1/internal_wallets", marshalled, idempotencyKey, http.MethodPost)
if err != nil {
log.Error(err)
return UnmanagedWallet{}, err
}
var unmanagedWallet UnmanagedWallet
err = json.Unmarshal([]byte(returnedData), &unmanagedWallet)
if err != nil {
log.Error(err)
return UnmanagedWallet{}, err
}
return unmanagedWallet, nil
}
// CreateInternalWalletAsset
func (s *SDK) CreateInternalWalletAsset(walletId string, assetId string, address string, tag string, idempotencyKey string) (WalletAsset, error) {
cmd := fmt.Sprintf("/v1/internal_wallets/%s/%s", walletId, assetId)
payload := map[string]interface{}{
"address": address,
}
if len(tag) > 0 {
payload["tag"] = tag
}
marshalled, err := json.Marshal(payload)
if err != nil {
return WalletAsset{}, err
}
returnedData, err := s.changeRequest(cmd, marshalled, idempotencyKey, http.MethodPost)
if err != nil {
log.Error(err)
return WalletAsset{}, err
}
var walletAsset WalletAsset
err = json.Unmarshal([]byte(returnedData), &walletAsset)
if err != nil {
log.Error(err)
return WalletAsset{}, err
}
return walletAsset, nil
}
//GetEstimateTxFee
// Get the estimate fee for a tx.
func (s *SDK) GetEstimateTxFee(assetId string, amount string, source TransferPeerPath, destination DestinationTransferPeerPath, operation string) (EstimatedTransactionFeeResponse, error) {
payload := map[string]interface{}{
"assetId": assetId,
"amount": amount,
"source": source,
"destination": destination,
"operation": operation,
}
marshalled, err := json.Marshal(payload)
if err != nil {
return EstimatedTransactionFeeResponse{}, err
}
returnedData, err := s.changeRequest("/v1/transactions/estimate_fee", marshalled, "", http.MethodPost)
if err != nil {
log.Error(err)
return EstimatedTransactionFeeResponse{}, err
}
if strings.Contains(returnedData, "message") {
// {"message":"The asset is not supported by Fireblocks, please check the supported assets endpoint.","code":1025}
errMsg := fmt.Sprintf("Request failed: %s", returnedData)
return EstimatedTransactionFeeResponse{}, errors.New(errMsg)
}
var estimatedTxFee EstimatedTransactionFeeResponse
err = json.Unmarshal([]byte(returnedData), &estimatedTxFee)
if err != nil {
log.Error(err)
return EstimatedTransactionFeeResponse{}, err
}
return estimatedTxFee, nil
}
// CreateTransaction -
func (s *SDK) CreateTransaction(assetId string, amount decimal.Decimal, source TransferPeerPath,
destination DestinationTransferPeerPath, fee decimal.Decimal, gasPrice decimal.Decimal, waitForStatus bool,
txType TransactionType, note string, cpuStaking string, networkStaking string,
autoStaking string, customerRefId string, extraParams ExtraParameters, destinations []DestinationTransferPeerPath,
feeLevel FeeLevel, failOnFee bool, maxFee string, gasLimit decimal.Decimal, replaceTxByHash string, idempotencyKey string,
) (CreateTransactionResponse, error) {
payload := CreateTransactionPayload{
AssetId: assetId,
Source: source,
Destination: destination,
Amount: amount.String(),
TreatAsGrossAmount: false,
FailOnLowFee: false,
Operation: string(txType),
WaitForStatus: waitForStatus,
}
if fee.IsPositive() {
payload.Fee = fee.String()
}
if len(feeLevel) > 0 {
payload.FeeLevel = string(feeLevel)
}
if len(note) > 0 {
payload.Note = note
}
if len(maxFee) > 0 {
payload.MaxFee = maxFee
}
if gasPrice.IsPositive() {
payload.GasPrice = gasPrice.String()
}
if gasLimit.IsPositive() {
payload.GasLimit = gasLimit.String()
}
if len(cpuStaking) > 0 {
payload.CpuStaking = cpuStaking
}
if len(networkStaking) > 0 {
payload.NetworkStaking = networkStaking
}
if len(autoStaking) > 0 {
payload.AutoStaking = autoStaking
}
if len(customerRefId) > 0 {
payload.CustomerRefId = customerRefId
}
if len(replaceTxByHash) > 0 {
payload.ReplacedTxHash = replaceTxByHash
}
if extraParams != (ExtraParameters{}) {
payload.ExtraParameters = extraParams
}
if len(destinations) > 0 {
payload.Destinations = destinations
}
return s.CreateTransactionWithPayload(payload, idempotencyKey)
}
func (s *SDK) CreateTransactionWithPayload(payload CreateTransactionPayload, idempotencyKey string) (CreateTransactionResponse, error) {
marshalled, err := json.Marshal(payload)
if err != nil {
return CreateTransactionResponse{}, err
}
returnedData, err := s.changeRequest("/v1/transactions", marshalled, idempotencyKey, http.MethodPost)
if err != nil {
log.Error(err)
}
var transactionResponse CreateTransactionResponse
err = json.Unmarshal([]byte(returnedData), &transactionResponse)
if err != nil {
log.Error(err)
return CreateTransactionResponse{}, errors.New(returnedData)
}
return transactionResponse, err
}
func (s *SDK) GetVaultAssetsBalance(accountNamePrefix string, accountNameSuffix string) (string, error) {
params := url.Values{}
if len(accountNamePrefix) > 0 {
params.Add("accountNamePrefix", accountNamePrefix)
}
if len(accountNameSuffix) > 0 {
params.Add("accountNameSuffix", accountNameSuffix)
}
uri := "/v1/vault/assets"
if len(params) > 0 {
query := fmt.Sprintf(uri+"?%s", params.Encode())
return s.getRequest(query)
} else {
return s.getRequest(uri)
}
}
func (s *SDK) GetVaultBalanceByAsset(assetId string) (string, error) {
query := fmt.Sprintf("/v1/vault/assets/%s", assetId)
return s.getRequest(query)
}
// ValidateAddress - validates the address of a given asset.
// assetId - the id of the asset to validate the address
// address - the address to validate
func (s *SDK) ValidateAddress(assetId string, address string) (AddressStatus, error) {
query := fmt.Sprintf("/v1/transactions/validate_address/%s/%s", assetId, address)
returnedData, err := s.getRequest(query)
if err != nil {
log.Error(err)
return AddressStatus{}, err
}
var addressStatus AddressStatus
err = json.Unmarshal([]byte(returnedData), &addressStatus)
if err != nil {
log.Error(err)
return AddressStatus{}, err
}
return addressStatus, nil
}
// GetTransactionById - get the transaction details
// txId - transaction id
func (s *SDK) GetTransactionById(txId string) (TransactionDetails, error) {
query := fmt.Sprintf("/v1/transactions/%s", txId)
returnedData, err := s.getRequest(query)
if err != nil {
log.Error(err)
return TransactionDetails{}, err
}
var transactionDetails TransactionDetails
err = json.Unmarshal([]byte(returnedData), &transactionDetails)
if err != nil {
log.Error(err)
return TransactionDetails{}, err
}
return transactionDetails, nil
}
func (s *SDK) GetExternalWallets() ([]ExternalWallet, error) {
returnedData, err := s.getRequest("/v1/external_wallets")
if err != nil {
log.Error(err)
return nil, err
}
var extWallets []ExternalWallet
err = json.Unmarshal([]byte(returnedData), &extWallets)
if err != nil {
log.Error(err)
return nil, err
}
return extWallets, nil
}
func (s *SDK) GetExternalWallet(externalWalletId string) (ExternalWallet, error) {
query := fmt.Sprintf("/v1/external_wallets/%s", externalWalletId)
returnedData, err := s.getRequest(query)
if err != nil {
log.Error(err)
return ExternalWallet{}, err
}
extWallet, err2 := getExtWallet(returnedData)
if err2 != nil {
return ExternalWallet{}, err2
}
return extWallet, nil
}
func getExtWallet(returnedData string) (ExternalWallet, error) {
var extWallet ExternalWallet
err := json.Unmarshal([]byte(returnedData), &extWallet)
if err != nil {
log.Error(err)
return ExternalWallet{}, err
}
return extWallet, nil
}