ccxt 4.3.30__py2.py3-none-any.whl → 4.3.32__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.
- ccxt/__init__.py +1 -1
- ccxt/abstract/binance.py +2 -0
- ccxt/abstract/binancecoinm.py +2 -0
- ccxt/abstract/binanceus.py +2 -0
- ccxt/abstract/binanceusdm.py +2 -0
- ccxt/ace.py +14 -14
- ccxt/alpaca.py +16 -16
- ccxt/ascendex.py +46 -46
- ccxt/async_support/__init__.py +1 -1
- ccxt/async_support/ace.py +14 -14
- ccxt/async_support/alpaca.py +16 -16
- ccxt/async_support/ascendex.py +46 -46
- ccxt/async_support/base/exchange.py +23 -23
- ccxt/async_support/bigone.py +32 -32
- ccxt/async_support/binance.py +105 -96
- ccxt/async_support/bingx.py +21 -21
- ccxt/async_support/bit2c.py +13 -13
- ccxt/async_support/bitbank.py +19 -19
- ccxt/async_support/bitbns.py +17 -17
- ccxt/async_support/bitfinex.py +24 -24
- ccxt/async_support/bitfinex2.py +142 -109
- ccxt/async_support/bitflyer.py +23 -23
- ccxt/async_support/bitget.py +76 -76
- ccxt/async_support/bithumb.py +20 -20
- ccxt/async_support/bitmart.py +55 -55
- ccxt/async_support/bitmex.py +41 -41
- ccxt/async_support/bitopro.py +30 -30
- ccxt/async_support/bitrue.py +37 -37
- ccxt/async_support/bitso.py +30 -30
- ccxt/async_support/bitstamp.py +31 -31
- ccxt/async_support/bitteam.py +26 -26
- ccxt/async_support/bitvavo.py +27 -27
- ccxt/async_support/bl3p.py +8 -8
- ccxt/async_support/blockchaincom.py +24 -24
- ccxt/async_support/blofin.py +37 -37
- ccxt/async_support/btcalpha.py +19 -19
- ccxt/async_support/btcbox.py +11 -11
- ccxt/async_support/btcmarkets.py +22 -22
- ccxt/async_support/btcturk.py +13 -13
- ccxt/async_support/bybit.py +96 -96
- ccxt/async_support/cex.py +21 -21
- ccxt/async_support/coinbase.py +53 -53
- ccxt/async_support/coinbaseexchange.py +29 -29
- ccxt/async_support/coinbaseinternational.py +32 -32
- ccxt/async_support/coincheck.py +14 -14
- ccxt/async_support/coinex.py +208 -175
- ccxt/async_support/coinlist.py +35 -35
- ccxt/async_support/coinmate.py +22 -22
- ccxt/async_support/coinmetro.py +22 -22
- ccxt/async_support/coinone.py +18 -18
- ccxt/async_support/coinsph.py +32 -32
- ccxt/async_support/coinspot.py +8 -8
- ccxt/async_support/cryptocom.py +43 -43
- ccxt/async_support/currencycom.py +33 -33
- ccxt/async_support/delta.py +35 -35
- ccxt/async_support/deribit.py +54 -54
- ccxt/async_support/digifinex.py +56 -56
- ccxt/async_support/exmo.py +34 -34
- ccxt/async_support/gate.py +60 -60
- ccxt/async_support/gemini.py +24 -24
- ccxt/async_support/hitbtc.py +51 -51
- ccxt/async_support/hollaex.py +29 -29
- ccxt/async_support/htx.py +73 -73
- ccxt/async_support/huobijp.py +30 -30
- ccxt/async_support/hyperliquid.py +58 -58
- ccxt/async_support/idex.py +33 -33
- ccxt/async_support/independentreserve.py +12 -12
- ccxt/async_support/indodax.py +21 -21
- ccxt/async_support/kraken.py +46 -51
- ccxt/async_support/krakenfutures.py +29 -29
- ccxt/async_support/kucoin.py +51 -51
- ccxt/async_support/kucoinfutures.py +33 -33
- ccxt/async_support/kuna.py +27 -27
- ccxt/async_support/latoken.py +27 -27
- ccxt/async_support/lbank.py +35 -35
- ccxt/async_support/luno.py +19 -19
- ccxt/async_support/lykke.py +20 -20
- ccxt/async_support/mercado.py +17 -17
- ccxt/async_support/mexc.py +64 -64
- ccxt/async_support/ndax.py +38 -38
- ccxt/async_support/novadax.py +26 -26
- ccxt/async_support/oceanex.py +21 -21
- ccxt/async_support/okcoin.py +35 -35
- ccxt/async_support/okx.py +85 -85
- ccxt/async_support/onetrading.py +32 -32
- ccxt/async_support/p2b.py +14 -14
- ccxt/async_support/paymium.py +12 -12
- ccxt/async_support/phemex.py +50 -50
- ccxt/async_support/poloniex.py +35 -35
- ccxt/async_support/poloniexfutures.py +25 -21
- ccxt/async_support/probit.py +30 -30
- ccxt/async_support/timex.py +22 -22
- ccxt/async_support/tokocrypto.py +26 -26
- ccxt/async_support/tradeogre.py +12 -12
- ccxt/async_support/upbit.py +28 -28
- ccxt/async_support/wavesexchange.py +33 -33
- ccxt/async_support/wazirx.py +21 -21
- ccxt/async_support/whitebit.py +37 -37
- ccxt/async_support/woo.py +51 -51
- ccxt/async_support/woofipro.py +46 -46
- ccxt/async_support/yobit.py +20 -20
- ccxt/async_support/zaif.py +12 -12
- ccxt/async_support/zonda.py +22 -22
- ccxt/base/exchange.py +48 -36
- ccxt/base/types.py +13 -0
- ccxt/bigone.py +32 -32
- ccxt/binance.py +105 -96
- ccxt/bingx.py +21 -21
- ccxt/bit2c.py +13 -13
- ccxt/bitbank.py +19 -19
- ccxt/bitbns.py +17 -17
- ccxt/bitfinex.py +24 -24
- ccxt/bitfinex2.py +142 -109
- ccxt/bitflyer.py +23 -23
- ccxt/bitget.py +76 -76
- ccxt/bithumb.py +20 -20
- ccxt/bitmart.py +55 -55
- ccxt/bitmex.py +41 -41
- ccxt/bitopro.py +30 -30
- ccxt/bitrue.py +37 -37
- ccxt/bitso.py +30 -30
- ccxt/bitstamp.py +31 -31
- ccxt/bitteam.py +26 -26
- ccxt/bitvavo.py +27 -27
- ccxt/bl3p.py +8 -8
- ccxt/blockchaincom.py +24 -24
- ccxt/blofin.py +37 -37
- ccxt/btcalpha.py +19 -19
- ccxt/btcbox.py +11 -11
- ccxt/btcmarkets.py +22 -22
- ccxt/btcturk.py +13 -13
- ccxt/bybit.py +96 -96
- ccxt/cex.py +21 -21
- ccxt/coinbase.py +53 -53
- ccxt/coinbaseexchange.py +29 -29
- ccxt/coinbaseinternational.py +32 -32
- ccxt/coincheck.py +14 -14
- ccxt/coinex.py +208 -175
- ccxt/coinlist.py +35 -35
- ccxt/coinmate.py +22 -22
- ccxt/coinmetro.py +22 -22
- ccxt/coinone.py +18 -18
- ccxt/coinsph.py +32 -32
- ccxt/coinspot.py +8 -8
- ccxt/cryptocom.py +43 -43
- ccxt/currencycom.py +33 -33
- ccxt/delta.py +35 -35
- ccxt/deribit.py +54 -54
- ccxt/digifinex.py +56 -56
- ccxt/exmo.py +34 -34
- ccxt/gate.py +60 -60
- ccxt/gemini.py +24 -24
- ccxt/hitbtc.py +51 -51
- ccxt/hollaex.py +29 -29
- ccxt/htx.py +73 -73
- ccxt/huobijp.py +30 -30
- ccxt/hyperliquid.py +58 -58
- ccxt/idex.py +33 -33
- ccxt/independentreserve.py +12 -12
- ccxt/indodax.py +21 -21
- ccxt/kraken.py +46 -51
- ccxt/krakenfutures.py +29 -29
- ccxt/kucoin.py +51 -51
- ccxt/kucoinfutures.py +33 -33
- ccxt/kuna.py +27 -27
- ccxt/latoken.py +27 -27
- ccxt/lbank.py +35 -35
- ccxt/luno.py +19 -19
- ccxt/lykke.py +20 -20
- ccxt/mercado.py +17 -17
- ccxt/mexc.py +64 -64
- ccxt/ndax.py +38 -38
- ccxt/novadax.py +26 -26
- ccxt/oceanex.py +21 -21
- ccxt/okcoin.py +35 -35
- ccxt/okx.py +85 -85
- ccxt/onetrading.py +32 -32
- ccxt/p2b.py +14 -14
- ccxt/paymium.py +12 -12
- ccxt/phemex.py +50 -50
- ccxt/poloniex.py +35 -35
- ccxt/poloniexfutures.py +25 -21
- ccxt/pro/__init__.py +1 -1
- ccxt/pro/alpaca.py +8 -8
- ccxt/pro/ascendex.py +4 -4
- ccxt/pro/binance.py +56 -56
- ccxt/pro/bingx.py +5 -5
- ccxt/pro/bitfinex.py +6 -6
- ccxt/pro/bitfinex2.py +10 -10
- ccxt/pro/bitget.py +17 -17
- ccxt/pro/bithumb.py +6 -6
- ccxt/pro/bitmart.py +8 -8
- ccxt/pro/bitmex.py +16 -16
- ccxt/pro/bitopro.py +4 -4
- ccxt/pro/bitrue.py +8 -8
- ccxt/pro/bitstamp.py +5 -5
- ccxt/pro/bitvavo.py +14 -14
- ccxt/pro/blockchaincom.py +7 -7
- ccxt/pro/bybit.py +12 -12
- ccxt/pro/cex.py +20 -20
- ccxt/pro/coinbase.py +32 -2
- ccxt/pro/coinbaseexchange.py +10 -10
- ccxt/pro/coinbaseinternational.py +4 -4
- ccxt/pro/coincheck.py +2 -2
- ccxt/pro/coinex.py +15 -15
- ccxt/pro/coinone.py +4 -4
- ccxt/pro/cryptocom.py +11 -11
- ccxt/pro/currencycom.py +4 -4
- ccxt/pro/deribit.py +9 -9
- ccxt/pro/exmo.py +9 -9
- ccxt/pro/gate.py +12 -12
- ccxt/pro/gemini.py +11 -11
- ccxt/pro/hitbtc.py +13 -13
- ccxt/pro/hollaex.py +6 -6
- ccxt/pro/htx.py +15 -15
- ccxt/pro/huobijp.py +16 -16
- ccxt/pro/hyperliquid.py +9 -9
- ccxt/pro/idex.py +12 -12
- ccxt/pro/independentreserve.py +2 -2
- ccxt/pro/kraken.py +14 -14
- ccxt/pro/krakenfutures.py +12 -12
- ccxt/pro/kucoin.py +12 -12
- ccxt/pro/kucoinfutures.py +16 -16
- ccxt/pro/lbank.py +12 -12
- ccxt/pro/luno.py +4 -4
- ccxt/pro/mexc.py +14 -14
- ccxt/pro/ndax.py +12 -12
- ccxt/pro/okcoin.py +6 -6
- ccxt/pro/okx.py +30 -30
- ccxt/pro/onetrading.py +13 -13
- ccxt/pro/p2b.py +2 -2
- ccxt/pro/phemex.py +9 -9
- ccxt/pro/poloniex.py +9 -9
- ccxt/pro/poloniexfutures.py +10 -10
- ccxt/pro/probit.py +8 -8
- ccxt/pro/upbit.py +1 -1
- ccxt/pro/wazirx.py +10 -10
- ccxt/pro/whitebit.py +8 -8
- ccxt/pro/woo.py +14 -14
- ccxt/pro/woofipro.py +14 -14
- ccxt/probit.py +30 -30
- ccxt/test/base/test_shared_methods.py +1 -0
- ccxt/test/test_async.py +1 -1
- ccxt/test/test_sync.py +1 -1
- ccxt/timex.py +22 -22
- ccxt/tokocrypto.py +26 -26
- ccxt/tradeogre.py +12 -12
- ccxt/upbit.py +28 -28
- ccxt/wavesexchange.py +33 -33
- ccxt/wazirx.py +21 -21
- ccxt/whitebit.py +37 -37
- ccxt/woo.py +51 -51
- ccxt/woofipro.py +46 -46
- ccxt/yobit.py +20 -20
- ccxt/zaif.py +12 -12
- ccxt/zonda.py +22 -22
- {ccxt-4.3.30.dist-info → ccxt-4.3.32.dist-info}/METADATA +4 -4
- {ccxt-4.3.30.dist-info → ccxt-4.3.32.dist-info}/RECORD +260 -260
- {ccxt-4.3.30.dist-info → ccxt-4.3.32.dist-info}/WHEEL +0 -0
- {ccxt-4.3.30.dist-info → ccxt-4.3.32.dist-info}/top_level.txt +0 -0
ccxt/zonda.py
CHANGED
@@ -419,12 +419,12 @@ class zonda(Exchange, ImplicitAPI):
|
|
419
419
|
:returns Order[]: a list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
|
420
420
|
"""
|
421
421
|
self.load_markets()
|
422
|
-
request = {}
|
422
|
+
request: dict = {}
|
423
423
|
response = self.v1_01PrivateGetTradingOffer(self.extend(request, params))
|
424
424
|
items = self.safe_list(response, 'items', [])
|
425
425
|
return self.parse_orders(items, None, since, limit, {'status': 'open'})
|
426
426
|
|
427
|
-
def parse_order(self, order, market: Market = None) -> Order:
|
427
|
+
def parse_order(self, order: dict, market: Market = None) -> Order:
|
428
428
|
#
|
429
429
|
# {
|
430
430
|
# "market": "ETH-EUR",
|
@@ -485,12 +485,12 @@ class zonda(Exchange, ImplicitAPI):
|
|
485
485
|
:returns Trade[]: a list of `trade structures <https://docs.ccxt.com/#/?id=trade-structure>`
|
486
486
|
"""
|
487
487
|
self.load_markets()
|
488
|
-
request = {}
|
488
|
+
request: dict = {}
|
489
489
|
if symbol:
|
490
490
|
markets = [self.market_id(symbol)]
|
491
491
|
symbol = self.symbol(symbol)
|
492
492
|
request['markets'] = markets
|
493
|
-
query = {'query': self.json(self.extend(request, params))}
|
493
|
+
query: dict = {'query': self.json(self.extend(request, params))}
|
494
494
|
response = self.v1_01PrivateGetTradingHistoryTransactions(query)
|
495
495
|
#
|
496
496
|
# {
|
@@ -522,7 +522,7 @@ class zonda(Exchange, ImplicitAPI):
|
|
522
522
|
balances = self.safe_value(response, 'balances')
|
523
523
|
if balances is None:
|
524
524
|
raise ExchangeError(self.id + ' empty balance response ' + self.json(response))
|
525
|
-
result = {'info': response}
|
525
|
+
result: dict = {'info': response}
|
526
526
|
for i in range(0, len(balances)):
|
527
527
|
balance = balances[i]
|
528
528
|
currencyId = self.safe_string(balance, 'currency')
|
@@ -555,7 +555,7 @@ class zonda(Exchange, ImplicitAPI):
|
|
555
555
|
"""
|
556
556
|
self.load_markets()
|
557
557
|
market = self.market(symbol)
|
558
|
-
request = {
|
558
|
+
request: dict = {
|
559
559
|
'symbol': market['id'],
|
560
560
|
}
|
561
561
|
response = self.v1_01PublicGetTradingOrderbookSymbol(self.extend(request, params))
|
@@ -665,7 +665,7 @@ class zonda(Exchange, ImplicitAPI):
|
|
665
665
|
"""
|
666
666
|
self.load_markets()
|
667
667
|
market = self.market(symbol)
|
668
|
-
request = {
|
668
|
+
request: dict = {
|
669
669
|
'symbol': market['id'],
|
670
670
|
}
|
671
671
|
method = 'v1_01PublicGetTradingTickerSymbol'
|
@@ -805,7 +805,7 @@ class zonda(Exchange, ImplicitAPI):
|
|
805
805
|
if code is not None:
|
806
806
|
currency = self.currency(code)
|
807
807
|
balanceCurrencies.append(currency['id'])
|
808
|
-
request = {
|
808
|
+
request: dict = {
|
809
809
|
'balanceCurrencies': balanceCurrencies,
|
810
810
|
}
|
811
811
|
if since is not None:
|
@@ -817,7 +817,7 @@ class zonda(Exchange, ImplicitAPI):
|
|
817
817
|
items = response['items']
|
818
818
|
return self.parse_ledger(items, None, since, limit)
|
819
819
|
|
820
|
-
def parse_ledger_entry(self, item, currency: Currency = None):
|
820
|
+
def parse_ledger_entry(self, item: dict, currency: Currency = None):
|
821
821
|
#
|
822
822
|
# FUNDS_MIGRATION
|
823
823
|
# {
|
@@ -1117,7 +1117,7 @@ class zonda(Exchange, ImplicitAPI):
|
|
1117
1117
|
}
|
1118
1118
|
|
1119
1119
|
def parse_ledger_entry_type(self, type):
|
1120
|
-
types = {
|
1120
|
+
types: dict = {
|
1121
1121
|
'ADD_FUNDS': 'transaction',
|
1122
1122
|
'BITCOIN_GOLD_FORK': 'transaction',
|
1123
1123
|
'CREATE_BALANCE': 'transaction',
|
@@ -1173,7 +1173,7 @@ class zonda(Exchange, ImplicitAPI):
|
|
1173
1173
|
self.load_markets()
|
1174
1174
|
market = self.market(symbol)
|
1175
1175
|
tradingSymbol = market['baseId'] + '-' + market['quoteId']
|
1176
|
-
request = {
|
1176
|
+
request: dict = {
|
1177
1177
|
'symbol': tradingSymbol,
|
1178
1178
|
'resolution': self.safe_string(self.timeframes, timeframe, timeframe),
|
1179
1179
|
# 'from': 1574709092000, # unix timestamp in milliseconds, required
|
@@ -1205,7 +1205,7 @@ class zonda(Exchange, ImplicitAPI):
|
|
1205
1205
|
items = self.safe_list(response, 'items', [])
|
1206
1206
|
return self.parse_ohlcvs(items, market, timeframe, since, limit)
|
1207
1207
|
|
1208
|
-
def parse_trade(self, trade, market: Market = None) -> Trade:
|
1208
|
+
def parse_trade(self, trade: dict, market: Market = None) -> Trade:
|
1209
1209
|
#
|
1210
1210
|
# createOrder trades
|
1211
1211
|
#
|
@@ -1292,7 +1292,7 @@ class zonda(Exchange, ImplicitAPI):
|
|
1292
1292
|
self.load_markets()
|
1293
1293
|
market = self.market(symbol)
|
1294
1294
|
tradingSymbol = market['baseId'] + '-' + market['quoteId']
|
1295
|
-
request = {
|
1295
|
+
request: dict = {
|
1296
1296
|
'symbol': tradingSymbol,
|
1297
1297
|
}
|
1298
1298
|
if since is not None:
|
@@ -1318,7 +1318,7 @@ class zonda(Exchange, ImplicitAPI):
|
|
1318
1318
|
market = self.market(symbol)
|
1319
1319
|
tradingSymbol = market['baseId'] + '-' + market['quoteId']
|
1320
1320
|
amount = float(self.amount_to_precision(symbol, amount))
|
1321
|
-
request = {
|
1321
|
+
request: dict = {
|
1322
1322
|
'symbol': tradingSymbol,
|
1323
1323
|
'offerType': side.upper(),
|
1324
1324
|
'amount': amount,
|
@@ -1443,7 +1443,7 @@ class zonda(Exchange, ImplicitAPI):
|
|
1443
1443
|
self.load_markets()
|
1444
1444
|
market = self.market(symbol)
|
1445
1445
|
tradingSymbol = market['baseId'] + '-' + market['quoteId']
|
1446
|
-
request = {
|
1446
|
+
request: dict = {
|
1447
1447
|
'symbol': tradingSymbol,
|
1448
1448
|
'id': id,
|
1449
1449
|
'side': side,
|
@@ -1454,7 +1454,7 @@ class zonda(Exchange, ImplicitAPI):
|
|
1454
1454
|
return self.v1_01PrivateDeleteTradingOfferSymbolIdSidePrice(self.extend(request, params))
|
1455
1455
|
|
1456
1456
|
def is_fiat(self, currency):
|
1457
|
-
fiatCurrencies = {
|
1457
|
+
fiatCurrencies: dict = {
|
1458
1458
|
'USD': True,
|
1459
1459
|
'EUR': True,
|
1460
1460
|
'PLN': True,
|
@@ -1493,7 +1493,7 @@ class zonda(Exchange, ImplicitAPI):
|
|
1493
1493
|
"""
|
1494
1494
|
self.load_markets()
|
1495
1495
|
currency = self.currency(code)
|
1496
|
-
request = {
|
1496
|
+
request: dict = {
|
1497
1497
|
'currency': currency['id'],
|
1498
1498
|
}
|
1499
1499
|
response = self.v1_01PrivateGetApiPaymentsDepositsCryptoAddresses(self.extend(request, params))
|
@@ -1514,7 +1514,7 @@ class zonda(Exchange, ImplicitAPI):
|
|
1514
1514
|
first = self.safe_dict(data, 0)
|
1515
1515
|
return self.parse_deposit_address(first, currency)
|
1516
1516
|
|
1517
|
-
def fetch_deposit_addresses(self, codes:
|
1517
|
+
def fetch_deposit_addresses(self, codes: Strings = None, params={}):
|
1518
1518
|
"""
|
1519
1519
|
:see: https://docs.zondacrypto.exchange/reference/deposit-addresses-for-crypto
|
1520
1520
|
fetch deposit addresses for multiple currencies and chain types
|
@@ -1553,7 +1553,7 @@ class zonda(Exchange, ImplicitAPI):
|
|
1553
1553
|
"""
|
1554
1554
|
self.load_markets()
|
1555
1555
|
currency = self.currency(code)
|
1556
|
-
request = {
|
1556
|
+
request: dict = {
|
1557
1557
|
'source': fromAccount,
|
1558
1558
|
'destination': toAccount,
|
1559
1559
|
'currency': code,
|
@@ -1643,7 +1643,7 @@ class zonda(Exchange, ImplicitAPI):
|
|
1643
1643
|
}
|
1644
1644
|
|
1645
1645
|
def parse_transfer_status(self, status: Str) -> Str:
|
1646
|
-
statuses = {
|
1646
|
+
statuses: dict = {
|
1647
1647
|
'Ok': 'ok',
|
1648
1648
|
'Fail': 'failed',
|
1649
1649
|
}
|
@@ -1665,7 +1665,7 @@ class zonda(Exchange, ImplicitAPI):
|
|
1665
1665
|
self.load_markets()
|
1666
1666
|
response = None
|
1667
1667
|
currency = self.currency(code)
|
1668
|
-
request = {
|
1668
|
+
request: dict = {
|
1669
1669
|
'currency': currency['id'],
|
1670
1670
|
'amount': amount,
|
1671
1671
|
'address': address,
|
@@ -1689,7 +1689,7 @@ class zonda(Exchange, ImplicitAPI):
|
|
1689
1689
|
data = self.safe_dict(response, 'data')
|
1690
1690
|
return self.parse_transaction(data, currency)
|
1691
1691
|
|
1692
|
-
def parse_transaction(self, transaction, currency: Currency = None) -> Transaction:
|
1692
|
+
def parse_transaction(self, transaction: dict, currency: Currency = None) -> Transaction:
|
1693
1693
|
#
|
1694
1694
|
# withdraw
|
1695
1695
|
#
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ccxt
|
3
|
-
Version: 4.3.
|
3
|
+
Version: 4.3.32
|
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
|
@@ -264,13 +264,13 @@ console.log(version, Object.keys(exchanges));
|
|
264
264
|
|
265
265
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
266
266
|
|
267
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
268
|
-
* unpkg: https://unpkg.com/ccxt@4.3.
|
267
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.32/dist/ccxt.browser.min.js
|
268
|
+
* unpkg: https://unpkg.com/ccxt@4.3.32/dist/ccxt.browser.min.js
|
269
269
|
|
270
270
|
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.
|
271
271
|
|
272
272
|
```HTML
|
273
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
273
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.32/dist/ccxt.browser.min.js"></script>
|
274
274
|
```
|
275
275
|
|
276
276
|
Creates a global `ccxt` object:
|