ccxt 4.5.0 → 4.5.2
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.
- package/README.md +110 -112
- package/dist/ccxt.browser.min.js +5 -5
- package/dist/cjs/ccxt.js +1 -9
- package/dist/cjs/src/ascendex.js +1 -1
- package/dist/cjs/src/base/Exchange.js +13 -0
- package/dist/cjs/src/binance.js +20 -14
- package/dist/cjs/src/bitget.js +1 -1
- package/dist/cjs/src/coinbase.js +46 -34
- package/dist/cjs/src/gate.js +39 -18
- package/dist/cjs/src/gemini.js +1 -1
- package/dist/cjs/src/hibachi.js +1 -1
- package/dist/cjs/src/hyperliquid.js +16 -2
- package/dist/cjs/src/indodax.js +11 -12
- package/dist/cjs/src/kraken.js +1 -12
- package/dist/cjs/src/krakenfutures.js +25 -25
- package/dist/cjs/src/mexc.js +2 -1
- package/dist/cjs/src/okx.js +2 -2
- package/dist/cjs/src/poloniex.js +1 -1
- package/dist/cjs/src/pro/bitget.js +352 -75
- package/dist/cjs/src/pro/bitmart.js +1 -1
- package/dist/cjs/src/pro/bybit.js +8 -15
- package/dist/cjs/src/pro/gate.js +6 -1
- package/dist/cjs/src/pro/gemini.js +7 -2
- package/dist/cjs/src/pro/hyperliquid.js +9 -1
- package/dist/cjs/src/pro/kraken.js +5 -6
- package/dist/cjs/src/pro/lbank.js +55 -1
- package/dist/cjs/src/pro/mexc.js +1 -1
- package/dist/cjs/src/timex.js +35 -0
- package/dist/cjs/src/tradeogre.js +32 -0
- package/dist/cjs/src/wavesexchange.js +33 -0
- package/dist/cjs/src/zonda.js +12 -0
- package/js/ccxt.d.ts +2 -11
- package/js/ccxt.js +2 -8
- package/js/src/ascendex.js +1 -1
- package/js/src/base/Exchange.d.ts +1 -0
- package/js/src/base/Exchange.js +14 -1
- package/js/src/binance.d.ts +1 -1
- package/js/src/binance.js +20 -14
- package/js/src/bitget.js +1 -1
- package/js/src/coinbase.js +46 -34
- package/js/src/gate.d.ts +2 -1
- package/js/src/gate.js +39 -18
- package/js/src/gemini.js +1 -1
- package/js/src/hibachi.js +1 -1
- package/js/src/hyperliquid.d.ts +1 -0
- package/js/src/hyperliquid.js +16 -2
- package/js/src/indodax.js +11 -12
- package/js/src/kraken.d.ts +0 -1
- package/js/src/kraken.js +1 -12
- package/js/src/krakenfutures.d.ts +24 -24
- package/js/src/krakenfutures.js +25 -25
- package/js/src/mexc.js +2 -1
- package/js/src/okx.js +2 -2
- package/js/src/poloniex.js +1 -1
- package/js/src/pro/bitget.d.ts +12 -2
- package/js/src/pro/bitget.js +358 -75
- package/js/src/pro/bitmart.js +1 -1
- package/js/src/pro/bybit.js +8 -15
- package/js/src/pro/gate.d.ts +5 -0
- package/js/src/pro/gate.js +6 -1
- package/js/src/pro/gemini.d.ts +1 -1
- package/js/src/pro/gemini.js +7 -2
- package/js/src/pro/hyperliquid.js +9 -1
- package/js/src/pro/kraken.js +5 -6
- package/js/src/pro/lbank.d.ts +11 -1
- package/js/src/pro/lbank.js +55 -1
- package/js/src/pro/mexc.js +1 -1
- package/js/src/timex.js +35 -0
- package/js/src/tradeogre.js +32 -0
- package/js/src/wavesexchange.js +33 -0
- package/js/src/zonda.js +12 -0
- package/package.json +2 -1
- package/js/src/abstract/ellipx.d.ts +0 -28
- package/js/src/abstract/ellipx.js +0 -11
- package/js/src/abstract/vertex.d.ts +0 -22
- package/js/src/abstract/vertex.js +0 -11
- package/js/src/ellipx.d.ts +0 -237
- package/js/src/ellipx.js +0 -2071
- package/js/src/pro/vertex.d.ts +0 -104
- package/js/src/pro/vertex.js +0 -999
- package/js/src/vertex.d.ts +0 -346
- package/js/src/vertex.js +0 -3146
|
@@ -866,21 +866,14 @@ class bybit extends bybit$1["default"] {
|
|
|
866
866
|
}
|
|
867
867
|
}
|
|
868
868
|
else {
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
throw new errors.BadRequest(this.id + ' watchOrderBookForSymbols() can only use limit 1, 50, 200 and 500 for swap and future markets.');
|
|
878
|
-
}
|
|
879
|
-
}
|
|
880
|
-
else {
|
|
881
|
-
if ((limit !== 1) && (limit !== 50) && (limit !== 200)) {
|
|
882
|
-
throw new errors.BadRequest(this.id + ' watchOrderBookForSymbols() can only use limit 1,50, and 200 for spot markets.');
|
|
883
|
-
}
|
|
869
|
+
const limits = {
|
|
870
|
+
'spot': [1, 50, 200, 1000],
|
|
871
|
+
'option': [25, 100],
|
|
872
|
+
'default': [1, 50, 200, 500, 1000],
|
|
873
|
+
};
|
|
874
|
+
const selectedLimits = this.safeList2(limits, market['type'], 'default');
|
|
875
|
+
if (!this.inArray(limit, selectedLimits)) {
|
|
876
|
+
throw new errors.BadRequest(this.id + ' watchOrderBookForSymbols(): for ' + market['type'] + ' markets limit can be one of: ' + this.json(selectedLimits));
|
|
884
877
|
}
|
|
885
878
|
}
|
|
886
879
|
const topics = [];
|
package/dist/cjs/src/pro/gate.js
CHANGED
|
@@ -360,6 +360,11 @@ class gate extends gate$1["default"] {
|
|
|
360
360
|
* @method
|
|
361
361
|
* @name gate#watchOrderBook
|
|
362
362
|
* @description watches information on open orders with bid (buy) and ask (sell) prices, volumes and other data
|
|
363
|
+
* @see https://www.gate.com/docs/developers/apiv4/ws/en/#order-book-channel
|
|
364
|
+
* @see https://www.gate.com/docs/developers/apiv4/ws/en/#order-book-v2-api
|
|
365
|
+
* @see https://www.gate.com/docs/developers/futures/ws/en/#order-book-api
|
|
366
|
+
* @see https://www.gate.com/docs/developers/futures/ws/en/#order-book-v2-api
|
|
367
|
+
* @see https://www.gate.com/docs/developers/delivery/ws/en/#order-book-api
|
|
363
368
|
* @param {string} symbol unified symbol of the market to fetch the order book for
|
|
364
369
|
* @param {int} [limit] the maximum amount of order book entries to return
|
|
365
370
|
* @param {object} [params] extra parameters specific to the exchange API endpoint
|
|
@@ -377,7 +382,7 @@ class gate extends gate$1["default"] {
|
|
|
377
382
|
const url = this.getUrlByMarket(market);
|
|
378
383
|
const payload = [marketId, interval];
|
|
379
384
|
if (limit === undefined) {
|
|
380
|
-
limit = 100;
|
|
385
|
+
limit = 100; // max 100 atm
|
|
381
386
|
}
|
|
382
387
|
if (market['contract']) {
|
|
383
388
|
const stringLimit = limit.toString();
|
|
@@ -490,11 +490,16 @@ class gemini extends gemini$1["default"] {
|
|
|
490
490
|
currentBidAsk['timestamp'] = timestamp;
|
|
491
491
|
currentBidAsk['datetime'] = this.iso8601(timestamp);
|
|
492
492
|
currentBidAsk['info'] = rawBidAskChanges;
|
|
493
|
+
const bidsAsksDict = {};
|
|
494
|
+
bidsAsksDict[symbol] = currentBidAsk;
|
|
493
495
|
this.bidsasks[symbol] = currentBidAsk;
|
|
494
|
-
client.resolve(
|
|
496
|
+
client.resolve(bidsAsksDict, messageHash);
|
|
495
497
|
}
|
|
496
|
-
async helperForWatchMultipleConstruct(itemHashName, symbols, params = {}) {
|
|
498
|
+
async helperForWatchMultipleConstruct(itemHashName, symbols = undefined, params = {}) {
|
|
497
499
|
await this.loadMarkets();
|
|
500
|
+
if (symbols === undefined) {
|
|
501
|
+
throw new errors.NotSupported(this.id + ' watchMultiple requires at least one symbol');
|
|
502
|
+
}
|
|
498
503
|
symbols = this.marketSymbols(symbols, undefined, false, true, true);
|
|
499
504
|
const firstMarket = this.market(symbols[0]);
|
|
500
505
|
if (!firstMarket['spot'] && !firstMarket['linear']) {
|
|
@@ -98,6 +98,11 @@ class hyperliquid extends hyperliquid$1["default"] {
|
|
|
98
98
|
await this.loadMarkets();
|
|
99
99
|
const [order, globalParams] = this.parseCreateEditOrderArgs(undefined, symbol, type, side, amount, price, params);
|
|
100
100
|
const orders = await this.createOrdersWs([order], globalParams);
|
|
101
|
+
const ordersLength = orders.length;
|
|
102
|
+
if (ordersLength === 0) {
|
|
103
|
+
// not sure why but it is happening sometimes
|
|
104
|
+
return this.safeOrder({});
|
|
105
|
+
}
|
|
101
106
|
const parsedOrder = orders[0];
|
|
102
107
|
return parsedOrder;
|
|
103
108
|
}
|
|
@@ -920,7 +925,10 @@ class hyperliquid extends hyperliquid$1["default"] {
|
|
|
920
925
|
return true;
|
|
921
926
|
}
|
|
922
927
|
const data = this.safeDict(message, 'data', {});
|
|
923
|
-
|
|
928
|
+
let id = this.safeString(message, 'id');
|
|
929
|
+
if (id === undefined) {
|
|
930
|
+
id = this.safeString(data, 'id');
|
|
931
|
+
}
|
|
924
932
|
const response = this.safeDict(data, 'response', {});
|
|
925
933
|
const payload = this.safeDict(response, 'payload', {});
|
|
926
934
|
const status = this.safeString(payload, 'status');
|
|
@@ -69,6 +69,7 @@ class kraken extends kraken$1["default"] {
|
|
|
69
69
|
'broad': {
|
|
70
70
|
'Already subscribed': errors.BadRequest,
|
|
71
71
|
'Currency pair not in ISO 4217-A3 format': errors.BadSymbol,
|
|
72
|
+
'Currency pair not supported': errors.BadSymbol,
|
|
72
73
|
'Malformed request': errors.BadRequest,
|
|
73
74
|
'Pair field must be an array': errors.BadRequest,
|
|
74
75
|
'Pair field unsupported for this subscription type': errors.BadRequest,
|
|
@@ -1708,7 +1709,7 @@ class kraken extends kraken$1["default"] {
|
|
|
1708
1709
|
//
|
|
1709
1710
|
const errorMessage = this.safeString2(message, 'errorMessage', 'error');
|
|
1710
1711
|
if (errorMessage !== undefined) {
|
|
1711
|
-
|
|
1712
|
+
const requestId = this.safeString2(message, 'reqid', 'req_id');
|
|
1712
1713
|
const broad = this.exceptions['ws']['broad'];
|
|
1713
1714
|
const broadKey = this.findBroadlyMatchedKey(broad, errorMessage);
|
|
1714
1715
|
let exception = undefined;
|
|
@@ -1718,11 +1719,9 @@ class kraken extends kraken$1["default"] {
|
|
|
1718
1719
|
else {
|
|
1719
1720
|
exception = new broad[broadKey](errorMessage);
|
|
1720
1721
|
}
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
client.reject(exception);
|
|
1725
|
-
// }
|
|
1722
|
+
if (requestId !== undefined) {
|
|
1723
|
+
client.reject(exception, requestId);
|
|
1724
|
+
}
|
|
1726
1725
|
return false;
|
|
1727
1726
|
}
|
|
1728
1727
|
return true;
|
|
@@ -17,7 +17,7 @@ class lbank extends lbank$1["default"] {
|
|
|
17
17
|
'fetchOrderBookWs': true,
|
|
18
18
|
'fetchTickerWs': true,
|
|
19
19
|
'fetchTradesWs': true,
|
|
20
|
-
'watchBalance':
|
|
20
|
+
'watchBalance': true,
|
|
21
21
|
'watchTicker': true,
|
|
22
22
|
'watchTickers': false,
|
|
23
23
|
'watchTrades': true,
|
|
@@ -669,6 +669,59 @@ class lbank extends lbank$1["default"] {
|
|
|
669
669
|
};
|
|
670
670
|
return this.safeString(statuses, status, status);
|
|
671
671
|
}
|
|
672
|
+
/**
|
|
673
|
+
* @method
|
|
674
|
+
* @name lbank#watchBalance
|
|
675
|
+
* @description watch balance and get the amount of funds available for trading or funds locked in orders
|
|
676
|
+
* @see https://www.lbank.com/docs/index.html#update-subscribed-asset
|
|
677
|
+
* @param {object} [params] extra parameters specific to the exchange API endpoint
|
|
678
|
+
* @returns {object} a [balance structure]{@link https://docs.ccxt.com/#/?id=balance-structure}
|
|
679
|
+
*/
|
|
680
|
+
async watchBalance(params = {}) {
|
|
681
|
+
await this.loadMarkets();
|
|
682
|
+
const key = await this.authenticate(params);
|
|
683
|
+
const url = this.urls['api']['ws'];
|
|
684
|
+
const messageHash = 'balance';
|
|
685
|
+
const message = {
|
|
686
|
+
'action': 'subscribe',
|
|
687
|
+
'subscribe': 'assetUpdate',
|
|
688
|
+
'subscribeKey': key,
|
|
689
|
+
};
|
|
690
|
+
const request = this.deepExtend(message, params);
|
|
691
|
+
return await this.watch(url, messageHash, request, messageHash, request);
|
|
692
|
+
}
|
|
693
|
+
handleBalance(client, message) {
|
|
694
|
+
//
|
|
695
|
+
// {
|
|
696
|
+
// "data": {
|
|
697
|
+
// "asset": "114548.31881315",
|
|
698
|
+
// "assetCode": "usdt",
|
|
699
|
+
// "free": "97430.6739041",
|
|
700
|
+
// "freeze": "17117.64490905",
|
|
701
|
+
// "time": 1627300043270,
|
|
702
|
+
// "type": "ORDER_CREATE"
|
|
703
|
+
// },
|
|
704
|
+
// "SERVER": "V2",
|
|
705
|
+
// "type": "assetUpdate",
|
|
706
|
+
// "TS": "2021-07-26T19:48:03.548"
|
|
707
|
+
// }
|
|
708
|
+
//
|
|
709
|
+
const data = this.safeDict(message, 'data', {});
|
|
710
|
+
const timestamp = this.parse8601(this.safeString(message, 'TS'));
|
|
711
|
+
const datetime = this.iso8601(timestamp);
|
|
712
|
+
this.balance['info'] = data;
|
|
713
|
+
this.balance['timestamp'] = timestamp;
|
|
714
|
+
this.balance['datetime'] = datetime;
|
|
715
|
+
const currencyId = this.safeString(data, 'assetCode');
|
|
716
|
+
const code = this.safeCurrencyCode(currencyId);
|
|
717
|
+
const account = this.account();
|
|
718
|
+
account['free'] = this.safeString(data, 'free');
|
|
719
|
+
account['used'] = this.safeString(data, 'freeze');
|
|
720
|
+
account['total'] = this.safeString(data, 'asset');
|
|
721
|
+
this.balance[code] = account;
|
|
722
|
+
this.balance = this.safeBalance(this.balance);
|
|
723
|
+
client.resolve(this.balance, 'balance');
|
|
724
|
+
}
|
|
672
725
|
/**
|
|
673
726
|
* @method
|
|
674
727
|
* @name lbank#fetchOrderBookWs
|
|
@@ -845,6 +898,7 @@ class lbank extends lbank$1["default"] {
|
|
|
845
898
|
'trade': this.handleTrades,
|
|
846
899
|
'tick': this.handleTicker,
|
|
847
900
|
'orderUpdate': this.handleOrders,
|
|
901
|
+
'assetUpdate': this.handleBalance,
|
|
848
902
|
};
|
|
849
903
|
const handler = this.safeValue(handlers, type);
|
|
850
904
|
if (handler !== undefined) {
|
package/dist/cjs/src/pro/mexc.js
CHANGED
|
@@ -1421,7 +1421,7 @@ class mexc extends mexc$1["default"] {
|
|
|
1421
1421
|
}
|
|
1422
1422
|
return this.safeOrder({
|
|
1423
1423
|
'id': this.safeString(order, 'id'),
|
|
1424
|
-
'clientOrderId': this.safeString(order, '
|
|
1424
|
+
'clientOrderId': this.safeString(order, 'clientId'),
|
|
1425
1425
|
'timestamp': timestamp,
|
|
1426
1426
|
'datetime': this.iso8601(timestamp),
|
|
1427
1427
|
'lastTradeTimestamp': undefined,
|
package/dist/cjs/src/timex.js
CHANGED
|
@@ -28,17 +28,27 @@ class timex extends timex$1["default"] {
|
|
|
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
|
'cancelOrders': true,
|
|
36
|
+
'closeAllPositions': false,
|
|
37
|
+
'closePosition': false,
|
|
33
38
|
'createOrder': true,
|
|
34
39
|
'createReduceOnlyOrder': false,
|
|
35
40
|
'createStopLimitOrder': false,
|
|
36
41
|
'createStopMarketOrder': false,
|
|
37
42
|
'createStopOrder': false,
|
|
38
43
|
'editOrder': true,
|
|
44
|
+
'fetchAllGreeks': false,
|
|
39
45
|
'fetchBalance': true,
|
|
46
|
+
'fetchBorrowInterest': false,
|
|
47
|
+
'fetchBorrowRate': false,
|
|
40
48
|
'fetchBorrowRateHistories': false,
|
|
41
49
|
'fetchBorrowRateHistory': false,
|
|
50
|
+
'fetchBorrowRates': false,
|
|
51
|
+
'fetchBorrowRatesPerSymbol': false,
|
|
42
52
|
'fetchClosedOrders': true,
|
|
43
53
|
'fetchCrossBorrowRate': false,
|
|
44
54
|
'fetchCrossBorrowRates': false,
|
|
@@ -49,21 +59,40 @@ class timex extends timex$1["default"] {
|
|
|
49
59
|
'fetchDepositAddressesByNetwork': false,
|
|
50
60
|
'fetchDeposits': true,
|
|
51
61
|
'fetchFundingHistory': false,
|
|
62
|
+
'fetchFundingInterval': false,
|
|
63
|
+
'fetchFundingIntervals': false,
|
|
52
64
|
'fetchFundingRate': false,
|
|
53
65
|
'fetchFundingRateHistory': false,
|
|
54
66
|
'fetchFundingRates': false,
|
|
67
|
+
'fetchGreeks': false,
|
|
55
68
|
'fetchIndexOHLCV': false,
|
|
56
69
|
'fetchIsolatedBorrowRate': false,
|
|
57
70
|
'fetchIsolatedBorrowRates': false,
|
|
71
|
+
'fetchIsolatedPositions': false,
|
|
58
72
|
'fetchLeverage': false,
|
|
73
|
+
'fetchLeverages': false,
|
|
59
74
|
'fetchLeverageTiers': false,
|
|
75
|
+
'fetchLiquidations': false,
|
|
76
|
+
'fetchLongShortRatio': false,
|
|
77
|
+
'fetchLongShortRatioHistory': false,
|
|
78
|
+
'fetchMarginAdjustmentHistory': false,
|
|
60
79
|
'fetchMarginMode': false,
|
|
80
|
+
'fetchMarginModes': false,
|
|
81
|
+
'fetchMarketLeverageTiers': false,
|
|
61
82
|
'fetchMarkets': true,
|
|
62
83
|
'fetchMarkOHLCV': false,
|
|
84
|
+
'fetchMarkPrice': false,
|
|
85
|
+
'fetchMarkPrices': false,
|
|
86
|
+
'fetchMyLiquidations': false,
|
|
87
|
+
'fetchMySettlementHistory': false,
|
|
63
88
|
'fetchMyTrades': true,
|
|
64
89
|
'fetchOHLCV': true,
|
|
90
|
+
'fetchOpenInterest': false,
|
|
65
91
|
'fetchOpenInterestHistory': false,
|
|
92
|
+
'fetchOpenInterests': false,
|
|
66
93
|
'fetchOpenOrders': true,
|
|
94
|
+
'fetchOption': false,
|
|
95
|
+
'fetchOptionChain': false,
|
|
67
96
|
'fetchOrder': true,
|
|
68
97
|
'fetchOrderBook': true,
|
|
69
98
|
'fetchPosition': false,
|
|
@@ -74,15 +103,21 @@ class timex extends timex$1["default"] {
|
|
|
74
103
|
'fetchPositionsHistory': false,
|
|
75
104
|
'fetchPositionsRisk': false,
|
|
76
105
|
'fetchPremiumIndexOHLCV': false,
|
|
106
|
+
'fetchSettlementHistory': false,
|
|
77
107
|
'fetchTicker': true,
|
|
78
108
|
'fetchTickers': true,
|
|
79
109
|
'fetchTime': true,
|
|
80
110
|
'fetchTrades': true,
|
|
81
111
|
'fetchTradingFee': true,
|
|
112
|
+
'fetchUnderlyingAssets': false,
|
|
113
|
+
'fetchVolatilityHistory': false,
|
|
82
114
|
'fetchWithdrawal': false,
|
|
83
115
|
'fetchWithdrawals': true,
|
|
84
116
|
'reduceMargin': false,
|
|
117
|
+
'repayCrossMargin': false,
|
|
118
|
+
'repayIsolatedMargin': false,
|
|
85
119
|
'setLeverage': false,
|
|
120
|
+
'setMargin': false,
|
|
86
121
|
'setMarginMode': false,
|
|
87
122
|
'setPositionMode': false,
|
|
88
123
|
},
|
|
@@ -29,6 +29,9 @@ class tradeogre extends tradeogre$1["default"] {
|
|
|
29
29
|
'future': false,
|
|
30
30
|
'option': false,
|
|
31
31
|
'addMargin': false,
|
|
32
|
+
'borrowCrossMargin': false,
|
|
33
|
+
'borrowIsolatedMargin': false,
|
|
34
|
+
'borrowMargin': false,
|
|
32
35
|
'cancelAllOrders': true,
|
|
33
36
|
'cancelOrder': true,
|
|
34
37
|
'cancelOrders': false,
|
|
@@ -44,9 +47,14 @@ class tradeogre extends tradeogre$1["default"] {
|
|
|
44
47
|
'createStopMarketOrder': false,
|
|
45
48
|
'createStopOrder': false,
|
|
46
49
|
'fetchAccounts': false,
|
|
50
|
+
'fetchAllGreeks': false,
|
|
47
51
|
'fetchBalance': true,
|
|
48
52
|
'fetchBorrowInterest': false,
|
|
53
|
+
'fetchBorrowRate': false,
|
|
54
|
+
'fetchBorrowRateHistories': false,
|
|
49
55
|
'fetchBorrowRateHistory': false,
|
|
56
|
+
'fetchBorrowRates': false,
|
|
57
|
+
'fetchBorrowRatesPerSymbol': false,
|
|
50
58
|
'fetchClosedOrders': false,
|
|
51
59
|
'fetchCrossBorrowRate': false,
|
|
52
60
|
'fetchCrossBorrowRates': false,
|
|
@@ -57,23 +65,42 @@ class tradeogre extends tradeogre$1["default"] {
|
|
|
57
65
|
'fetchDeposits': false,
|
|
58
66
|
'fetchDepositsWithdrawals': false,
|
|
59
67
|
'fetchFundingHistory': false,
|
|
68
|
+
'fetchFundingInterval': false,
|
|
69
|
+
'fetchFundingIntervals': false,
|
|
60
70
|
'fetchFundingRate': false,
|
|
61
71
|
'fetchFundingRateHistory': false,
|
|
62
72
|
'fetchFundingRates': false,
|
|
73
|
+
'fetchGreeks': false,
|
|
63
74
|
'fetchIndexOHLCV': false,
|
|
64
75
|
'fetchIsolatedBorrowRate': false,
|
|
65
76
|
'fetchIsolatedBorrowRates': false,
|
|
77
|
+
'fetchIsolatedPositions': false,
|
|
66
78
|
'fetchLedger': false,
|
|
67
79
|
'fetchLedgerEntry': false,
|
|
80
|
+
'fetchLeverage': false,
|
|
81
|
+
'fetchLeverages': false,
|
|
68
82
|
'fetchLeverageTiers': false,
|
|
83
|
+
'fetchLiquidations': false,
|
|
84
|
+
'fetchLongShortRatio': false,
|
|
85
|
+
'fetchLongShortRatioHistory': false,
|
|
86
|
+
'fetchMarginAdjustmentHistory': false,
|
|
87
|
+
'fetchMarginMode': false,
|
|
88
|
+
'fetchMarginModes': false,
|
|
69
89
|
'fetchMarketLeverageTiers': false,
|
|
70
90
|
'fetchMarkets': true,
|
|
71
91
|
'fetchMarkOHLCV': false,
|
|
92
|
+
'fetchMarkPrice': false,
|
|
93
|
+
'fetchMarkPrices': false,
|
|
94
|
+
'fetchMyLiquidations': false,
|
|
95
|
+
'fetchMySettlementHistory': false,
|
|
72
96
|
'fetchMyTrades': false,
|
|
73
97
|
'fetchOHLCV': true,
|
|
74
98
|
'fetchOpenInterest': false,
|
|
75
99
|
'fetchOpenInterestHistory': false,
|
|
100
|
+
'fetchOpenInterests': false,
|
|
76
101
|
'fetchOpenOrders': true,
|
|
102
|
+
'fetchOption': false,
|
|
103
|
+
'fetchOptionChain': false,
|
|
77
104
|
'fetchOrder': true,
|
|
78
105
|
'fetchOrderBook': true,
|
|
79
106
|
'fetchOrderBooks': false,
|
|
@@ -87,6 +114,7 @@ class tradeogre extends tradeogre$1["default"] {
|
|
|
87
114
|
'fetchPositionsHistory': false,
|
|
88
115
|
'fetchPositionsRisk': false,
|
|
89
116
|
'fetchPremiumIndexOHLCV': false,
|
|
117
|
+
'fetchSettlementHistory': false,
|
|
90
118
|
'fetchTicker': true,
|
|
91
119
|
'fetchTickers': true,
|
|
92
120
|
'fetchTrades': true,
|
|
@@ -95,10 +123,14 @@ class tradeogre extends tradeogre$1["default"] {
|
|
|
95
123
|
'fetchTransactionFees': false,
|
|
96
124
|
'fetchTransactions': false,
|
|
97
125
|
'fetchTransfers': false,
|
|
126
|
+
'fetchUnderlyingAssets': false,
|
|
127
|
+
'fetchVolatilityHistory': false,
|
|
98
128
|
'fetchWithdrawAddresses': false,
|
|
99
129
|
'fetchWithdrawal': false,
|
|
100
130
|
'fetchWithdrawals': false,
|
|
101
131
|
'reduceMargin': false,
|
|
132
|
+
'repayCrossMargin': false,
|
|
133
|
+
'repayIsolatedMargin': false,
|
|
102
134
|
'setLeverage': false,
|
|
103
135
|
'setMargin': false,
|
|
104
136
|
'setMarginMode': false,
|
|
@@ -31,6 +31,9 @@ class wavesexchange extends wavesexchange$1["default"] {
|
|
|
31
31
|
'future': false,
|
|
32
32
|
'option': false,
|
|
33
33
|
'addMargin': false,
|
|
34
|
+
'borrowCrossMargin': false,
|
|
35
|
+
'borrowIsolatedMargin': false,
|
|
36
|
+
'borrowMargin': false,
|
|
34
37
|
'cancelOrder': true,
|
|
35
38
|
'closeAllPositions': false,
|
|
36
39
|
'closePosition': false,
|
|
@@ -40,9 +43,14 @@ class wavesexchange extends wavesexchange$1["default"] {
|
|
|
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,
|
|
@@ -52,21 +60,40 @@ class wavesexchange extends wavesexchange$1["default"] {
|
|
|
52
60
|
'fetchDepositWithdrawFee': 'emulated',
|
|
53
61
|
'fetchDepositWithdrawFees': true,
|
|
54
62
|
'fetchFundingHistory': false,
|
|
63
|
+
'fetchFundingInterval': false,
|
|
64
|
+
'fetchFundingIntervals': false,
|
|
55
65
|
'fetchFundingRate': false,
|
|
56
66
|
'fetchFundingRateHistory': false,
|
|
57
67
|
'fetchFundingRates': false,
|
|
68
|
+
'fetchGreeks': false,
|
|
58
69
|
'fetchIndexOHLCV': false,
|
|
59
70
|
'fetchIsolatedBorrowRate': false,
|
|
60
71
|
'fetchIsolatedBorrowRates': false,
|
|
72
|
+
'fetchIsolatedPositions': false,
|
|
61
73
|
'fetchLeverage': false,
|
|
74
|
+
'fetchLeverages': false,
|
|
62
75
|
'fetchLeverageTiers': false,
|
|
76
|
+
'fetchLiquidations': false,
|
|
77
|
+
'fetchLongShortRatio': false,
|
|
78
|
+
'fetchLongShortRatioHistory': false,
|
|
79
|
+
'fetchMarginAdjustmentHistory': false,
|
|
63
80
|
'fetchMarginMode': false,
|
|
81
|
+
'fetchMarginModes': false,
|
|
82
|
+
'fetchMarketLeverageTiers': false,
|
|
64
83
|
'fetchMarkets': true,
|
|
65
84
|
'fetchMarkOHLCV': false,
|
|
85
|
+
'fetchMarkPrice': false,
|
|
86
|
+
'fetchMarkPrices': false,
|
|
87
|
+
'fetchMyLiquidations': false,
|
|
88
|
+
'fetchMySettlementHistory': false,
|
|
66
89
|
'fetchMyTrades': true,
|
|
67
90
|
'fetchOHLCV': true,
|
|
91
|
+
'fetchOpenInterest': false,
|
|
68
92
|
'fetchOpenInterestHistory': false,
|
|
93
|
+
'fetchOpenInterests': false,
|
|
69
94
|
'fetchOpenOrders': true,
|
|
95
|
+
'fetchOption': false,
|
|
96
|
+
'fetchOptionChain': false,
|
|
70
97
|
'fetchOrder': true,
|
|
71
98
|
'fetchOrderBook': true,
|
|
72
99
|
'fetchOrders': true,
|
|
@@ -78,14 +105,20 @@ class wavesexchange extends wavesexchange$1["default"] {
|
|
|
78
105
|
'fetchPositionsHistory': false,
|
|
79
106
|
'fetchPositionsRisk': false,
|
|
80
107
|
'fetchPremiumIndexOHLCV': false,
|
|
108
|
+
'fetchSettlementHistory': false,
|
|
81
109
|
'fetchTicker': true,
|
|
82
110
|
'fetchTickers': true,
|
|
83
111
|
'fetchTrades': true,
|
|
84
112
|
'fetchTransfer': false,
|
|
85
113
|
'fetchTransfers': false,
|
|
114
|
+
'fetchUnderlyingAssets': false,
|
|
115
|
+
'fetchVolatilityHistory': false,
|
|
86
116
|
'reduceMargin': false,
|
|
117
|
+
'repayCrossMargin': false,
|
|
118
|
+
'repayIsolatedMargin': false,
|
|
87
119
|
'sandbox': true,
|
|
88
120
|
'setLeverage': false,
|
|
121
|
+
'setMargin': false,
|
|
89
122
|
'setMarginMode': false,
|
|
90
123
|
'setPositionMode': false,
|
|
91
124
|
'signIn': true,
|
package/dist/cjs/src/zonda.js
CHANGED
|
@@ -29,6 +29,9 @@ class zonda extends zonda$1["default"] {
|
|
|
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,
|
|
@@ -37,6 +40,7 @@ class zonda extends zonda$1["default"] {
|
|
|
37
40
|
'createDepositAddress': false,
|
|
38
41
|
'createOrder': true,
|
|
39
42
|
'createReduceOnlyOrder': false,
|
|
43
|
+
'fetchAllGreeks': false,
|
|
40
44
|
'fetchBalance': true,
|
|
41
45
|
'fetchBorrowInterest': false,
|
|
42
46
|
'fetchBorrowRate': false,
|
|
@@ -67,12 +71,15 @@ class zonda extends zonda$1["default"] {
|
|
|
67
71
|
'fetchLeverages': false,
|
|
68
72
|
'fetchLeverageTiers': false,
|
|
69
73
|
'fetchLiquidations': false,
|
|
74
|
+
'fetchLongShortRatio': false,
|
|
75
|
+
'fetchLongShortRatioHistory': false,
|
|
70
76
|
'fetchMarginAdjustmentHistory': false,
|
|
71
77
|
'fetchMarginMode': false,
|
|
72
78
|
'fetchMarginModes': false,
|
|
73
79
|
'fetchMarketLeverageTiers': false,
|
|
74
80
|
'fetchMarkets': true,
|
|
75
81
|
'fetchMarkOHLCV': false,
|
|
82
|
+
'fetchMarkPrice': false,
|
|
76
83
|
'fetchMarkPrices': false,
|
|
77
84
|
'fetchMyLiquidations': false,
|
|
78
85
|
'fetchMySettlementHistory': false,
|
|
@@ -80,6 +87,7 @@ class zonda extends zonda$1["default"] {
|
|
|
80
87
|
'fetchOHLCV': true,
|
|
81
88
|
'fetchOpenInterest': false,
|
|
82
89
|
'fetchOpenInterestHistory': false,
|
|
90
|
+
'fetchOpenInterests': false,
|
|
83
91
|
'fetchOpenOrder': false,
|
|
84
92
|
'fetchOpenOrders': true,
|
|
85
93
|
'fetchOption': false,
|
|
@@ -87,8 +95,11 @@ class zonda extends zonda$1["default"] {
|
|
|
87
95
|
'fetchOrderBook': true,
|
|
88
96
|
'fetchOrderBooks': false,
|
|
89
97
|
'fetchPosition': false,
|
|
98
|
+
'fetchPositionHistory': false,
|
|
90
99
|
'fetchPositionMode': false,
|
|
91
100
|
'fetchPositions': false,
|
|
101
|
+
'fetchPositionsForSymbol': false,
|
|
102
|
+
'fetchPositionsHistory': false,
|
|
92
103
|
'fetchPositionsRisk': false,
|
|
93
104
|
'fetchPremiumIndexOHLCV': false,
|
|
94
105
|
'fetchSettlementHistory': false,
|
|
@@ -109,6 +120,7 @@ class zonda extends zonda$1["default"] {
|
|
|
109
120
|
'reduceMargin': false,
|
|
110
121
|
'repayCrossMargin': false,
|
|
111
122
|
'repayIsolatedMargin': false,
|
|
123
|
+
'repayMargin': false,
|
|
112
124
|
'setLeverage': false,
|
|
113
125
|
'setMargin': false,
|
|
114
126
|
'setMarginMode': false,
|
package/js/ccxt.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import * as functions from './src/base/functions.js';
|
|
|
4
4
|
import * as errors from './src/base/errors.js';
|
|
5
5
|
import type { Int, int, Str, Strings, Num, Bool, IndexType, OrderSide, OrderType, MarketType, SubType, Dict, NullableDict, List, NullableList, Fee, OHLCV, OHLCVC, implicitReturnType, Market, Currency, Dictionary, MinMax, FeeInterface, TradingFeeInterface, MarketInterface, Trade, Order, OrderBook, Ticker, Transaction, Tickers, CurrencyInterface, Balance, BalanceAccount, Account, PartialBalances, Balances, DepositAddress, WithdrawalResponse, FundingRate, FundingRates, Position, BorrowInterest, LeverageTier, LedgerEntry, DepositWithdrawFeeNetwork, DepositWithdrawFee, TransferEntry, CrossBorrowRate, IsolatedBorrowRate, FundingRateHistory, OpenInterest, Liquidation, OrderRequest, CancellationRequest, FundingHistory, MarketMarginModes, MarginMode, Greeks, Conversion, Option, LastPrice, Leverage, MarginModification, Leverages, LastPrices, Currencies, TradingFees, MarginModes, OptionChain, IsolatedBorrowRates, CrossBorrowRates, LeverageTiers, LongShortRatio, OrderBooks, OpenInterests, ConstructorArgs } from './src/base/types.js';
|
|
6
6
|
import { BaseError, ExchangeError, AuthenticationError, PermissionDenied, AccountNotEnabled, AccountSuspended, ArgumentsRequired, BadRequest, BadSymbol, OperationRejected, NoChange, MarginModeAlreadySet, MarketClosed, ManualInteractionNeeded, RestrictedLocation, InsufficientFunds, InvalidAddress, AddressPending, InvalidOrder, OrderNotFound, OrderNotCached, OrderImmediatelyFillable, OrderNotFillable, DuplicateOrderId, ContractUnavailable, NotSupported, InvalidProxySettings, ExchangeClosedByUser, OperationFailed, NetworkError, DDoSProtection, RateLimitExceeded, ExchangeNotAvailable, OnMaintenance, InvalidNonce, ChecksumError, RequestTimeout, BadResponse, NullResponse, CancelPending, UnsubscribeError } from './src/base/errors.js';
|
|
7
|
-
declare const version = "4.
|
|
7
|
+
declare const version = "4.5.1";
|
|
8
8
|
import alpaca from './src/alpaca.js';
|
|
9
9
|
import apex from './src/apex.js';
|
|
10
10
|
import ascendex from './src/ascendex.js';
|
|
@@ -58,7 +58,6 @@ import delta from './src/delta.js';
|
|
|
58
58
|
import deribit from './src/deribit.js';
|
|
59
59
|
import derive from './src/derive.js';
|
|
60
60
|
import digifinex from './src/digifinex.js';
|
|
61
|
-
import ellipx from './src/ellipx.js';
|
|
62
61
|
import exmo from './src/exmo.js';
|
|
63
62
|
import fmfwio from './src/fmfwio.js';
|
|
64
63
|
import foxbit from './src/foxbit.js';
|
|
@@ -103,7 +102,6 @@ import timex from './src/timex.js';
|
|
|
103
102
|
import tokocrypto from './src/tokocrypto.js';
|
|
104
103
|
import tradeogre from './src/tradeogre.js';
|
|
105
104
|
import upbit from './src/upbit.js';
|
|
106
|
-
import vertex from './src/vertex.js';
|
|
107
105
|
import wavesexchange from './src/wavesexchange.js';
|
|
108
106
|
import whitebit from './src/whitebit.js';
|
|
109
107
|
import woo from './src/woo.js';
|
|
@@ -180,7 +178,6 @@ import poloniexPro from './src/pro/poloniex.js';
|
|
|
180
178
|
import probitPro from './src/pro/probit.js';
|
|
181
179
|
import tradeogrePro from './src/pro/tradeogre.js';
|
|
182
180
|
import upbitPro from './src/pro/upbit.js';
|
|
183
|
-
import vertexPro from './src/pro/vertex.js';
|
|
184
181
|
import whitebitPro from './src/pro/whitebit.js';
|
|
185
182
|
import wooPro from './src/pro/woo.js';
|
|
186
183
|
import woofiproPro from './src/pro/woofipro.js';
|
|
@@ -239,7 +236,6 @@ declare const exchanges: {
|
|
|
239
236
|
deribit: typeof deribit;
|
|
240
237
|
derive: typeof derive;
|
|
241
238
|
digifinex: typeof digifinex;
|
|
242
|
-
ellipx: typeof ellipx;
|
|
243
239
|
exmo: typeof exmo;
|
|
244
240
|
fmfwio: typeof fmfwio;
|
|
245
241
|
foxbit: typeof foxbit;
|
|
@@ -284,7 +280,6 @@ declare const exchanges: {
|
|
|
284
280
|
tokocrypto: typeof tokocrypto;
|
|
285
281
|
tradeogre: typeof tradeogre;
|
|
286
282
|
upbit: typeof upbit;
|
|
287
|
-
vertex: typeof vertex;
|
|
288
283
|
wavesexchange: typeof wavesexchange;
|
|
289
284
|
whitebit: typeof whitebit;
|
|
290
285
|
woo: typeof woo;
|
|
@@ -363,7 +358,6 @@ declare const pro: {
|
|
|
363
358
|
probit: typeof probitPro;
|
|
364
359
|
tradeogre: typeof tradeogrePro;
|
|
365
360
|
upbit: typeof upbitPro;
|
|
366
|
-
vertex: typeof vertexPro;
|
|
367
361
|
whitebit: typeof whitebitPro;
|
|
368
362
|
woo: typeof wooPro;
|
|
369
363
|
woofipro: typeof woofiproPro;
|
|
@@ -443,7 +437,6 @@ declare const ccxt: {
|
|
|
443
437
|
probit: typeof probitPro;
|
|
444
438
|
tradeogre: typeof tradeogrePro;
|
|
445
439
|
upbit: typeof upbitPro;
|
|
446
|
-
vertex: typeof vertexPro;
|
|
447
440
|
whitebit: typeof whitebitPro;
|
|
448
441
|
woo: typeof wooPro;
|
|
449
442
|
woofipro: typeof woofiproPro;
|
|
@@ -503,7 +496,6 @@ declare const ccxt: {
|
|
|
503
496
|
deribit: typeof deribit;
|
|
504
497
|
derive: typeof derive;
|
|
505
498
|
digifinex: typeof digifinex;
|
|
506
|
-
ellipx: typeof ellipx;
|
|
507
499
|
exmo: typeof exmo;
|
|
508
500
|
fmfwio: typeof fmfwio;
|
|
509
501
|
foxbit: typeof foxbit;
|
|
@@ -548,7 +540,6 @@ declare const ccxt: {
|
|
|
548
540
|
tokocrypto: typeof tokocrypto;
|
|
549
541
|
tradeogre: typeof tradeogre;
|
|
550
542
|
upbit: typeof upbit;
|
|
551
|
-
vertex: typeof vertex;
|
|
552
543
|
wavesexchange: typeof wavesexchange;
|
|
553
544
|
whitebit: typeof whitebit;
|
|
554
545
|
woo: typeof woo;
|
|
@@ -558,5 +549,5 @@ declare const ccxt: {
|
|
|
558
549
|
zaif: typeof zaif;
|
|
559
550
|
zonda: typeof zonda;
|
|
560
551
|
} & typeof functions & typeof errors;
|
|
561
|
-
export { version, Exchange, exchanges, pro, Precise, functions, errors, BaseError, ExchangeError, AuthenticationError, PermissionDenied, AccountNotEnabled, AccountSuspended, ArgumentsRequired, BadRequest, BadSymbol, OperationRejected, NoChange, MarginModeAlreadySet, MarketClosed, ManualInteractionNeeded, RestrictedLocation, InsufficientFunds, InvalidAddress, AddressPending, InvalidOrder, OrderNotFound, OrderNotCached, OrderImmediatelyFillable, OrderNotFillable, DuplicateOrderId, ContractUnavailable, NotSupported, InvalidProxySettings, ExchangeClosedByUser, OperationFailed, NetworkError, DDoSProtection, RateLimitExceeded, ExchangeNotAvailable, OnMaintenance, InvalidNonce, ChecksumError, RequestTimeout, BadResponse, NullResponse, CancelPending, UnsubscribeError, Int, int, Str, Strings, Num, Bool, IndexType, OrderSide, OrderType, MarketType, SubType, Dict, NullableDict, List, NullableList, Fee, OHLCV, OHLCVC, implicitReturnType, Market, Currency, ConstructorArgs, Dictionary, MinMax, FeeInterface, TradingFeeInterface, MarketMarginModes, MarketInterface, Trade, Order, OrderBook, OrderBooks, Ticker, Transaction, Tickers, CurrencyInterface, Balance, BalanceAccount, Account, PartialBalances, Balances, DepositAddress, WithdrawalResponse, FundingRate, FundingRates, Position, BorrowInterest, LeverageTier, LedgerEntry, DepositWithdrawFeeNetwork, DepositWithdrawFee, TransferEntry, CrossBorrowRate, IsolatedBorrowRate, FundingRateHistory, OpenInterest, OpenInterests, Liquidation, OrderRequest, CancellationRequest, FundingHistory, MarginMode, Greeks, Conversion, Option, LastPrice, Leverage, LongShortRatio, MarginModification, Leverages, LastPrices, Currencies, TradingFees, MarginModes, OptionChain, IsolatedBorrowRates, CrossBorrowRates, LeverageTiers, alpaca, apex, ascendex, bequant, bigone, binance, binancecoinm, binanceus, binanceusdm, bingx, bit2c, bitbank, bitbns, bitfinex, bitflyer, bitget, bithumb, bitmart, bitmex, bitopro, bitrue, bitso, bitstamp, bitteam, bittrade, bitvavo, blockchaincom, blofin, btcalpha, btcbox, btcmarkets, btcturk, bybit, cex, coinbase, coinbaseadvanced, coinbaseexchange, coinbaseinternational, coincatch, coincheck, coinex, coinmate, coinmetro, coinone, coinsph, coinspot, cryptocom, cryptomus, defx, delta, deribit, derive, digifinex,
|
|
552
|
+
export { version, Exchange, exchanges, pro, Precise, functions, errors, BaseError, ExchangeError, AuthenticationError, PermissionDenied, AccountNotEnabled, AccountSuspended, ArgumentsRequired, BadRequest, BadSymbol, OperationRejected, NoChange, MarginModeAlreadySet, MarketClosed, ManualInteractionNeeded, RestrictedLocation, InsufficientFunds, InvalidAddress, AddressPending, InvalidOrder, OrderNotFound, OrderNotCached, OrderImmediatelyFillable, OrderNotFillable, DuplicateOrderId, ContractUnavailable, NotSupported, InvalidProxySettings, ExchangeClosedByUser, OperationFailed, NetworkError, DDoSProtection, RateLimitExceeded, ExchangeNotAvailable, OnMaintenance, InvalidNonce, ChecksumError, RequestTimeout, BadResponse, NullResponse, CancelPending, UnsubscribeError, Int, int, Str, Strings, Num, Bool, IndexType, OrderSide, OrderType, MarketType, SubType, Dict, NullableDict, List, NullableList, Fee, OHLCV, OHLCVC, implicitReturnType, Market, Currency, ConstructorArgs, Dictionary, MinMax, FeeInterface, TradingFeeInterface, MarketMarginModes, MarketInterface, Trade, Order, OrderBook, OrderBooks, Ticker, Transaction, Tickers, CurrencyInterface, Balance, BalanceAccount, Account, PartialBalances, Balances, DepositAddress, WithdrawalResponse, FundingRate, FundingRates, Position, BorrowInterest, LeverageTier, LedgerEntry, DepositWithdrawFeeNetwork, DepositWithdrawFee, TransferEntry, CrossBorrowRate, IsolatedBorrowRate, FundingRateHistory, OpenInterest, OpenInterests, Liquidation, OrderRequest, CancellationRequest, FundingHistory, MarginMode, Greeks, Conversion, Option, LastPrice, Leverage, LongShortRatio, MarginModification, Leverages, LastPrices, Currencies, TradingFees, MarginModes, OptionChain, IsolatedBorrowRates, CrossBorrowRates, LeverageTiers, alpaca, apex, ascendex, bequant, bigone, binance, binancecoinm, binanceus, binanceusdm, bingx, bit2c, bitbank, bitbns, bitfinex, bitflyer, bitget, bithumb, bitmart, bitmex, bitopro, bitrue, bitso, bitstamp, bitteam, bittrade, bitvavo, blockchaincom, blofin, btcalpha, btcbox, btcmarkets, btcturk, bybit, cex, coinbase, coinbaseadvanced, coinbaseexchange, coinbaseinternational, coincatch, coincheck, coinex, coinmate, coinmetro, coinone, coinsph, coinspot, cryptocom, cryptomus, defx, delta, deribit, derive, digifinex, exmo, fmfwio, foxbit, gate, gateio, gemini, hashkey, hibachi, hitbtc, hollaex, htx, huobi, hyperliquid, independentreserve, indodax, kraken, krakenfutures, kucoin, kucoinfutures, latoken, lbank, luno, mercado, mexc, modetrade, myokx, ndax, novadax, oceanex, okcoin, okx, okxus, onetrading, oxfun, p2b, paradex, paymium, phemex, poloniex, probit, timex, tokocrypto, tradeogre, upbit, wavesexchange, whitebit, woo, woofipro, xt, yobit, zaif, zonda, };
|
|
562
553
|
export default ccxt;
|