-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
v5_asset_service.go
673 lines (559 loc) · 22.3 KB
/
v5_asset_service.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
package bybit
import (
"encoding/json"
"fmt"
"strconv"
"strings"
"github.com/google/go-querystring/query"
"github.com/google/uuid"
)
// V5AssetServiceI :
type V5AssetServiceI interface {
CreateInternalTransfer(V5CreateInternalTransferParam) (*V5CreateInternalTransferResponse, error)
GetInternalTransferRecords(V5GetInternalTransferRecordsParam) (*V5GetInternalTransferRecordsResponse, error)
CreateUniversalTransfer(V5CreateUniversalTransferParam) (*V5CreateUniversalTransferResponse, error)
GetUniversalTransferRecords(V5GetUniversalTransferRecordsParam) (*V5GetUniversalTransferRecordsResponse, error)
GetDepositRecords(V5GetDepositRecordsParam) (*V5GetDepositRecordsResponse, error)
GetSubDepositRecords(V5GetSubDepositRecordsParam) (*V5GetSubDepositRecordsResponse, error)
GetInternalDepositRecords(V5GetInternalDepositRecordsParam) (*V5GetInternalDepositRecordsResponse, error)
GetMasterDepositAddress(V5GetMasterDepositAddressParam) (*V5GetMasterDepositAddressResponse, error)
GetWithdrawalRecords(V5GetWithdrawalRecordsParam) (*V5GetWithdrawalRecordsResponse, error)
GetCoinInfo(V5GetCoinInfoParam) (*V5GetCoinInfoResponse, error)
GetAllCoinsBalance(V5GetAllCoinsBalanceParam) (*V5GetAllCoinsBalanceResponse, error)
Withdraw(param V5WithdrawParam) (*V5WithdrawResponse, error)
}
// V5AssetService :
type V5AssetService struct {
client *Client
}
// V5CreateInternalTransferParam :
type V5CreateInternalTransferParam struct {
TransferID string `json:"transferId"`
Coin Coin `json:"coin"`
Amount string `json:"amount"`
FromAccountType AccountTypeV5 `json:"fromAccountType"`
ToAccountType AccountTypeV5 `json:"toAccountType"`
}
func (p V5CreateInternalTransferParam) validate() error {
if _, err := uuid.Parse(p.TransferID); err != nil {
return fmt.Errorf("%w: transferId must be a valid UUID", err)
}
amount, err := strconv.ParseFloat(p.Amount, 64)
if err != nil {
return fmt.Errorf("%w: parse amount", err)
}
if amount <= 0 {
return fmt.Errorf("amount must be positive")
}
if p.Coin == "" || p.FromAccountType == "" || p.ToAccountType == "" {
return fmt.Errorf("coin, fromAccountType and toAccountType needed")
}
if p.FromAccountType == p.ToAccountType {
return fmt.Errorf("toAccountType and fromAccountType must differ")
}
return nil
}
// V5CreateInternalTransferResponse :
type V5CreateInternalTransferResponse struct {
CommonV5Response `json:",inline"`
Result V5CreateInternalTransferResult `json:"result"`
}
// V5CreateInternalTransferResult :
type V5CreateInternalTransferResult struct {
TransferID string `json:"transferId"`
}
// CreateInternalTransfer :
func (s *V5AssetService) CreateInternalTransfer(param V5CreateInternalTransferParam) (*V5CreateInternalTransferResponse, error) {
var res V5CreateInternalTransferResponse
if err := param.validate(); err != nil {
return nil, fmt.Errorf("validate param: %w", err)
}
body, err := json.Marshal(param)
if err != nil {
return &res, fmt.Errorf("json marshal: %w", err)
}
if err := s.client.postV5JSON("/v5/asset/transfer/inter-transfer", body, &res); err != nil {
return &res, err
}
return &res, nil
}
// V5GetInternalTransferRecordsParam :
type V5GetInternalTransferRecordsParam struct {
TransferID *string `url:"transferId,omitempty"`
Coin *Coin `url:"coin,omitempty"`
Status *TransferStatusV5 `url:"status,omitempty"`
StartTime *int64 `url:"startTime,omitempty"` // The start timestamp (ms)
EndTime *int64 `url:"endTime,omitempty"` // The start timestamp (ms)
Limit *int `url:"limit,omitempty"` // Limit for data size per page. [1, 50]. Default: 20
Cursor *string `url:"cursor,omitempty"`
}
// V5GetInternalTransferRecordsResponse :
type V5GetInternalTransferRecordsResponse struct {
CommonV5Response `json:",inline"`
Result V5GetInternalTransferRecordsResult `json:"result"`
}
// V5GetInternalTransferRecordsResult :
type V5GetInternalTransferRecordsResult struct {
List V5GetInternalTransferRecordsList `json:"list"`
NextPageCursor string `json:"nextPageCursor"`
}
// V5GetInternalTransferRecordsList :
type V5GetInternalTransferRecordsList []V5GetInternalTransferRecordsItem
// V5GetInternalTransferRecordsItem :
type V5GetInternalTransferRecordsItem struct {
TransferID string `json:"transferId"`
Coin Coin `json:"coin"`
Amount string `json:"amount"`
FromAccountType AccountTypeV5 `json:"fromAccountType"`
ToAccountType AccountTypeV5 `json:"toAccountType"`
Timestamp string `json:"timestamp"`
Status TransferStatusV5 `json:"status"`
}
// GetInternalTransferRecords :
func (s *V5AssetService) GetInternalTransferRecords(param V5GetInternalTransferRecordsParam) (*V5GetInternalTransferRecordsResponse, error) {
var res V5GetInternalTransferRecordsResponse
queryString, err := query.Values(param)
if err != nil {
return nil, err
}
if err := s.client.getV5Privately("/v5/asset/transfer/query-inter-transfer-list", queryString, &res); err != nil {
return nil, err
}
return &res, nil
}
type V5CreateUniversalTransferParam struct {
TransferID string `json:"transferId"`
Coin Coin `json:"coin"`
Amount string `json:"amount"`
FromAccountType AccountTypeV5 `json:"fromAccountType"`
ToAccountType AccountTypeV5 `json:"toAccountType"`
FromMemberID int `json:"fromMemberId"`
ToMemberID int `json:"toMemberId"`
}
func (p V5CreateUniversalTransferParam) validate() error {
if _, err := uuid.Parse(p.TransferID); err != nil {
return fmt.Errorf("%w: transferId must be a valid UUID", err)
}
amount, err := strconv.ParseFloat(p.Amount, 64)
if err != nil {
return fmt.Errorf("%w: parse amount", err)
}
if amount <= 0 {
return fmt.Errorf("amount must be positive")
}
if p.Coin == "" || p.FromAccountType == "" || p.ToAccountType == "" {
return fmt.Errorf("coin, fromAccountType and toAccountType needed")
}
return nil
}
type V5CreateUniversalTransferResponse struct {
CommonV5Response `json:",inline"`
Result V5CreateInternalTransferResult `json:"result"`
}
type V5CreateUniversalTransferResult struct {
TransferID string `json:"transferId"`
}
func (s *V5AssetService) CreateUniversalTransfer(param V5CreateUniversalTransferParam) (*V5CreateUniversalTransferResponse, error) {
var res V5CreateUniversalTransferResponse
if err := param.validate(); err != nil {
return nil, fmt.Errorf("validate param: %w", err)
}
body, err := json.Marshal(param)
if err != nil {
return &res, fmt.Errorf("json marshal: %w", err)
}
if err := s.client.postV5JSON("/v5/asset/transfer/universal-transfer", body, &res); err != nil {
return &res, err
}
return &res, nil
}
type V5GetUniversalTransferRecordsParam struct {
TransferID *string `url:"transferId,omitempty"`
Coin *Coin `url:"coin,omitempty"`
Status *TransferStatusV5 `url:"status,omitempty"`
StartTime *int64 `url:"startTime,omitempty"` // The start timestamp (ms)
EndTime *int64 `url:"endTime,omitempty"` // The start timestamp (ms)
Limit *int `url:"limit,omitempty"` // Limit for data size per page. [1, 50]. Default: 20
Cursor *string `url:"cursor,omitempty"`
}
type V5GetUniversalTransferRecordsResponse struct {
CommonV5Response `json:",inline"`
Result V5GetUniversalTransferRecordsResult `json:"result"`
}
type V5GetUniversalTransferRecordsResult struct {
List V5GetUniversalTransferRecordsList `json:"list"`
NextPageCursor string `json:"nextPageCursor"`
}
type V5GetUniversalTransferRecordsList []V5GetUniversalTransferRecordsItem
type V5GetUniversalTransferRecordsItem struct {
TransferID string `json:"transferId"`
Coin Coin `json:"coin"`
Amount string `json:"amount"`
FromMemberID string `json:"fromMemberId"`
ToMemberID string `json:"toMemberId"`
FromAccountType AccountTypeV5 `json:"fromAccountType"`
ToAccountType AccountTypeV5 `json:"toAccountType"`
Timestamp string `json:"timestamp"`
Status TransferStatusV5 `json:"status"`
}
func (s *V5AssetService) GetUniversalTransferRecords(param V5GetUniversalTransferRecordsParam) (*V5GetUniversalTransferRecordsResponse, error) {
var res V5GetUniversalTransferRecordsResponse
queryString, err := query.Values(param)
if err != nil {
return nil, err
}
if err := s.client.getV5Privately("/v5/asset/transfer/query-universal-transfer-list", queryString, &res); err != nil {
return nil, err
}
return &res, nil
}
// V5GetDepositRecordsParam :
type V5GetDepositRecordsParam struct {
Coin *Coin `url:"coin,omitempty"`
StartTime *int64 `url:"startTime,omitempty"` // Start time (ms). Default value: 30 days before the current time
EndTime *int64 `url:"endTime,omitempty"` // End time (ms). Default value: current time
Limit *int `url:"limit,omitempty"` // Number of items per page, [1, 50]. Default value: 50
Cursor *string `url:"cursor,omitempty"`
}
// V5GetDepositRecordsResponse :
type V5GetDepositRecordsResponse struct {
CommonV5Response `json:",inline"`
Result V5GetDepositRecordsResult `json:"result"`
}
// V5GetDepositRecordsResult :
type V5GetDepositRecordsResult struct {
Rows V5GetDepositRecordsRows `json:"rows"`
NextPageCursor string `json:"nextPageCursor"`
}
// V5GetDepositRecordsRows :
type V5GetDepositRecordsRows []V5GetDepositRecordsRow
// V5GetDepositRecordsRow :
type V5GetDepositRecordsRow struct {
Coin Coin `json:"coin"`
Chain string `json:"chain"`
Amount string `json:"amount"`
TxID string `json:"txID"`
Status DepositStatusV5 `json:"status"`
ToAddress string `json:"toAddress"`
Tag string `json:"tag"`
DepositFee string `json:"depositFee"`
SuccessAt string `json:"successAt"`
Confirmations string `json:"confirmations"`
TxIndex string `json:"txIndex"`
BlockHash string `json:"blockHash"`
}
// GetDepositRecords :
func (s *V5AssetService) GetDepositRecords(param V5GetDepositRecordsParam) (*V5GetDepositRecordsResponse, error) {
var res V5GetDepositRecordsResponse
queryString, err := query.Values(param)
if err != nil {
return nil, err
}
if err := s.client.getV5Privately("/v5/asset/deposit/query-record", queryString, &res); err != nil {
return nil, err
}
return &res, nil
}
// V5GetSubDepositRecordsParam :
type V5GetSubDepositRecordsParam struct {
SubMemberID string `url:"subMemberId"`
Coin *Coin `url:"coin,omitempty"`
StartTime *int64 `url:"startTime,omitempty"` // Start time (ms). Default value: 30 days before the current time
EndTime *int64 `url:"endTime,omitempty"` // The start timestamp (ms)
Limit *int `url:"limit,omitempty"` // Limit for data size per page. [1, 50]. Default: 50
Cursor *string `url:"cursor,omitempty"`
}
// V5GetSubDepositRecordsResponse :
type V5GetSubDepositRecordsResponse struct {
CommonV5Response `json:",inline"`
Result V5GetSubDepositRecordsResult `json:"result"`
}
// V5GetSubDepositRecordsResult :
type V5GetSubDepositRecordsResult struct {
Rows V5GetSubDepositRecordsRows `json:"rows"`
NextPageCursor string `json:"nextPageCursor"`
}
// V5GetSubDepositRecordsRows :
type V5GetSubDepositRecordsRows []V5GetSubDepositRecordsRow
// V5GetSubDepositRecordsRow :
type V5GetSubDepositRecordsRow struct {
Coin Coin `json:"coin"`
Chain string `json:"chain"`
Amount string `json:"amount"`
TxID string `json:"txID"`
Status DepositStatusV5 `json:"status"`
ToAddress string `json:"toAddress"`
Tag string `json:"tag"`
DepositFee string `json:"depositFee"`
SuccessAt string `json:"successAt"`
Confirmations string `json:"confirmations"`
TxIndex string `json:"txIndex"`
BlockHash string `json:"blockHash"`
}
// GetSubDepositRecords :
func (s *V5AssetService) GetSubDepositRecords(param V5GetSubDepositRecordsParam) (*V5GetSubDepositRecordsResponse, error) {
var res V5GetSubDepositRecordsResponse
queryString, err := query.Values(param)
if err != nil {
return nil, err
}
if err := s.client.getV5Privately("/v5/asset/deposit/query-sub-member-record", queryString, &res); err != nil {
return nil, err
}
return &res, nil
}
// V5GetInternalDepositRecordsParam :
type V5GetInternalDepositRecordsParam struct {
StartTime *int64 `url:"startTime,omitempty"` // Start time (ms). Default value: 30 days before the current time
EndTime *int64 `url:"endTime,omitempty"` // End time (ms). Default value: current time
Coin *Coin `url:"coin,omitempty"`
Cursor *string `url:"cursor,omitempty"`
Limit *int `url:"limit,omitempty"` // Number of items per page, [1, 50]. Default value: 50
}
// V5GetInternalDepositRecordsResponse :
type V5GetInternalDepositRecordsResponse struct {
CommonV5Response `json:",inline"`
Result V5GetInternalDepositRecordsResult `json:"result"`
}
// V5GetInternalDepositRecordsResult :
type V5GetInternalDepositRecordsResult struct {
Rows V5GetInternalDepositRecordsRows `json:"rows"`
NextPageCursor string `json:"nextPageCursor"`
}
// V5GetInternalDepositRecordsRows :
type V5GetInternalDepositRecordsRows []V5GetInternalDepositRecordsRow
// V5GetInternalDepositRecordsRow :
type V5GetInternalDepositRecordsRow struct {
ID string `json:"id"`
Type string `json:"type"`
Coin Coin `json:"coin"`
Amount string `json:"amount"`
Status InternalDepositStatusV5 `json:"status"`
Address string `json:"address"` // Email address or phone number
CreatedTime string `json:"createdTime"`
}
// GetInternalDepositRecords :
func (s *V5AssetService) GetInternalDepositRecords(param V5GetInternalDepositRecordsParam) (*V5GetInternalDepositRecordsResponse, error) {
var res V5GetInternalDepositRecordsResponse
queryString, err := query.Values(param)
if err != nil {
return nil, err
}
if err := s.client.getV5Privately("/v5/asset/deposit/query-internal-record", queryString, &res); err != nil {
return nil, err
}
return &res, nil
}
type V5GetMasterDepositAddressParam struct {
Coin Coin `url:"coin"`
ChainType *string `url:"chainType,omitempty"`
}
// "coin": "USDT",
// "chains": [
// {
// "chainType": "ERC20",
// "addressDeposit": "0xd9e1cd77afa0e50b452a62fbb68a3340602286c3",
// "tagDeposit": "",
// "chain": "ETH",
// "batchReleaseLimit": "-1"
// }
// ]
type V5GetMasterDepositAddressChain struct {
ChainType string `json:"chainType"`
AddressDeposit string `json:"addressDeposit"`
TagDeposit string `json:"tagDeposit"`
Chain string `json:"chain"`
BatchReleaseLimit string `json:"batchReleaseLimit"`
}
type V5GetMasterDepositAddressResult struct {
Coin Coin `json:"coin"`
Chains []V5GetMasterDepositAddressChain `json:"chains"`
}
type V5GetMasterDepositAddressResponse struct {
CommonV5Response `json:",inline"`
Result V5GetMasterDepositAddressResult `json:"result"`
}
func (s *V5AssetService) GetMasterDepositAddress(param V5GetMasterDepositAddressParam) (*V5GetMasterDepositAddressResponse, error) {
var res V5GetMasterDepositAddressResponse
queryString, err := query.Values(param)
if err != nil {
return nil, err
}
if err := s.client.getV5Privately("/v5/asset/deposit/query-address", queryString, &res); err != nil {
return nil, err
}
return &res, nil
}
// V5GetWithdrawalRecordsParam :
type V5GetWithdrawalRecordsParam struct {
WithdrawID *string `url:"withdrawId,omitempty"`
Coin *Coin `url:"coin,omitempty"`
WithdrawType *WithdrawTypeV5 `url:"withdrawType,omitempty"`
StartTime *int64 `url:"startTime,omitempty"` // The start timestamp (ms)
EndTime *int64 `url:"endTime,omitempty"` // The start timestamp (ms)
Limit *int `url:"limit,omitempty"` // Limit for data size per page. [1, 50]. Default: 50
Cursor *string `url:"cursor,omitempty"`
}
// V5GetWithdrawalRecordsResponse :
type V5GetWithdrawalRecordsResponse struct {
CommonV5Response `json:",inline"`
Result V5GetWithdrawalRecordsResult `json:"result"`
}
// V5GetWithdrawalRecordsResult :
type V5GetWithdrawalRecordsResult struct {
Rows V5GetWithdrawalRecordsRows `json:"rows"`
NextPageCursor string `json:"nextPageCursor"`
}
// V5GetWithdrawalRecordsRows :
type V5GetWithdrawalRecordsRows []V5GetWithdrawalRecordsRow
// V5GetWithdrawalRecordsRow :
type V5GetWithdrawalRecordsRow struct {
WithdrawID string `json:"withdrawId"`
TxID string `json:"txId"`
WithdrawType WithdrawTypeV5 `json:"withdrawType"`
Coin Coin `json:"coin"`
Chain string `json:"chain"`
Amount string `json:"amount"`
WithdrawFee string `json:"withdrawFee"`
Status WithdrawStatusV5 `json:"status"`
ToAddress string `json:"toAddress"`
Tag string `json:"tag"`
CreatedTime string `json:"createTime"`
UpdatedTime string `json:"updateTime"`
}
// GetWithdrawalRecords :
func (s *V5AssetService) GetWithdrawalRecords(param V5GetWithdrawalRecordsParam) (*V5GetWithdrawalRecordsResponse, error) {
var res V5GetWithdrawalRecordsResponse
queryString, err := query.Values(param)
if err != nil {
return nil, err
}
if err := s.client.getV5Privately("/v5/asset/withdraw/query-record", queryString, &res); err != nil {
return nil, err
}
return &res, nil
}
// V5GetCoinInfoParam :
type V5GetCoinInfoParam struct {
Coin *Coin `url:"coin,omitempty"`
}
// V5GetCoinInfoResponse :
type V5GetCoinInfoResponse struct {
CommonV5Response `json:",inline"`
Result V5GetCoinInfoResult `json:"result"`
}
// V5GetCoinInfoResult :
type V5GetCoinInfoResult struct {
Rows V5GetCoinInfoRows `json:"rows"`
}
// V5GetCoinInfoRows :
type V5GetCoinInfoRows []V5GetCoinInfoRow
// V5GetCoinInfoRow :
type V5GetCoinInfoRow struct {
Name string `json:"name"`
Coin Coin `json:"coin"`
RemainAmount string `json:"remainAmount"`
Chains V5GetCoinInfoChains `json:"chains"`
}
// V5GetCoinInfoChains :
type V5GetCoinInfoChains []V5GetCoinInfoChain
// V5GetCoinInfoChain :
type V5GetCoinInfoChain struct {
Chain string `json:"chain"`
ChainType string `json:"chainType"`
Confirmation string `json:"confirmation"`
WithdrawFee string `json:"withdrawFee"`
DepositMin string `json:"depositMin"`
WithdrawMin string `json:"withdrawMin"`
MinAccuracy string `json:"minAccuracy"`
ChainDeposit string `json:"chainDeposit"`
ChainWithdraw string `json:"chainWithdraw"`
WithdrawPercentageFee string `json:"withdrawPercentageFee"`
}
// GetCoinInfo :
func (s *V5AssetService) GetCoinInfo(param V5GetCoinInfoParam) (*V5GetCoinInfoResponse, error) {
var res V5GetCoinInfoResponse
queryString, err := query.Values(param)
if err != nil {
return nil, err
}
if err := s.client.getV5Privately("/v5/asset/coin/query-info", queryString, &res); err != nil {
return nil, err
}
return &res, nil
}
// V5GetAllCoinsBalanceParam :
type V5GetAllCoinsBalanceParam struct {
AccountType AccountTypeV5 `url:"accountType"`
MemberID string `url:"memberId,omitempty"`
WithBonus string `url:"withBonus,omitempty"`
Coins []Coin
}
// V5GetAllCoinsBalanceResponse :
type V5GetAllCoinsBalanceResponse struct {
CommonV5Response `json:",inline"`
Result V5GetAllCoinsBalanceResult `json:"result"`
}
// V5GetAllCoinsBalanceResult :
type V5GetAllCoinsBalanceResult struct {
MemberID string `json:"memberId"`
AccountType AccountTypeV5 `json:"accountType"`
Balance []*V5GetAllCoinsBalanceBalance `json:"balance"`
}
// V5GetAllCoinsBalanceBalance :
type V5GetAllCoinsBalanceBalance struct {
Coin Coin `json:"coin"`
TransferBalance string `json:"transferBalance"`
WalletBalance string `json:"walletBalance"`
Bonus string `json:"bonus"`
}
// GetAllCoinsBalance :
// https://bybit-exchange.github.io/docs/v5/asset/all-balance
func (s *V5AssetService) GetAllCoinsBalance(param V5GetAllCoinsBalanceParam) (*V5GetAllCoinsBalanceResponse, error) {
var res V5GetAllCoinsBalanceResponse
queryString, err := query.Values(param)
if err != nil {
return nil, err
}
if len(param.Coins) > 0 {
var coinsToQuery []string
for _, coin := range param.Coins {
coinsToQuery = append(coinsToQuery, string(coin))
}
queryString.Set("coin", strings.Join(coinsToQuery, ","))
}
if err := s.client.getV5Privately("/v5/asset/transfer/query-account-coins-balance", queryString, &res); err != nil {
return nil, err
}
return &res, nil
}
type V5WithdrawResponse struct {
CommonV5Response `json:",inline"`
Result V5WithdrawResult `json:"result"`
}
type V5WithdrawResult struct {
ID string `json:"id"`
}
type V5WithdrawParam struct {
Coin Coin `json:"coin"`
Address string `json:"address"`
Amount string `json:"amount"`
Timestamp int64 `json:"timestamp"`
Chain *string `json:"chain,omitempty"`
Tag *string `json:"tag,omitempty"`
ForceChain *bool `json:"forceChain,omitempty"`
AccountType *AccountTypeV5 `json:"accountType,omitempty"`
FeeType *int `json:"feeType,omitempty"`
RequestID *string `json:"requestId,omitempty"`
}
func (s *V5AssetService) Withdraw(param V5WithdrawParam) (*V5WithdrawResponse, error) {
var res V5WithdrawResponse
body, err := json.Marshal(param)
if err != nil {
return &res, fmt.Errorf("json marshal: %w", err)
}
if err := s.client.postV5JSON("/v5/asset/withdraw/create", body, &res); err != nil {
return &res, err
}
return &res, nil
}