ccxt 4.4.32 → 4.4.34

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 (118) hide show
  1. package/README.md +8 -7
  2. package/dist/ccxt.browser.min.js +6 -6
  3. package/dist/cjs/ccxt.js +4 -1
  4. package/dist/cjs/src/abstract/ellipx.js +9 -0
  5. package/dist/cjs/src/alpaca.js +2 -0
  6. package/dist/cjs/src/base/Exchange.js +116 -1
  7. package/dist/cjs/src/binance.js +164 -6
  8. package/dist/cjs/src/bingx.js +156 -9
  9. package/dist/cjs/src/bitbank.js +5 -0
  10. package/dist/cjs/src/bitbns.js +2 -0
  11. package/dist/cjs/src/bitfinex2.js +2 -1
  12. package/dist/cjs/src/bitget.js +177 -44
  13. package/dist/cjs/src/bitmex.js +2 -0
  14. package/dist/cjs/src/bitopro.js +3 -0
  15. package/dist/cjs/src/bitrue.js +1 -0
  16. package/dist/cjs/src/btcmarkets.js +2 -0
  17. package/dist/cjs/src/bybit.js +148 -13
  18. package/dist/cjs/src/cex.js +16 -6
  19. package/dist/cjs/src/coinbase.js +5 -24
  20. package/dist/cjs/src/coinbaseexchange.js +2 -1
  21. package/dist/cjs/src/coinex.js +2 -0
  22. package/dist/cjs/src/coinone.js +7 -7
  23. package/dist/cjs/src/coinsph.js +7 -7
  24. package/dist/cjs/src/coinspot.js +39 -39
  25. package/dist/cjs/src/cryptocom.js +36 -34
  26. package/dist/cjs/src/ellipx.js +1871 -0
  27. package/dist/cjs/src/gate.js +2 -1
  28. package/dist/cjs/src/hyperliquid.js +16 -2
  29. package/dist/cjs/src/kraken.js +1 -0
  30. package/dist/cjs/src/krakenfutures.js +3 -1
  31. package/dist/cjs/src/kucoinfutures.js +1 -1
  32. package/dist/cjs/src/lbank.js +1 -0
  33. package/dist/cjs/src/okcoin.js +2 -0
  34. package/dist/cjs/src/okx.js +104 -9
  35. package/dist/cjs/src/onetrading.js +14 -1
  36. package/dist/cjs/src/paradex.js +2 -0
  37. package/dist/cjs/src/phemex.js +35 -7
  38. package/dist/cjs/src/poloniex.js +3 -1
  39. package/dist/cjs/src/poloniexfutures.js +3 -1
  40. package/dist/cjs/src/pro/idex.js +5 -0
  41. package/dist/cjs/src/pro/okx.js +11 -1
  42. package/dist/cjs/src/pro/probit.js +4 -2
  43. package/dist/cjs/src/pro/woo.js +15 -15
  44. package/dist/cjs/src/vertex.js +2 -0
  45. package/dist/cjs/src/woo.js +69 -69
  46. package/examples/js/cli.js +1 -1
  47. package/js/ccxt.d.ts +5 -2
  48. package/js/ccxt.js +4 -2
  49. package/js/src/abstract/bingx.d.ts +16 -0
  50. package/js/src/abstract/bitbank.d.ts +5 -0
  51. package/js/src/abstract/bitfinex2.d.ts +1 -0
  52. package/js/src/abstract/coinbaseexchange.d.ts +1 -0
  53. package/js/src/abstract/ellipx.d.ts +28 -0
  54. package/js/src/abstract/ellipx.js +11 -0
  55. package/js/src/abstract/kraken.d.ts +1 -0
  56. package/js/src/alpaca.js +2 -0
  57. package/js/src/base/Exchange.d.ts +11 -0
  58. package/js/src/base/Exchange.js +116 -1
  59. package/js/src/binance.js +164 -6
  60. package/js/src/bingx.d.ts +3 -1
  61. package/js/src/bingx.js +156 -9
  62. package/js/src/bitbank.js +5 -0
  63. package/js/src/bitbns.js +2 -0
  64. package/js/src/bitfinex2.js +2 -1
  65. package/js/src/bitget.d.ts +4 -4
  66. package/js/src/bitget.js +177 -44
  67. package/js/src/bitmex.js +2 -0
  68. package/js/src/bitopro.d.ts +1 -0
  69. package/js/src/bitopro.js +3 -0
  70. package/js/src/bitrue.js +1 -0
  71. package/js/src/btcmarkets.d.ts +1 -0
  72. package/js/src/btcmarkets.js +2 -0
  73. package/js/src/bybit.d.ts +3 -2
  74. package/js/src/bybit.js +149 -14
  75. package/js/src/cex.d.ts +1 -0
  76. package/js/src/cex.js +17 -7
  77. package/js/src/coinbase.d.ts +2 -1
  78. package/js/src/coinbase.js +5 -24
  79. package/js/src/coinbaseexchange.js +2 -1
  80. package/js/src/coinex.js +2 -0
  81. package/js/src/coinone.js +7 -7
  82. package/js/src/coinsph.js +7 -7
  83. package/js/src/coinspot.js +39 -39
  84. package/js/src/cryptocom.d.ts +1 -1
  85. package/js/src/cryptocom.js +36 -34
  86. package/js/src/ellipx.d.ts +236 -0
  87. package/js/src/ellipx.js +1874 -0
  88. package/js/src/gate.d.ts +2 -2
  89. package/js/src/gate.js +2 -1
  90. package/js/src/hyperliquid.d.ts +2 -1
  91. package/js/src/hyperliquid.js +16 -2
  92. package/js/src/kraken.js +1 -0
  93. package/js/src/krakenfutures.js +3 -1
  94. package/js/src/kucoinfutures.d.ts +1 -1
  95. package/js/src/kucoinfutures.js +1 -1
  96. package/js/src/lbank.js +1 -0
  97. package/js/src/okcoin.js +2 -0
  98. package/js/src/okx.d.ts +1 -1
  99. package/js/src/okx.js +104 -9
  100. package/js/src/onetrading.d.ts +5 -0
  101. package/js/src/onetrading.js +15 -2
  102. package/js/src/paradex.js +2 -0
  103. package/js/src/phemex.d.ts +4 -0
  104. package/js/src/phemex.js +35 -7
  105. package/js/src/poloniex.d.ts +1 -1
  106. package/js/src/poloniex.js +3 -1
  107. package/js/src/poloniexfutures.d.ts +1 -1
  108. package/js/src/poloniexfutures.js +3 -1
  109. package/js/src/pro/idex.d.ts +5 -0
  110. package/js/src/pro/idex.js +5 -0
  111. package/js/src/pro/okx.js +11 -1
  112. package/js/src/pro/probit.js +4 -2
  113. package/js/src/pro/woo.d.ts +11 -11
  114. package/js/src/pro/woo.js +15 -15
  115. package/js/src/vertex.js +2 -0
  116. package/js/src/woo.d.ts +60 -60
  117. package/js/src/woo.js +69 -69
  118. package/package.json +3 -3
@@ -28,14 +28,14 @@ class woo extends woo$1 {
28
28
  'urls': {
29
29
  'api': {
30
30
  'ws': {
31
- 'public': 'wss://wss.woo.org/ws/stream',
32
- 'private': 'wss://wss.woo.org/v2/ws/private/stream',
31
+ 'public': 'wss://wss.woox.io/ws/stream',
32
+ 'private': 'wss://wss.woox.io/v2/ws/private/stream',
33
33
  },
34
34
  },
35
35
  'test': {
36
36
  'ws': {
37
- 'public': 'wss://wss.staging.woo.org/ws/stream',
38
- 'private': 'wss://wss.staging.woo.org/v2/ws/private/stream',
37
+ 'public': 'wss://wss.staging.woox.io/ws/stream',
38
+ 'private': 'wss://wss.staging.woox.io/v2/ws/private/stream',
39
39
  },
40
40
  },
41
41
  },
@@ -86,8 +86,8 @@ class woo extends woo$1 {
86
86
  /**
87
87
  * @method
88
88
  * @name woo#watchOrderBook
89
- * @see https://docs.woo.org/#orderbookupdate
90
- * @see https://docs.woo.org/#orderbook
89
+ * @see https://docs.woox.io/#orderbookupdate
90
+ * @see https://docs.woox.io/#orderbook
91
91
  * @description watches information on open orders with bid (buy) and ask (sell) prices, volumes and other data
92
92
  * @param {string} symbol unified symbol of the market to fetch the order book for
93
93
  * @param {int} [limit] the maximum amount of order book entries to return.
@@ -340,7 +340,7 @@ class woo extends woo$1 {
340
340
  /**
341
341
  * @method
342
342
  * @name woo#watchTickers
343
- * @see https://docs.woo.org/#24h-tickers
343
+ * @see https://docs.woox.io/#24h-tickers
344
344
  * @description watches a price ticker, a statistical calculation with the information calculated over the past 24 hours for all markets of a specific list
345
345
  * @param {string[]} symbols unified symbol of the market to fetch the ticker for
346
346
  * @param {object} [params] extra parameters specific to the exchange API endpoint
@@ -477,7 +477,7 @@ class woo extends woo$1 {
477
477
  * @method
478
478
  * @name woo#watchOHLCV
479
479
  * @description watches historical candlestick data containing the open, high, low, and close price, and the volume of a market
480
- * @see https://docs.woo.org/#k-line
480
+ * @see https://docs.woox.io/#k-line
481
481
  * @param {string} symbol unified symbol of the market to fetch OHLCV data for
482
482
  * @param {string} timeframe the length of time each candle represents
483
483
  * @param {int} [since] timestamp in ms of the earliest candle to fetch
@@ -553,7 +553,7 @@ class woo extends woo$1 {
553
553
  * @method
554
554
  * @name woo#watchTrades
555
555
  * @description watches information on multiple trades made in a market
556
- * @see https://docs.woo.org/#trade
556
+ * @see https://docs.woox.io/#trade
557
557
  * @param {string} symbol unified market symbol of the market trades were made in
558
558
  * @param {int} [since] the earliest time in ms to fetch trades for
559
559
  * @param {int} [limit] the maximum number of trade structures to retrieve
@@ -743,8 +743,8 @@ class woo extends woo$1 {
743
743
  /**
744
744
  * @method
745
745
  * @name woo#watchOrders
746
- * @see https://docs.woo.org/#executionreport
747
- * @see https://docs.woo.org/#algoexecutionreportv2
746
+ * @see https://docs.woox.io/#executionreport
747
+ * @see https://docs.woox.io/#algoexecutionreportv2
748
748
  * @description watches information on multiple orders made by the user
749
749
  * @param {string} symbol unified market symbol of the market orders were made in
750
750
  * @param {int} [since] the earliest time in ms to fetch orders for
@@ -778,8 +778,8 @@ class woo extends woo$1 {
778
778
  /**
779
779
  * @method
780
780
  * @name woo#watchMyTrades
781
- * @see https://docs.woo.org/#executionreport
782
- * @see https://docs.woo.org/#algoexecutionreportv2
781
+ * @see https://docs.woox.io/#executionreport
782
+ * @see https://docs.woox.io/#algoexecutionreportv2
783
783
  * @description watches information on multiple trades made by the user
784
784
  * @param {string} symbol unified market symbol of the market orders were made in
785
785
  * @param {int} [since] the earliest time in ms to fetch orders for
@@ -1018,7 +1018,7 @@ class woo extends woo$1 {
1018
1018
  /**
1019
1019
  * @method
1020
1020
  * @name woo#watchPositions
1021
- * @see https://docs.woo.org/#position-push
1021
+ * @see https://docs.woox.io/#position-push
1022
1022
  * @description watch all open positions
1023
1023
  * @param {string[]|undefined} symbols list of unified market symbols
1024
1024
  * @param since
@@ -1135,7 +1135,7 @@ class woo extends woo$1 {
1135
1135
  }
1136
1136
  /**
1137
1137
  * @method
1138
- * @see https://docs.woo.org/#balance
1138
+ * @see https://docs.woox.io/#balance
1139
1139
  * @name woo#watchBalance
1140
1140
  * @description watch balance and get the amount of funds available for trading or funds locked in orders
1141
1141
  * @param {object} [params] extra parameters specific to the exchange API endpoint
@@ -48,6 +48,8 @@ class vertex extends vertex$1 {
48
48
  'createOrder': true,
49
49
  'createOrders': true,
50
50
  'createReduceOnlyOrder': true,
51
+ 'createStopOrder': true,
52
+ 'createTriggerOrder': true,
51
53
  'editOrder': false,
52
54
  'fetchAccounts': false,
53
55
  'fetchBalance': true,
@@ -22,7 +22,7 @@ class woo extends woo$1 {
22
22
  'version': 'v1',
23
23
  'certified': true,
24
24
  'pro': true,
25
- 'hostname': 'woo.org',
25
+ 'hostname': 'woox.io',
26
26
  'has': {
27
27
  'CORS': undefined,
28
28
  'spot': true,
@@ -131,24 +131,24 @@ class woo extends woo$1 {
131
131
  'urls': {
132
132
  'logo': 'https://user-images.githubusercontent.com/1294454/150730761-1a00e5e0-d28c-480f-9e65-089ce3e6ef3b.jpg',
133
133
  'api': {
134
- 'pub': 'https://api-pub.woo.org',
134
+ 'pub': 'https://api-pub.woox.io',
135
135
  'public': 'https://api.{hostname}',
136
136
  'private': 'https://api.{hostname}',
137
137
  },
138
138
  'test': {
139
- 'pub': 'https://api-pub.staging.woo.org',
140
- 'public': 'https://api.staging.woo.org',
141
- 'private': 'https://api.staging.woo.org',
139
+ 'pub': 'https://api-pub.staging.woox.io',
140
+ 'public': 'https://api.staging.woox.io',
141
+ 'private': 'https://api.staging.woox.io',
142
142
  },
143
- 'www': 'https://woo.org/',
143
+ 'www': 'https://woox.io/',
144
144
  'doc': [
145
- 'https://docs.woo.org/',
145
+ 'https://docs.woox.io/',
146
146
  ],
147
147
  'fees': [
148
- 'https://support.woo.org/hc/en-001/articles/4404611795353--Trading-Fees',
148
+ 'https://support.woox.io/hc/en-001/articles/4404611795353--Trading-Fees',
149
149
  ],
150
150
  'referral': {
151
- 'url': 'https://x.woo.org/register?ref=DIJT0CNL',
151
+ 'url': 'https://woox.io/register?ref=DIJT0CNL',
152
152
  'discount': 0.35,
153
153
  },
154
154
  },
@@ -346,7 +346,7 @@ class woo extends woo$1 {
346
346
  * @method
347
347
  * @name woo#fetchStatus
348
348
  * @description the latest known information on the availability of the exchange API
349
- * @see https://docs.woo.org/#get-system-maintenance-status-public
349
+ * @see https://docs.woox.io/#get-system-maintenance-status-public
350
350
  * @param {object} [params] extra parameters specific to the exchange API endpoint
351
351
  * @returns {object} a [status structure]{@link https://docs.ccxt.com/#/?id=exchange-status-structure}
352
352
  */
@@ -385,7 +385,7 @@ class woo extends woo$1 {
385
385
  * @method
386
386
  * @name woo#fetchTime
387
387
  * @description fetches the current integer timestamp in milliseconds from the exchange server
388
- * @see https://docs.woo.org/#get-system-maintenance-status-public
388
+ * @see https://docs.woox.io/#get-system-maintenance-status-public
389
389
  * @param {object} [params] extra parameters specific to the exchange API endpoint
390
390
  * @returns {int} the current integer timestamp in milliseconds from the exchange server
391
391
  */
@@ -407,7 +407,7 @@ class woo extends woo$1 {
407
407
  * @method
408
408
  * @name woo#fetchMarkets
409
409
  * @description retrieves data on all markets for woo
410
- * @see https://docs.woo.org/#exchange-information
410
+ * @see https://docs.woox.io/#exchange-information
411
411
  * @param {object} [params] extra parameters specific to the exchange API endpoint
412
412
  * @returns {object[]} an array of objects representing market data
413
413
  */
@@ -525,7 +525,7 @@ class woo extends woo$1 {
525
525
  * @method
526
526
  * @name woo#fetchTrades
527
527
  * @description get the list of most recent trades for a particular symbol
528
- * @see https://docs.woo.org/#market-trades-public
528
+ * @see https://docs.woox.io/#market-trades-public
529
529
  * @param {string} symbol unified symbol of the market to fetch trades for
530
530
  * @param {int} [since] timestamp in ms of the earliest trade to fetch
531
531
  * @param {int} [limit] the maximum amount of trades to fetch
@@ -656,7 +656,7 @@ class woo extends woo$1 {
656
656
  * @method
657
657
  * @name woo#fetchTradingFees
658
658
  * @description fetch the trading fees for multiple markets
659
- * @see https://docs.woo.org/#get-account-information-new
659
+ * @see https://docs.woox.io/#get-account-information-new
660
660
  * @param {object} [params] extra parameters specific to the exchange API endpoint
661
661
  * @returns {object} a dictionary of [fee structures]{@link https://docs.ccxt.com/#/?id=fee-structure} indexed by market symbols
662
662
  */
@@ -712,7 +712,7 @@ class woo extends woo$1 {
712
712
  * @method
713
713
  * @name woo#fetchCurrencies
714
714
  * @description fetches all available currencies on an exchange
715
- * @see https://docs.woo.org/#available-token-public
715
+ * @see https://docs.woox.io/#available-token-public
716
716
  * @param {object} [params] extra parameters specific to the exchange API endpoint
717
717
  * @returns {object} an associative dictionary of currencies
718
718
  */
@@ -849,7 +849,7 @@ class woo extends woo$1 {
849
849
  * @method
850
850
  * @name woo#createMarketBuyOrderWithCost
851
851
  * @description create a market buy order by providing the symbol and cost
852
- * @see https://docs.woo.org/#send-order
852
+ * @see https://docs.woox.io/#send-order
853
853
  * @param {string} symbol unified symbol of the market to create an order in
854
854
  * @param {float} cost how much you want to trade in units of the quote currency
855
855
  * @param {object} [params] extra parameters specific to the exchange API endpoint
@@ -867,7 +867,7 @@ class woo extends woo$1 {
867
867
  * @method
868
868
  * @name woo#createMarketSellOrderWithCost
869
869
  * @description create a market sell order by providing the symbol and cost
870
- * @see https://docs.woo.org/#send-order
870
+ * @see https://docs.woox.io/#send-order
871
871
  * @param {string} symbol unified symbol of the market to create an order in
872
872
  * @param {float} cost how much you want to trade in units of the quote currency
873
873
  * @param {object} [params] extra parameters specific to the exchange API endpoint
@@ -885,7 +885,7 @@ class woo extends woo$1 {
885
885
  * @method
886
886
  * @name woo#createTrailingAmountOrder
887
887
  * @description create a trailing order by providing the symbol, type, side, amount, price and trailingAmount
888
- * @see https://docs.woo.org/#send-algo-order
888
+ * @see https://docs.woox.io/#send-algo-order
889
889
  * @param {string} symbol unified symbol of the market to create an order in
890
890
  * @param {string} type 'market' or 'limit'
891
891
  * @param {string} side 'buy' or 'sell'
@@ -911,7 +911,7 @@ class woo extends woo$1 {
911
911
  * @method
912
912
  * @name woo#createTrailingPercentOrder
913
913
  * @description create a trailing order by providing the symbol, type, side, amount, price and trailingPercent
914
- * @see https://docs.woo.org/#send-algo-order
914
+ * @see https://docs.woox.io/#send-algo-order
915
915
  * @param {string} symbol unified symbol of the market to create an order in
916
916
  * @param {string} type 'market' or 'limit'
917
917
  * @param {string} side 'buy' or 'sell'
@@ -937,8 +937,8 @@ class woo extends woo$1 {
937
937
  * @method
938
938
  * @name woo#createOrder
939
939
  * @description create a trade order
940
- * @see https://docs.woo.org/#send-order
941
- * @see https://docs.woo.org/#send-algo-order
940
+ * @see https://docs.woox.io/#send-order
941
+ * @see https://docs.woox.io/#send-algo-order
942
942
  * @param {string} symbol unified symbol of the market to create an order in
943
943
  * @param {string} type 'market' or 'limit'
944
944
  * @param {string} side 'buy' or 'sell'
@@ -1147,10 +1147,10 @@ class woo extends woo$1 {
1147
1147
  * @method
1148
1148
  * @name woo#editOrder
1149
1149
  * @description edit a trade order
1150
- * @see https://docs.woo.org/#edit-order
1151
- * @see https://docs.woo.org/#edit-order-by-client_order_id
1152
- * @see https://docs.woo.org/#edit-algo-order
1153
- * @see https://docs.woo.org/#edit-algo-order-by-client_order_id
1150
+ * @see https://docs.woox.io/#edit-order
1151
+ * @see https://docs.woox.io/#edit-order-by-client_order_id
1152
+ * @see https://docs.woox.io/#edit-algo-order
1153
+ * @see https://docs.woox.io/#edit-algo-order-by-client_order_id
1154
1154
  * @param {string} id order id
1155
1155
  * @param {string} symbol unified symbol of the market to create an order in
1156
1156
  * @param {string} type 'market' or 'limit'
@@ -1243,9 +1243,9 @@ class woo extends woo$1 {
1243
1243
  /**
1244
1244
  * @method
1245
1245
  * @name woo#cancelOrder
1246
- * @see https://docs.woo.org/#cancel-algo-order
1247
- * @see https://docs.woo.org/#cancel-order
1248
- * @see https://docs.woo.org/#cancel-order-by-client_order_id
1246
+ * @see https://docs.woox.io/#cancel-algo-order
1247
+ * @see https://docs.woox.io/#cancel-order
1248
+ * @see https://docs.woox.io/#cancel-order-by-client_order_id
1249
1249
  * @description cancels an open order
1250
1250
  * @param {string} id order id
1251
1251
  * @param {string} symbol unified symbol of the market the order was made in
@@ -1300,9 +1300,9 @@ class woo extends woo$1 {
1300
1300
  /**
1301
1301
  * @method
1302
1302
  * @name woo#cancelAllOrders
1303
- * @see https://docs.woo.org/#cancel-all-pending-orders
1304
- * @see https://docs.woo.org/#cancel-orders
1305
- * @see https://docs.woo.org/#cancel-all-pending-algo-orders
1303
+ * @see https://docs.woox.io/#cancel-all-pending-orders
1304
+ * @see https://docs.woox.io/#cancel-orders
1305
+ * @see https://docs.woox.io/#cancel-all-pending-algo-orders
1306
1306
  * @description cancel all open orders in a market
1307
1307
  * @param {string} symbol unified market symbol
1308
1308
  * @param {object} [params] extra parameters specific to the exchange API endpoint
@@ -1338,7 +1338,7 @@ class woo extends woo$1 {
1338
1338
  * @method
1339
1339
  * @name woo#cancelAllOrdersAfter
1340
1340
  * @description dead man's switch, cancel all orders after the given timeout
1341
- * @see https://docs.woo.org/#cancel-all-after
1341
+ * @see https://docs.woox.io/#cancel-all-after
1342
1342
  * @param {number} timeout time in milliseconds, 0 represents cancel the timer
1343
1343
  * @param {object} [params] extra parameters specific to the exchange API endpoint
1344
1344
  * @returns {object} the api result
@@ -1365,8 +1365,8 @@ class woo extends woo$1 {
1365
1365
  /**
1366
1366
  * @method
1367
1367
  * @name woo#fetchOrder
1368
- * @see https://docs.woo.org/#get-algo-order
1369
- * @see https://docs.woo.org/#get-order
1368
+ * @see https://docs.woox.io/#get-algo-order
1369
+ * @see https://docs.woox.io/#get-order
1370
1370
  * @description fetches information on an order made by the user
1371
1371
  * @param {string} id the order id
1372
1372
  * @param {string} symbol unified symbol of the market the order was made in
@@ -1436,8 +1436,8 @@ class woo extends woo$1 {
1436
1436
  * @method
1437
1437
  * @name woo#fetchOrders
1438
1438
  * @description fetches information on multiple orders made by the user
1439
- * @see https://docs.woo.org/#get-orders
1440
- * @see https://docs.woo.org/#get-algo-orders
1439
+ * @see https://docs.woox.io/#get-orders
1440
+ * @see https://docs.woox.io/#get-algo-orders
1441
1441
  * @param {string} symbol unified market symbol of the market orders were made in
1442
1442
  * @param {int} [since] the earliest time in ms to fetch orders for
1443
1443
  * @param {int} [limit] the maximum number of order structures to retrieve
@@ -1531,8 +1531,8 @@ class woo extends woo$1 {
1531
1531
  * @method
1532
1532
  * @name woo#fetchOpenOrders
1533
1533
  * @description fetches information on multiple orders made by the user
1534
- * @see https://docs.woo.org/#get-orders
1535
- * @see https://docs.woo.org/#get-algo-orders
1534
+ * @see https://docs.woox.io/#get-orders
1535
+ * @see https://docs.woox.io/#get-algo-orders
1536
1536
  * @param {string} symbol unified market symbol of the market orders were made in
1537
1537
  * @param {int} [since] the earliest time in ms to fetch orders for
1538
1538
  * @param {int} [limit] the maximum number of order structures to retrieve
@@ -1553,8 +1553,8 @@ class woo extends woo$1 {
1553
1553
  * @method
1554
1554
  * @name woo#fetchClosedOrders
1555
1555
  * @description fetches information on multiple orders made by the user
1556
- * @see https://docs.woo.org/#get-orders
1557
- * @see https://docs.woo.org/#get-algo-orders
1556
+ * @see https://docs.woox.io/#get-orders
1557
+ * @see https://docs.woox.io/#get-algo-orders
1558
1558
  * @param {string} symbol unified market symbol of the market orders were made in
1559
1559
  * @param {int} [since] the earliest time in ms to fetch orders for
1560
1560
  * @param {int} [limit] the maximum number of order structures to retrieve
@@ -1711,7 +1711,7 @@ class woo extends woo$1 {
1711
1711
  * @method
1712
1712
  * @name woo#fetchOrderBook
1713
1713
  * @description fetches information on open orders with bid (buy) and ask (sell) prices, volumes and other data
1714
- * @see https://docs.woo.org/#orderbook-snapshot-public
1714
+ * @see https://docs.woox.io/#orderbook-snapshot-public
1715
1715
  * @param {string} symbol unified symbol of the market to fetch the order book for
1716
1716
  * @param {int} [limit] the maximum amount of order book entries to return
1717
1717
  * @param {object} [params] extra parameters specific to the exchange API endpoint
@@ -1750,8 +1750,8 @@ class woo extends woo$1 {
1750
1750
  /**
1751
1751
  * @method
1752
1752
  * @name woo#fetchOHLCV
1753
- * @see https://docs.woo.org/#kline-public
1754
- * @see https://docs.woo.org/#kline-historical-data-public
1753
+ * @see https://docs.woox.io/#kline-public
1754
+ * @see https://docs.woox.io/#kline-historical-data-public
1755
1755
  * @description fetches historical candlestick data containing the open, high, low, and close price, and the volume of a market
1756
1756
  * @param {string} symbol unified symbol of the market to fetch OHLCV data for
1757
1757
  * @param {string} timeframe the length of time each candle represents
@@ -1847,7 +1847,7 @@ class woo extends woo$1 {
1847
1847
  * @method
1848
1848
  * @name woo#fetchOrderTrades
1849
1849
  * @description fetch all the trades made from a single order
1850
- * @see https://docs.woo.org/#get-trades
1850
+ * @see https://docs.woox.io/#get-trades
1851
1851
  * @param {string} id order id
1852
1852
  * @param {string} symbol unified market symbol
1853
1853
  * @param {int} [since] the earliest time in ms to fetch trades for
@@ -1890,7 +1890,7 @@ class woo extends woo$1 {
1890
1890
  * @method
1891
1891
  * @name woo#fetchMyTrades
1892
1892
  * @description fetch all trades made by the user
1893
- * @see https://docs.woo.org/#get-trades
1893
+ * @see https://docs.woox.io/#get-trades
1894
1894
  * @param {string} symbol unified market symbol
1895
1895
  * @param {int} [since] the earliest time in ms to fetch trades for
1896
1896
  * @param {int} [limit] the maximum number of trades structures to retrieve
@@ -1951,7 +1951,7 @@ class woo extends woo$1 {
1951
1951
  * @method
1952
1952
  * @name woo#fetchAccounts
1953
1953
  * @description fetch all the accounts associated with a profile
1954
- * @see https://docs.woo.org/#get-assets-of-subaccounts
1954
+ * @see https://docs.woox.io/#get-assets-of-subaccounts
1955
1955
  * @param {object} [params] extra parameters specific to the exchange API endpoint
1956
1956
  * @returns {object} a dictionary of [account structures]{@link https://docs.ccxt.com/#/?id=account-structure} indexed by the account type
1957
1957
  */
@@ -1997,7 +1997,7 @@ class woo extends woo$1 {
1997
1997
  * @method
1998
1998
  * @name woo#fetchBalance
1999
1999
  * @description query for balance and get the amount of funds available for trading or funds locked in orders
2000
- * @see https://docs.woo.org/#get-current-holding-get-balance-new
2000
+ * @see https://docs.woox.io/#get-current-holding-get-balance-new
2001
2001
  * @param {object} [params] extra parameters specific to the exchange API endpoint
2002
2002
  * @returns {object} a [balance structure]{@link https://docs.ccxt.com/#/?id=balance-structure}
2003
2003
  */
@@ -2049,7 +2049,7 @@ class woo extends woo$1 {
2049
2049
  * @method
2050
2050
  * @name woo#fetchDepositAddress
2051
2051
  * @description fetch the deposit address for a currency associated with this account
2052
- * @see https://docs.woo.org/#get-token-deposit-address
2052
+ * @see https://docs.woox.io/#get-token-deposit-address
2053
2053
  * @param {string} code unified currency code
2054
2054
  * @param {object} [params] extra parameters specific to the exchange API endpoint
2055
2055
  * @returns {object} an [address structure]{@link https://docs.ccxt.com/#/?id=address-structure}
@@ -2142,7 +2142,7 @@ class woo extends woo$1 {
2142
2142
  * @method
2143
2143
  * @name woo#fetchLedger
2144
2144
  * @description fetch the history of changes, actions done by the user or operations that altered balance of the user
2145
- * @see https://docs.woo.org/#get-asset-history
2145
+ * @see https://docs.woox.io/#get-asset-history
2146
2146
  * @param {string} [code] unified currency code, default is undefined
2147
2147
  * @param {int} [since] timestamp in ms of the earliest ledger entry, default is undefined
2148
2148
  * @param {int} [limit] max number of ledger entries to return, default is undefined
@@ -2208,7 +2208,7 @@ class woo extends woo$1 {
2208
2208
  * @method
2209
2209
  * @name woo#fetchDeposits
2210
2210
  * @description fetch all deposits made to an account
2211
- * @see https://docs.woo.org/#get-asset-history
2211
+ * @see https://docs.woox.io/#get-asset-history
2212
2212
  * @param {string} code unified currency code
2213
2213
  * @param {int} [since] the earliest time in ms to fetch deposits for
2214
2214
  * @param {int} [limit] the maximum number of deposits structures to retrieve
@@ -2225,7 +2225,7 @@ class woo extends woo$1 {
2225
2225
  * @method
2226
2226
  * @name woo#fetchWithdrawals
2227
2227
  * @description fetch all withdrawals made from an account
2228
- * @see https://docs.woo.org/#get-asset-history
2228
+ * @see https://docs.woox.io/#get-asset-history
2229
2229
  * @param {string} code unified currency code
2230
2230
  * @param {int} [since] the earliest time in ms to fetch withdrawals for
2231
2231
  * @param {int} [limit] the maximum number of withdrawals structures to retrieve
@@ -2242,7 +2242,7 @@ class woo extends woo$1 {
2242
2242
  * @method
2243
2243
  * @name woo#fetchDepositsWithdrawals
2244
2244
  * @description fetch history of deposits and withdrawals
2245
- * @see https://docs.woo.org/#get-asset-history
2245
+ * @see https://docs.woox.io/#get-asset-history
2246
2246
  * @param {string} [code] unified currency code for the currency of the deposit/withdrawals, default is undefined
2247
2247
  * @param {int} [since] timestamp in ms of the earliest deposit/withdrawal, default is undefined
2248
2248
  * @param {int} [limit] max number of deposit/withdrawals to return, default is undefined
@@ -2317,7 +2317,7 @@ class woo extends woo$1 {
2317
2317
  * @method
2318
2318
  * @name woo#transfer
2319
2319
  * @description transfer currency internally between wallets on the same account
2320
- * @see https://docs.woo.org/#get-transfer-history
2320
+ * @see https://docs.woox.io/#get-transfer-history
2321
2321
  * @param {string} code unified currency code
2322
2322
  * @param {float} amount amount to transfer
2323
2323
  * @param {string} fromAccount account to transfer from
@@ -2355,7 +2355,7 @@ class woo extends woo$1 {
2355
2355
  * @method
2356
2356
  * @name woo#fetchTransfers
2357
2357
  * @description fetch a history of internal transfers made on an account
2358
- * @see https://docs.woo.org/#get-transfer-history
2358
+ * @see https://docs.woox.io/#get-transfer-history
2359
2359
  * @param {string} code unified currency code of the currency transferred
2360
2360
  * @param {int} [since] the earliest time in ms to fetch transfers for
2361
2361
  * @param {int} [limit] the maximum number of transfers structures to retrieve
@@ -2461,7 +2461,7 @@ class woo extends woo$1 {
2461
2461
  * @method
2462
2462
  * @name woo#withdraw
2463
2463
  * @description make a withdrawal
2464
- * @see https://docs.woo.org/#token-withdraw
2464
+ * @see https://docs.woox.io/#token-withdraw
2465
2465
  * @param {string} code unified currency code
2466
2466
  * @param {float} amount the amount to withdraw
2467
2467
  * @param {string} address the address to withdraw to
@@ -2504,7 +2504,7 @@ class woo extends woo$1 {
2504
2504
  * @method
2505
2505
  * @name woo#repayMargin
2506
2506
  * @description repay borrowed margin and interest
2507
- * @see https://docs.woo.org/#repay-interest
2507
+ * @see https://docs.woox.io/#repay-interest
2508
2508
  * @param {string} code unified currency code of the currency to repay
2509
2509
  * @param {float} amount the amount to repay
2510
2510
  * @param {string} symbol not used by woo.repayMargin ()
@@ -2685,7 +2685,7 @@ class woo extends woo$1 {
2685
2685
  * @method
2686
2686
  * @name woo#fetchFundingHistory
2687
2687
  * @description fetch the history of funding payments paid and received on this account
2688
- * @see https://docs.woo.org/#get-funding-fee-history
2688
+ * @see https://docs.woox.io/#get-funding-fee-history
2689
2689
  * @param {string} [symbol] unified market symbol
2690
2690
  * @param {int} [since] the earliest time in ms to fetch funding history for
2691
2691
  * @param {int} [limit] the maximum number of funding history structures to retrieve
@@ -2873,7 +2873,7 @@ class woo extends woo$1 {
2873
2873
  * @method
2874
2874
  * @name woo#fetchFundingRateHistory
2875
2875
  * @description fetches historical funding rate prices
2876
- * @see https://docs.woo.org/#get-funding-rate-history-for-one-market-public
2876
+ * @see https://docs.woox.io/#get-funding-rate-history-for-one-market-public
2877
2877
  * @param {string} symbol unified symbol of the market to fetch the funding rate history for
2878
2878
  * @param {int} [since] timestamp in ms of the earliest funding rate to fetch
2879
2879
  * @param {int} [limit] the maximum amount of [funding rate structures]{@link https://docs.ccxt.com/#/?id=funding-rate-history-structure} to fetch
@@ -2940,7 +2940,7 @@ class woo extends woo$1 {
2940
2940
  * @method
2941
2941
  * @name woo#setPositionMode
2942
2942
  * @description set hedged to true or false for a market
2943
- * @see https://docs.woo.org/#update-position-mode
2943
+ * @see https://docs.woox.io/#update-position-mode
2944
2944
  * @param {bool} hedged set to true to use HEDGE_MODE, false for ONE_WAY
2945
2945
  * @param {string} symbol not used by woo setPositionMode
2946
2946
  * @param {object} [params] extra parameters specific to the exchange API endpoint
@@ -2971,7 +2971,7 @@ class woo extends woo$1 {
2971
2971
  * @method
2972
2972
  * @name woo#fetchLeverage
2973
2973
  * @description fetch the set leverage for a market
2974
- * @see https://docs.woo.org/#get-account-information-new
2974
+ * @see https://docs.woox.io/#get-account-information-new
2975
2975
  * @param {string} symbol unified market symbol
2976
2976
  * @param {object} [params] extra parameters specific to the exchange API endpoint
2977
2977
  * @param {string} [params.marginMode] *for swap markets only* 'cross' or 'isolated'
@@ -3103,8 +3103,8 @@ class woo extends woo$1 {
3103
3103
  * @method
3104
3104
  * @name woo#setLeverage
3105
3105
  * @description set the level of leverage for a market
3106
- * @see https://docs.woo.org/#update-leverage-setting
3107
- * @see https://docs.woo.org/#update-futures-leverage-setting
3106
+ * @see https://docs.woox.io/#update-leverage-setting
3107
+ * @see https://docs.woox.io/#update-futures-leverage-setting
3108
3108
  * @param {float} leverage the rate of leverage (1, 2, 3, 4 or 5 for spot markets, 1, 2, 3, 4, 5, 10, 15, 20 for swap markets)
3109
3109
  * @param {string} [symbol] unified market symbol (is mandatory for swap markets)
3110
3110
  * @param {object} [params] extra parameters specific to the exchange API endpoint
@@ -3139,7 +3139,7 @@ class woo extends woo$1 {
3139
3139
  * @method
3140
3140
  * @name woo#addMargin
3141
3141
  * @description add margin
3142
- * @see https://docs.woo.org/#update-isolated-margin-setting
3142
+ * @see https://docs.woox.io/#update-isolated-margin-setting
3143
3143
  * @param {string} symbol unified market symbol
3144
3144
  * @param {float} amount amount of margin to add
3145
3145
  * @param {object} [params] extra parameters specific to the exchange API endpoint
@@ -3153,7 +3153,7 @@ class woo extends woo$1 {
3153
3153
  * @method
3154
3154
  * @name woo#reduceMargin
3155
3155
  * @description remove margin from a position
3156
- * @see https://docs.woo.org/#update-isolated-margin-setting
3156
+ * @see https://docs.woox.io/#update-isolated-margin-setting
3157
3157
  * @param {string} symbol unified market symbol
3158
3158
  * @param {float} amount amount of margin to remove
3159
3159
  * @param {object} [params] extra parameters specific to the exchange API endpoint
@@ -3369,7 +3369,7 @@ class woo extends woo$1 {
3369
3369
  * @method
3370
3370
  * @name woo#fetchConvertQuote
3371
3371
  * @description fetch a quote for converting from one currency to another
3372
- * @see https://docs.woo.org/#get-quote-rfq
3372
+ * @see https://docs.woox.io/#get-quote-rfq
3373
3373
  * @param {string} fromCode the currency that you want to sell and convert from
3374
3374
  * @param {string} toCode the currency that you want to buy and convert into
3375
3375
  * @param {float} [amount] how much you want to trade in units of the from currency
@@ -3411,7 +3411,7 @@ class woo extends woo$1 {
3411
3411
  * @method
3412
3412
  * @name woo#createConvertTrade
3413
3413
  * @description convert from one currency to another
3414
- * @see https://docs.woo.org/#send-quote-rft
3414
+ * @see https://docs.woox.io/#send-quote-rft
3415
3415
  * @param {string} id the id of the trade that you want to make
3416
3416
  * @param {string} fromCode the currency that you want to sell and convert from
3417
3417
  * @param {string} toCode the currency that you want to buy and convert into
@@ -3442,7 +3442,7 @@ class woo extends woo$1 {
3442
3442
  * @method
3443
3443
  * @name woo#fetchConvertTrade
3444
3444
  * @description fetch the data for a conversion trade
3445
- * @see https://docs.woo.org/#get-quote-trade
3445
+ * @see https://docs.woox.io/#get-quote-trade
3446
3446
  * @param {string} id the id of the trade that you want to fetch
3447
3447
  * @param {string} [code] the unified currency code of the conversion trade
3448
3448
  * @param {object} [params] extra parameters specific to the exchange API endpoint
@@ -3485,7 +3485,7 @@ class woo extends woo$1 {
3485
3485
  * @method
3486
3486
  * @name woo#fetchConvertTradeHistory
3487
3487
  * @description fetch the users history of conversion trades
3488
- * @see https://docs.woo.org/#get-quote-trades
3488
+ * @see https://docs.woox.io/#get-quote-trades
3489
3489
  * @param {string} [code] the unified currency code
3490
3490
  * @param {int} [since] the earliest time in ms to fetch conversions for
3491
3491
  * @param {int} [limit] the maximum number of conversion structures to retrieve
@@ -3586,7 +3586,7 @@ class woo extends woo$1 {
3586
3586
  * @method
3587
3587
  * @name woo#fetchConvertCurrencies
3588
3588
  * @description fetches all available currencies that can be converted
3589
- * @see https://docs.woo.org/#get-quote-asset-info
3589
+ * @see https://docs.woox.io/#get-quote-asset-info
3590
3590
  * @param {object} [params] extra parameters specific to the exchange API endpoint
3591
3591
  * @returns {object} an associative dictionary of currencies
3592
3592
  */
@@ -6,7 +6,7 @@ import asTable from 'as-table'
6
6
  import ololog from 'ololog'
7
7
  import ccxt from '../../js/ccxt.js'
8
8
  import { Agent } from 'https'
9
- import add_static_result from '../../utils/update-static-request-response.js'
9
+ import { add_static_result } from '../../utils/update-static-tests-data.js'
10
10
  const fsPromises = fs.promises;
11
11
  ansi.nice
12
12
  const log = ololog.configure ({ locate: false }).unlimited
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, DepositAddressResponse, 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 } from './src/base/types.js';
6
6
  import { BaseError, ExchangeError, AuthenticationError, PermissionDenied, AccountNotEnabled, AccountSuspended, ArgumentsRequired, BadRequest, BadSymbol, OperationRejected, NoChange, MarginModeAlreadySet, MarketClosed, ManualInteractionNeeded, 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.4.31";
7
+ declare const version = "4.4.33";
8
8
  import ace from './src/ace.js';
9
9
  import alpaca from './src/alpaca.js';
10
10
  import ascendex from './src/ascendex.js';
@@ -60,6 +60,7 @@ import currencycom from './src/currencycom.js';
60
60
  import delta from './src/delta.js';
61
61
  import deribit from './src/deribit.js';
62
62
  import digifinex from './src/digifinex.js';
63
+ import ellipx from './src/ellipx.js';
63
64
  import exmo from './src/exmo.js';
64
65
  import fmfwio from './src/fmfwio.js';
65
66
  import gate from './src/gate.js';
@@ -243,6 +244,7 @@ declare const exchanges: {
243
244
  delta: typeof delta;
244
245
  deribit: typeof deribit;
245
246
  digifinex: typeof digifinex;
247
+ ellipx: typeof ellipx;
246
248
  exmo: typeof exmo;
247
249
  fmfwio: typeof fmfwio;
248
250
  gate: typeof gate;
@@ -509,6 +511,7 @@ declare const ccxt: {
509
511
  delta: typeof delta;
510
512
  deribit: typeof deribit;
511
513
  digifinex: typeof digifinex;
514
+ ellipx: typeof ellipx;
512
515
  exmo: typeof exmo;
513
516
  fmfwio: typeof fmfwio;
514
517
  gate: typeof gate;
@@ -564,5 +567,5 @@ declare const ccxt: {
564
567
  zaif: typeof zaif;
565
568
  zonda: typeof zonda;
566
569
  } & typeof functions & typeof errors;
567
- export { version, Exchange, exchanges, pro, Precise, functions, errors, BaseError, ExchangeError, AuthenticationError, PermissionDenied, AccountNotEnabled, AccountSuspended, ArgumentsRequired, BadRequest, BadSymbol, OperationRejected, NoChange, MarginModeAlreadySet, MarketClosed, ManualInteractionNeeded, 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, Dictionary, MinMax, FeeInterface, TradingFeeInterface, MarketMarginModes, MarketInterface, Trade, Order, OrderBook, Ticker, Transaction, Tickers, CurrencyInterface, Balance, BalanceAccount, Account, PartialBalances, Balances, DepositAddress, WithdrawalResponse, DepositAddressResponse, FundingRate, FundingRates, Position, BorrowInterest, LeverageTier, LedgerEntry, DepositWithdrawFeeNetwork, DepositWithdrawFee, TransferEntry, CrossBorrowRate, IsolatedBorrowRate, FundingRateHistory, OpenInterest, Liquidation, OrderRequest, CancellationRequest, FundingHistory, MarginMode, Greeks, Conversion, Option, LastPrice, Leverage, LongShortRatio, MarginModification, Leverages, LastPrices, Currencies, TradingFees, MarginModes, OptionChain, IsolatedBorrowRates, CrossBorrowRates, LeverageTiers, ace, alpaca, ascendex, bequant, bigone, binance, binancecoinm, binanceus, binanceusdm, bingx, bit2c, bitbank, bitbns, bitcoincom, bitfinex, bitfinex2, bitflyer, bitget, bithumb, bitmart, bitmex, bitopro, bitpanda, bitrue, bitso, bitstamp, bitteam, bitvavo, bl3p, blockchaincom, blofin, btcalpha, btcbox, btcmarkets, btcturk, bybit, cex, coinbase, coinbaseadvanced, coinbaseexchange, coinbaseinternational, coincatch, coincheck, coinex, coinlist, coinmate, coinmetro, coinone, coinsph, coinspot, cryptocom, currencycom, delta, deribit, digifinex, exmo, fmfwio, gate, gateio, gemini, hashkey, hitbtc, hollaex, htx, huobi, huobijp, hyperliquid, idex, independentreserve, indodax, kraken, krakenfutures, kucoin, kucoinfutures, kuna, latoken, lbank, luno, lykke, mercado, mexc, ndax, novadax, oceanex, okcoin, okx, onetrading, oxfun, p2b, paradex, paymium, phemex, poloniex, poloniexfutures, probit, timex, tokocrypto, tradeogre, upbit, vertex, wavesexchange, wazirx, whitebit, woo, woofipro, xt, yobit, zaif, zonda, };
570
+ export { version, Exchange, exchanges, pro, Precise, functions, errors, BaseError, ExchangeError, AuthenticationError, PermissionDenied, AccountNotEnabled, AccountSuspended, ArgumentsRequired, BadRequest, BadSymbol, OperationRejected, NoChange, MarginModeAlreadySet, MarketClosed, ManualInteractionNeeded, 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, Dictionary, MinMax, FeeInterface, TradingFeeInterface, MarketMarginModes, MarketInterface, Trade, Order, OrderBook, Ticker, Transaction, Tickers, CurrencyInterface, Balance, BalanceAccount, Account, PartialBalances, Balances, DepositAddress, WithdrawalResponse, DepositAddressResponse, FundingRate, FundingRates, Position, BorrowInterest, LeverageTier, LedgerEntry, DepositWithdrawFeeNetwork, DepositWithdrawFee, TransferEntry, CrossBorrowRate, IsolatedBorrowRate, FundingRateHistory, OpenInterest, Liquidation, OrderRequest, CancellationRequest, FundingHistory, MarginMode, Greeks, Conversion, Option, LastPrice, Leverage, LongShortRatio, MarginModification, Leverages, LastPrices, Currencies, TradingFees, MarginModes, OptionChain, IsolatedBorrowRates, CrossBorrowRates, LeverageTiers, ace, alpaca, ascendex, bequant, bigone, binance, binancecoinm, binanceus, binanceusdm, bingx, bit2c, bitbank, bitbns, bitcoincom, bitfinex, bitfinex2, bitflyer, bitget, bithumb, bitmart, bitmex, bitopro, bitpanda, bitrue, bitso, bitstamp, bitteam, bitvavo, bl3p, blockchaincom, blofin, btcalpha, btcbox, btcmarkets, btcturk, bybit, cex, coinbase, coinbaseadvanced, coinbaseexchange, coinbaseinternational, coincatch, coincheck, coinex, coinlist, coinmate, coinmetro, coinone, coinsph, coinspot, cryptocom, currencycom, delta, deribit, digifinex, ellipx, exmo, fmfwio, gate, gateio, gemini, hashkey, hitbtc, hollaex, htx, huobi, huobijp, hyperliquid, idex, independentreserve, indodax, kraken, krakenfutures, kucoin, kucoinfutures, kuna, latoken, lbank, luno, lykke, mercado, mexc, ndax, novadax, oceanex, okcoin, okx, onetrading, oxfun, p2b, paradex, paymium, phemex, poloniex, poloniexfutures, probit, timex, tokocrypto, tradeogre, upbit, vertex, wavesexchange, wazirx, whitebit, woo, woofipro, xt, yobit, zaif, zonda, };
568
571
  export default ccxt;