ccxt 4.4.96 → 4.4.98

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (79) hide show
  1. package/README.md +15 -15
  2. package/dist/ccxt.browser.min.js +2 -2
  3. package/dist/cjs/ccxt.js +2 -1
  4. package/dist/cjs/src/base/Exchange.js +63 -15
  5. package/dist/cjs/src/base/errors.js +8 -1
  6. package/dist/cjs/src/base/functions/number.js +30 -9
  7. package/dist/cjs/src/binance.js +95 -34
  8. package/dist/cjs/src/binancecoinm.js +5 -1
  9. package/dist/cjs/src/binanceus.js +3 -1
  10. package/dist/cjs/src/binanceusdm.js +3 -1
  11. package/dist/cjs/src/bingx.js +1 -1
  12. package/dist/cjs/src/bitget.js +18 -2
  13. package/dist/cjs/src/coinmetro.js +2 -3
  14. package/dist/cjs/src/cryptocom.js +77 -1
  15. package/dist/cjs/src/exmo.js +1 -1
  16. package/dist/cjs/src/foxbit.js +1 -1
  17. package/dist/cjs/src/gate.js +1 -2
  18. package/dist/cjs/src/hashkey.js +39 -0
  19. package/dist/cjs/src/hyperliquid.js +42 -27
  20. package/dist/cjs/src/independentreserve.js +35 -0
  21. package/dist/cjs/src/indodax.js +34 -0
  22. package/dist/cjs/src/kucoin.js +2 -1
  23. package/dist/cjs/src/latoken.js +42 -0
  24. package/dist/cjs/src/luno.js +36 -0
  25. package/dist/cjs/src/mercado.js +34 -0
  26. package/dist/cjs/src/mexc.js +3 -25
  27. package/dist/cjs/src/ndax.js +8 -0
  28. package/dist/cjs/src/okx.js +1 -0
  29. package/dist/cjs/src/phemex.js +36 -31
  30. package/dist/cjs/src/pro/binancecoinm.js +3 -1
  31. package/dist/cjs/src/pro/binanceus.js +3 -1
  32. package/dist/cjs/src/pro/binanceusdm.js +3 -1
  33. package/dist/cjs/src/pro/bybit.js +33 -0
  34. package/js/ccxt.d.ts +3 -3
  35. package/js/ccxt.js +3 -3
  36. package/js/src/abstract/binance.d.ts +3 -0
  37. package/js/src/abstract/binancecoinm.d.ts +3 -0
  38. package/js/src/abstract/binanceus.d.ts +3 -0
  39. package/js/src/abstract/binanceusdm.d.ts +3 -0
  40. package/js/src/abstract/phemex.d.ts +1 -0
  41. package/js/src/base/Exchange.d.ts +11 -3
  42. package/js/src/base/Exchange.js +63 -15
  43. package/js/src/base/errorHierarchy.d.ts +1 -0
  44. package/js/src/base/errorHierarchy.js +1 -0
  45. package/js/src/base/errors.d.ts +5 -1
  46. package/js/src/base/errors.js +8 -2
  47. package/js/src/base/functions/number.js +30 -9
  48. package/js/src/binance.d.ts +1 -0
  49. package/js/src/binance.js +95 -34
  50. package/js/src/binancecoinm.js +5 -1
  51. package/js/src/binanceus.js +3 -1
  52. package/js/src/binanceusdm.js +3 -1
  53. package/js/src/bingx.js +1 -1
  54. package/js/src/bitget.js +18 -2
  55. package/js/src/coinmetro.js +2 -3
  56. package/js/src/cryptocom.d.ts +12 -1
  57. package/js/src/cryptocom.js +77 -1
  58. package/js/src/exmo.js +1 -1
  59. package/js/src/foxbit.js +1 -1
  60. package/js/src/gate.js +1 -2
  61. package/js/src/hashkey.js +39 -0
  62. package/js/src/hyperliquid.js +42 -27
  63. package/js/src/independentreserve.js +35 -0
  64. package/js/src/indodax.js +34 -0
  65. package/js/src/kucoin.js +2 -1
  66. package/js/src/latoken.js +42 -0
  67. package/js/src/luno.js +36 -0
  68. package/js/src/mercado.js +34 -0
  69. package/js/src/mexc.d.ts +0 -1
  70. package/js/src/mexc.js +3 -25
  71. package/js/src/ndax.js +8 -0
  72. package/js/src/okx.js +2 -1
  73. package/js/src/phemex.js +36 -31
  74. package/js/src/pro/binancecoinm.js +3 -1
  75. package/js/src/pro/binanceus.js +3 -1
  76. package/js/src/pro/binanceusdm.js +3 -1
  77. package/js/src/pro/bybit.d.ts +11 -1
  78. package/js/src/pro/bybit.js +33 -0
  79. package/package.json +1 -2
@@ -973,7 +973,7 @@ class exmo extends exmo$1 {
973
973
  request['to'] = to;
974
974
  }
975
975
  else {
976
- request['from'] = this.parseToInt(since / 1000) - 1;
976
+ request['from'] = this.parseToInt(since / 1000);
977
977
  if (untilIsDefined) {
978
978
  request['to'] = Math.min(until, now);
979
979
  }
@@ -83,7 +83,7 @@ class foxbit extends foxbit$1 {
83
83
  '1M': '1M',
84
84
  },
85
85
  'urls': {
86
- 'logo': 'https://github.com/user-attachments/assets/63be1a3a-775d-459b-8c03-493c71c0253c',
86
+ 'logo': 'https://github.com/user-attachments/assets/ba1435eb-1d59-4393-8de7-0db10a002fb3',
87
87
  'api': {
88
88
  'public': 'https://api.foxbit.com.br',
89
89
  'private': 'https://api.foxbit.com.br',
@@ -669,7 +669,6 @@ class gate extends gate$1 {
669
669
  'SOL': 'SOL',
670
670
  'POLYGON': 'POL',
671
671
  'MATIC': 'POL',
672
- 'OP': 'OPETH',
673
672
  'OPTIMISM': 'OPETH',
674
673
  'ADA': 'ADA',
675
674
  'AVAXC': 'AVAX_C',
@@ -3946,7 +3945,7 @@ class gate extends gate$1 {
3946
3945
  request['from'] = start;
3947
3946
  request['to'] = this.sum(start, 30 * 24 * 60 * 60);
3948
3947
  }
3949
- [request, params] = this.handleUntilOption('to', request, params);
3948
+ [request, params] = this.handleUntilOption('to', request, params, 0.001);
3950
3949
  const response = await this.privateWalletGetWithdrawals(this.extend(request, params));
3951
3950
  return this.parseTransactions(response, currency);
3952
3951
  }
@@ -30,11 +30,15 @@ class hashkey extends hashkey$1 {
30
30
  'future': false,
31
31
  'option': false,
32
32
  'addMargin': false,
33
+ 'borrowCrossMargin': false,
34
+ 'borrowIsolatedMargin': false,
35
+ 'borrowMargin': false,
33
36
  'cancelAllOrders': true,
34
37
  'cancelAllOrdersAfter': false,
35
38
  'cancelOrder': true,
36
39
  'cancelOrders': true,
37
40
  'cancelWithdraw': false,
41
+ 'closeAllPositions': false,
38
42
  'closePosition': false,
39
43
  'createConvertTrade': false,
40
44
  'createDepositAddress': false,
@@ -54,7 +58,14 @@ class hashkey extends hashkey$1 {
54
58
  'createTrailingPercentOrder': false,
55
59
  'createTriggerOrder': true,
56
60
  'fetchAccounts': true,
61
+ 'fetchAllGreeks': false,
57
62
  'fetchBalance': true,
63
+ 'fetchBorrowInterest': false,
64
+ 'fetchBorrowRate': false,
65
+ 'fetchBorrowRateHistories': false,
66
+ 'fetchBorrowRateHistory': false,
67
+ 'fetchBorrowRates': false,
68
+ 'fetchBorrowRatesPerSymbol': false,
58
69
  'fetchCanceledAndClosedOrders': true,
59
70
  'fetchCanceledOrders': true,
60
71
  'fetchClosedOrder': true,
@@ -63,6 +74,8 @@ class hashkey extends hashkey$1 {
63
74
  'fetchConvertQuote': false,
64
75
  'fetchConvertTrade': false,
65
76
  'fetchConvertTradeHistory': false,
77
+ 'fetchCrossBorrowRate': false,
78
+ 'fetchCrossBorrowRates': false,
66
79
  'fetchCurrencies': true,
67
80
  'fetchDepositAddress': true,
68
81
  'fetchDepositAddresses': false,
@@ -70,23 +83,42 @@ class hashkey extends hashkey$1 {
70
83
  'fetchDeposits': true,
71
84
  'fetchDepositsWithdrawals': false,
72
85
  'fetchFundingHistory': false,
86
+ 'fetchFundingInterval': false,
87
+ 'fetchFundingIntervals': false,
73
88
  'fetchFundingRate': true,
74
89
  'fetchFundingRateHistory': true,
75
90
  'fetchFundingRates': true,
91
+ 'fetchGreeks': false,
76
92
  'fetchIndexOHLCV': false,
93
+ 'fetchIsolatedBorrowRate': false,
94
+ 'fetchIsolatedBorrowRates': false,
95
+ 'fetchIsolatedPositions': false,
77
96
  'fetchLedger': true,
78
97
  'fetchLeverage': true,
98
+ 'fetchLeverages': false,
79
99
  'fetchLeverageTiers': true,
100
+ 'fetchLiquidations': false,
101
+ 'fetchLongShortRatio': false,
102
+ 'fetchLongShortRatioHistory': false,
80
103
  'fetchMarginAdjustmentHistory': false,
81
104
  'fetchMarginMode': false,
105
+ 'fetchMarginModes': false,
82
106
  'fetchMarketLeverageTiers': 'emulated',
83
107
  'fetchMarkets': true,
84
108
  'fetchMarkOHLCV': false,
109
+ 'fetchMarkPrice': false,
110
+ 'fetchMarkPrices': false,
111
+ 'fetchMyLiquidations': false,
112
+ 'fetchMySettlementHistory': false,
85
113
  'fetchMyTrades': true,
86
114
  'fetchOHLCV': true,
115
+ 'fetchOpenInterest': false,
87
116
  'fetchOpenInterestHistory': false,
117
+ 'fetchOpenInterests': false,
88
118
  'fetchOpenOrder': false,
89
119
  'fetchOpenOrders': true,
120
+ 'fetchOption': false,
121
+ 'fetchOptionChain': false,
90
122
  'fetchOrder': true,
91
123
  'fetchOrderBook': true,
92
124
  'fetchOrders': false,
@@ -97,7 +129,9 @@ class hashkey extends hashkey$1 {
97
129
  'fetchPositions': true,
98
130
  'fetchPositionsForSymbol': true,
99
131
  'fetchPositionsHistory': false,
132
+ 'fetchPositionsRisk': false,
100
133
  'fetchPremiumIndexOHLCV': false,
134
+ 'fetchSettlementHistory': false,
101
135
  'fetchStatus': true,
102
136
  'fetchTicker': true,
103
137
  'fetchTickers': true,
@@ -107,11 +141,16 @@ class hashkey extends hashkey$1 {
107
141
  'fetchTradingFees': true,
108
142
  'fetchTransactions': false,
109
143
  'fetchTransfers': false,
144
+ 'fetchUnderlyingAssets': false,
145
+ 'fetchVolatilityHistory': false,
110
146
  'fetchWithdrawals': true,
111
147
  'reduceMargin': false,
148
+ 'repayCrossMargin': false,
149
+ 'repayIsolatedMargin': false,
112
150
  'sandbox': false,
113
151
  'setLeverage': true,
114
152
  'setMargin': false,
153
+ 'setMarginMode': false,
115
154
  'setPositionMode': false,
116
155
  'transfer': true,
117
156
  'withdraw': true,
@@ -3086,10 +3086,9 @@ class hyperliquid extends hyperliquid$1 {
3086
3086
  throw new errors.NotSupported(this.id + ' transfer() only support spot <> swap transfer');
3087
3087
  }
3088
3088
  let strAmount = this.numberToString(amount);
3089
- let vaultAddress = undefined;
3090
- [vaultAddress, params] = this.handleOptionAndParams(params, 'transfer', 'vaultAddress');
3091
- vaultAddress = this.formatVaultAddress(vaultAddress);
3089
+ let vaultAddress = this.safeString2(params, 'vaultAddress', 'subAccountAddress');
3092
3090
  if (vaultAddress !== undefined) {
3091
+ vaultAddress = this.formatVaultAddress(vaultAddress);
3093
3092
  strAmount = strAmount + ' subaccount:' + vaultAddress;
3094
3093
  }
3095
3094
  const toPerp = (toAccount === 'perp') || (toAccount === 'swap');
@@ -3119,12 +3118,6 @@ class hyperliquid extends hyperliquid$1 {
3119
3118
  return transferResponse;
3120
3119
  }
3121
3120
  // transfer between main account and subaccount
3122
- if (code !== undefined) {
3123
- code = code.toUpperCase();
3124
- if (code !== 'USDC') {
3125
- throw new errors.NotSupported(this.id + ' transfer() only support USDC');
3126
- }
3127
- }
3128
3121
  let isDeposit = false;
3129
3122
  let subAccountAddress = undefined;
3130
3123
  if (fromAccount === 'main') {
@@ -3138,24 +3131,46 @@ class hyperliquid extends hyperliquid$1 {
3138
3131
  throw new errors.NotSupported(this.id + ' transfer() only support main <> subaccount transfer');
3139
3132
  }
3140
3133
  this.checkAddress(subAccountAddress);
3141
- const usd = this.parseToInt(Precise["default"].stringMul(this.numberToString(amount), '1000000'));
3142
- const action = {
3143
- 'type': 'subAccountTransfer',
3144
- 'subAccountUser': subAccountAddress,
3145
- 'isDeposit': isDeposit,
3146
- 'usd': usd,
3147
- };
3148
- const sig = this.signL1Action(action, nonce);
3149
- const request = {
3150
- 'action': action,
3151
- 'nonce': nonce,
3152
- 'signature': sig,
3153
- };
3154
- const response = await this.privatePostExchange(request);
3155
- //
3156
- // {'response': {'type': 'default'}, 'status': 'ok'}
3157
- //
3158
- return this.parseTransfer(response);
3134
+ if (code === undefined || code.toUpperCase() === 'USDC') {
3135
+ // Transfer USDC with subAccountTransfer
3136
+ const usd = this.parseToInt(Precise["default"].stringMul(this.numberToString(amount), '1000000'));
3137
+ const action = {
3138
+ 'type': 'subAccountTransfer',
3139
+ 'subAccountUser': subAccountAddress,
3140
+ 'isDeposit': isDeposit,
3141
+ 'usd': usd,
3142
+ };
3143
+ const sig = this.signL1Action(action, nonce);
3144
+ const request = {
3145
+ 'action': action,
3146
+ 'nonce': nonce,
3147
+ 'signature': sig,
3148
+ };
3149
+ const response = await this.privatePostExchange(request);
3150
+ //
3151
+ // {'response': {'type': 'default'}, 'status': 'ok'}
3152
+ //
3153
+ return this.parseTransfer(response);
3154
+ }
3155
+ else {
3156
+ // Transfer non-USDC with subAccountSpotTransfer
3157
+ const symbol = this.symbol(code);
3158
+ const action = {
3159
+ 'type': 'subAccountSpotTransfer',
3160
+ 'subAccountUser': subAccountAddress,
3161
+ 'isDeposit': isDeposit,
3162
+ 'token': symbol,
3163
+ 'amount': this.numberToString(amount),
3164
+ };
3165
+ const sig = this.signL1Action(action, nonce);
3166
+ const request = {
3167
+ 'action': action,
3168
+ 'nonce': nonce,
3169
+ 'signature': sig,
3170
+ };
3171
+ const response = await this.privatePostExchange(request);
3172
+ return this.parseTransfer(response);
3173
+ }
3159
3174
  }
3160
3175
  parseTransfer(transfer, currency = undefined) {
3161
3176
  //
@@ -28,6 +28,9 @@ class independentreserve extends independentreserve$1 {
28
28
  'future': false,
29
29
  'option': false,
30
30
  'addMargin': false,
31
+ 'borrowCrossMargin': false,
32
+ 'borrowIsolatedMargin': false,
33
+ 'borrowMargin': false,
31
34
  'cancelOrder': true,
32
35
  'closeAllPositions': false,
33
36
  'closePosition': false,
@@ -36,9 +39,14 @@ class independentreserve extends independentreserve$1 {
36
39
  'createStopLimitOrder': false,
37
40
  'createStopMarketOrder': false,
38
41
  'createStopOrder': false,
42
+ 'fetchAllGreeks': false,
39
43
  'fetchBalance': true,
44
+ 'fetchBorrowInterest': false,
45
+ 'fetchBorrowRate': false,
40
46
  'fetchBorrowRateHistories': false,
41
47
  'fetchBorrowRateHistory': false,
48
+ 'fetchBorrowRates': false,
49
+ 'fetchBorrowRatesPerSymbol': false,
42
50
  'fetchClosedOrders': true,
43
51
  'fetchCrossBorrowRate': false,
44
52
  'fetchCrossBorrowRates': false,
@@ -46,36 +54,63 @@ class independentreserve extends independentreserve$1 {
46
54
  'fetchDepositAddresses': false,
47
55
  'fetchDepositAddressesByNetwork': false,
48
56
  'fetchFundingHistory': false,
57
+ 'fetchFundingInterval': false,
58
+ 'fetchFundingIntervals': false,
49
59
  'fetchFundingRate': false,
50
60
  'fetchFundingRateHistory': false,
51
61
  'fetchFundingRates': false,
62
+ 'fetchGreeks': false,
52
63
  'fetchIndexOHLCV': false,
53
64
  'fetchIsolatedBorrowRate': false,
54
65
  'fetchIsolatedBorrowRates': false,
66
+ 'fetchIsolatedPositions': false,
55
67
  'fetchLeverage': false,
68
+ 'fetchLeverages': false,
56
69
  'fetchLeverageTiers': false,
70
+ 'fetchLiquidations': false,
71
+ 'fetchLongShortRatio': false,
72
+ 'fetchLongShortRatioHistory': false,
73
+ 'fetchMarginAdjustmentHistory': false,
57
74
  'fetchMarginMode': false,
75
+ 'fetchMarginModes': false,
76
+ 'fetchMarketLeverageTiers': false,
58
77
  'fetchMarkets': true,
59
78
  'fetchMarkOHLCV': false,
79
+ 'fetchMarkPrice': false,
80
+ 'fetchMarkPrices': false,
81
+ 'fetchMyLiquidations': false,
82
+ 'fetchMySettlementHistory': false,
60
83
  'fetchMyTrades': true,
84
+ 'fetchOpenInterest': false,
61
85
  'fetchOpenInterestHistory': false,
86
+ 'fetchOpenInterests': false,
62
87
  'fetchOpenOrders': true,
88
+ 'fetchOption': false,
89
+ 'fetchOptionChain': false,
63
90
  'fetchOrder': true,
64
91
  'fetchOrderBook': true,
65
92
  'fetchPosition': false,
93
+ 'fetchPositionForSymbolWs': false,
66
94
  'fetchPositionHistory': false,
67
95
  'fetchPositionMode': false,
68
96
  'fetchPositions': false,
69
97
  'fetchPositionsForSymbol': false,
98
+ 'fetchPositionsForSymbolWs': false,
70
99
  'fetchPositionsHistory': false,
71
100
  'fetchPositionsRisk': false,
72
101
  'fetchPremiumIndexOHLCV': false,
102
+ 'fetchSettlementHistory': false,
73
103
  'fetchTicker': true,
74
104
  'fetchTrades': true,
75
105
  'fetchTradingFee': false,
76
106
  'fetchTradingFees': true,
107
+ 'fetchUnderlyingAssets': false,
108
+ 'fetchVolatilityHistory': false,
77
109
  'reduceMargin': false,
110
+ 'repayCrossMargin': false,
111
+ 'repayIsolatedMargin': false,
78
112
  'setLeverage': false,
113
+ 'setMargin': false,
79
114
  'setMarginMode': false,
80
115
  'setPositionMode': false,
81
116
  'withdraw': true,
@@ -29,6 +29,9 @@ class indodax extends indodax$1 {
29
29
  'future': false,
30
30
  'option': false,
31
31
  'addMargin': false,
32
+ 'borrowCrossMargin': false,
33
+ 'borrowIsolatedMargin': false,
34
+ 'borrowMargin': false,
32
35
  'cancelAllOrders': false,
33
36
  'cancelOrder': true,
34
37
  'cancelOrders': false,
@@ -40,9 +43,14 @@ class indodax extends indodax$1 {
40
43
  'createStopLimitOrder': false,
41
44
  'createStopMarketOrder': false,
42
45
  'createStopOrder': false,
46
+ 'fetchAllGreeks': false,
43
47
  'fetchBalance': true,
48
+ 'fetchBorrowInterest': false,
49
+ 'fetchBorrowRate': false,
44
50
  'fetchBorrowRateHistories': false,
45
51
  'fetchBorrowRateHistory': false,
52
+ 'fetchBorrowRates': false,
53
+ 'fetchBorrowRatesPerSymbol': false,
46
54
  'fetchClosedOrders': true,
47
55
  'fetchCrossBorrowRate': false,
48
56
  'fetchCrossBorrowRates': false,
@@ -53,30 +61,52 @@ class indodax extends indodax$1 {
53
61
  'fetchDeposits': false,
54
62
  'fetchDepositsWithdrawals': true,
55
63
  'fetchFundingHistory': false,
64
+ 'fetchFundingInterval': false,
65
+ 'fetchFundingIntervals': false,
56
66
  'fetchFundingRate': false,
57
67
  'fetchFundingRateHistory': false,
58
68
  'fetchFundingRates': false,
69
+ 'fetchGreeks': false,
59
70
  'fetchIndexOHLCV': false,
60
71
  'fetchIsolatedBorrowRate': false,
61
72
  'fetchIsolatedBorrowRates': false,
73
+ 'fetchIsolatedPositions': false,
62
74
  'fetchLeverage': false,
75
+ 'fetchLeverages': false,
63
76
  'fetchLeverageTiers': false,
77
+ 'fetchLiquidations': false,
78
+ 'fetchLongShortRatio': false,
79
+ 'fetchLongShortRatioHistory': false,
80
+ 'fetchMarginAdjustmentHistory': false,
64
81
  'fetchMarginMode': false,
82
+ 'fetchMarginModes': false,
83
+ 'fetchMarketLeverageTiers': false,
65
84
  'fetchMarkets': true,
66
85
  'fetchMarkOHLCV': false,
86
+ 'fetchMarkPrice': false,
87
+ 'fetchMarkPrices': false,
88
+ 'fetchMyLiquidations': false,
89
+ 'fetchMySettlementHistory': false,
90
+ 'fetchOpenInterest': false,
67
91
  'fetchOpenInterestHistory': false,
92
+ 'fetchOpenInterests': false,
68
93
  'fetchOpenOrders': true,
94
+ 'fetchOption': false,
95
+ 'fetchOptionChain': false,
69
96
  'fetchOrder': true,
70
97
  'fetchOrderBook': true,
71
98
  'fetchOrders': false,
72
99
  'fetchPosition': false,
100
+ 'fetchPositionForSymbolWs': false,
73
101
  'fetchPositionHistory': false,
74
102
  'fetchPositionMode': false,
75
103
  'fetchPositions': false,
76
104
  'fetchPositionsForSymbol': false,
105
+ 'fetchPositionsForSymbolWs': false,
77
106
  'fetchPositionsHistory': false,
78
107
  'fetchPositionsRisk': false,
79
108
  'fetchPremiumIndexOHLCV': false,
109
+ 'fetchSettlementHistory': false,
80
110
  'fetchTicker': true,
81
111
  'fetchTime': true,
82
112
  'fetchTrades': true,
@@ -87,9 +117,13 @@ class indodax extends indodax$1 {
87
117
  'fetchTransactions': 'emulated',
88
118
  'fetchTransfer': false,
89
119
  'fetchTransfers': false,
120
+ 'fetchUnderlyingAssets': false,
121
+ 'fetchVolatilityHistory': false,
90
122
  'fetchWithdrawal': false,
91
123
  'fetchWithdrawals': false,
92
124
  'reduceMargin': false,
125
+ 'repayCrossMargin': false,
126
+ 'repayIsolatedMargin': false,
93
127
  'setLeverage': false,
94
128
  'setMargin': false,
95
129
  'setMarginMode': false,
@@ -792,7 +792,7 @@ class kucoin extends kucoin$1 {
792
792
  'TLOS': 'tlos',
793
793
  'CFX': 'cfx',
794
794
  'ACA': 'aca',
795
- 'OP': 'optimism',
795
+ 'OPTIMISM': 'optimism',
796
796
  'ONT': 'ont',
797
797
  'GLMR': 'glmr',
798
798
  'CSPR': 'cspr',
@@ -912,6 +912,7 @@ class kucoin extends kucoin$1 {
912
912
  'CS': 'cs',
913
913
  'ORAI': 'orai',
914
914
  'BASE': 'base',
915
+ 'TARA': 'tara',
915
916
  // below will be uncommented after consensus
916
917
  // 'BITCOINDIAMON': 'bcd',
917
918
  // 'BITCOINGOLD': 'btg',
@@ -26,6 +26,10 @@ class latoken extends latoken$1 {
26
26
  'swap': false,
27
27
  'future': false,
28
28
  'option': false,
29
+ 'addMargin': false,
30
+ 'borrowCrossMargin': false,
31
+ 'borrowIsolatedMargin': false,
32
+ 'borrowMargin': false,
29
33
  'cancelAllOrders': true,
30
34
  'cancelOrder': true,
31
35
  'closeAllPositions': false,
@@ -35,9 +39,14 @@ class latoken extends latoken$1 {
35
39
  'createStopLimitOrder': true,
36
40
  'createStopMarketOrder': false,
37
41
  'createStopOrder': true,
42
+ 'fetchAllGreeks': false,
38
43
  'fetchBalance': true,
44
+ 'fetchBorrowInterest': false,
45
+ 'fetchBorrowRate': false,
39
46
  'fetchBorrowRateHistories': false,
40
47
  'fetchBorrowRateHistory': false,
48
+ 'fetchBorrowRates': false,
49
+ 'fetchBorrowRatesPerSymbol': false,
41
50
  'fetchCrossBorrowRate': false,
42
51
  'fetchCrossBorrowRates': false,
43
52
  'fetchCurrencies': true,
@@ -52,12 +61,34 @@ class latoken extends latoken$1 {
52
61
  'fetchFundingRate': false,
53
62
  'fetchFundingRateHistory': false,
54
63
  'fetchFundingRates': false,
64
+ 'fetchGreeks': false,
65
+ 'fetchIndexOHLCV': false,
55
66
  'fetchIsolatedBorrowRate': false,
56
67
  'fetchIsolatedBorrowRates': false,
68
+ 'fetchIsolatedPositions': false,
69
+ 'fetchLeverage': false,
70
+ 'fetchLeverages': false,
71
+ 'fetchLeverageTiers': false,
72
+ 'fetchLiquidations': false,
73
+ 'fetchLongShortRatio': false,
74
+ 'fetchLongShortRatioHistory': false,
75
+ 'fetchMarginAdjustmentHistory': false,
57
76
  'fetchMarginMode': false,
77
+ 'fetchMarginModes': false,
78
+ 'fetchMarketLeverageTiers': false,
58
79
  'fetchMarkets': true,
80
+ 'fetchMarkOHLCV': false,
81
+ 'fetchMarkPrice': false,
82
+ 'fetchMarkPrices': false,
83
+ 'fetchMyLiquidations': false,
84
+ 'fetchMySettlementHistory': false,
59
85
  'fetchMyTrades': true,
86
+ 'fetchOpenInterest': false,
87
+ 'fetchOpenInterestHistory': false,
88
+ 'fetchOpenInterests': false,
60
89
  'fetchOpenOrders': true,
90
+ 'fetchOption': false,
91
+ 'fetchOptionChain': false,
61
92
  'fetchOrder': true,
62
93
  'fetchOrderBook': true,
63
94
  'fetchOrders': true,
@@ -68,6 +99,8 @@ class latoken extends latoken$1 {
68
99
  'fetchPositionsForSymbol': false,
69
100
  'fetchPositionsHistory': false,
70
101
  'fetchPositionsRisk': false,
102
+ 'fetchPremiumIndexOHLCV': false,
103
+ 'fetchSettlementHistory': false,
71
104
  'fetchTicker': true,
72
105
  'fetchTickers': true,
73
106
  'fetchTime': true,
@@ -77,6 +110,15 @@ class latoken extends latoken$1 {
77
110
  'fetchTransactions': 'emulated',
78
111
  'fetchTransfer': false,
79
112
  'fetchTransfers': true,
113
+ 'fetchUnderlyingAssets': false,
114
+ 'fetchVolatilityHistory': false,
115
+ 'reduceMargin': false,
116
+ 'repayCrossMargin': false,
117
+ 'repayIsolatedMargin': false,
118
+ 'setLeverage': false,
119
+ 'setMargin': false,
120
+ 'setMarginMode': false,
121
+ 'setPositionMode': false,
80
122
  'transfer': true,
81
123
  },
82
124
  'urls': {
@@ -29,6 +29,9 @@ class luno extends luno$1 {
29
29
  'future': false,
30
30
  'option': false,
31
31
  'addMargin': false,
32
+ 'borrowCrossMargin': false,
33
+ 'borrowIsolatedMargin': false,
34
+ 'borrowMargin': false,
32
35
  'cancelOrder': true,
33
36
  'closeAllPositions': false,
34
37
  'closePosition': false,
@@ -36,48 +39,81 @@ class luno extends luno$1 {
36
39
  'createOrder': true,
37
40
  'createReduceOnlyOrder': false,
38
41
  'fetchAccounts': true,
42
+ 'fetchAllGreeks': false,
39
43
  'fetchBalance': true,
44
+ 'fetchBorrowInterest': false,
45
+ 'fetchBorrowRate': false,
46
+ 'fetchBorrowRateHistories': false,
40
47
  'fetchBorrowRateHistory': false,
48
+ 'fetchBorrowRates': false,
49
+ 'fetchBorrowRatesPerSymbol': false,
41
50
  'fetchClosedOrders': true,
42
51
  'fetchCrossBorrowRate': false,
43
52
  'fetchCrossBorrowRates': false,
44
53
  'fetchCurrencies': true,
45
54
  'fetchDepositAddress': true,
46
55
  'fetchFundingHistory': false,
56
+ 'fetchFundingInterval': false,
57
+ 'fetchFundingIntervals': false,
47
58
  'fetchFundingRate': false,
48
59
  'fetchFundingRateHistory': false,
49
60
  'fetchFundingRates': false,
61
+ 'fetchGreeks': false,
50
62
  'fetchIndexOHLCV': false,
51
63
  'fetchIsolatedBorrowRate': false,
52
64
  'fetchIsolatedBorrowRates': false,
65
+ 'fetchIsolatedPositions': false,
53
66
  'fetchLedger': true,
54
67
  'fetchLeverage': false,
68
+ 'fetchLeverages': false,
55
69
  'fetchLeverageTiers': false,
70
+ 'fetchLiquidations': false,
71
+ 'fetchLongShortRatio': false,
72
+ 'fetchLongShortRatioHistory': false,
73
+ 'fetchMarginAdjustmentHistory': false,
56
74
  'fetchMarginMode': false,
75
+ 'fetchMarginModes': false,
76
+ 'fetchMarketLeverageTiers': false,
57
77
  'fetchMarkets': true,
58
78
  'fetchMarkOHLCV': false,
79
+ 'fetchMarkPrice': false,
80
+ 'fetchMarkPrices': false,
81
+ 'fetchMyLiquidations': false,
82
+ 'fetchMySettlementHistory': false,
59
83
  'fetchMyTrades': true,
60
84
  'fetchOHLCV': true,
85
+ 'fetchOpenInterest': false,
61
86
  'fetchOpenInterestHistory': false,
87
+ 'fetchOpenInterests': false,
62
88
  'fetchOpenOrders': true,
89
+ 'fetchOption': false,
90
+ 'fetchOptionChain': false,
63
91
  'fetchOrder': true,
64
92
  'fetchOrderBook': true,
65
93
  'fetchOrders': true,
66
94
  'fetchPosition': false,
95
+ 'fetchPositionForSymbolWs': false,
67
96
  'fetchPositionHistory': false,
68
97
  'fetchPositionMode': false,
69
98
  'fetchPositions': false,
70
99
  'fetchPositionsForSymbol': false,
100
+ 'fetchPositionsForSymbolWs': false,
71
101
  'fetchPositionsHistory': false,
72
102
  'fetchPositionsRisk': false,
73
103
  'fetchPremiumIndexOHLCV': false,
104
+ 'fetchSettlementHistory': false,
74
105
  'fetchTicker': true,
75
106
  'fetchTickers': true,
76
107
  'fetchTrades': true,
77
108
  'fetchTradingFee': true,
78
109
  'fetchTradingFees': false,
110
+ 'fetchUnderlyingAssets': false,
111
+ 'fetchVolatilityHistory': false,
79
112
  'reduceMargin': false,
113
+ 'repayCrossMargin': false,
114
+ 'repayIsolatedMargin': false,
80
115
  'setLeverage': false,
116
+ 'setMargin': false,
81
117
  'setMarginMode': false,
82
118
  'setPositionMode': false,
83
119
  },