ccxt 4.4.68__tar.gz → 4.4.70__tar.gz
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-4.4.68/ccxt.egg-info → ccxt-4.4.70}/PKG-INFO +4 -4
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/__init__.py +1 -1
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/bybit.py +4 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/myokx.py +3 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/okx.py +3 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/paradex.py +23 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/tradeogre.py +2 -1
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/__init__.py +1 -1
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/base/exchange.py +5 -1
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/binance.py +17 -3
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/bitget.py +47 -262
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/bitstamp.py +2 -3
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/bybit.py +7 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/coinbase.py +24 -9
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/cryptomus.py +122 -6
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/hyperliquid.py +17 -8
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/okx.py +4 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/paradex.py +173 -5
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/phemex.py +2 -2
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/tradeogre.py +31 -11
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/whitebit.py +210 -2
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/base/exchange.py +1 -2
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/binance.py +17 -3
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/bitget.py +47 -262
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/bitstamp.py +2 -3
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/bybit.py +7 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/coinbase.py +24 -9
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/cryptomus.py +122 -6
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/hyperliquid.py +17 -8
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/okx.py +4 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/paradex.py +173 -5
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/phemex.py +2 -2
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/__init__.py +1 -1
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/bitget.py +28 -3
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/bybit.py +81 -37
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/test/tests_async.py +25 -3
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/test/tests_sync.py +25 -3
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/tradeogre.py +31 -11
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/whitebit.py +210 -2
- {ccxt-4.4.68 → ccxt-4.4.70/ccxt.egg-info}/PKG-INFO +4 -4
- {ccxt-4.4.68 → ccxt-4.4.70}/package.json +1 -1
- {ccxt-4.4.68 → ccxt-4.4.70}/LICENSE.txt +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/MANIFEST.in +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/README.rst +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/ace.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/alpaca.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/ascendex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/bequant.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/bigone.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/binance.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/binancecoinm.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/binanceus.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/binanceusdm.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/bingx.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/bit2c.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/bitbank.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/bitbns.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/bitcoincom.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/bitfinex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/bitfinex1.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/bitflyer.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/bitget.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/bithumb.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/bitmart.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/bitmex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/bitopro.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/bitpanda.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/bitrue.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/bitso.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/bitstamp.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/bitteam.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/bitvavo.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/bl3p.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/blockchaincom.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/blofin.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/btcalpha.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/btcbox.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/btcmarkets.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/btcturk.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/cex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/coinbase.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/coinbaseadvanced.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/coinbaseexchange.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/coinbaseinternational.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/coincatch.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/coincheck.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/coinex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/coinlist.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/coinmate.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/coinmetro.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/coinone.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/coinsph.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/coinspot.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/cryptocom.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/cryptomus.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/defx.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/delta.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/deribit.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/derive.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/digifinex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/ellipx.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/exmo.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/fmfwio.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/gate.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/gateio.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/gemini.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/hashkey.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/hitbtc.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/hollaex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/htx.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/huobi.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/huobijp.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/hyperliquid.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/idex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/independentreserve.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/indodax.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/kraken.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/krakenfutures.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/kucoin.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/kucoinfutures.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/kuna.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/latoken.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/lbank.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/luno.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/mercado.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/mexc.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/ndax.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/novadax.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/oceanex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/okcoin.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/onetrading.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/oxfun.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/p2b.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/paymium.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/phemex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/poloniex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/poloniexfutures.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/probit.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/timex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/tokocrypto.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/upbit.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/vertex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/wavesexchange.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/whitebit.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/woo.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/woofipro.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/xt.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/yobit.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/zaif.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/abstract/zonda.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/ace.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/alpaca.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/ascendex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/ace.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/alpaca.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/ascendex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/base/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/base/throttler.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/base/ws/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/base/ws/aiohttp_client.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/base/ws/cache.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/base/ws/client.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/base/ws/fast_client.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/base/ws/functions.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/base/ws/future.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/base/ws/order_book.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/base/ws/order_book_side.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/bequant.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/bigone.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/binancecoinm.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/binanceus.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/binanceusdm.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/bingx.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/bit2c.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/bitbank.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/bitbns.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/bitcoincom.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/bitfinex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/bitfinex1.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/bitflyer.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/bithumb.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/bitmart.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/bitmex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/bitopro.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/bitpanda.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/bitrue.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/bitso.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/bitteam.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/bitvavo.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/bl3p.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/blockchaincom.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/blofin.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/btcalpha.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/btcbox.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/btcmarkets.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/btcturk.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/cex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/coinbaseadvanced.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/coinbaseexchange.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/coinbaseinternational.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/coincatch.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/coincheck.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/coinex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/coinlist.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/coinmate.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/coinmetro.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/coinone.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/coinsph.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/coinspot.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/cryptocom.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/defx.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/delta.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/deribit.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/derive.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/digifinex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/ellipx.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/exmo.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/fmfwio.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/gate.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/gateio.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/gemini.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/hashkey.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/hitbtc.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/hollaex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/htx.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/huobi.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/huobijp.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/idex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/independentreserve.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/indodax.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/kraken.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/krakenfutures.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/kucoin.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/kucoinfutures.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/kuna.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/latoken.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/lbank.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/luno.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/mercado.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/mexc.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/myokx.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/ndax.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/novadax.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/oceanex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/okcoin.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/onetrading.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/oxfun.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/p2b.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/paymium.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/poloniex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/poloniexfutures.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/probit.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/timex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/tokocrypto.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/upbit.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/vertex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/wavesexchange.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/woo.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/woofipro.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/xt.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/yobit.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/zaif.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/async_support/zonda.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/base/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/base/decimal_to_precision.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/base/errors.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/base/precise.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/base/types.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/bequant.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/bigone.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/binancecoinm.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/binanceus.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/binanceusdm.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/bingx.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/bit2c.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/bitbank.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/bitbns.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/bitcoincom.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/bitfinex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/bitfinex1.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/bitflyer.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/bithumb.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/bitmart.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/bitmex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/bitopro.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/bitpanda.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/bitrue.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/bitso.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/bitteam.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/bitvavo.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/bl3p.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/blockchaincom.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/blofin.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/btcalpha.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/btcbox.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/btcmarkets.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/btcturk.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/cex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/coinbaseadvanced.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/coinbaseexchange.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/coinbaseinternational.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/coincatch.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/coincheck.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/coinex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/coinlist.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/coinmate.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/coinmetro.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/coinone.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/coinsph.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/coinspot.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/cryptocom.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/defx.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/delta.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/deribit.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/derive.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/digifinex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/ellipx.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/exmo.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/fmfwio.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/gate.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/gateio.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/gemini.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/hashkey.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/hitbtc.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/hollaex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/htx.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/huobi.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/huobijp.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/idex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/independentreserve.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/indodax.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/kraken.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/krakenfutures.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/kucoin.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/kucoinfutures.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/kuna.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/latoken.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/lbank.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/luno.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/mercado.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/mexc.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/myokx.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/ndax.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/novadax.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/oceanex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/okcoin.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/onetrading.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/oxfun.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/p2b.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/paymium.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/poloniex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/poloniexfutures.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/alpaca.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/ascendex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/bequant.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/binance.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/binancecoinm.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/binanceus.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/binanceusdm.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/bingx.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/bitcoincom.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/bitfinex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/bitfinex1.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/bithumb.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/bitmart.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/bitmex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/bitopro.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/bitpanda.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/bitrue.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/bitstamp.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/bitvavo.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/blockchaincom.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/blofin.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/cex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/coinbase.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/coinbaseadvanced.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/coinbaseexchange.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/coinbaseinternational.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/coincatch.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/coincheck.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/coinex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/coinone.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/cryptocom.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/defx.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/deribit.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/derive.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/exmo.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/gate.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/gateio.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/gemini.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/hashkey.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/hitbtc.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/hollaex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/htx.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/huobi.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/huobijp.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/hyperliquid.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/idex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/independentreserve.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/kraken.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/krakenfutures.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/kucoin.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/kucoinfutures.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/lbank.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/luno.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/mexc.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/myokx.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/ndax.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/okcoin.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/okx.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/onetrading.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/oxfun.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/p2b.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/paradex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/phemex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/poloniex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/poloniexfutures.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/probit.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/upbit.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/vertex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/wazirx.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/whitebit.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/woo.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/woofipro.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/pro/xt.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/probit.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ecdsa/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ecdsa/_version.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ecdsa/curves.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ecdsa/der.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ecdsa/ecdsa.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ecdsa/ellipticcurve.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ecdsa/keys.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ecdsa/numbertheory.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ecdsa/rfc6979.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ecdsa/util.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/abi/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/abi/abi.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/abi/base.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/abi/codec.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/abi/constants.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/abi/decoding.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/abi/encoding.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/abi/exceptions.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/abi/grammar.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/abi/packed.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/abi/py.typed +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/abi/registry.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/abi/tools/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/abi/tools/_strategies.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/abi/utils/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/abi/utils/numeric.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/abi/utils/padding.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/abi/utils/string.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/account/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/account/encode_typed_data/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/account/encode_typed_data/encoding_and_hashing.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/account/encode_typed_data/helpers.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/account/messages.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/account/py.typed +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/hexbytes/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/hexbytes/_utils.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/hexbytes/main.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/hexbytes/py.typed +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/typing/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/typing/abi.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/typing/bls.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/typing/discovery.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/typing/encoding.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/typing/enums.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/typing/ethpm.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/typing/evm.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/typing/networks.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/typing/py.typed +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/utils/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/utils/abi.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/utils/address.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/utils/applicators.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/utils/conversions.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/utils/currency.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/utils/curried/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/utils/debug.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/utils/decorators.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/utils/encoding.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/utils/exceptions.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/utils/functional.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/utils/hexadecimal.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/utils/humanize.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/utils/logging.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/utils/module_loading.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/utils/numeric.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/utils/py.typed +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/utils/toolz.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/utils/types.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/utils/typing/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/utils/typing/misc.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/ethereum/utils/units.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/keccak/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/keccak/keccak.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/__pyinstaller/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/__pyinstaller/hook-lark.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/ast_utils.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/common.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/exceptions.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/grammar.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/grammars/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/indenter.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/lark.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/lexer.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/load_grammar.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/parse_tree_builder.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/parser_frontends.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/parsers/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/parsers/cyk.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/parsers/earley.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/parsers/earley_common.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/parsers/earley_forest.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/parsers/grammar_analysis.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/parsers/lalr_analysis.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/parsers/lalr_interactive_parser.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/parsers/lalr_parser.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/parsers/lalr_parser_state.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/parsers/xearley.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/py.typed +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/reconstruct.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/tools/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/tools/nearley.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/tools/serialize.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/tools/standalone.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/tree.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/tree_matcher.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/tree_templates.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/utils.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/lark/visitors.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/marshmallow/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/marshmallow/base.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/marshmallow/class_registry.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/marshmallow/decorators.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/marshmallow/error_store.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/marshmallow/exceptions.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/marshmallow/fields.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/marshmallow/orderedset.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/marshmallow/py.typed +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/marshmallow/schema.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/marshmallow/types.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/marshmallow/utils.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/marshmallow/validate.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/marshmallow/warnings.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/marshmallow_dataclass/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/marshmallow_dataclass/collection_field.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/marshmallow_dataclass/lazy_class_attribute.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/marshmallow_dataclass/mypy.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/marshmallow_dataclass/py.typed +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/marshmallow_dataclass/typing.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/marshmallow_dataclass/union_field.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/marshmallow_oneofschema/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/marshmallow_oneofschema/one_of_schema.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/marshmallow_oneofschema/py.typed +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/msgpack/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/msgpack/exceptions.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/msgpack/ext.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/msgpack/fallback.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/parsimonious/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/parsimonious/exceptions.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/parsimonious/expressions.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/parsimonious/grammar.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/parsimonious/nodes.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/parsimonious/utils.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/cairo/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/cairo/data_types.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/cairo/deprecated_parse/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/cairo/deprecated_parse/cairo_types.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser_transformer.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/cairo/felt.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/cairo/type_parser.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/cairo/v1/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/cairo/v1/type_parser.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/cairo/v2/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/cairo/v2/type_parser.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/ccxt_utils.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/common.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/constants.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/hash/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/hash/address.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/hash/compiled_class_hash_objects.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/hash/selector.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/hash/storage.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/hash/utils.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/models/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/models/typed_data.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/serialization/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/serialization/_calldata_reader.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/serialization/_context.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/serialization/data_serializers/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/serialization/data_serializers/_common.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/serialization/data_serializers/array_serializer.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/serialization/data_serializers/bool_serializer.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/serialization/data_serializers/byte_array_serializer.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/serialization/data_serializers/cairo_data_serializer.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/serialization/data_serializers/enum_serializer.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/serialization/data_serializers/felt_serializer.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/serialization/data_serializers/named_tuple_serializer.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/serialization/data_serializers/option_serializer.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/serialization/data_serializers/output_serializer.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/serialization/data_serializers/payload_serializer.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/serialization/data_serializers/struct_serializer.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/serialization/data_serializers/tuple_serializer.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/serialization/data_serializers/uint256_serializer.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/serialization/data_serializers/uint_serializer.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/serialization/data_serializers/unit_serializer.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/serialization/errors.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/serialization/factory.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/serialization/function_serialization_adapter.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/serialization/tuple_dataclass.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/utils/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/utils/constructor_args_translator.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/utils/iterable.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/utils/schema.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starknet/utils/typed_data.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starkware/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starkware/crypto/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starkware/crypto/fast_pedersen_hash.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starkware/crypto/math_utils.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starkware/crypto/signature.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/starkware/crypto/utils.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/sympy/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/sympy/core/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/sympy/core/intfunc.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/sympy/external/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/sympy/external/gmpy.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/sympy/external/importtools.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/sympy/external/ntheory.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/sympy/external/pythonmpq.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/toolz/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/toolz/_signatures.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/toolz/_version.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/toolz/compatibility.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/toolz/curried/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/toolz/curried/exceptions.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/toolz/curried/operator.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/toolz/dicttoolz.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/toolz/functoolz.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/toolz/itertoolz.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/toolz/recipes.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/toolz/utils.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/typing_inspect/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/static_dependencies/typing_inspect/typing_inspect.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/test/__init__.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/test/tests_helpers.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/test/tests_init.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/timex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/tokocrypto.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/upbit.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/vertex.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/wavesexchange.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/woo.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/woofipro.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/xt.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/yobit.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/zaif.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt/zonda.py +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt.egg-info/SOURCES.txt +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt.egg-info/dependency_links.txt +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt.egg-info/requires.txt +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/ccxt.egg-info/top_level.txt +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/setup.cfg +0 -0
- {ccxt-4.4.68 → ccxt-4.4.70}/setup.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ccxt
|
3
|
-
Version: 4.4.
|
3
|
+
Version: 4.4.70
|
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
|
@@ -267,13 +267,13 @@ console.log(version, Object.keys(exchanges));
|
|
267
267
|
|
268
268
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
269
269
|
|
270
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.
|
271
|
-
* unpkg: https://unpkg.com/ccxt@4.4.
|
270
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.70/dist/ccxt.browser.min.js
|
271
|
+
* unpkg: https://unpkg.com/ccxt@4.4.70/dist/ccxt.browser.min.js
|
272
272
|
|
273
273
|
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.
|
274
274
|
|
275
275
|
```HTML
|
276
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.
|
276
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.70/dist/ccxt.browser.min.js"></script>
|
277
277
|
```
|
278
278
|
|
279
279
|
Creates a global `ccxt` object:
|
@@ -56,6 +56,7 @@ class ImplicitAPI:
|
|
56
56
|
public_get_v5_crypto_loan_loanable_data = publicGetV5CryptoLoanLoanableData = Entry('v5/crypto-loan/loanable-data', 'public', 'GET', {'cost': 5})
|
57
57
|
public_get_v5_ins_loan_product_infos = publicGetV5InsLoanProductInfos = Entry('v5/ins-loan/product-infos', 'public', 'GET', {'cost': 5})
|
58
58
|
public_get_v5_ins_loan_ensure_tokens_convert = publicGetV5InsLoanEnsureTokensConvert = Entry('v5/ins-loan/ensure-tokens-convert', 'public', 'GET', {'cost': 5})
|
59
|
+
public_get_v5_earn_product = publicGetV5EarnProduct = Entry('v5/earn/product', 'public', 'GET', {'cost': 5})
|
59
60
|
private_get_v5_market_instruments_info = privateGetV5MarketInstrumentsInfo = Entry('v5/market/instruments-info', 'private', 'GET', {'cost': 5})
|
60
61
|
private_get_v2_private_wallet_fund_records = privateGetV2PrivateWalletFundRecords = Entry('v2/private/wallet/fund/records', 'private', 'GET', {'cost': 25})
|
61
62
|
private_get_spot_v3_private_order = privateGetSpotV3PrivateOrder = Entry('spot/v3/private/order', 'private', 'GET', {'cost': 2.5})
|
@@ -192,6 +193,8 @@ class ImplicitAPI:
|
|
192
193
|
private_get_v5_broker_earnings_info = privateGetV5BrokerEarningsInfo = Entry('v5/broker/earnings-info', 'private', 'GET', {'cost': 5})
|
193
194
|
private_get_v5_broker_account_info = privateGetV5BrokerAccountInfo = Entry('v5/broker/account-info', 'private', 'GET', {'cost': 5})
|
194
195
|
private_get_v5_broker_asset_query_sub_member_deposit_record = privateGetV5BrokerAssetQuerySubMemberDepositRecord = Entry('v5/broker/asset/query-sub-member-deposit-record', 'private', 'GET', {'cost': 10})
|
196
|
+
private_get_v5_earn_order = privateGetV5EarnOrder = Entry('v5/earn/order', 'private', 'GET', {'cost': 5})
|
197
|
+
private_get_v5_earn_position = privateGetV5EarnPosition = Entry('v5/earn/position', 'private', 'GET', {'cost': 5})
|
195
198
|
private_post_spot_v3_private_order = privatePostSpotV3PrivateOrder = Entry('spot/v3/private/order', 'private', 'POST', {'cost': 2.5})
|
196
199
|
private_post_spot_v3_private_cancel_order = privatePostSpotV3PrivateCancelOrder = Entry('spot/v3/private/cancel-order', 'private', 'POST', {'cost': 2.5})
|
197
200
|
private_post_spot_v3_private_cancel_orders = privatePostSpotV3PrivateCancelOrders = Entry('spot/v3/private/cancel-orders', 'private', 'POST', {'cost': 2.5})
|
@@ -307,3 +310,4 @@ class ImplicitAPI:
|
|
307
310
|
private_post_v5_broker_award_info = privatePostV5BrokerAwardInfo = Entry('v5/broker/award/info', 'private', 'POST', {'cost': 5})
|
308
311
|
private_post_v5_broker_award_distribute_award = privatePostV5BrokerAwardDistributeAward = Entry('v5/broker/award/distribute-award', 'private', 'POST', {'cost': 5})
|
309
312
|
private_post_v5_broker_award_distribution_record = privatePostV5BrokerAwardDistributionRecord = Entry('v5/broker/award/distribution-record', 'private', 'POST', {'cost': 5})
|
313
|
+
private_post_v5_earn_place_order = privatePostV5EarnPlaceOrder = Entry('v5/earn/place-order', 'private', 'POST', {'cost': 5})
|
@@ -107,7 +107,9 @@ class ImplicitAPI:
|
|
107
107
|
private_get_trade_easy_convert_currency_list = privateGetTradeEasyConvertCurrencyList = Entry('trade/easy-convert-currency-list', 'private', 'GET', {'cost': 20})
|
108
108
|
private_get_trade_easy_convert_history = privateGetTradeEasyConvertHistory = Entry('trade/easy-convert-history', 'private', 'GET', {'cost': 20})
|
109
109
|
private_get_trade_one_click_repay_currency_list = privateGetTradeOneClickRepayCurrencyList = Entry('trade/one-click-repay-currency-list', 'private', 'GET', {'cost': 20})
|
110
|
+
private_get_trade_one_click_repay_currency_list_v2 = privateGetTradeOneClickRepayCurrencyListV2 = Entry('trade/one-click-repay-currency-list-v2', 'private', 'GET', {'cost': 20})
|
110
111
|
private_get_trade_one_click_repay_history = privateGetTradeOneClickRepayHistory = Entry('trade/one-click-repay-history', 'private', 'GET', {'cost': 20})
|
112
|
+
private_get_trade_one_click_repay_history_v2 = privateGetTradeOneClickRepayHistoryV2 = Entry('trade/one-click-repay-history-v2', 'private', 'GET', {'cost': 20})
|
111
113
|
private_get_trade_account_rate_limit = privateGetTradeAccountRateLimit = Entry('trade/account-rate-limit', 'private', 'GET', {'cost': 1})
|
112
114
|
private_get_asset_currencies = privateGetAssetCurrencies = Entry('asset/currencies', 'private', 'GET', {'cost': 1.6666666666666667})
|
113
115
|
private_get_asset_balances = privateGetAssetBalances = Entry('asset/balances', 'private', 'GET', {'cost': 1.6666666666666667})
|
@@ -250,6 +252,7 @@ class ImplicitAPI:
|
|
250
252
|
private_post_trade_cancel_advance_algos = privatePostTradeCancelAdvanceAlgos = Entry('trade/cancel-advance-algos', 'private', 'POST', {'cost': 1})
|
251
253
|
private_post_trade_easy_convert = privatePostTradeEasyConvert = Entry('trade/easy-convert', 'private', 'POST', {'cost': 20})
|
252
254
|
private_post_trade_one_click_repay = privatePostTradeOneClickRepay = Entry('trade/one-click-repay', 'private', 'POST', {'cost': 20})
|
255
|
+
private_post_trade_one_click_repay_v2 = privatePostTradeOneClickRepayV2 = Entry('trade/one-click-repay-v2', 'private', 'POST', {'cost': 20})
|
253
256
|
private_post_trade_mass_cancel = privatePostTradeMassCancel = Entry('trade/mass-cancel', 'private', 'POST', {'cost': 4})
|
254
257
|
private_post_trade_cancel_all_after = privatePostTradeCancelAllAfter = Entry('trade/cancel-all-after', 'private', 'POST', {'cost': 10})
|
255
258
|
private_post_asset_transfer = privatePostAssetTransfer = Entry('asset/transfer', 'private', 'POST', {'cost': 10})
|
@@ -107,7 +107,9 @@ class ImplicitAPI:
|
|
107
107
|
private_get_trade_easy_convert_currency_list = privateGetTradeEasyConvertCurrencyList = Entry('trade/easy-convert-currency-list', 'private', 'GET', {'cost': 20})
|
108
108
|
private_get_trade_easy_convert_history = privateGetTradeEasyConvertHistory = Entry('trade/easy-convert-history', 'private', 'GET', {'cost': 20})
|
109
109
|
private_get_trade_one_click_repay_currency_list = privateGetTradeOneClickRepayCurrencyList = Entry('trade/one-click-repay-currency-list', 'private', 'GET', {'cost': 20})
|
110
|
+
private_get_trade_one_click_repay_currency_list_v2 = privateGetTradeOneClickRepayCurrencyListV2 = Entry('trade/one-click-repay-currency-list-v2', 'private', 'GET', {'cost': 20})
|
110
111
|
private_get_trade_one_click_repay_history = privateGetTradeOneClickRepayHistory = Entry('trade/one-click-repay-history', 'private', 'GET', {'cost': 20})
|
112
|
+
private_get_trade_one_click_repay_history_v2 = privateGetTradeOneClickRepayHistoryV2 = Entry('trade/one-click-repay-history-v2', 'private', 'GET', {'cost': 20})
|
111
113
|
private_get_trade_account_rate_limit = privateGetTradeAccountRateLimit = Entry('trade/account-rate-limit', 'private', 'GET', {'cost': 1})
|
112
114
|
private_get_asset_currencies = privateGetAssetCurrencies = Entry('asset/currencies', 'private', 'GET', {'cost': 1.6666666666666667})
|
113
115
|
private_get_asset_balances = privateGetAssetBalances = Entry('asset/balances', 'private', 'GET', {'cost': 1.6666666666666667})
|
@@ -250,6 +252,7 @@ class ImplicitAPI:
|
|
250
252
|
private_post_trade_cancel_advance_algos = privatePostTradeCancelAdvanceAlgos = Entry('trade/cancel-advance-algos', 'private', 'POST', {'cost': 1})
|
251
253
|
private_post_trade_easy_convert = privatePostTradeEasyConvert = Entry('trade/easy-convert', 'private', 'POST', {'cost': 20})
|
252
254
|
private_post_trade_one_click_repay = privatePostTradeOneClickRepay = Entry('trade/one-click-repay', 'private', 'POST', {'cost': 20})
|
255
|
+
private_post_trade_one_click_repay_v2 = privatePostTradeOneClickRepayV2 = Entry('trade/one-click-repay-v2', 'private', 'POST', {'cost': 20})
|
253
256
|
private_post_trade_mass_cancel = privatePostTradeMassCancel = Entry('trade/mass-cancel', 'private', 'POST', {'cost': 4})
|
254
257
|
private_post_trade_cancel_all_after = privatePostTradeCancelAllAfter = Entry('trade/cancel-all-after', 'private', 'POST', {'cost': 10})
|
255
258
|
private_post_asset_transfer = privatePostAssetTransfer = Entry('asset/transfer', 'private', 'POST', {'cost': 10})
|
@@ -14,8 +14,19 @@ class ImplicitAPI:
|
|
14
14
|
public_get_system_state = publicGetSystemState = Entry('system/state', 'public', 'GET', {'cost': 1})
|
15
15
|
public_get_system_time = publicGetSystemTime = Entry('system/time', 'public', 'GET', {'cost': 1})
|
16
16
|
public_get_trades = publicGetTrades = Entry('trades', 'public', 'GET', {'cost': 1})
|
17
|
+
public_get_vaults = publicGetVaults = Entry('vaults', 'public', 'GET', {'cost': 1})
|
18
|
+
public_get_vaults_balance = publicGetVaultsBalance = Entry('vaults/balance', 'public', 'GET', {'cost': 1})
|
19
|
+
public_get_vaults_config = publicGetVaultsConfig = Entry('vaults/config', 'public', 'GET', {'cost': 1})
|
20
|
+
public_get_vaults_history = publicGetVaultsHistory = Entry('vaults/history', 'public', 'GET', {'cost': 1})
|
21
|
+
public_get_vaults_positions = publicGetVaultsPositions = Entry('vaults/positions', 'public', 'GET', {'cost': 1})
|
22
|
+
public_get_vaults_summary = publicGetVaultsSummary = Entry('vaults/summary', 'public', 'GET', {'cost': 1})
|
23
|
+
public_get_vaults_transfers = publicGetVaultsTransfers = Entry('vaults/transfers', 'public', 'GET', {'cost': 1})
|
17
24
|
private_get_account = privateGetAccount = Entry('account', 'private', 'GET', {'cost': 1})
|
25
|
+
private_get_account_info = privateGetAccountInfo = Entry('account/info', 'private', 'GET', {'cost': 1})
|
26
|
+
private_get_account_history = privateGetAccountHistory = Entry('account/history', 'private', 'GET', {'cost': 1})
|
27
|
+
private_get_account_margin = privateGetAccountMargin = Entry('account/margin', 'private', 'GET', {'cost': 1})
|
18
28
|
private_get_account_profile = privateGetAccountProfile = Entry('account/profile', 'private', 'GET', {'cost': 1})
|
29
|
+
private_get_account_subaccounts = privateGetAccountSubaccounts = Entry('account/subaccounts', 'private', 'GET', {'cost': 1})
|
19
30
|
private_get_balance = privateGetBalance = Entry('balance', 'private', 'GET', {'cost': 1})
|
20
31
|
private_get_fills = privateGetFills = Entry('fills', 'private', 'GET', {'cost': 1})
|
21
32
|
private_get_funding_payments = privateGetFundingPayments = Entry('funding/payments', 'private', 'GET', {'cost': 1})
|
@@ -28,13 +39,25 @@ class ImplicitAPI:
|
|
28
39
|
private_get_orders_by_client_id_client_id = privateGetOrdersByClientIdClientId = Entry('orders/by_client_id/{client_id}', 'private', 'GET', {'cost': 1})
|
29
40
|
private_get_orders_order_id = privateGetOrdersOrderId = Entry('orders/{order_id}', 'private', 'GET', {'cost': 1})
|
30
41
|
private_get_points_data_market_program = privateGetPointsDataMarketProgram = Entry('points_data/{market}/{program}', 'private', 'GET', {'cost': 1})
|
42
|
+
private_get_referrals_qr_code = privateGetReferralsQrCode = Entry('referrals/qr-code', 'private', 'GET', {'cost': 1})
|
31
43
|
private_get_referrals_summary = privateGetReferralsSummary = Entry('referrals/summary', 'private', 'GET', {'cost': 1})
|
32
44
|
private_get_transfers = privateGetTransfers = Entry('transfers', 'private', 'GET', {'cost': 1})
|
45
|
+
private_get_algo_orders = privateGetAlgoOrders = Entry('algo/orders', 'private', 'GET', {'cost': 1})
|
46
|
+
private_get_algo_orders_history = privateGetAlgoOrdersHistory = Entry('algo/orders-history', 'private', 'GET', {'cost': 1})
|
47
|
+
private_get_algo_orders_algo_id = privateGetAlgoOrdersAlgoId = Entry('algo/orders/{algo_id}', 'private', 'GET', {'cost': 1})
|
48
|
+
private_get_vaults_account_summary = privateGetVaultsAccountSummary = Entry('vaults/account-summary', 'private', 'GET', {'cost': 1})
|
49
|
+
private_post_account_margin_market = privatePostAccountMarginMarket = Entry('account/margin/{market}', 'private', 'POST', {'cost': 1})
|
50
|
+
private_post_account_profile_max_slippage = privatePostAccountProfileMaxSlippage = Entry('account/profile/max_slippage', 'private', 'POST', {'cost': 1})
|
33
51
|
private_post_account_profile_referral_code = privatePostAccountProfileReferralCode = Entry('account/profile/referral_code', 'private', 'POST', {'cost': 1})
|
34
52
|
private_post_account_profile_username = privatePostAccountProfileUsername = Entry('account/profile/username', 'private', 'POST', {'cost': 1})
|
35
53
|
private_post_auth = privatePostAuth = Entry('auth', 'private', 'POST', {'cost': 1})
|
36
54
|
private_post_onboarding = privatePostOnboarding = Entry('onboarding', 'private', 'POST', {'cost': 1})
|
37
55
|
private_post_orders = privatePostOrders = Entry('orders', 'private', 'POST', {'cost': 1})
|
56
|
+
private_post_orders_batch = privatePostOrdersBatch = Entry('orders/batch', 'private', 'POST', {'cost': 1})
|
57
|
+
private_post_algo_orders = privatePostAlgoOrders = Entry('algo/orders', 'private', 'POST', {'cost': 1})
|
58
|
+
private_post_vaults = privatePostVaults = Entry('vaults', 'private', 'POST', {'cost': 1})
|
59
|
+
private_put_orders_order_id = privatePutOrdersOrderId = Entry('orders/{order_id}', 'private', 'PUT', {'cost': 1})
|
38
60
|
private_delete_orders = privateDeleteOrders = Entry('orders', 'private', 'DELETE', {'cost': 1})
|
39
61
|
private_delete_orders_by_client_id_client_id = privateDeleteOrdersByClientIdClientId = Entry('orders/by_client_id/{client_id}', 'private', 'DELETE', {'cost': 1})
|
40
62
|
private_delete_orders_order_id = privateDeleteOrdersOrderId = Entry('orders/{order_id}', 'private', 'DELETE', {'cost': 1})
|
63
|
+
private_delete_algo_orders_algo_id = privateDeleteAlgoOrdersAlgoId = Entry('algo/orders/{algo_id}', 'private', 'DELETE', {'cost': 1})
|
@@ -6,8 +6,8 @@ class ImplicitAPI:
|
|
6
6
|
public_get_orders_market = publicGetOrdersMarket = Entry('orders/{market}', 'public', 'GET', {'cost': 1})
|
7
7
|
public_get_ticker_market = publicGetTickerMarket = Entry('ticker/{market}', 'public', 'GET', {'cost': 1})
|
8
8
|
public_get_history_market = publicGetHistoryMarket = Entry('history/{market}', 'public', 'GET', {'cost': 1})
|
9
|
+
public_get_chart_interval_market_timestamp = publicGetChartIntervalMarketTimestamp = Entry('chart/{interval}/{market}/{timestamp}', 'public', 'GET', {'cost': 1})
|
9
10
|
public_get_chart_interval_market = publicGetChartIntervalMarket = Entry('chart/{interval}/{market}', 'public', 'GET', {'cost': 1})
|
10
|
-
private_get_account_balance = privateGetAccountBalance = Entry('account/balance', 'private', 'GET', {'cost': 1})
|
11
11
|
private_get_account_balances = privateGetAccountBalances = Entry('account/balances', 'private', 'GET', {'cost': 1})
|
12
12
|
private_get_account_order_uuid = privateGetAccountOrderUuid = Entry('account/order/{uuid}', 'private', 'GET', {'cost': 1})
|
13
13
|
private_post_order_buy = privatePostOrderBuy = Entry('order/buy', 'private', 'POST', {'cost': 1})
|
@@ -15,3 +15,4 @@ class ImplicitAPI:
|
|
15
15
|
private_post_order_cancel = privatePostOrderCancel = Entry('order/cancel', 'private', 'POST', {'cost': 1})
|
16
16
|
private_post_orders = privatePostOrders = Entry('orders', 'private', 'POST', {'cost': 1})
|
17
17
|
private_post_account_orders = privatePostAccountOrders = Entry('account/orders', 'private', 'POST', {'cost': 1})
|
18
|
+
private_post_account_balance = privatePostAccountBalance = Entry('account/balance', 'private', 'POST', {'cost': 1})
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# -----------------------------------------------------------------------------
|
4
4
|
|
5
|
-
__version__ = '4.4.
|
5
|
+
__version__ = '4.4.70'
|
6
6
|
|
7
7
|
# -----------------------------------------------------------------------------
|
8
8
|
|
@@ -283,6 +283,10 @@ class Exchange(BaseExchange):
|
|
283
283
|
self.markets_loading = asyncio.ensure_future(coroutine)
|
284
284
|
try:
|
285
285
|
result = await self.markets_loading
|
286
|
+
except asyncio.CancelledError as e: # CancelledError is a base exception so we need to catch it explicitly
|
287
|
+
self.reloading_markets = False
|
288
|
+
self.markets_loading = None
|
289
|
+
raise e
|
286
290
|
except Exception as e:
|
287
291
|
self.reloading_markets = False
|
288
292
|
self.markets_loading = None
|
@@ -8276,7 +8276,7 @@ class binance(Exchange, ImplicitAPI):
|
|
8276
8276
|
internalInteger = self.safe_integer(transaction, 'transferType')
|
8277
8277
|
internal = None
|
8278
8278
|
if internalInteger is not None:
|
8279
|
-
internal = True if internalInteger else False
|
8279
|
+
internal = True if (internalInteger != 0) else False
|
8280
8280
|
network = self.safe_string(transaction, 'network')
|
8281
8281
|
return {
|
8282
8282
|
'info': transaction,
|
@@ -11326,8 +11326,22 @@ class binance(Exchange, ImplicitAPI):
|
|
11326
11326
|
query = None
|
11327
11327
|
# handle batchOrders
|
11328
11328
|
if (path == 'batchOrders') and ((method == 'POST') or (method == 'PUT')):
|
11329
|
-
batchOrders = self.
|
11330
|
-
|
11329
|
+
batchOrders = self.safe_list(params, 'batchOrders')
|
11330
|
+
checkedBatchOrders = batchOrders
|
11331
|
+
if method == 'POST' and api == 'fapiPrivate':
|
11332
|
+
# check broker id if batchOrders are called with fapiPrivatePostBatchOrders
|
11333
|
+
checkedBatchOrders = []
|
11334
|
+
for i in range(0, len(batchOrders)):
|
11335
|
+
batchOrder = batchOrders[i]
|
11336
|
+
newClientOrderId = self.safe_string(batchOrder, 'newClientOrderId')
|
11337
|
+
if newClientOrderId is None:
|
11338
|
+
defaultId = 'x-xcKtGhcu' # batchOrders can not be spot or margin
|
11339
|
+
broker = self.safe_dict(self.options, 'broker', {})
|
11340
|
+
brokerId = self.safe_string(broker, 'future', defaultId)
|
11341
|
+
newClientOrderId = brokerId + self.uuid22()
|
11342
|
+
batchOrder['newClientOrderId'] = newClientOrderId
|
11343
|
+
checkedBatchOrders.append(batchOrder)
|
11344
|
+
queryBatch = (self.json(checkedBatchOrders))
|
11331
11345
|
params['batchOrders'] = queryBatch
|
11332
11346
|
defaultRecvWindow = self.safe_integer(self.options, 'recvWindow')
|
11333
11347
|
extendedParams = self.extend({
|