ccxt 4.4.73__tar.gz → 4.4.75__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.73/ccxt.egg-info → ccxt-4.4.75}/PKG-INFO +5 -5
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/__init__.py +1 -5
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/bitmart.py +2 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/coinlist.py +3 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/ace.py +3 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/alpaca.py +3 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/ascendex.py +6 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/__init__.py +1 -5
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/ace.py +3 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/alpaca.py +3 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/ascendex.py +6 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/base/exchange.py +1 -1
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/bequant.py +1 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/binanceusdm.py +1 -1
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/bit2c.py +26 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/bitbank.py +32 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/bitbns.py +1 -1
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/bitflyer.py +1 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/bithumb.py +34 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/bitmart.py +70 -6
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/bitopro.py +37 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/blofin.py +1 -1
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/bybit.py +10 -1
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/coinlist.py +86 -11
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/deribit.py +19 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/gate.py +11 -7
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/hitbtc.py +7 -1
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/okx.py +28 -24
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/base/exchange.py +33 -14
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/bequant.py +1 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/binanceusdm.py +1 -1
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/bit2c.py +26 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/bitbank.py +32 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/bitbns.py +1 -1
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/bitflyer.py +1 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/bithumb.py +34 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/bitmart.py +70 -6
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/bitopro.py +37 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/blofin.py +1 -1
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/bybit.py +10 -1
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/coinlist.py +86 -11
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/deribit.py +19 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/gate.py +11 -7
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/hitbtc.py +7 -1
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/okx.py +28 -24
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/__init__.py +1 -5
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/ascendex.py +1 -1
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/bingx.py +9 -1
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/bitget.py +9 -1
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/bitmart.py +9 -1
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/bitopro.py +5 -4
- {ccxt-4.4.73 → ccxt-4.4.75/ccxt.egg-info}/PKG-INFO +5 -5
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt.egg-info/SOURCES.txt +0 -2
- {ccxt-4.4.73 → ccxt-4.4.75}/package.json +1 -1
- ccxt-4.4.73/ccxt/abstract/bitcoincom.py +0 -115
- ccxt-4.4.73/ccxt/abstract/bitpanda.py +0 -23
- {ccxt-4.4.73 → ccxt-4.4.75}/LICENSE.txt +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/MANIFEST.in +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/README.rst +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/ace.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/alpaca.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/ascendex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/bequant.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/bigone.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/binance.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/binancecoinm.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/binanceus.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/binanceusdm.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/bingx.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/bit2c.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/bitbank.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/bitbns.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/bitfinex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/bitflyer.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/bitget.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/bithumb.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/bitmex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/bitopro.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/bitrue.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/bitso.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/bitstamp.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/bitteam.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/bitvavo.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/bl3p.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/blockchaincom.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/blofin.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/btcalpha.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/btcbox.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/btcmarkets.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/btcturk.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/bybit.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/cex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/coinbase.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/coinbaseadvanced.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/coinbaseexchange.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/coinbaseinternational.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/coincatch.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/coincheck.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/coinex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/coinmate.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/coinmetro.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/coinone.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/coinsph.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/coinspot.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/cryptocom.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/cryptomus.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/defx.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/delta.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/deribit.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/derive.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/digifinex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/ellipx.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/exmo.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/fmfwio.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/gate.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/gateio.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/gemini.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/hashkey.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/hitbtc.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/hollaex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/htx.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/huobi.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/huobijp.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/hyperliquid.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/idex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/independentreserve.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/indodax.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/kraken.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/krakenfutures.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/kucoin.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/kucoinfutures.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/kuna.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/latoken.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/lbank.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/luno.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/mercado.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/mexc.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/myokx.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/ndax.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/novadax.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/oceanex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/okcoin.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/okx.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/onetrading.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/oxfun.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/p2b.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/paradex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/paymium.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/phemex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/poloniex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/probit.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/timex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/tokocrypto.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/tradeogre.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/upbit.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/vertex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/wavesexchange.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/whitebit.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/woo.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/woofipro.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/xt.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/yobit.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/zaif.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/abstract/zonda.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/base/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/base/throttler.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/base/ws/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/base/ws/aiohttp_client.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/base/ws/cache.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/base/ws/client.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/base/ws/fast_client.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/base/ws/functions.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/base/ws/future.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/base/ws/order_book.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/base/ws/order_book_side.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/bigone.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/binance.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/binancecoinm.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/binanceus.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/bingx.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/bitcoincom.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/bitfinex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/bitfinex1.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/bitget.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/bitmex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/bitpanda.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/bitrue.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/bitso.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/bitstamp.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/bitteam.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/bitvavo.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/bl3p.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/blockchaincom.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/btcalpha.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/btcbox.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/btcmarkets.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/btcturk.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/cex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/coinbase.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/coinbaseadvanced.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/coinbaseexchange.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/coinbaseinternational.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/coincatch.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/coincheck.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/coinex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/coinmate.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/coinmetro.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/coinone.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/coinsph.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/coinspot.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/cryptocom.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/cryptomus.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/defx.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/delta.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/derive.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/digifinex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/ellipx.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/exmo.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/fmfwio.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/gateio.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/gemini.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/hashkey.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/hollaex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/htx.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/huobi.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/huobijp.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/hyperliquid.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/idex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/independentreserve.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/indodax.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/kraken.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/krakenfutures.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/kucoin.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/kucoinfutures.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/kuna.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/latoken.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/lbank.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/luno.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/mercado.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/mexc.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/myokx.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/ndax.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/novadax.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/oceanex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/okcoin.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/onetrading.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/oxfun.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/p2b.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/paradex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/paymium.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/phemex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/poloniex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/poloniexfutures.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/probit.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/timex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/tokocrypto.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/tradeogre.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/upbit.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/vertex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/wavesexchange.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/whitebit.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/woo.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/woofipro.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/xt.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/yobit.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/zaif.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/async_support/zonda.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/base/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/base/decimal_to_precision.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/base/errors.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/base/precise.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/base/types.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/bigone.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/binance.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/binancecoinm.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/binanceus.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/bingx.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/bitcoincom.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/bitfinex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/bitfinex1.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/bitget.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/bitmex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/bitpanda.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/bitrue.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/bitso.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/bitstamp.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/bitteam.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/bitvavo.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/bl3p.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/blockchaincom.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/btcalpha.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/btcbox.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/btcmarkets.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/btcturk.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/cex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/coinbase.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/coinbaseadvanced.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/coinbaseexchange.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/coinbaseinternational.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/coincatch.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/coincheck.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/coinex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/coinmate.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/coinmetro.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/coinone.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/coinsph.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/coinspot.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/cryptocom.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/cryptomus.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/defx.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/delta.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/derive.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/digifinex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/ellipx.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/exmo.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/fmfwio.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/gateio.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/gemini.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/hashkey.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/hollaex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/htx.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/huobi.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/huobijp.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/hyperliquid.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/idex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/independentreserve.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/indodax.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/kraken.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/krakenfutures.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/kucoin.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/kucoinfutures.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/kuna.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/latoken.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/lbank.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/luno.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/mercado.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/mexc.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/myokx.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/ndax.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/novadax.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/oceanex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/okcoin.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/onetrading.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/oxfun.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/p2b.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/paradex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/paymium.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/phemex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/poloniex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/poloniexfutures.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/alpaca.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/bequant.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/binance.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/binancecoinm.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/binanceus.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/binanceusdm.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/bitcoincom.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/bitfinex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/bitfinex1.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/bithumb.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/bitmex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/bitpanda.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/bitrue.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/bitstamp.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/bitvavo.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/blockchaincom.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/blofin.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/bybit.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/cex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/coinbase.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/coinbaseadvanced.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/coinbaseexchange.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/coinbaseinternational.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/coincatch.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/coincheck.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/coinex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/coinone.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/cryptocom.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/defx.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/deribit.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/derive.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/exmo.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/gate.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/gateio.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/gemini.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/hashkey.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/hitbtc.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/hollaex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/htx.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/huobi.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/huobijp.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/hyperliquid.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/idex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/independentreserve.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/kraken.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/krakenfutures.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/kucoin.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/kucoinfutures.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/lbank.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/luno.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/mexc.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/myokx.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/ndax.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/okcoin.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/okx.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/onetrading.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/oxfun.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/p2b.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/paradex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/phemex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/poloniex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/poloniexfutures.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/probit.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/upbit.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/vertex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/wazirx.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/whitebit.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/woo.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/woofipro.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/pro/xt.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/probit.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ecdsa/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ecdsa/_version.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ecdsa/curves.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ecdsa/der.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ecdsa/ecdsa.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ecdsa/ellipticcurve.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ecdsa/keys.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ecdsa/numbertheory.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ecdsa/rfc6979.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ecdsa/util.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/abi/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/abi/abi.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/abi/base.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/abi/codec.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/abi/constants.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/abi/decoding.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/abi/encoding.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/abi/exceptions.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/abi/grammar.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/abi/packed.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/abi/py.typed +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/abi/registry.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/abi/tools/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/abi/tools/_strategies.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/abi/utils/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/abi/utils/numeric.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/abi/utils/padding.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/abi/utils/string.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/account/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/account/encode_typed_data/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/account/encode_typed_data/encoding_and_hashing.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/account/encode_typed_data/helpers.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/account/messages.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/account/py.typed +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/hexbytes/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/hexbytes/_utils.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/hexbytes/main.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/hexbytes/py.typed +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/typing/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/typing/abi.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/typing/bls.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/typing/discovery.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/typing/encoding.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/typing/enums.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/typing/ethpm.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/typing/evm.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/typing/networks.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/typing/py.typed +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/utils/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/utils/abi.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/utils/address.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/utils/applicators.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/utils/conversions.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/utils/currency.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/utils/curried/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/utils/debug.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/utils/decorators.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/utils/encoding.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/utils/exceptions.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/utils/functional.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/utils/hexadecimal.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/utils/humanize.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/utils/logging.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/utils/module_loading.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/utils/numeric.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/utils/py.typed +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/utils/toolz.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/utils/types.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/utils/typing/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/utils/typing/misc.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/ethereum/utils/units.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/keccak/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/keccak/keccak.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/__pyinstaller/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/__pyinstaller/hook-lark.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/ast_utils.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/common.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/exceptions.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/grammar.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/grammars/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/indenter.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/lark.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/lexer.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/load_grammar.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/parse_tree_builder.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/parser_frontends.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/parsers/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/parsers/cyk.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/parsers/earley.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/parsers/earley_common.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/parsers/earley_forest.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/parsers/grammar_analysis.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/parsers/lalr_analysis.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/parsers/lalr_interactive_parser.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/parsers/lalr_parser.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/parsers/lalr_parser_state.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/parsers/xearley.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/py.typed +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/reconstruct.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/tools/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/tools/nearley.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/tools/serialize.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/tools/standalone.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/tree.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/tree_matcher.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/tree_templates.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/utils.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/lark/visitors.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/marshmallow/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/marshmallow/base.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/marshmallow/class_registry.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/marshmallow/decorators.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/marshmallow/error_store.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/marshmallow/exceptions.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/marshmallow/fields.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/marshmallow/orderedset.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/marshmallow/py.typed +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/marshmallow/schema.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/marshmallow/types.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/marshmallow/utils.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/marshmallow/validate.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/marshmallow/warnings.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/marshmallow_dataclass/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/marshmallow_dataclass/collection_field.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/marshmallow_dataclass/lazy_class_attribute.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/marshmallow_dataclass/mypy.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/marshmallow_dataclass/py.typed +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/marshmallow_dataclass/typing.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/marshmallow_dataclass/union_field.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/marshmallow_oneofschema/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/marshmallow_oneofschema/one_of_schema.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/marshmallow_oneofschema/py.typed +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/msgpack/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/msgpack/exceptions.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/msgpack/ext.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/msgpack/fallback.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/parsimonious/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/parsimonious/exceptions.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/parsimonious/expressions.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/parsimonious/grammar.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/parsimonious/nodes.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/parsimonious/utils.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/cairo/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/cairo/data_types.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/cairo/deprecated_parse/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/cairo/deprecated_parse/cairo_types.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser_transformer.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/cairo/felt.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/cairo/type_parser.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/cairo/v1/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/cairo/v1/type_parser.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/cairo/v2/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/cairo/v2/type_parser.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/ccxt_utils.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/common.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/constants.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/hash/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/hash/address.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/hash/compiled_class_hash_objects.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/hash/selector.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/hash/storage.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/hash/utils.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/models/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/models/typed_data.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/serialization/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/serialization/_calldata_reader.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/serialization/_context.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/serialization/data_serializers/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/serialization/data_serializers/_common.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/serialization/data_serializers/array_serializer.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/serialization/data_serializers/bool_serializer.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/serialization/data_serializers/byte_array_serializer.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/serialization/data_serializers/cairo_data_serializer.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/serialization/data_serializers/enum_serializer.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/serialization/data_serializers/felt_serializer.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/serialization/data_serializers/named_tuple_serializer.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/serialization/data_serializers/option_serializer.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/serialization/data_serializers/output_serializer.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/serialization/data_serializers/payload_serializer.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/serialization/data_serializers/struct_serializer.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/serialization/data_serializers/tuple_serializer.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/serialization/data_serializers/uint256_serializer.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/serialization/data_serializers/uint_serializer.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/serialization/data_serializers/unit_serializer.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/serialization/errors.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/serialization/factory.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/serialization/function_serialization_adapter.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/serialization/tuple_dataclass.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/utils/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/utils/constructor_args_translator.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/utils/iterable.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/utils/schema.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starknet/utils/typed_data.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starkware/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starkware/crypto/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starkware/crypto/fast_pedersen_hash.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starkware/crypto/math_utils.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starkware/crypto/signature.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/starkware/crypto/utils.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/sympy/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/sympy/core/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/sympy/core/intfunc.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/sympy/external/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/sympy/external/gmpy.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/sympy/external/importtools.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/sympy/external/ntheory.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/sympy/external/pythonmpq.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/toolz/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/toolz/_signatures.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/toolz/_version.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/toolz/compatibility.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/toolz/curried/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/toolz/curried/exceptions.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/toolz/curried/operator.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/toolz/dicttoolz.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/toolz/functoolz.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/toolz/itertoolz.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/toolz/recipes.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/toolz/utils.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/typing_inspect/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/static_dependencies/typing_inspect/typing_inspect.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/test/__init__.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/test/tests_async.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/test/tests_helpers.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/test/tests_init.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/test/tests_sync.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/timex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/tokocrypto.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/tradeogre.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/upbit.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/vertex.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/wavesexchange.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/whitebit.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/woo.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/woofipro.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/xt.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/yobit.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/zaif.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt/zonda.py +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt.egg-info/dependency_links.txt +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt.egg-info/requires.txt +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/ccxt.egg-info/top_level.txt +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/setup.cfg +0 -0
- {ccxt-4.4.73 → ccxt-4.4.75}/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.75
|
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
|
@@ -38,7 +38,7 @@ License-File: LICENSE.txt
|
|
38
38
|
|
39
39
|
# CCXT – CryptoCurrency eXchange Trading Library
|
40
40
|
|
41
|
-
[](https://www.npmjs.com/package/ccxt) [](https://npmjs.com/package/ccxt) [](https://pypi.python.org/pypi/ccxt) [](https://www.nuget.org/packages/ccxt) [](https://godoc.org/github.com/ccxt/ccxt/go/v4) [](https://discord.gg/ccxt) [](https://www.npmjs.com/package/ccxt) [](https://npmjs.com/package/ccxt) [](https://pypi.python.org/pypi/ccxt) [](https://www.nuget.org/packages/ccxt) [](https://godoc.org/github.com/ccxt/ccxt/go/v4) [](https://discord.gg/ccxt) [](https://github.com/ccxt/ccxt/wiki/Exchange-Markets) [](https://x.com/ccxt_official)
|
42
42
|
|
43
43
|
A `JavaScript` / `Python` / `PHP` / `C#` / `Go` library for cryptocurrency trading and e-commerce with support for many bitcoin/ether/altcoin exchange markets and merchant APIs.
|
44
44
|
|
@@ -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.4.
|
268
|
-
* unpkg: https://unpkg.com/ccxt@4.4.
|
267
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.75/dist/ccxt.browser.min.js
|
268
|
+
* unpkg: https://unpkg.com/ccxt@4.4.75/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.4.
|
273
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.75/dist/ccxt.browser.min.js"></script>
|
274
274
|
```
|
275
275
|
|
276
276
|
Creates a global `ccxt` object:
|
@@ -22,7 +22,7 @@
|
|
22
22
|
|
23
23
|
# ----------------------------------------------------------------------------
|
24
24
|
|
25
|
-
__version__ = '4.4.
|
25
|
+
__version__ = '4.4.75'
|
26
26
|
|
27
27
|
# ----------------------------------------------------------------------------
|
28
28
|
|
@@ -96,7 +96,6 @@ from ccxt.bingx import bingx # noqa: F4
|
|
96
96
|
from ccxt.bit2c import bit2c # noqa: F401
|
97
97
|
from ccxt.bitbank import bitbank # noqa: F401
|
98
98
|
from ccxt.bitbns import bitbns # noqa: F401
|
99
|
-
from ccxt.bitcoincom import bitcoincom # noqa: F401
|
100
99
|
from ccxt.bitfinex import bitfinex # noqa: F401
|
101
100
|
from ccxt.bitflyer import bitflyer # noqa: F401
|
102
101
|
from ccxt.bitget import bitget # noqa: F401
|
@@ -104,7 +103,6 @@ from ccxt.bithumb import bithumb # noqa: F4
|
|
104
103
|
from ccxt.bitmart import bitmart # noqa: F401
|
105
104
|
from ccxt.bitmex import bitmex # noqa: F401
|
106
105
|
from ccxt.bitopro import bitopro # noqa: F401
|
107
|
-
from ccxt.bitpanda import bitpanda # noqa: F401
|
108
106
|
from ccxt.bitrue import bitrue # noqa: F401
|
109
107
|
from ccxt.bitso import bitso # noqa: F401
|
110
108
|
from ccxt.bitstamp import bitstamp # noqa: F401
|
@@ -207,7 +205,6 @@ exchanges = [
|
|
207
205
|
'bit2c',
|
208
206
|
'bitbank',
|
209
207
|
'bitbns',
|
210
|
-
'bitcoincom',
|
211
208
|
'bitfinex',
|
212
209
|
'bitflyer',
|
213
210
|
'bitget',
|
@@ -215,7 +212,6 @@ exchanges = [
|
|
215
212
|
'bitmart',
|
216
213
|
'bitmex',
|
217
214
|
'bitopro',
|
218
|
-
'bitpanda',
|
219
215
|
'bitrue',
|
220
216
|
'bitso',
|
221
217
|
'bitstamp',
|
@@ -68,6 +68,7 @@ class ImplicitAPI:
|
|
68
68
|
private_get_contract_private_affilate_rebate_list = privateGetContractPrivateAffilateRebateList = Entry('contract/private/affilate/rebate-list', 'private', 'GET', {'cost': 10})
|
69
69
|
private_get_contract_private_affilate_trade_list = privateGetContractPrivateAffilateTradeList = Entry('contract/private/affilate/trade-list', 'private', 'GET', {'cost': 10})
|
70
70
|
private_get_contract_private_transaction_history = privateGetContractPrivateTransactionHistory = Entry('contract/private/transaction-history', 'private', 'GET', {'cost': 10})
|
71
|
+
private_get_contract_private_get_position_mode = privateGetContractPrivateGetPositionMode = Entry('contract/private/get-position-mode', 'private', 'GET', {'cost': 1})
|
71
72
|
private_post_account_sub_account_main_v1_sub_to_main = privatePostAccountSubAccountMainV1SubToMain = Entry('account/sub-account/main/v1/sub-to-main', 'private', 'POST', {'cost': 30})
|
72
73
|
private_post_account_sub_account_sub_v1_sub_to_main = privatePostAccountSubAccountSubV1SubToMain = Entry('account/sub-account/sub/v1/sub-to-main', 'private', 'POST', {'cost': 30})
|
73
74
|
private_post_account_sub_account_main_v1_main_to_sub = privatePostAccountSubAccountMainV1MainToSub = Entry('account/sub-account/main/v1/main-to-sub', 'private', 'POST', {'cost': 30})
|
@@ -112,3 +113,4 @@ class ImplicitAPI:
|
|
112
113
|
private_post_contract_private_modify_tp_sl_order = privatePostContractPrivateModifyTpSlOrder = Entry('contract/private/modify-tp-sl-order', 'private', 'POST', {'cost': 2.5})
|
113
114
|
private_post_contract_private_submit_trail_order = privatePostContractPrivateSubmitTrailOrder = Entry('contract/private/submit-trail-order', 'private', 'POST', {'cost': 2.5})
|
114
115
|
private_post_contract_private_cancel_trail_order = privatePostContractPrivateCancelTrailOrder = Entry('contract/private/cancel-trail-order', 'private', 'POST', {'cost': 1.5})
|
116
|
+
private_post_contract_private_set_position_mode = privatePostContractPrivateSetPositionMode = Entry('contract/private/set-position-mode', 'private', 'POST', {'cost': 1})
|
@@ -16,6 +16,7 @@ class ImplicitAPI:
|
|
16
16
|
public_get_v1_leaderboard = publicGetV1Leaderboard = Entry('v1/leaderboard', 'public', 'GET', {'cost': 1})
|
17
17
|
public_get_v1_affiliate_competition_code = publicGetV1AffiliateCompetitionCode = Entry('v1/affiliate/{competition_code}', 'public', 'GET', {'cost': 1})
|
18
18
|
public_get_v1_competition_competition_id = publicGetV1CompetitionCompetitionId = Entry('v1/competition/{competition_id}', 'public', 'GET', {'cost': 1})
|
19
|
+
public_get_v1_symbols_symbol_funding = publicGetV1SymbolsSymbolFunding = Entry('v1/symbols/{symbol}/funding', 'public', 'GET', {'cost': 1})
|
19
20
|
private_get_v1_fees = privateGetV1Fees = Entry('v1/fees', 'private', 'GET', {'cost': 1})
|
20
21
|
private_get_v1_accounts = privateGetV1Accounts = Entry('v1/accounts', 'private', 'GET', {'cost': 1})
|
21
22
|
private_get_v1_accounts_trader_id = privateGetV1AccountsTraderId = Entry('v1/accounts/{trader_id}', 'private', 'GET', {'cost': 1})
|
@@ -35,6 +36,7 @@ class ImplicitAPI:
|
|
35
36
|
private_get_v1_credits = privateGetV1Credits = Entry('v1/credits', 'private', 'GET', {'cost': 1})
|
36
37
|
private_get_v1_positions = privateGetV1Positions = Entry('v1/positions', 'private', 'GET', {'cost': 1})
|
37
38
|
private_get_v1_accounts_trader_id_competitions = privateGetV1AccountsTraderIdCompetitions = Entry('v1/accounts/{trader_id}/competitions', 'private', 'GET', {'cost': 1})
|
39
|
+
private_get_v1_closedpositions = privateGetV1ClosedPositions = Entry('v1/closedPositions', 'private', 'GET', {'cost': 1})
|
38
40
|
private_post_v1_keys = privatePostV1Keys = Entry('v1/keys', 'private', 'POST', {'cost': 1})
|
39
41
|
private_post_v1_orders = privatePostV1Orders = Entry('v1/orders', 'private', 'POST', {'cost': 1})
|
40
42
|
private_post_v1_orders_cancel_all_after = privatePostV1OrdersCancelAllAfter = Entry('v1/orders/cancel-all-after', 'private', 'POST', {'cost': 1})
|
@@ -48,6 +50,7 @@ class ImplicitAPI:
|
|
48
50
|
private_post_v1_accounts_trader_id_create_competition = privatePostV1AccountsTraderIdCreateCompetition = Entry('v1/accounts/{trader_id}/create-competition', 'private', 'POST', {'cost': 1})
|
49
51
|
private_patch_v1_orders_order_id = privatePatchV1OrdersOrderId = Entry('v1/orders/{order_id}', 'private', 'PATCH', {'cost': 1})
|
50
52
|
private_patch_v1_orders_bulk = privatePatchV1OrdersBulk = Entry('v1/orders/bulk', 'private', 'PATCH', {'cost': 1})
|
53
|
+
private_put_v1_accounts_trader_id_alias = privatePutV1AccountsTraderIdAlias = Entry('v1/accounts/{trader_id}/alias', 'private', 'PUT', {'cost': 1})
|
51
54
|
private_delete_v1_keys_key = privateDeleteV1KeysKey = Entry('v1/keys/{key}', 'private', 'DELETE', {'cost': 1})
|
52
55
|
private_delete_v1_orders = privateDeleteV1Orders = Entry('v1/orders', 'private', 'DELETE', {'cost': 1})
|
53
56
|
private_delete_v1_orders_order_id = privateDeleteV1OrdersOrderId = Entry('v1/orders/{order_id}', 'private', 'DELETE', {'cost': 1})
|
@@ -92,6 +92,8 @@ class ace(Exchange, ImplicitAPI):
|
|
92
92
|
'fetchOpenInterestHistory': False,
|
93
93
|
'fetchOpenInterests': False,
|
94
94
|
'fetchOpenOrders': True,
|
95
|
+
'fetchOption': False,
|
96
|
+
'fetchOptionChain': False,
|
95
97
|
'fetchOrder': True,
|
96
98
|
'fetchOrderBook': True,
|
97
99
|
'fetchOrders': False,
|
@@ -115,6 +117,7 @@ class ace(Exchange, ImplicitAPI):
|
|
115
117
|
'fetchTransactions': False,
|
116
118
|
'fetchTransfer': False,
|
117
119
|
'fetchTransfers': False,
|
120
|
+
'fetchVolatilityHistory': False,
|
118
121
|
'fetchWithdrawal': False,
|
119
122
|
'fetchWithdrawals': False,
|
120
123
|
'reduceMargin': False,
|
@@ -125,6 +125,8 @@ class alpaca(Exchange, ImplicitAPI):
|
|
125
125
|
'fetchOpenInterests': False,
|
126
126
|
'fetchOpenOrder': False,
|
127
127
|
'fetchOpenOrders': True,
|
128
|
+
'fetchOption': False,
|
129
|
+
'fetchOptionChain': False,
|
128
130
|
'fetchOrder': True,
|
129
131
|
'fetchOrderBook': True,
|
130
132
|
'fetchOrders': True,
|
@@ -147,6 +149,7 @@ class alpaca(Exchange, ImplicitAPI):
|
|
147
149
|
'fetchTransactionFees': False,
|
148
150
|
'fetchTransactions': False,
|
149
151
|
'fetchTransfers': False,
|
152
|
+
'fetchVolatilityHistory': False,
|
150
153
|
'fetchWithdrawals': True,
|
151
154
|
'reduceMargin': False,
|
152
155
|
'repayCrossMargin': False,
|
@@ -67,6 +67,7 @@ class ascendex(Exchange, ImplicitAPI):
|
|
67
67
|
'fetchFundingRate': 'emulated',
|
68
68
|
'fetchFundingRateHistory': False,
|
69
69
|
'fetchFundingRates': True,
|
70
|
+
'fetchGreeks': False,
|
70
71
|
'fetchIndexOHLCV': False,
|
71
72
|
'fetchLeverage': 'emulated',
|
72
73
|
'fetchLeverages': True,
|
@@ -76,10 +77,13 @@ class ascendex(Exchange, ImplicitAPI):
|
|
76
77
|
'fetchMarketLeverageTiers': 'emulated',
|
77
78
|
'fetchMarkets': True,
|
78
79
|
'fetchMarkOHLCV': False,
|
80
|
+
'fetchMySettlementHistory': False,
|
79
81
|
'fetchOHLCV': True,
|
80
82
|
'fetchOpenInterest': False,
|
81
83
|
'fetchOpenInterestHistory': False,
|
82
84
|
'fetchOpenOrders': True,
|
85
|
+
'fetchOption': False,
|
86
|
+
'fetchOptionChain': False,
|
83
87
|
'fetchOrder': True,
|
84
88
|
'fetchOrderBook': True,
|
85
89
|
'fetchOrders': False,
|
@@ -88,6 +92,7 @@ class ascendex(Exchange, ImplicitAPI):
|
|
88
92
|
'fetchPositions': True,
|
89
93
|
'fetchPositionsRisk': False,
|
90
94
|
'fetchPremiumIndexOHLCV': False,
|
95
|
+
'fetchSettlementHistory': False,
|
91
96
|
'fetchTicker': True,
|
92
97
|
'fetchTickers': True,
|
93
98
|
'fetchTime': True,
|
@@ -99,6 +104,7 @@ class ascendex(Exchange, ImplicitAPI):
|
|
99
104
|
'fetchTransactions': 'emulated',
|
100
105
|
'fetchTransfer': False,
|
101
106
|
'fetchTransfers': False,
|
107
|
+
'fetchVolatilityHistory': False,
|
102
108
|
'fetchWithdrawal': False,
|
103
109
|
'fetchWithdrawals': True,
|
104
110
|
'reduceMargin': True,
|
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
# -----------------------------------------------------------------------------
|
6
6
|
|
7
|
-
__version__ = '4.4.
|
7
|
+
__version__ = '4.4.75'
|
8
8
|
|
9
9
|
# -----------------------------------------------------------------------------
|
10
10
|
|
@@ -76,7 +76,6 @@ from ccxt.async_support.bingx import bingx
|
|
76
76
|
from ccxt.async_support.bit2c import bit2c # noqa: F401
|
77
77
|
from ccxt.async_support.bitbank import bitbank # noqa: F401
|
78
78
|
from ccxt.async_support.bitbns import bitbns # noqa: F401
|
79
|
-
from ccxt.async_support.bitcoincom import bitcoincom # noqa: F401
|
80
79
|
from ccxt.async_support.bitfinex import bitfinex # noqa: F401
|
81
80
|
from ccxt.async_support.bitflyer import bitflyer # noqa: F401
|
82
81
|
from ccxt.async_support.bitget import bitget # noqa: F401
|
@@ -84,7 +83,6 @@ from ccxt.async_support.bithumb import bithumb
|
|
84
83
|
from ccxt.async_support.bitmart import bitmart # noqa: F401
|
85
84
|
from ccxt.async_support.bitmex import bitmex # noqa: F401
|
86
85
|
from ccxt.async_support.bitopro import bitopro # noqa: F401
|
87
|
-
from ccxt.async_support.bitpanda import bitpanda # noqa: F401
|
88
86
|
from ccxt.async_support.bitrue import bitrue # noqa: F401
|
89
87
|
from ccxt.async_support.bitso import bitso # noqa: F401
|
90
88
|
from ccxt.async_support.bitstamp import bitstamp # noqa: F401
|
@@ -187,7 +185,6 @@ exchanges = [
|
|
187
185
|
'bit2c',
|
188
186
|
'bitbank',
|
189
187
|
'bitbns',
|
190
|
-
'bitcoincom',
|
191
188
|
'bitfinex',
|
192
189
|
'bitflyer',
|
193
190
|
'bitget',
|
@@ -195,7 +192,6 @@ exchanges = [
|
|
195
192
|
'bitmart',
|
196
193
|
'bitmex',
|
197
194
|
'bitopro',
|
198
|
-
'bitpanda',
|
199
195
|
'bitrue',
|
200
196
|
'bitso',
|
201
197
|
'bitstamp',
|
@@ -92,6 +92,8 @@ class ace(Exchange, ImplicitAPI):
|
|
92
92
|
'fetchOpenInterestHistory': False,
|
93
93
|
'fetchOpenInterests': False,
|
94
94
|
'fetchOpenOrders': True,
|
95
|
+
'fetchOption': False,
|
96
|
+
'fetchOptionChain': False,
|
95
97
|
'fetchOrder': True,
|
96
98
|
'fetchOrderBook': True,
|
97
99
|
'fetchOrders': False,
|
@@ -115,6 +117,7 @@ class ace(Exchange, ImplicitAPI):
|
|
115
117
|
'fetchTransactions': False,
|
116
118
|
'fetchTransfer': False,
|
117
119
|
'fetchTransfers': False,
|
120
|
+
'fetchVolatilityHistory': False,
|
118
121
|
'fetchWithdrawal': False,
|
119
122
|
'fetchWithdrawals': False,
|
120
123
|
'reduceMargin': False,
|
@@ -125,6 +125,8 @@ class alpaca(Exchange, ImplicitAPI):
|
|
125
125
|
'fetchOpenInterests': False,
|
126
126
|
'fetchOpenOrder': False,
|
127
127
|
'fetchOpenOrders': True,
|
128
|
+
'fetchOption': False,
|
129
|
+
'fetchOptionChain': False,
|
128
130
|
'fetchOrder': True,
|
129
131
|
'fetchOrderBook': True,
|
130
132
|
'fetchOrders': True,
|
@@ -147,6 +149,7 @@ class alpaca(Exchange, ImplicitAPI):
|
|
147
149
|
'fetchTransactionFees': False,
|
148
150
|
'fetchTransactions': False,
|
149
151
|
'fetchTransfers': False,
|
152
|
+
'fetchVolatilityHistory': False,
|
150
153
|
'fetchWithdrawals': True,
|
151
154
|
'reduceMargin': False,
|
152
155
|
'repayCrossMargin': False,
|
@@ -68,6 +68,7 @@ class ascendex(Exchange, ImplicitAPI):
|
|
68
68
|
'fetchFundingRate': 'emulated',
|
69
69
|
'fetchFundingRateHistory': False,
|
70
70
|
'fetchFundingRates': True,
|
71
|
+
'fetchGreeks': False,
|
71
72
|
'fetchIndexOHLCV': False,
|
72
73
|
'fetchLeverage': 'emulated',
|
73
74
|
'fetchLeverages': True,
|
@@ -77,10 +78,13 @@ class ascendex(Exchange, ImplicitAPI):
|
|
77
78
|
'fetchMarketLeverageTiers': 'emulated',
|
78
79
|
'fetchMarkets': True,
|
79
80
|
'fetchMarkOHLCV': False,
|
81
|
+
'fetchMySettlementHistory': False,
|
80
82
|
'fetchOHLCV': True,
|
81
83
|
'fetchOpenInterest': False,
|
82
84
|
'fetchOpenInterestHistory': False,
|
83
85
|
'fetchOpenOrders': True,
|
86
|
+
'fetchOption': False,
|
87
|
+
'fetchOptionChain': False,
|
84
88
|
'fetchOrder': True,
|
85
89
|
'fetchOrderBook': True,
|
86
90
|
'fetchOrders': False,
|
@@ -89,6 +93,7 @@ class ascendex(Exchange, ImplicitAPI):
|
|
89
93
|
'fetchPositions': True,
|
90
94
|
'fetchPositionsRisk': False,
|
91
95
|
'fetchPremiumIndexOHLCV': False,
|
96
|
+
'fetchSettlementHistory': False,
|
92
97
|
'fetchTicker': True,
|
93
98
|
'fetchTickers': True,
|
94
99
|
'fetchTime': True,
|
@@ -100,6 +105,7 @@ class ascendex(Exchange, ImplicitAPI):
|
|
100
105
|
'fetchTransactions': 'emulated',
|
101
106
|
'fetchTransfer': False,
|
102
107
|
'fetchTransfers': False,
|
108
|
+
'fetchVolatilityHistory': False,
|
103
109
|
'fetchWithdrawal': False,
|
104
110
|
'fetchWithdrawals': True,
|
105
111
|
'reduceMargin': True,
|
@@ -36,7 +36,7 @@ class binanceusdm(binance, ImplicitAPI):
|
|
36
36
|
'fetchMarkets': ['linear'],
|
37
37
|
'defaultSubType': 'linear',
|
38
38
|
# https://www.binance.com/en/support/faq/360033162192
|
39
|
-
# tier amount, maintenance margin, initial margin
|
39
|
+
# tier amount, maintenance margin, initial margin,
|
40
40
|
'leverageBrackets': None,
|
41
41
|
'marginTypes': {},
|
42
42
|
'marginModes': {},
|
@@ -36,36 +36,61 @@ class bit2c(Exchange, ImplicitAPI):
|
|
36
36
|
'future': False,
|
37
37
|
'option': False,
|
38
38
|
'addMargin': False,
|
39
|
+
'borrowCrossMargin': False,
|
40
|
+
'borrowIsolatedMargin': False,
|
41
|
+
'borrowMargin': False,
|
39
42
|
'cancelAllOrders': False,
|
40
43
|
'cancelOrder': True,
|
41
44
|
'closeAllPositions': False,
|
42
45
|
'closePosition': False,
|
43
46
|
'createOrder': True,
|
47
|
+
'createOrderWithTakeProfitAndStopLoss': False,
|
48
|
+
'createOrderWithTakeProfitAndStopLossWs': False,
|
44
49
|
'createReduceOnlyOrder': False,
|
45
50
|
'fetchBalance': True,
|
51
|
+
'fetchBorrowInterest': False,
|
52
|
+
'fetchBorrowRate': False,
|
46
53
|
'fetchBorrowRateHistories': False,
|
47
54
|
'fetchBorrowRateHistory': False,
|
55
|
+
'fetchBorrowRates': False,
|
56
|
+
'fetchBorrowRatesPerSymbol': False,
|
48
57
|
'fetchCrossBorrowRate': False,
|
49
58
|
'fetchCrossBorrowRates': False,
|
50
59
|
'fetchDepositAddress': True,
|
51
60
|
'fetchDepositAddresses': False,
|
52
61
|
'fetchDepositAddressesByNetwork': False,
|
53
62
|
'fetchFundingHistory': False,
|
63
|
+
'fetchFundingInterval': False,
|
64
|
+
'fetchFundingIntervals': False,
|
54
65
|
'fetchFundingRate': False,
|
55
66
|
'fetchFundingRateHistory': False,
|
56
67
|
'fetchFundingRates': False,
|
68
|
+
'fetchGreeks': False,
|
57
69
|
'fetchIndexOHLCV': False,
|
58
70
|
'fetchIsolatedBorrowRate': False,
|
59
71
|
'fetchIsolatedBorrowRates': False,
|
72
|
+
'fetchIsolatedPositions': False,
|
60
73
|
'fetchLeverage': False,
|
74
|
+
'fetchLeverages': False,
|
61
75
|
'fetchLeverageTiers': False,
|
76
|
+
'fetchLiquidations': False,
|
77
|
+
'fetchLongShortRatio': False,
|
78
|
+
'fetchLongShortRatioHistory': False,
|
79
|
+
'fetchMarginAdjustmentHistory': False,
|
62
80
|
'fetchMarginMode': False,
|
81
|
+
'fetchMarginModes': False,
|
82
|
+
'fetchMarketLeverageTiers': False,
|
63
83
|
'fetchMarkOHLCV': False,
|
84
|
+
'fetchMarkPrices': False,
|
85
|
+
'fetchMyLiquidations': False,
|
86
|
+
'fetchMySettlementHistory': False,
|
64
87
|
'fetchMyTrades': True,
|
65
88
|
'fetchOpenInterest': False,
|
66
89
|
'fetchOpenInterestHistory': False,
|
67
90
|
'fetchOpenInterests': False,
|
68
91
|
'fetchOpenOrders': True,
|
92
|
+
'fetchOption': False,
|
93
|
+
'fetchOptionChain': False,
|
69
94
|
'fetchOrder': True,
|
70
95
|
'fetchOrderBook': True,
|
71
96
|
'fetchPosition': False,
|
@@ -84,6 +109,7 @@ class bit2c(Exchange, ImplicitAPI):
|
|
84
109
|
'fetchTransfer': False,
|
85
110
|
'fetchTransfers': False,
|
86
111
|
'fetchUnderlyingAssets': False,
|
112
|
+
'fetchVolatilityHistory': False,
|
87
113
|
'reduceMargin': False,
|
88
114
|
'repayCrossMargin': False,
|
89
115
|
'repayIsolatedMargin': False,
|
@@ -34,35 +34,62 @@ class bitbank(Exchange, ImplicitAPI):
|
|
34
34
|
'future': False,
|
35
35
|
'option': False,
|
36
36
|
'addMargin': False,
|
37
|
+
'borrowCrossMargin': False,
|
38
|
+
'borrowIsolatedMargin': False,
|
39
|
+
'borrowMargin': False,
|
37
40
|
'cancelAllOrders': False,
|
38
41
|
'cancelOrder': True,
|
39
42
|
'closeAllPositions': False,
|
40
43
|
'closePosition': False,
|
41
44
|
'createOrder': True,
|
45
|
+
'createOrderWithTakeProfitAndStopLoss': False,
|
46
|
+
'createOrderWithTakeProfitAndStopLossWs': False,
|
42
47
|
'createReduceOnlyOrder': False,
|
43
48
|
'fetchBalance': True,
|
49
|
+
'fetchBorrowInterest': False,
|
50
|
+
'fetchBorrowRate': False,
|
44
51
|
'fetchBorrowRateHistories': False,
|
45
52
|
'fetchBorrowRateHistory': False,
|
53
|
+
'fetchBorrowRates': False,
|
54
|
+
'fetchBorrowRatesPerSymbol': False,
|
46
55
|
'fetchCrossBorrowRate': False,
|
47
56
|
'fetchCrossBorrowRates': False,
|
48
57
|
'fetchDepositAddress': True,
|
49
58
|
'fetchDepositAddresses': False,
|
50
59
|
'fetchDepositAddressesByNetwork': False,
|
51
60
|
'fetchFundingHistory': False,
|
61
|
+
'fetchFundingInterval': False,
|
62
|
+
'fetchFundingIntervals': False,
|
52
63
|
'fetchFundingRate': False,
|
53
64
|
'fetchFundingRateHistory': False,
|
54
65
|
'fetchFundingRates': False,
|
66
|
+
'fetchGreeks': False,
|
55
67
|
'fetchIndexOHLCV': False,
|
56
68
|
'fetchIsolatedBorrowRate': False,
|
57
69
|
'fetchIsolatedBorrowRates': False,
|
70
|
+
'fetchIsolatedPositions': False,
|
58
71
|
'fetchLeverage': False,
|
72
|
+
'fetchLeverages': False,
|
59
73
|
'fetchLeverageTiers': False,
|
74
|
+
'fetchLiquidations': False,
|
75
|
+
'fetchLongShortRatio': False,
|
76
|
+
'fetchLongShortRatioHistory': False,
|
77
|
+
'fetchMarginAdjustmentHistory': False,
|
60
78
|
'fetchMarginMode': False,
|
79
|
+
'fetchMarginModes': False,
|
80
|
+
'fetchMarketLeverageTiers': False,
|
61
81
|
'fetchMarkOHLCV': False,
|
82
|
+
'fetchMarkPrices': False,
|
83
|
+
'fetchMyLiquidations': False,
|
84
|
+
'fetchMySettlementHistory': False,
|
62
85
|
'fetchMyTrades': True,
|
63
86
|
'fetchOHLCV': True,
|
87
|
+
'fetchOpenInterest': False,
|
64
88
|
'fetchOpenInterestHistory': False,
|
89
|
+
'fetchOpenInterests': False,
|
65
90
|
'fetchOpenOrders': True,
|
91
|
+
'fetchOption': False,
|
92
|
+
'fetchOptionChain': False,
|
66
93
|
'fetchOrder': True,
|
67
94
|
'fetchOrderBook': True,
|
68
95
|
'fetchPosition': False,
|
@@ -73,14 +100,19 @@ class bitbank(Exchange, ImplicitAPI):
|
|
73
100
|
'fetchPositionsHistory': False,
|
74
101
|
'fetchPositionsRisk': False,
|
75
102
|
'fetchPremiumIndexOHLCV': False,
|
103
|
+
'fetchSettlementHistory': False,
|
76
104
|
'fetchTicker': True,
|
77
105
|
'fetchTrades': True,
|
78
106
|
'fetchTradingFee': False,
|
79
107
|
'fetchTradingFees': True,
|
80
108
|
'fetchTransfer': False,
|
81
109
|
'fetchTransfers': False,
|
110
|
+
'fetchVolatilityHistory': False,
|
82
111
|
'reduceMargin': False,
|
112
|
+
'repayCrossMargin': False,
|
113
|
+
'repayIsolatedMargin': False,
|
83
114
|
'setLeverage': False,
|
115
|
+
'setMargin': False,
|
84
116
|
'setMarginMode': False,
|
85
117
|
'setPositionMode': False,
|
86
118
|
'transfer': False,
|
@@ -40,30 +40,59 @@ class bithumb(Exchange, ImplicitAPI):
|
|
40
40
|
'future': False,
|
41
41
|
'option': False,
|
42
42
|
'addMargin': False,
|
43
|
+
'borrowCrossMargin': False,
|
44
|
+
'borrowIsolatedMargin': False,
|
45
|
+
'borrowMargin': False,
|
43
46
|
'cancelOrder': True,
|
44
47
|
'closeAllPositions': False,
|
45
48
|
'closePosition': False,
|
46
49
|
'createMarketOrder': True,
|
47
50
|
'createOrder': True,
|
51
|
+
'createOrderWithTakeProfitAndStopLoss': False,
|
52
|
+
'createOrderWithTakeProfitAndStopLossWs': False,
|
48
53
|
'createReduceOnlyOrder': False,
|
49
54
|
'fetchBalance': True,
|
55
|
+
'fetchBorrowInterest': False,
|
56
|
+
'fetchBorrowRate': False,
|
50
57
|
'fetchBorrowRateHistories': False,
|
51
58
|
'fetchBorrowRateHistory': False,
|
59
|
+
'fetchBorrowRates': False,
|
60
|
+
'fetchBorrowRatesPerSymbol': False,
|
52
61
|
'fetchCrossBorrowRate': False,
|
53
62
|
'fetchCrossBorrowRates': False,
|
54
63
|
'fetchFundingHistory': False,
|
64
|
+
'fetchFundingInterval': False,
|
65
|
+
'fetchFundingIntervals': False,
|
55
66
|
'fetchFundingRate': False,
|
56
67
|
'fetchFundingRateHistory': False,
|
57
68
|
'fetchFundingRates': False,
|
69
|
+
'fetchGreeks': False,
|
58
70
|
'fetchIndexOHLCV': False,
|
59
71
|
'fetchIsolatedBorrowRate': False,
|
60
72
|
'fetchIsolatedBorrowRates': False,
|
73
|
+
'fetchIsolatedPositions': False,
|
61
74
|
'fetchLeverage': False,
|
75
|
+
'fetchLeverages': False,
|
76
|
+
'fetchLeverageTiers': False,
|
77
|
+
'fetchLiquidations': False,
|
78
|
+
'fetchLongShortRatio': False,
|
79
|
+
'fetchLongShortRatioHistory': False,
|
80
|
+
'fetchMarginAdjustmentHistory': False,
|
81
|
+
'fetchMarginMode': False,
|
82
|
+
'fetchMarginModes': False,
|
83
|
+
'fetchMarketLeverageTiers': False,
|
62
84
|
'fetchMarkets': True,
|
63
85
|
'fetchMarkOHLCV': False,
|
86
|
+
'fetchMarkPrices': False,
|
87
|
+
'fetchMyLiquidations': False,
|
88
|
+
'fetchMySettlementHistory': False,
|
64
89
|
'fetchOHLCV': True,
|
90
|
+
'fetchOpenInterest': False,
|
65
91
|
'fetchOpenInterestHistory': False,
|
92
|
+
'fetchOpenInterests': False,
|
66
93
|
'fetchOpenOrders': True,
|
94
|
+
'fetchOption': False,
|
95
|
+
'fetchOptionChain': False,
|
67
96
|
'fetchOrder': True,
|
68
97
|
'fetchOrderBook': True,
|
69
98
|
'fetchPosition': False,
|
@@ -74,13 +103,18 @@ class bithumb(Exchange, ImplicitAPI):
|
|
74
103
|
'fetchPositionsHistory': False,
|
75
104
|
'fetchPositionsRisk': False,
|
76
105
|
'fetchPremiumIndexOHLCV': False,
|
106
|
+
'fetchSettlementHistory': False,
|
77
107
|
'fetchTicker': True,
|
78
108
|
'fetchTickers': True,
|
79
109
|
'fetchTrades': True,
|
80
110
|
'fetchTransfer': False,
|
81
111
|
'fetchTransfers': False,
|
112
|
+
'fetchVolatilityHistory': False,
|
82
113
|
'reduceMargin': False,
|
114
|
+
'repayCrossMargin': False,
|
115
|
+
'repayIsolatedMargin': False,
|
83
116
|
'setLeverage': False,
|
117
|
+
'setMargin': False,
|
84
118
|
'setMarginMode': False,
|
85
119
|
'setPositionMode': False,
|
86
120
|
'transfer': False,
|