ccxt 4.1.19__py2.py3-none-any.whl → 4.1.22__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 (179) hide show
  1. ccxt/__init__.py +1 -1
  2. ccxt/abstract/okcoin.py +70 -206
  3. ccxt/ace.py +12 -12
  4. ccxt/ascendex.py +5 -5
  5. ccxt/async_support/__init__.py +1 -1
  6. ccxt/async_support/ace.py +12 -12
  7. ccxt/async_support/ascendex.py +5 -5
  8. ccxt/async_support/base/exchange.py +1 -1
  9. ccxt/async_support/bigone.py +2 -2
  10. ccxt/async_support/binance.py +184 -184
  11. ccxt/async_support/bingx.py +48 -48
  12. ccxt/async_support/bitbank.py +14 -14
  13. ccxt/async_support/bitbns.py +7 -7
  14. ccxt/async_support/bitfinex.py +2 -2
  15. ccxt/async_support/bitfinex2.py +35 -35
  16. ccxt/async_support/bitflyer.py +17 -17
  17. ccxt/async_support/bitforex.py +9 -9
  18. ccxt/async_support/bitget.py +433 -215
  19. ccxt/async_support/bitmart.py +39 -39
  20. ccxt/async_support/bitmex.py +7 -7
  21. ccxt/async_support/bitopro.py +1 -1
  22. ccxt/async_support/bitpanda.py +1 -1
  23. ccxt/async_support/bitrue.py +2 -2
  24. ccxt/async_support/bitso.py +2 -2
  25. ccxt/async_support/bitstamp.py +3 -3
  26. ccxt/async_support/bitvavo.py +2 -2
  27. ccxt/async_support/bl3p.py +1 -1
  28. ccxt/async_support/btcalpha.py +7 -7
  29. ccxt/async_support/btcturk.py +1 -1
  30. ccxt/async_support/bybit.py +58 -58
  31. ccxt/async_support/cex.py +1 -1
  32. ccxt/async_support/coinbase.py +13 -13
  33. ccxt/async_support/coinbasepro.py +15 -15
  34. ccxt/async_support/coinex.py +19 -19
  35. ccxt/async_support/coinone.py +2 -2
  36. ccxt/async_support/coinsph.py +4 -4
  37. ccxt/async_support/coinspot.py +2 -2
  38. ccxt/async_support/cryptocom.py +28 -28
  39. ccxt/async_support/currencycom.py +1 -1
  40. ccxt/async_support/delta.py +26 -26
  41. ccxt/async_support/deribit.py +9 -9
  42. ccxt/async_support/digifinex.py +38 -38
  43. ccxt/async_support/exmo.py +18 -18
  44. ccxt/async_support/gate.py +59 -59
  45. ccxt/async_support/gemini.py +4 -4
  46. ccxt/async_support/hitbtc.py +6 -6
  47. ccxt/async_support/hollaex.py +2 -2
  48. ccxt/async_support/huobi.py +70 -70
  49. ccxt/async_support/indodax.py +1 -1
  50. ccxt/async_support/kraken.py +33 -33
  51. ccxt/async_support/krakenfutures.py +6 -5
  52. ccxt/async_support/kucoin.py +74 -74
  53. ccxt/async_support/kucoinfutures.py +8 -8
  54. ccxt/async_support/latoken.py +14 -14
  55. ccxt/async_support/lbank2.py +33 -33
  56. ccxt/async_support/mexc.py +22 -22
  57. ccxt/async_support/ndax.py +1 -1
  58. ccxt/async_support/novadax.py +22 -22
  59. ccxt/async_support/oceanex.py +18 -18
  60. ccxt/async_support/okcoin.py +1950 -2758
  61. ccxt/async_support/okx.py +73 -73
  62. ccxt/async_support/paymium.py +11 -11
  63. ccxt/async_support/phemex.py +26 -26
  64. ccxt/async_support/poloniex.py +30 -30
  65. ccxt/async_support/poloniexfutures.py +25 -25
  66. ccxt/async_support/probit.py +21 -21
  67. ccxt/async_support/tokocrypto.py +22 -22
  68. ccxt/async_support/upbit.py +21 -21
  69. ccxt/async_support/wavesexchange.py +2 -2
  70. ccxt/async_support/wazirx.py +14 -14
  71. ccxt/async_support/whitebit.py +6 -6
  72. ccxt/async_support/woo.py +21 -21
  73. ccxt/async_support/yobit.py +16 -16
  74. ccxt/async_support/zaif.py +10 -10
  75. ccxt/async_support/zonda.py +15 -15
  76. ccxt/base/exchange.py +2 -1
  77. ccxt/bigone.py +2 -2
  78. ccxt/binance.py +184 -184
  79. ccxt/bingx.py +48 -48
  80. ccxt/bitbank.py +14 -14
  81. ccxt/bitbns.py +7 -7
  82. ccxt/bitfinex.py +2 -2
  83. ccxt/bitfinex2.py +35 -35
  84. ccxt/bitflyer.py +17 -17
  85. ccxt/bitforex.py +9 -9
  86. ccxt/bitget.py +433 -215
  87. ccxt/bitmart.py +39 -39
  88. ccxt/bitmex.py +7 -7
  89. ccxt/bitopro.py +1 -1
  90. ccxt/bitpanda.py +1 -1
  91. ccxt/bitrue.py +2 -2
  92. ccxt/bitso.py +2 -2
  93. ccxt/bitstamp.py +3 -3
  94. ccxt/bitvavo.py +2 -2
  95. ccxt/bl3p.py +1 -1
  96. ccxt/btcalpha.py +7 -7
  97. ccxt/btcturk.py +1 -1
  98. ccxt/bybit.py +58 -58
  99. ccxt/cex.py +1 -1
  100. ccxt/coinbase.py +13 -13
  101. ccxt/coinbasepro.py +15 -15
  102. ccxt/coinex.py +19 -19
  103. ccxt/coinone.py +2 -2
  104. ccxt/coinsph.py +4 -4
  105. ccxt/coinspot.py +2 -2
  106. ccxt/cryptocom.py +28 -28
  107. ccxt/currencycom.py +1 -1
  108. ccxt/delta.py +26 -26
  109. ccxt/deribit.py +9 -9
  110. ccxt/digifinex.py +38 -38
  111. ccxt/exmo.py +18 -18
  112. ccxt/gate.py +59 -59
  113. ccxt/gemini.py +4 -4
  114. ccxt/hitbtc.py +6 -6
  115. ccxt/hollaex.py +2 -2
  116. ccxt/huobi.py +70 -70
  117. ccxt/indodax.py +1 -1
  118. ccxt/kraken.py +33 -33
  119. ccxt/krakenfutures.py +6 -5
  120. ccxt/kucoin.py +74 -74
  121. ccxt/kucoinfutures.py +8 -8
  122. ccxt/latoken.py +14 -14
  123. ccxt/lbank2.py +33 -33
  124. ccxt/mexc.py +22 -22
  125. ccxt/ndax.py +1 -1
  126. ccxt/novadax.py +22 -22
  127. ccxt/oceanex.py +18 -18
  128. ccxt/okcoin.py +1950 -2758
  129. ccxt/okx.py +73 -73
  130. ccxt/paymium.py +11 -11
  131. ccxt/phemex.py +26 -26
  132. ccxt/poloniex.py +30 -30
  133. ccxt/poloniexfutures.py +25 -25
  134. ccxt/pro/__init__.py +1 -1
  135. ccxt/pro/ascendex.py +1 -1
  136. ccxt/pro/binance.py +9 -9
  137. ccxt/pro/bingx.py +12 -12
  138. ccxt/pro/bitget.py +2 -2
  139. ccxt/pro/bitpanda.py +7 -7
  140. ccxt/pro/bitrue.py +2 -2
  141. ccxt/pro/blockchaincom.py +6 -6
  142. ccxt/pro/bybit.py +15 -15
  143. ccxt/pro/cex.py +8 -8
  144. ccxt/pro/coinbase.py +6 -6
  145. ccxt/pro/coinbasepro.py +1 -1
  146. ccxt/pro/coinex.py +8 -8
  147. ccxt/pro/cryptocom.py +12 -12
  148. ccxt/pro/deribit.py +7 -7
  149. ccxt/pro/gemini.py +4 -4
  150. ccxt/pro/hitbtc.py +17 -17
  151. ccxt/pro/huobi.py +3 -3
  152. ccxt/pro/kraken.py +6 -6
  153. ccxt/pro/krakenfutures.py +10 -10
  154. ccxt/pro/kucoin.py +85 -42
  155. ccxt/pro/kucoinfutures.py +5 -5
  156. ccxt/pro/luno.py +1 -1
  157. ccxt/pro/mexc.py +7 -7
  158. ccxt/pro/okx.py +16 -15
  159. ccxt/pro/phemex.py +15 -15
  160. ccxt/pro/poloniex.py +9 -9
  161. ccxt/pro/poloniexfutures.py +5 -5
  162. ccxt/pro/probit.py +5 -5
  163. ccxt/pro/wazirx.py +5 -5
  164. ccxt/pro/woo.py +1 -1
  165. ccxt/probit.py +21 -21
  166. ccxt/test/base/test_shared_methods.py +1 -1
  167. ccxt/tokocrypto.py +22 -22
  168. ccxt/upbit.py +21 -21
  169. ccxt/wavesexchange.py +2 -2
  170. ccxt/wazirx.py +14 -14
  171. ccxt/whitebit.py +6 -6
  172. ccxt/woo.py +21 -21
  173. ccxt/yobit.py +16 -16
  174. ccxt/zaif.py +10 -10
  175. ccxt/zonda.py +15 -15
  176. {ccxt-4.1.19.dist-info → ccxt-4.1.22.dist-info}/METADATA +5 -9
  177. {ccxt-4.1.19.dist-info → ccxt-4.1.22.dist-info}/RECORD +179 -179
  178. {ccxt-4.1.19.dist-info → ccxt-4.1.22.dist-info}/WHEEL +0 -0
  179. {ccxt-4.1.19.dist-info → ccxt-4.1.22.dist-info}/top_level.txt +0 -0
ccxt/zonda.py CHANGED
@@ -306,7 +306,7 @@ class zonda(Exchange, ImplicitAPI):
306
306
 
307
307
  def fetch_markets(self, params={}):
308
308
  """
309
- see https://docs.zonda.exchange/reference/ticker-1
309
+ :see: https://docs.zonda.exchange/reference/ticker-1
310
310
  retrieves data on all markets for zonda
311
311
  :param dict [params]: extra parameters specific to the exchange api endpoint
312
312
  :returns dict[]: an array of objects representing market data
@@ -405,7 +405,7 @@ class zonda(Exchange, ImplicitAPI):
405
405
 
406
406
  def fetch_open_orders(self, symbol: Optional[str] = None, since: Optional[int] = None, limit: Optional[int] = None, params={}):
407
407
  """
408
- see https://docs.zonda.exchange/reference/active-orders
408
+ :see: https://docs.zonda.exchange/reference/active-orders
409
409
  fetch all unfilled currently open orders
410
410
  :param str symbol: not used by zonda fetchOpenOrders
411
411
  :param int [since]: the earliest time in ms to fetch open orders for
@@ -471,7 +471,7 @@ class zonda(Exchange, ImplicitAPI):
471
471
 
472
472
  def fetch_my_trades(self, symbol: Optional[str] = None, since: Optional[int] = None, limit: Optional[int] = None, params={}):
473
473
  """
474
- see https://docs.zonda.exchange/reference/transactions-history
474
+ :see: https://docs.zonda.exchange/reference/transactions-history
475
475
  fetch all trades made by the user
476
476
  :param str symbol: unified market symbol
477
477
  :param int [since]: the earliest time in ms to fetch trades for
@@ -530,7 +530,7 @@ class zonda(Exchange, ImplicitAPI):
530
530
 
531
531
  def fetch_balance(self, params={}):
532
532
  """
533
- see https://docs.zonda.exchange/reference/list-of-wallets
533
+ :see: https://docs.zonda.exchange/reference/list-of-wallets
534
534
  query for balance and get the amount of funds available for trading or funds locked in orders
535
535
  :param dict [params]: extra parameters specific to the zonda api endpoint
536
536
  :returns dict: a `balance structure <https://github.com/ccxt/ccxt/wiki/Manual#balance-structure>`
@@ -541,7 +541,7 @@ class zonda(Exchange, ImplicitAPI):
541
541
 
542
542
  def fetch_order_book(self, symbol: str, limit: Optional[int] = None, params={}):
543
543
  """
544
- see https://docs.zonda.exchange/reference/orderbook-2
544
+ :see: https://docs.zonda.exchange/reference/orderbook-2
545
545
  fetches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
546
546
  :param str symbol: unified symbol of the market to fetch the order book for
547
547
  :param int [limit]: the maximum amount of order book entries to return
@@ -652,7 +652,7 @@ class zonda(Exchange, ImplicitAPI):
652
652
  def fetch_ticker(self, symbol, params={}):
653
653
  """
654
654
  v1_01PublicGetTradingTickerSymbol retrieves timestamp, datetime, bid, ask, close, last, previousClose, v1_01PublicGetTradingStatsSymbol retrieves high, low, volume and opening price of an asset
655
- see https://docs.zonda.exchange/reference/market-statistics
655
+ :see: https://docs.zonda.exchange/reference/market-statistics
656
656
  :param str symbol: unified symbol of the market to fetch the ticker for
657
657
  :param dict [params]: extra parameters specific to the zonda api endpoint
658
658
  :param str [params.method]: v1_01PublicGetTradingTickerSymbol(default) or v1_01PublicGetTradingStatsSymbol
@@ -720,7 +720,7 @@ class zonda(Exchange, ImplicitAPI):
720
720
  """
721
721
  * @ignore
722
722
  v1_01PublicGetTradingTicker retrieves timestamp, datetime, bid, ask, close, last, previousClose for each market, v1_01PublicGetTradingStats retrieves high, low, volume and opening price of each market
723
- see https://docs.zonda.exchange/reference/market-statistics
723
+ :see: https://docs.zonda.exchange/reference/market-statistics
724
724
  :param str[]|None symbols: unified symbols of the markets to fetch the ticker for, all market tickers are returned if not assigned
725
725
  :param dict [params]: extra parameters specific to the zonda api endpoint
726
726
  :param str [params.method]: v1_01PublicGetTradingTicker(default) or v1_01PublicGetTradingStats
@@ -788,7 +788,7 @@ class zonda(Exchange, ImplicitAPI):
788
788
 
789
789
  def fetch_ledger(self, code: Optional[str] = None, since: Optional[int] = None, limit: Optional[int] = None, params={}):
790
790
  """
791
- see https://docs.zonda.exchange/reference/operations-history
791
+ :see: https://docs.zonda.exchange/reference/operations-history
792
792
  fetch the history of changes, actions done by the user or operations that altered balance of the user
793
793
  :param str code: unified currency code, default is None
794
794
  :param int [since]: timestamp in ms of the earliest ledger entry, default is None
@@ -1156,7 +1156,7 @@ class zonda(Exchange, ImplicitAPI):
1156
1156
 
1157
1157
  def fetch_ohlcv(self, symbol: str, timeframe='1m', since: Optional[int] = None, limit: Optional[int] = None, params={}):
1158
1158
  """
1159
- see https://docs.zonda.exchange/reference/candles-chart
1159
+ :see: https://docs.zonda.exchange/reference/candles-chart
1160
1160
  fetches historical candlestick data containing the open, high, low, and close price, and the volume of a market
1161
1161
  :param str symbol: unified symbol of the market to fetch OHLCV data for
1162
1162
  :param str timeframe: the length of time each candle represents
@@ -1274,7 +1274,7 @@ class zonda(Exchange, ImplicitAPI):
1274
1274
 
1275
1275
  def fetch_trades(self, symbol: str, since: Optional[int] = None, limit: Optional[int] = None, params={}):
1276
1276
  """
1277
- see https://docs.zonda.exchange/reference/last-transactions
1277
+ :see: https://docs.zonda.exchange/reference/last-transactions
1278
1278
  get the list of most recent trades for a particular symbol
1279
1279
  :param str symbol: unified symbol of the market to fetch trades for
1280
1280
  :param int [since]: timestamp in ms of the earliest trade to fetch
@@ -1418,7 +1418,7 @@ class zonda(Exchange, ImplicitAPI):
1418
1418
 
1419
1419
  def cancel_order(self, id: str, symbol: Optional[str] = None, params={}):
1420
1420
  """
1421
- see https://docs.zonda.exchange/reference/cancel-order
1421
+ :see: https://docs.zonda.exchange/reference/cancel-order
1422
1422
  cancels an open order
1423
1423
  :param str id: order id
1424
1424
  :param str symbol: unified symbol of the market the order was made in
@@ -1475,7 +1475,7 @@ class zonda(Exchange, ImplicitAPI):
1475
1475
 
1476
1476
  def fetch_deposit_address(self, code: str, params={}):
1477
1477
  """
1478
- see https://docs.zonda.exchange/reference/deposit-addresses-for-crypto
1478
+ :see: https://docs.zonda.exchange/reference/deposit-addresses-for-crypto
1479
1479
  fetch the deposit address for a currency associated with self account
1480
1480
  :param str code: unified currency code
1481
1481
  :param dict [params]: extra parameters specific to the zonda api endpoint
@@ -1507,7 +1507,7 @@ class zonda(Exchange, ImplicitAPI):
1507
1507
 
1508
1508
  def fetch_deposit_addresses(self, codes=None, params={}):
1509
1509
  """
1510
- see https://docs.zonda.exchange/reference/deposit-addresses-for-crypto
1510
+ :see: https://docs.zonda.exchange/reference/deposit-addresses-for-crypto
1511
1511
  fetch deposit addresses for multiple currencies and chain types
1512
1512
  :param str[]|None codes: zonda does not support filtering filtering by multiple codes and will ignore self parameter.
1513
1513
  :param dict [params]: extra parameters specific to the zonda api endpoint
@@ -1533,7 +1533,7 @@ class zonda(Exchange, ImplicitAPI):
1533
1533
 
1534
1534
  def transfer(self, code: str, amount, fromAccount, toAccount, params={}):
1535
1535
  """
1536
- see https://docs.zonda.exchange/reference/internal-transfer
1536
+ :see: https://docs.zonda.exchange/reference/internal-transfer
1537
1537
  transfer currency internally between wallets on the same account
1538
1538
  :param str code: unified currency code
1539
1539
  :param float amount: amount to transfer
@@ -1642,7 +1642,7 @@ class zonda(Exchange, ImplicitAPI):
1642
1642
 
1643
1643
  def withdraw(self, code: str, amount, address, tag=None, params={}):
1644
1644
  """
1645
- see https://docs.zonda.exchange/reference/crypto-withdrawal-1
1645
+ :see: https://docs.zonda.exchange/reference/crypto-withdrawal-1
1646
1646
  make a withdrawal
1647
1647
  :param str code: unified currency code
1648
1648
  :param float amount: the amount to withdraw
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ccxt
3
- Version: 4.1.19
3
+ Version: 4.1.22
4
4
  Summary: A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 130+ exchanges
5
5
  Home-page: https://ccxt.com
6
6
  Author: Igor Kroitor
@@ -62,10 +62,6 @@ Current feature list:
62
62
  - an out of the box unified API that is extremely easy to integrate
63
63
  - works in Node 10.4+, Python 3, PHP 8.1+, netstandard2.0/2.1 and web browsers
64
64
 
65
- ## Sponsored Promotion
66
-
67
- [![CCXT x Gate.io Upgrading Trading Campaign](https://github-production-user-asset-6210df.s3.amazonaws.com/1294454/261965226-7278c686-4ed1-4c6e-81aa-81f90a284cbe.jpg)](https://github.com/ccxt/ccxt/issues/18963)
68
-
69
65
 
70
66
  ## See Also
71
67
 
@@ -183,7 +179,7 @@ The CCXT library currently supports the following 97 cryptocurrency exchange mar
183
179
  | [![ndax](https://user-images.githubusercontent.com/1294454/108623144-67a3ef00-744e-11eb-8140-75c6b851e945.jpg)](https://one.ndax.io/bfQiSL) | ndax | [NDAX](https://one.ndax.io/bfQiSL) | [![API Version *](https://img.shields.io/badge/*-lightgray)](https://apidoc.ndax.io/) | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
184
180
  | [![novadax](https://user-images.githubusercontent.com/1294454/92337550-2b085500-f0b3-11ea-98e7-5794fb07dd3b.jpg)](https://www.novadax.com.br/?s=ccxt) | novadax | [NovaDAX](https://www.novadax.com.br/?s=ccxt) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://doc.novadax.com/pt-BR/) | | |
185
181
  | [![oceanex](https://user-images.githubusercontent.com/1294454/58385970-794e2d80-8001-11e9-889c-0567cd79b78e.jpg)](https://oceanex.pro/signup?referral=VE24QX) | oceanex | [OceanEx](https://oceanex.pro/signup?referral=VE24QX) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://api.oceanex.pro/doc/v1) | | |
186
- | [![okcoin](https://user-images.githubusercontent.com/51840849/87295551-102fbf00-c50e-11ea-90a9-462eebba5829.jpg)](https://www.okcoin.com/account/register?flag=activity&channelId=600001513) | okcoin | [OKCoin](https://www.okcoin.com/account/register?flag=activity&channelId=600001513) | [![API Version 3](https://img.shields.io/badge/3-lightgray)](https://www.okcoin.com/docs/en/) | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
182
+ | [![okcoin](https://user-images.githubusercontent.com/51840849/87295551-102fbf00-c50e-11ea-90a9-462eebba5829.jpg)](https://www.okcoin.com/account/register?flag=activity&channelId=600001513) | okcoin | [OKCoin](https://www.okcoin.com/account/register?flag=activity&channelId=600001513) | [![API Version 5](https://img.shields.io/badge/5-lightgray)](https://www.okcoin.com/docs/en/) | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
187
183
  | [![okx](https://user-images.githubusercontent.com/1294454/152485636-38b19e4a-bece-4dec-979a-5982859ffc04.jpg)](https://www.okx.com/activities/ccxt-trade-and-earn?channelid=CCXT2023) | okx | [OKX](https://www.okx.com/activities/ccxt-trade-and-earn?channelid=CCXT2023) | [![API Version 5](https://img.shields.io/badge/5-lightgray)](https://www.okx.com/docs-v5/en/) | [![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) |
188
184
  | [![paymium](https://user-images.githubusercontent.com/51840849/87153930-f0f02200-c2c0-11ea-9c0a-40337375ae89.jpg)](https://www.paymium.com/page/sign-up?referral=eDAzPoRQFMvaAB8sf-qj) | paymium | [Paymium](https://www.paymium.com/page/sign-up?referral=eDAzPoRQFMvaAB8sf-qj) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://github.com/Paymium/api-documentation) | | |
189
185
  | [![phemex](https://user-images.githubusercontent.com/1294454/85225056-221eb600-b3d7-11ea-930d-564d2690e3f6.jpg)](https://phemex.com/register?referralCode=EDNVJ) | phemex | [Phemex](https://phemex.com/register?referralCode=EDNVJ) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://github.com/phemex/phemex-api-docs) | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
@@ -258,13 +254,13 @@ console.log(version, Object.keys(exchanges));
258
254
 
259
255
  All-in-one browser bundle (dependencies included), served from a CDN of your choice:
260
256
 
261
- * jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.1.19/dist/ccxt.browser.js
262
- * unpkg: https://unpkg.com/ccxt@4.1.19/dist/ccxt.browser.js
257
+ * jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.1.22/dist/ccxt.browser.js
258
+ * unpkg: https://unpkg.com/ccxt@4.1.22/dist/ccxt.browser.js
263
259
 
264
260
  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.
265
261
 
266
262
  ```HTML
267
- <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.1.19/dist/ccxt.browser.js"></script>
263
+ <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.1.22/dist/ccxt.browser.js"></script>
268
264
  ```
269
265
 
270
266
  Creates a global `ccxt` object: