ccxt 4.4.33__py2.py3-none-any.whl → 4.4.34__py2.py3-none-any.whl

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 (82) hide show
  1. ccxt/__init__.py +3 -1
  2. ccxt/abstract/bingx.py +16 -0
  3. ccxt/abstract/bitbank.py +5 -0
  4. ccxt/abstract/bitfinex2.py +1 -0
  5. ccxt/abstract/ellipx.py +25 -0
  6. ccxt/alpaca.py +2 -0
  7. ccxt/async_support/__init__.py +3 -1
  8. ccxt/async_support/alpaca.py +2 -0
  9. ccxt/async_support/base/exchange.py +1 -1
  10. ccxt/async_support/binance.py +19 -15
  11. ccxt/async_support/bingx.py +155 -8
  12. ccxt/async_support/bitbank.py +5 -0
  13. ccxt/async_support/bitbns.py +2 -0
  14. ccxt/async_support/bitfinex2.py +1 -0
  15. ccxt/async_support/bitget.py +174 -40
  16. ccxt/async_support/bitmex.py +2 -0
  17. ccxt/async_support/bitopro.py +3 -0
  18. ccxt/async_support/bitrue.py +1 -0
  19. ccxt/async_support/btcmarkets.py +2 -0
  20. ccxt/async_support/bybit.py +13 -10
  21. ccxt/async_support/cex.py +13 -4
  22. ccxt/async_support/coinbase.py +3 -2
  23. ccxt/async_support/coinex.py +1 -0
  24. ccxt/async_support/coinone.py +7 -7
  25. ccxt/async_support/coinsph.py +7 -7
  26. ccxt/async_support/coinspot.py +39 -39
  27. ccxt/async_support/cryptocom.py +36 -34
  28. ccxt/async_support/ellipx.py +1828 -0
  29. ccxt/async_support/gate.py +1 -0
  30. ccxt/async_support/hyperliquid.py +2 -0
  31. ccxt/async_support/krakenfutures.py +3 -1
  32. ccxt/async_support/okcoin.py +2 -0
  33. ccxt/async_support/okx.py +14 -10
  34. ccxt/async_support/onetrading.py +20 -1
  35. ccxt/async_support/paradex.py +2 -0
  36. ccxt/async_support/phemex.py +16 -0
  37. ccxt/async_support/poloniex.py +3 -1
  38. ccxt/async_support/poloniexfutures.py +3 -1
  39. ccxt/async_support/vertex.py +2 -0
  40. ccxt/async_support/woo.py +69 -69
  41. ccxt/base/exchange.py +27 -7
  42. ccxt/binance.py +19 -15
  43. ccxt/bingx.py +155 -8
  44. ccxt/bitbank.py +5 -0
  45. ccxt/bitbns.py +2 -0
  46. ccxt/bitfinex2.py +1 -0
  47. ccxt/bitget.py +174 -40
  48. ccxt/bitmex.py +2 -0
  49. ccxt/bitopro.py +3 -0
  50. ccxt/bitrue.py +1 -0
  51. ccxt/btcmarkets.py +2 -0
  52. ccxt/bybit.py +13 -10
  53. ccxt/cex.py +13 -4
  54. ccxt/coinbase.py +3 -2
  55. ccxt/coinex.py +1 -0
  56. ccxt/coinone.py +7 -7
  57. ccxt/coinsph.py +7 -7
  58. ccxt/coinspot.py +39 -39
  59. ccxt/cryptocom.py +36 -34
  60. ccxt/ellipx.py +1828 -0
  61. ccxt/gate.py +1 -0
  62. ccxt/hyperliquid.py +2 -0
  63. ccxt/krakenfutures.py +3 -1
  64. ccxt/okcoin.py +2 -0
  65. ccxt/okx.py +14 -10
  66. ccxt/onetrading.py +20 -1
  67. ccxt/paradex.py +2 -0
  68. ccxt/phemex.py +16 -0
  69. ccxt/poloniex.py +3 -1
  70. ccxt/poloniexfutures.py +3 -1
  71. ccxt/pro/__init__.py +1 -1
  72. ccxt/pro/idex.py +15 -0
  73. ccxt/pro/probit.py +4 -2
  74. ccxt/pro/woo.py +15 -15
  75. ccxt/test/tests_helpers.py +0 -2
  76. ccxt/vertex.py +2 -0
  77. ccxt/woo.py +69 -69
  78. {ccxt-4.4.33.dist-info → ccxt-4.4.34.dist-info}/METADATA +9 -8
  79. {ccxt-4.4.33.dist-info → ccxt-4.4.34.dist-info}/RECORD +82 -79
  80. {ccxt-4.4.33.dist-info → ccxt-4.4.34.dist-info}/LICENSE.txt +0 -0
  81. {ccxt-4.4.33.dist-info → ccxt-4.4.34.dist-info}/WHEEL +0 -0
  82. {ccxt-4.4.33.dist-info → ccxt-4.4.34.dist-info}/top_level.txt +0 -0
ccxt/woo.py CHANGED
@@ -33,7 +33,7 @@ class woo(Exchange, ImplicitAPI):
33
33
  'version': 'v1',
34
34
  'certified': True,
35
35
  'pro': True,
36
- 'hostname': 'woo.org',
36
+ 'hostname': 'woox.io',
37
37
  'has': {
38
38
  'CORS': None,
39
39
  'spot': True,
@@ -142,24 +142,24 @@ class woo(Exchange, ImplicitAPI):
142
142
  'urls': {
143
143
  'logo': 'https://user-images.githubusercontent.com/1294454/150730761-1a00e5e0-d28c-480f-9e65-089ce3e6ef3b.jpg',
144
144
  'api': {
145
- 'pub': 'https://api-pub.woo.org',
145
+ 'pub': 'https://api-pub.woox.io',
146
146
  'public': 'https://api.{hostname}',
147
147
  'private': 'https://api.{hostname}',
148
148
  },
149
149
  'test': {
150
- 'pub': 'https://api-pub.staging.woo.org',
151
- 'public': 'https://api.staging.woo.org',
152
- 'private': 'https://api.staging.woo.org',
150
+ 'pub': 'https://api-pub.staging.woox.io',
151
+ 'public': 'https://api.staging.woox.io',
152
+ 'private': 'https://api.staging.woox.io',
153
153
  },
154
- 'www': 'https://woo.org/',
154
+ 'www': 'https://woox.io/',
155
155
  'doc': [
156
- 'https://docs.woo.org/',
156
+ 'https://docs.woox.io/',
157
157
  ],
158
158
  'fees': [
159
- 'https://support.woo.org/hc/en-001/articles/4404611795353--Trading-Fees',
159
+ 'https://support.woox.io/hc/en-001/articles/4404611795353--Trading-Fees',
160
160
  ],
161
161
  'referral': {
162
- 'url': 'https://x.woo.org/register?ref=DIJT0CNL',
162
+ 'url': 'https://woox.io/register?ref=DIJT0CNL',
163
163
  'discount': 0.35,
164
164
  },
165
165
  },
@@ -357,7 +357,7 @@ class woo(Exchange, ImplicitAPI):
357
357
  """
358
358
  the latest known information on the availability of the exchange API
359
359
 
360
- https://docs.woo.org/#get-system-maintenance-status-public
360
+ https://docs.woox.io/#get-system-maintenance-status-public
361
361
 
362
362
  :param dict [params]: extra parameters specific to the exchange API endpoint
363
363
  :returns dict: a `status structure <https://docs.ccxt.com/#/?id=exchange-status-structure>`
@@ -393,7 +393,7 @@ class woo(Exchange, ImplicitAPI):
393
393
  """
394
394
  fetches the current integer timestamp in milliseconds from the exchange server
395
395
 
396
- https://docs.woo.org/#get-system-maintenance-status-public
396
+ https://docs.woox.io/#get-system-maintenance-status-public
397
397
 
398
398
  :param dict [params]: extra parameters specific to the exchange API endpoint
399
399
  :returns int: the current integer timestamp in milliseconds from the exchange server
@@ -415,7 +415,7 @@ class woo(Exchange, ImplicitAPI):
415
415
  """
416
416
  retrieves data on all markets for woo
417
417
 
418
- https://docs.woo.org/#exchange-information
418
+ https://docs.woox.io/#exchange-information
419
419
 
420
420
  :param dict [params]: extra parameters specific to the exchange API endpoint
421
421
  :returns dict[]: an array of objects representing market data
@@ -530,7 +530,7 @@ class woo(Exchange, ImplicitAPI):
530
530
  """
531
531
  get the list of most recent trades for a particular symbol
532
532
 
533
- https://docs.woo.org/#market-trades-public
533
+ https://docs.woox.io/#market-trades-public
534
534
 
535
535
  :param str symbol: unified symbol of the market to fetch trades for
536
536
  :param int [since]: timestamp in ms of the earliest trade to fetch
@@ -657,7 +657,7 @@ class woo(Exchange, ImplicitAPI):
657
657
  """
658
658
  fetch the trading fees for multiple markets
659
659
 
660
- https://docs.woo.org/#get-account-information-new
660
+ https://docs.woox.io/#get-account-information-new
661
661
 
662
662
  :param dict [params]: extra parameters specific to the exchange API endpoint
663
663
  :returns dict: a dictionary of `fee structures <https://docs.ccxt.com/#/?id=fee-structure>` indexed by market symbols
@@ -712,7 +712,7 @@ class woo(Exchange, ImplicitAPI):
712
712
  """
713
713
  fetches all available currencies on an exchange
714
714
 
715
- https://docs.woo.org/#available-token-public
715
+ https://docs.woox.io/#available-token-public
716
716
 
717
717
  :param dict [params]: extra parameters specific to the exchange API endpoint
718
718
  :returns dict: an associative dictionary of currencies
@@ -846,7 +846,7 @@ class woo(Exchange, ImplicitAPI):
846
846
  """
847
847
  create a market buy order by providing the symbol and cost
848
848
 
849
- https://docs.woo.org/#send-order
849
+ https://docs.woox.io/#send-order
850
850
 
851
851
  :param str symbol: unified symbol of the market to create an order in
852
852
  :param float cost: how much you want to trade in units of the quote currency
@@ -863,7 +863,7 @@ class woo(Exchange, ImplicitAPI):
863
863
  """
864
864
  create a market sell order by providing the symbol and cost
865
865
 
866
- https://docs.woo.org/#send-order
866
+ https://docs.woox.io/#send-order
867
867
 
868
868
  :param str symbol: unified symbol of the market to create an order in
869
869
  :param float cost: how much you want to trade in units of the quote currency
@@ -880,7 +880,7 @@ class woo(Exchange, ImplicitAPI):
880
880
  """
881
881
  create a trailing order by providing the symbol, type, side, amount, price and trailingAmount
882
882
 
883
- https://docs.woo.org/#send-algo-order
883
+ https://docs.woox.io/#send-algo-order
884
884
 
885
885
  :param str symbol: unified symbol of the market to create an order in
886
886
  :param str type: 'market' or 'limit'
@@ -904,7 +904,7 @@ class woo(Exchange, ImplicitAPI):
904
904
  """
905
905
  create a trailing order by providing the symbol, type, side, amount, price and trailingPercent
906
906
 
907
- https://docs.woo.org/#send-algo-order
907
+ https://docs.woox.io/#send-algo-order
908
908
 
909
909
  :param str symbol: unified symbol of the market to create an order in
910
910
  :param str type: 'market' or 'limit'
@@ -928,8 +928,8 @@ class woo(Exchange, ImplicitAPI):
928
928
  """
929
929
  create a trade order
930
930
 
931
- https://docs.woo.org/#send-order
932
- https://docs.woo.org/#send-algo-order
931
+ https://docs.woox.io/#send-order
932
+ https://docs.woox.io/#send-algo-order
933
933
 
934
934
  :param str symbol: unified symbol of the market to create an order in
935
935
  :param str type: 'market' or 'limit'
@@ -1112,10 +1112,10 @@ class woo(Exchange, ImplicitAPI):
1112
1112
  """
1113
1113
  edit a trade order
1114
1114
 
1115
- https://docs.woo.org/#edit-order
1116
- https://docs.woo.org/#edit-order-by-client_order_id
1117
- https://docs.woo.org/#edit-algo-order
1118
- https://docs.woo.org/#edit-algo-order-by-client_order_id
1115
+ https://docs.woox.io/#edit-order
1116
+ https://docs.woox.io/#edit-order-by-client_order_id
1117
+ https://docs.woox.io/#edit-algo-order
1118
+ https://docs.woox.io/#edit-algo-order-by-client_order_id
1119
1119
 
1120
1120
  :param str id: order id
1121
1121
  :param str symbol: unified symbol of the market to create an order in
@@ -1195,9 +1195,9 @@ class woo(Exchange, ImplicitAPI):
1195
1195
  def cancel_order(self, id: str, symbol: Str = None, params={}):
1196
1196
  """
1197
1197
 
1198
- https://docs.woo.org/#cancel-algo-order
1199
- https://docs.woo.org/#cancel-order
1200
- https://docs.woo.org/#cancel-order-by-client_order_id
1198
+ https://docs.woox.io/#cancel-algo-order
1199
+ https://docs.woox.io/#cancel-order
1200
+ https://docs.woox.io/#cancel-order-by-client_order_id
1201
1201
 
1202
1202
  cancels an open order
1203
1203
  :param str id: order id
@@ -1244,9 +1244,9 @@ class woo(Exchange, ImplicitAPI):
1244
1244
  def cancel_all_orders(self, symbol: Str = None, params={}):
1245
1245
  """
1246
1246
 
1247
- https://docs.woo.org/#cancel-all-pending-orders
1248
- https://docs.woo.org/#cancel-orders
1249
- https://docs.woo.org/#cancel-all-pending-algo-orders
1247
+ https://docs.woox.io/#cancel-all-pending-orders
1248
+ https://docs.woox.io/#cancel-orders
1249
+ https://docs.woox.io/#cancel-all-pending-algo-orders
1250
1250
 
1251
1251
  cancel all open orders in a market
1252
1252
  :param str symbol: unified market symbol
@@ -1280,7 +1280,7 @@ class woo(Exchange, ImplicitAPI):
1280
1280
  """
1281
1281
  dead man's switch, cancel all orders after the given timeout
1282
1282
 
1283
- https://docs.woo.org/#cancel-all-after
1283
+ https://docs.woox.io/#cancel-all-after
1284
1284
 
1285
1285
  :param number timeout: time in milliseconds, 0 represents cancel the timer
1286
1286
  :param dict [params]: extra parameters specific to the exchange API endpoint
@@ -1307,8 +1307,8 @@ class woo(Exchange, ImplicitAPI):
1307
1307
  def fetch_order(self, id: str, symbol: Str = None, params={}):
1308
1308
  """
1309
1309
 
1310
- https://docs.woo.org/#get-algo-order
1311
- https://docs.woo.org/#get-order
1310
+ https://docs.woox.io/#get-algo-order
1311
+ https://docs.woox.io/#get-order
1312
1312
 
1313
1313
  fetches information on an order made by the user
1314
1314
  :param str id: the order id
@@ -1375,8 +1375,8 @@ class woo(Exchange, ImplicitAPI):
1375
1375
  """
1376
1376
  fetches information on multiple orders made by the user
1377
1377
 
1378
- https://docs.woo.org/#get-orders
1379
- https://docs.woo.org/#get-algo-orders
1378
+ https://docs.woox.io/#get-orders
1379
+ https://docs.woox.io/#get-algo-orders
1380
1380
 
1381
1381
  :param str symbol: unified market symbol of the market orders were made in
1382
1382
  :param int [since]: the earliest time in ms to fetch orders for
@@ -1459,8 +1459,8 @@ class woo(Exchange, ImplicitAPI):
1459
1459
  """
1460
1460
  fetches information on multiple orders made by the user
1461
1461
 
1462
- https://docs.woo.org/#get-orders
1463
- https://docs.woo.org/#get-algo-orders
1462
+ https://docs.woox.io/#get-orders
1463
+ https://docs.woox.io/#get-algo-orders
1464
1464
 
1465
1465
  :param str symbol: unified market symbol of the market orders were made in
1466
1466
  :param int [since]: the earliest time in ms to fetch orders for
@@ -1481,8 +1481,8 @@ class woo(Exchange, ImplicitAPI):
1481
1481
  """
1482
1482
  fetches information on multiple orders made by the user
1483
1483
 
1484
- https://docs.woo.org/#get-orders
1485
- https://docs.woo.org/#get-algo-orders
1484
+ https://docs.woox.io/#get-orders
1485
+ https://docs.woox.io/#get-algo-orders
1486
1486
 
1487
1487
  :param str symbol: unified market symbol of the market orders were made in
1488
1488
  :param int [since]: the earliest time in ms to fetch orders for
@@ -1636,7 +1636,7 @@ class woo(Exchange, ImplicitAPI):
1636
1636
  """
1637
1637
  fetches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
1638
1638
 
1639
- https://docs.woo.org/#orderbook-snapshot-public
1639
+ https://docs.woox.io/#orderbook-snapshot-public
1640
1640
 
1641
1641
  :param str symbol: unified symbol of the market to fetch the order book for
1642
1642
  :param int [limit]: the maximum amount of order book entries to return
@@ -1674,8 +1674,8 @@ class woo(Exchange, ImplicitAPI):
1674
1674
  def fetch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}) -> List[list]:
1675
1675
  """
1676
1676
 
1677
- https://docs.woo.org/#kline-public
1678
- https://docs.woo.org/#kline-historical-data-public
1677
+ https://docs.woox.io/#kline-public
1678
+ https://docs.woox.io/#kline-historical-data-public
1679
1679
 
1680
1680
  fetches historical candlestick data containing the open, high, low, and close price, and the volume of a market
1681
1681
  :param str symbol: unified symbol of the market to fetch OHLCV data for
@@ -1766,7 +1766,7 @@ class woo(Exchange, ImplicitAPI):
1766
1766
  """
1767
1767
  fetch all the trades made from a single order
1768
1768
 
1769
- https://docs.woo.org/#get-trades
1769
+ https://docs.woox.io/#get-trades
1770
1770
 
1771
1771
  :param str id: order id
1772
1772
  :param str symbol: unified market symbol
@@ -1808,7 +1808,7 @@ class woo(Exchange, ImplicitAPI):
1808
1808
  """
1809
1809
  fetch all trades made by the user
1810
1810
 
1811
- https://docs.woo.org/#get-trades
1811
+ https://docs.woox.io/#get-trades
1812
1812
 
1813
1813
  :param str symbol: unified market symbol
1814
1814
  :param int [since]: the earliest time in ms to fetch trades for
@@ -1864,7 +1864,7 @@ class woo(Exchange, ImplicitAPI):
1864
1864
  """
1865
1865
  fetch all the accounts associated with a profile
1866
1866
 
1867
- https://docs.woo.org/#get-assets-of-subaccounts
1867
+ https://docs.woox.io/#get-assets-of-subaccounts
1868
1868
 
1869
1869
  :param dict [params]: extra parameters specific to the exchange API endpoint
1870
1870
  :returns dict: a dictionary of `account structures <https://docs.ccxt.com/#/?id=account-structure>` indexed by the account type
@@ -1910,7 +1910,7 @@ class woo(Exchange, ImplicitAPI):
1910
1910
  """
1911
1911
  query for balance and get the amount of funds available for trading or funds locked in orders
1912
1912
 
1913
- https://docs.woo.org/#get-current-holding-get-balance-new
1913
+ https://docs.woox.io/#get-current-holding-get-balance-new
1914
1914
 
1915
1915
  :param dict [params]: extra parameters specific to the exchange API endpoint
1916
1916
  :returns dict: a `balance structure <https://docs.ccxt.com/#/?id=balance-structure>`
@@ -1961,7 +1961,7 @@ class woo(Exchange, ImplicitAPI):
1961
1961
  """
1962
1962
  fetch the deposit address for a currency associated with self account
1963
1963
 
1964
- https://docs.woo.org/#get-token-deposit-address
1964
+ https://docs.woox.io/#get-token-deposit-address
1965
1965
 
1966
1966
  :param str code: unified currency code
1967
1967
  :param dict [params]: extra parameters specific to the exchange API endpoint
@@ -2050,7 +2050,7 @@ class woo(Exchange, ImplicitAPI):
2050
2050
  """
2051
2051
  fetch the history of changes, actions done by the user or operations that altered balance of the user
2052
2052
 
2053
- https://docs.woo.org/#get-asset-history
2053
+ https://docs.woox.io/#get-asset-history
2054
2054
 
2055
2055
  :param str [code]: unified currency code, default is None
2056
2056
  :param int [since]: timestamp in ms of the earliest ledger entry, default is None
@@ -2113,7 +2113,7 @@ class woo(Exchange, ImplicitAPI):
2113
2113
  """
2114
2114
  fetch all deposits made to an account
2115
2115
 
2116
- https://docs.woo.org/#get-asset-history
2116
+ https://docs.woox.io/#get-asset-history
2117
2117
 
2118
2118
  :param str code: unified currency code
2119
2119
  :param int [since]: the earliest time in ms to fetch deposits for
@@ -2130,7 +2130,7 @@ class woo(Exchange, ImplicitAPI):
2130
2130
  """
2131
2131
  fetch all withdrawals made from an account
2132
2132
 
2133
- https://docs.woo.org/#get-asset-history
2133
+ https://docs.woox.io/#get-asset-history
2134
2134
 
2135
2135
  :param str code: unified currency code
2136
2136
  :param int [since]: the earliest time in ms to fetch withdrawals for
@@ -2147,7 +2147,7 @@ class woo(Exchange, ImplicitAPI):
2147
2147
  """
2148
2148
  fetch history of deposits and withdrawals
2149
2149
 
2150
- https://docs.woo.org/#get-asset-history
2150
+ https://docs.woox.io/#get-asset-history
2151
2151
 
2152
2152
  :param str [code]: unified currency code for the currency of the deposit/withdrawals, default is None
2153
2153
  :param int [since]: timestamp in ms of the earliest deposit/withdrawal, default is None
@@ -2221,7 +2221,7 @@ class woo(Exchange, ImplicitAPI):
2221
2221
  """
2222
2222
  transfer currency internally between wallets on the same account
2223
2223
 
2224
- https://docs.woo.org/#get-transfer-history
2224
+ https://docs.woox.io/#get-transfer-history
2225
2225
 
2226
2226
  :param str code: unified currency code
2227
2227
  :param float amount: amount to transfer
@@ -2258,7 +2258,7 @@ class woo(Exchange, ImplicitAPI):
2258
2258
  """
2259
2259
  fetch a history of internal transfers made on an account
2260
2260
 
2261
- https://docs.woo.org/#get-transfer-history
2261
+ https://docs.woox.io/#get-transfer-history
2262
2262
 
2263
2263
  :param str code: unified currency code of the currency transferred
2264
2264
  :param int [since]: the earliest time in ms to fetch transfers for
@@ -2360,7 +2360,7 @@ class woo(Exchange, ImplicitAPI):
2360
2360
  """
2361
2361
  make a withdrawal
2362
2362
 
2363
- https://docs.woo.org/#token-withdraw
2363
+ https://docs.woox.io/#token-withdraw
2364
2364
 
2365
2365
  :param str code: unified currency code
2366
2366
  :param float amount: the amount to withdraw
@@ -2401,7 +2401,7 @@ class woo(Exchange, ImplicitAPI):
2401
2401
  """
2402
2402
  repay borrowed margin and interest
2403
2403
 
2404
- https://docs.woo.org/#repay-interest
2404
+ https://docs.woox.io/#repay-interest
2405
2405
 
2406
2406
  :param str code: unified currency code of the currency to repay
2407
2407
  :param float amount: the amount to repay
@@ -2562,7 +2562,7 @@ class woo(Exchange, ImplicitAPI):
2562
2562
  """
2563
2563
  fetch the history of funding payments paid and received on self account
2564
2564
 
2565
- https://docs.woo.org/#get-funding-fee-history
2565
+ https://docs.woox.io/#get-funding-fee-history
2566
2566
 
2567
2567
  :param str [symbol]: unified market symbol
2568
2568
  :param int [since]: the earliest time in ms to fetch funding history for
@@ -2744,7 +2744,7 @@ class woo(Exchange, ImplicitAPI):
2744
2744
  """
2745
2745
  fetches historical funding rate prices
2746
2746
 
2747
- https://docs.woo.org/#get-funding-rate-history-for-one-market-public
2747
+ https://docs.woox.io/#get-funding-rate-history-for-one-market-public
2748
2748
 
2749
2749
  :param str symbol: unified symbol of the market to fetch the funding rate history for
2750
2750
  :param int [since]: timestamp in ms of the earliest funding rate to fetch
@@ -2807,7 +2807,7 @@ class woo(Exchange, ImplicitAPI):
2807
2807
  """
2808
2808
  set hedged to True or False for a market
2809
2809
 
2810
- https://docs.woo.org/#update-position-mode
2810
+ https://docs.woox.io/#update-position-mode
2811
2811
 
2812
2812
  :param bool hedged: set to True to use HEDGE_MODE, False for ONE_WAY
2813
2813
  :param str symbol: not used by woo setPositionMode
@@ -2836,7 +2836,7 @@ class woo(Exchange, ImplicitAPI):
2836
2836
  """
2837
2837
  fetch the set leverage for a market
2838
2838
 
2839
- https://docs.woo.org/#get-account-information-new
2839
+ https://docs.woox.io/#get-account-information-new
2840
2840
 
2841
2841
  :param str symbol: unified market symbol
2842
2842
  :param dict [params]: extra parameters specific to the exchange API endpoint
@@ -2961,8 +2961,8 @@ class woo(Exchange, ImplicitAPI):
2961
2961
  """
2962
2962
  set the level of leverage for a market
2963
2963
 
2964
- https://docs.woo.org/#update-leverage-setting
2965
- https://docs.woo.org/#update-futures-leverage-setting
2964
+ https://docs.woox.io/#update-leverage-setting
2965
+ https://docs.woox.io/#update-futures-leverage-setting
2966
2966
 
2967
2967
  :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)
2968
2968
  :param str [symbol]: unified market symbol(is mandatory for swap markets)
@@ -2993,7 +2993,7 @@ class woo(Exchange, ImplicitAPI):
2993
2993
  """
2994
2994
  add margin
2995
2995
 
2996
- https://docs.woo.org/#update-isolated-margin-setting
2996
+ https://docs.woox.io/#update-isolated-margin-setting
2997
2997
 
2998
2998
  :param str symbol: unified market symbol
2999
2999
  :param float amount: amount of margin to add
@@ -3007,7 +3007,7 @@ class woo(Exchange, ImplicitAPI):
3007
3007
  """
3008
3008
  remove margin from a position
3009
3009
 
3010
- https://docs.woo.org/#update-isolated-margin-setting
3010
+ https://docs.woox.io/#update-isolated-margin-setting
3011
3011
 
3012
3012
  :param str symbol: unified market symbol
3013
3013
  :param float amount: amount of margin to remove
@@ -3221,7 +3221,7 @@ class woo(Exchange, ImplicitAPI):
3221
3221
  """
3222
3222
  fetch a quote for converting from one currency to another
3223
3223
 
3224
- https://docs.woo.org/#get-quote-rfq
3224
+ https://docs.woox.io/#get-quote-rfq
3225
3225
 
3226
3226
  :param str fromCode: the currency that you want to sell and convert from
3227
3227
  :param str toCode: the currency that you want to buy and convert into
@@ -3263,7 +3263,7 @@ class woo(Exchange, ImplicitAPI):
3263
3263
  """
3264
3264
  convert from one currency to another
3265
3265
 
3266
- https://docs.woo.org/#send-quote-rft
3266
+ https://docs.woox.io/#send-quote-rft
3267
3267
 
3268
3268
  :param str id: the id of the trade that you want to make
3269
3269
  :param str fromCode: the currency that you want to sell and convert from
@@ -3294,7 +3294,7 @@ class woo(Exchange, ImplicitAPI):
3294
3294
  """
3295
3295
  fetch the data for a conversion trade
3296
3296
 
3297
- https://docs.woo.org/#get-quote-trade
3297
+ https://docs.woox.io/#get-quote-trade
3298
3298
 
3299
3299
  :param str id: the id of the trade that you want to fetch
3300
3300
  :param str [code]: the unified currency code of the conversion trade
@@ -3335,7 +3335,7 @@ class woo(Exchange, ImplicitAPI):
3335
3335
  """
3336
3336
  fetch the users history of conversion trades
3337
3337
 
3338
- https://docs.woo.org/#get-quote-trades
3338
+ https://docs.woox.io/#get-quote-trades
3339
3339
 
3340
3340
  :param str [code]: the unified currency code
3341
3341
  :param int [since]: the earliest time in ms to fetch conversions for
@@ -3434,7 +3434,7 @@ class woo(Exchange, ImplicitAPI):
3434
3434
  """
3435
3435
  fetches all available currencies that can be converted
3436
3436
 
3437
- https://docs.woo.org/#get-quote-asset-info
3437
+ https://docs.woox.io/#get-quote-asset-info
3438
3438
 
3439
3439
  :param dict [params]: extra parameters specific to the exchange API endpoint
3440
3440
  :returns dict: an associative dictionary of currencies
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ccxt
3
- Version: 4.4.33
3
+ Version: 4.4.34
4
4
  Summary: A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 100+ exchanges
5
5
  Home-page: https://ccxt.com
6
6
  Author: Igor Kroitor
@@ -50,7 +50,7 @@ Requires-Dist: mypy (==1.6.1) ; extra == 'type'
50
50
 
51
51
  # CCXT – CryptoCurrency eXchange Trading Library
52
52
 
53
- [![Build Status](https://img.shields.io/travis/com/ccxt/ccxt)](https://travis-ci.com/ccxt/ccxt) [![npm](https://img.shields.io/npm/v/ccxt.svg)](https://npmjs.com/package/ccxt) [![PyPI](https://img.shields.io/pypi/v/ccxt.svg)](https://pypi.python.org/pypi/ccxt) [![NPM Downloads](https://img.shields.io/npm/dy/ccxt.svg)](https://www.npmjs.com/package/ccxt) [![Discord](https://img.shields.io/discord/690203284119617602?logo=discord&logoColor=white)](https://discord.gg/ccxt) [![Supported Exchanges](https://img.shields.io/badge/exchanges-109-blue.svg)](https://github.com/ccxt/ccxt/wiki/Exchange-Markets) [![Twitter Follow](https://img.shields.io/twitter/follow/ccxt_official.svg?style=social&label=CCXT)](https://twitter.com/ccxt_official)
53
+ [![Build Status](https://img.shields.io/travis/com/ccxt/ccxt)](https://travis-ci.com/ccxt/ccxt) [![npm](https://img.shields.io/npm/v/ccxt.svg)](https://npmjs.com/package/ccxt) [![PyPI](https://img.shields.io/pypi/v/ccxt.svg)](https://pypi.python.org/pypi/ccxt) [![NPM Downloads](https://img.shields.io/npm/dy/ccxt.svg)](https://www.npmjs.com/package/ccxt) [![Discord](https://img.shields.io/discord/690203284119617602?logo=discord&logoColor=white)](https://discord.gg/ccxt) [![Supported Exchanges](https://img.shields.io/badge/exchanges-110-blue.svg)](https://github.com/ccxt/ccxt/wiki/Exchange-Markets) [![Twitter Follow](https://img.shields.io/twitter/follow/ccxt_official.svg?style=social&label=CCXT)](https://twitter.com/ccxt_official)
54
54
 
55
55
  A JavaScript / Python / PHP / C# library for cryptocurrency trading and e-commerce with support for many bitcoin/ether/altcoin exchange markets and merchant APIs.
56
56
 
@@ -103,12 +103,12 @@ Current feature list:
103
103
  | [![kucoinfutures](https://user-images.githubusercontent.com/1294454/147508995-9e35030a-d046-43a1-a006-6fabd981b554.jpg)](https://futures.kucoin.com/?rcode=E5wkqe) | kucoinfutures | [KuCoin Futures](https://futures.kucoin.com/?rcode=E5wkqe) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://docs.kucoin.com/futures) | cex | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | |
104
104
  | [![mexc](https://user-images.githubusercontent.com/1294454/137283979-8b2a818d-8633-461b-bfca-de89e8c446b2.jpg)](https://www.mexc.com/register?inviteCode=mexc-1FQ1GNu1) | mexc | [MEXC Global](https://www.mexc.com/register?inviteCode=mexc-1FQ1GNu1) | [![API Version 3](https://img.shields.io/badge/3-lightgray)](https://mexcdevelop.github.io/apidocs/) | cex | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | |
105
105
  | [![okx](https://user-images.githubusercontent.com/1294454/152485636-38b19e4a-bece-4dec-979a-5982859ffc04.jpg)](https://www.okx.com/join/CCXT2023) | okx | [OKX](https://www.okx.com/join/CCXT2023) | [![API Version 5](https://img.shields.io/badge/5-lightgray)](https://www.okx.com/docs-v5/en/) | cex | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | [![Sign up with OKX using CCXT's referral link for a 20% discount!](https://img.shields.io/static/v1?label=Fee&message=%2d20%25&color=orange)](https://www.okx.com/join/CCXT2023) |
106
- | [![woo](https://user-images.githubusercontent.com/1294454/150730761-1a00e5e0-d28c-480f-9e65-089ce3e6ef3b.jpg)](https://x.woo.org/register?ref=DIJT0CNL) | woo | [WOO X](https://x.woo.org/register?ref=DIJT0CNL) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://docs.woo.org/) | cex | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | [![Sign up with WOO X using CCXT's referral link for a 35% discount!](https://img.shields.io/static/v1?label=Fee&message=%2d35%25&color=orange)](https://x.woo.org/register?ref=DIJT0CNL) |
106
+ | [![woo](https://user-images.githubusercontent.com/1294454/150730761-1a00e5e0-d28c-480f-9e65-089ce3e6ef3b.jpg)](https://woox.io/register?ref=DIJT0CNL) | woo | [WOO X](https://woox.io/register?ref=DIJT0CNL) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://docs.woox.io/) | cex | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | [![Sign up with WOO X using CCXT's referral link for a 35% discount!](https://img.shields.io/static/v1?label=Fee&message=%2d35%25&color=orange)](https://woox.io/register?ref=DIJT0CNL) |
107
107
  | [![woofipro](https://github.com/user-attachments/assets/9ba21b8a-a9c7-4770-b7f1-ce3bcbde68c1)](https://dex.woo.org/en/trade?ref=CCXT) | woofipro | [WOOFI PRO](https://dex.woo.org/en/trade?ref=CCXT) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://orderly.network/docs/build-on-evm/building-on-evm) | dex | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | [![Sign up with WOOFI PRO using CCXT's referral link for a 5% discount!](https://img.shields.io/static/v1?label=Fee&message=%2d5%25&color=orange)](https://dex.woo.org/en/trade?ref=CCXT) |
108
108
 
109
109
  ## Supported Cryptocurrency Exchanges
110
110
 
111
- The CCXT library currently supports the following 104 cryptocurrency exchange markets and trading APIs:
111
+ The CCXT library currently supports the following 105 cryptocurrency exchange markets and trading APIs:
112
112
 
113
113
  | logo | id | name | ver | type | certified | pro |
114
114
  |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------|----------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------:|------|-----------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------|
@@ -164,6 +164,7 @@ The CCXT library currently supports the following 104 cryptocurrency exchange ma
164
164
  | [![delta](https://user-images.githubusercontent.com/1294454/99450025-3be60a00-2931-11eb-9302-f4fd8d8589aa.jpg)](https://www.delta.exchange/app/signup/?code=IULYNB) | delta | [Delta Exchange](https://www.delta.exchange/app/signup/?code=IULYNB) | [![API Version 2](https://img.shields.io/badge/2-lightgray)](https://docs.delta.exchange) | cex | | |
165
165
  | [![deribit](https://user-images.githubusercontent.com/1294454/41933112-9e2dd65a-798b-11e8-8440-5bab2959fcb8.jpg)](https://www.deribit.com/reg-1189.4038) | deribit | [Deribit](https://www.deribit.com/reg-1189.4038) | [![API Version 2](https://img.shields.io/badge/2-lightgray)](https://docs.deribit.com/v2) | cex | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
166
166
  | [![digifinex](https://user-images.githubusercontent.com/51840849/87443315-01283a00-c5fe-11ea-8628-c2a0feaf07ac.jpg)](https://www.digifinex.com/en-ww/from/DhOzBg?channelCode=ljaUPp) | digifinex | [DigiFinex](https://www.digifinex.com/en-ww/from/DhOzBg?channelCode=ljaUPp) | [![API Version 3](https://img.shields.io/badge/3-lightgray)](https://docs.digifinex.com) | cex | | |
167
+ | [![ellipx](https://github.com/user-attachments/assets/e07c3f40-281c-4cdf-bacf-fa1c58218a2c)](https://www.ellipx.com) | ellipx | [Ellipx](https://www.ellipx.com) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://docs.google.com/document/d/1ZXzTQYffKE_EglTaKptxGQERRnunuLHEMmar7VC9syM) | cex | | |
167
168
  | [![exmo](https://user-images.githubusercontent.com/1294454/27766491-1b0ea956-5eda-11e7-9225-40d67b481b8d.jpg)](https://exmo.me/?ref=131685) | exmo | [EXMO](https://exmo.me/?ref=131685) | [![API Version 1.1](https://img.shields.io/badge/1.1-lightgray)](https://exmo.me/en/api_doc?ref=131685) | cex | | |
168
169
  | [![fmfwio](https://user-images.githubusercontent.com/1294454/159177712-b685b40c-5269-4cea-ac83-f7894c49525d.jpg)](https://fmfw.io/referral/da948b21d6c92d69) | fmfwio | [FMFW.io](https://fmfw.io/referral/da948b21d6c92d69) | [![API Version 3](https://img.shields.io/badge/3-lightgray)](https://api.fmfw.io/) | cex | | |
169
170
  | [![gate](https://user-images.githubusercontent.com/1294454/31784029-0313c702-b509-11e7-9ccc-bc0da6a0e435.jpg)](https://www.gate.io/signup/2436035) | gate | [Gate.io](https://www.gate.io/signup/2436035) | [![API Version 4](https://img.shields.io/badge/4-lightgray)](https://www.gate.io/docs/developers/apiv4/en/) | cex | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
@@ -210,7 +211,7 @@ The CCXT library currently supports the following 104 cryptocurrency exchange ma
210
211
  | [![wavesexchange](https://user-images.githubusercontent.com/1294454/84547058-5fb27d80-ad0b-11ea-8711-78ac8b3c7f31.jpg)](https://wx.network) | wavesexchange | [Waves.Exchange](https://wx.network) | [![API Version *](https://img.shields.io/badge/*-lightgray)](https://docs.wx.network) | dex | | |
211
212
  | [![wazirx](https://user-images.githubusercontent.com/1294454/148647666-c109c20b-f8ac-472f-91c3-5f658cb90f49.jpeg)](https://wazirx.com/invite/k7rrnks5) | wazirx | [WazirX](https://wazirx.com/invite/k7rrnks5) | [![API Version 2](https://img.shields.io/badge/2-lightgray)](https://docs.wazirx.com/#public-rest-api-for-wazirx) | cex | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
212
213
  | [![whitebit](https://user-images.githubusercontent.com/1294454/66732963-8eb7dd00-ee66-11e9-849b-10d9282bb9e0.jpg)](https://whitebit.com/referral/d9bdf40e-28f2-4b52-b2f9-cd1415d82963) | whitebit | [WhiteBit](https://whitebit.com/referral/d9bdf40e-28f2-4b52-b2f9-cd1415d82963) | [![API Version 4](https://img.shields.io/badge/4-lightgray)](https://github.com/whitebit-exchange/api-docs) | cex | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
213
- | [![woo](https://user-images.githubusercontent.com/1294454/150730761-1a00e5e0-d28c-480f-9e65-089ce3e6ef3b.jpg)](https://x.woo.org/register?ref=DIJT0CNL) | woo | [WOO X](https://x.woo.org/register?ref=DIJT0CNL) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://docs.woo.org/) | cex | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
214
+ | [![woo](https://user-images.githubusercontent.com/1294454/150730761-1a00e5e0-d28c-480f-9e65-089ce3e6ef3b.jpg)](https://woox.io/register?ref=DIJT0CNL) | woo | [WOO X](https://woox.io/register?ref=DIJT0CNL) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://docs.woox.io/) | cex | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
214
215
  | [![woofipro](https://github.com/user-attachments/assets/9ba21b8a-a9c7-4770-b7f1-ce3bcbde68c1)](https://dex.woo.org/en/trade?ref=CCXT) | woofipro | [WOOFI PRO](https://dex.woo.org/en/trade?ref=CCXT) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://orderly.network/docs/build-on-evm/building-on-evm) | dex | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
215
216
  | [![xt](https://user-images.githubusercontent.com/14319357/232636712-466df2fc-560a-4ca4-aab2-b1d954a58e24.jpg)](https://www.xt.com/en/accounts/register?ref=9PTM9VW) | xt | [XT](https://www.xt.com/en/accounts/register?ref=9PTM9VW) | [![API Version 4](https://img.shields.io/badge/4-lightgray)](https://doc.xt.com/) | cex | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
216
217
  | [![yobit](https://user-images.githubusercontent.com/1294454/27766910-cdcbfdae-5eea-11e7-9859-03fea873272d.jpg)](https://www.yobit.net) | yobit | [YoBit](https://www.yobit.net) | [![API Version 3](https://img.shields.io/badge/3-lightgray)](https://www.yobit.net/en/api/) | cex | | |
@@ -273,13 +274,13 @@ console.log(version, Object.keys(exchanges));
273
274
 
274
275
  All-in-one browser bundle (dependencies included), served from a CDN of your choice:
275
276
 
276
- * jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.33/dist/ccxt.browser.min.js
277
- * unpkg: https://unpkg.com/ccxt@4.4.33/dist/ccxt.browser.min.js
277
+ * jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.34/dist/ccxt.browser.min.js
278
+ * unpkg: https://unpkg.com/ccxt@4.4.34/dist/ccxt.browser.min.js
278
279
 
279
280
  CDNs are not updated in real-time and may have delays. Defaulting to the most recent version without specifying the version number is not recommended. Please, keep in mind that we are not responsible for the correct operation of those CDN servers.
280
281
 
281
282
  ```HTML
282
- <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.33/dist/ccxt.browser.min.js"></script>
283
+ <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.34/dist/ccxt.browser.min.js"></script>
283
284
  ```
284
285
 
285
286
  Creates a global `ccxt` object: