ccxt 4.4.43__tar.gz → 4.4.44__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.43/ccxt.egg-info → ccxt-4.4.44}/PKG-INFO +4 -4
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/__init__.py +1 -1
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/binance.py +1 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/binancecoinm.py +1 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/binanceus.py +1 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/binanceusdm.py +1 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/__init__.py +1 -1
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/base/exchange.py +1 -1
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/binance.py +57 -45
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/bingx.py +5 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/bitfinex.py +6 -2
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/bitget.py +3 -1
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/bitmart.py +4 -7
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/bitmex.py +3 -5
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/bitstamp.py +5 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/bybit.py +8 -23
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/coinbase.py +13 -9
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/coinbaseinternational.py +13 -9
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/coincatch.py +2 -2
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/coinex.py +5 -5
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/cryptocom.py +4 -2
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/defx.py +2 -2
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/delta.py +1 -1
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/gate.py +9 -4
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/gemini.py +5 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/hashkey.py +9 -9
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/htx.py +101 -3
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/hyperliquid.py +5 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/kraken.py +9 -2
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/krakenfutures.py +5 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/kucoin.py +9 -7
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/kucoinfutures.py +5 -5
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/mexc.py +18 -12
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/ndax.py +1 -1
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/oceanex.py +1 -1
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/okx.py +5 -6
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/whitebit.py +4 -2
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/woo.py +5 -3
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/woofipro.py +5 -2
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/base/exchange.py +1 -1
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/binance.py +57 -45
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/bingx.py +5 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/bitfinex.py +6 -2
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/bitget.py +3 -1
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/bitmart.py +4 -7
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/bitmex.py +3 -5
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/bitstamp.py +5 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/bybit.py +8 -23
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/coinbase.py +13 -9
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/coinbaseinternational.py +13 -9
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/coincatch.py +2 -2
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/coinex.py +5 -5
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/cryptocom.py +4 -2
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/defx.py +2 -2
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/delta.py +1 -1
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/gate.py +9 -4
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/gemini.py +5 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/hashkey.py +9 -9
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/htx.py +101 -3
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/hyperliquid.py +5 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/kraken.py +9 -2
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/krakenfutures.py +5 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/kucoin.py +9 -7
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/kucoinfutures.py +5 -5
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/mexc.py +18 -12
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/ndax.py +1 -1
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/oceanex.py +1 -1
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/okx.py +5 -6
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/__init__.py +1 -1
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/bitcoincom.py +4 -1
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/bitopro.py +1 -1
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/whitebit.py +4 -2
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/woo.py +5 -3
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/woofipro.py +5 -2
- {ccxt-4.4.43 → ccxt-4.4.44/ccxt.egg-info}/PKG-INFO +4 -4
- {ccxt-4.4.43 → ccxt-4.4.44}/package.json +1 -1
- {ccxt-4.4.43 → ccxt-4.4.44}/LICENSE.txt +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/MANIFEST.in +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/README.rst +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/ace.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/alpaca.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/ascendex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/bequant.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/bigone.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/bingx.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/bit2c.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/bitbank.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/bitbns.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/bitcoincom.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/bitfinex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/bitfinex1.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/bitflyer.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/bitget.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/bithumb.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/bitmart.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/bitmex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/bitopro.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/bitpanda.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/bitrue.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/bitso.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/bitstamp.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/bitteam.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/bitvavo.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/bl3p.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/blockchaincom.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/blofin.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/btcalpha.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/btcbox.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/btcmarkets.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/btcturk.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/bybit.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/cex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/coinbase.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/coinbaseadvanced.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/coinbaseexchange.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/coinbaseinternational.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/coincatch.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/coincheck.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/coinex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/coinlist.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/coinmate.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/coinmetro.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/coinone.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/coinsph.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/coinspot.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/cryptocom.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/currencycom.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/defx.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/delta.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/deribit.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/digifinex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/ellipx.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/exmo.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/fmfwio.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/gate.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/gateio.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/gemini.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/hashkey.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/hitbtc.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/hollaex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/htx.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/huobi.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/huobijp.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/hyperliquid.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/idex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/independentreserve.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/indodax.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/kraken.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/krakenfutures.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/kucoin.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/kucoinfutures.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/kuna.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/latoken.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/lbank.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/luno.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/lykke.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/mercado.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/mexc.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/myokx.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/ndax.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/novadax.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/oceanex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/okcoin.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/okx.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/onetrading.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/oxfun.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/p2b.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/paradex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/paymium.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/phemex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/poloniex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/poloniexfutures.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/probit.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/timex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/tokocrypto.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/tradeogre.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/upbit.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/vertex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/wavesexchange.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/wazirx.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/whitebit.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/woo.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/woofipro.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/xt.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/yobit.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/zaif.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/abstract/zonda.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/ace.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/alpaca.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/ascendex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/ace.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/alpaca.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/ascendex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/base/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/base/throttler.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/base/ws/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/base/ws/aiohttp_client.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/base/ws/cache.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/base/ws/client.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/base/ws/fast_client.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/base/ws/functions.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/base/ws/future.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/base/ws/order_book.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/base/ws/order_book_side.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/bequant.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/bigone.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/binancecoinm.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/binanceus.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/binanceusdm.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/bit2c.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/bitbank.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/bitbns.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/bitcoincom.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/bitfinex1.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/bitflyer.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/bithumb.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/bitopro.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/bitpanda.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/bitrue.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/bitso.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/bitteam.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/bitvavo.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/bl3p.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/blockchaincom.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/blofin.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/btcalpha.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/btcbox.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/btcmarkets.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/btcturk.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/cex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/coinbaseadvanced.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/coinbaseexchange.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/coincheck.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/coinlist.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/coinmate.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/coinmetro.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/coinone.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/coinsph.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/coinspot.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/currencycom.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/deribit.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/digifinex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/ellipx.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/exmo.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/fmfwio.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/gateio.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/hitbtc.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/hollaex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/huobi.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/huobijp.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/idex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/independentreserve.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/indodax.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/kuna.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/latoken.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/lbank.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/luno.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/lykke.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/mercado.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/myokx.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/novadax.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/okcoin.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/onetrading.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/oxfun.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/p2b.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/paradex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/paymium.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/phemex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/poloniex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/poloniexfutures.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/probit.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/timex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/tokocrypto.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/tradeogre.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/upbit.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/vertex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/wavesexchange.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/wazirx.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/xt.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/yobit.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/zaif.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/async_support/zonda.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/base/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/base/decimal_to_precision.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/base/errors.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/base/precise.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/base/types.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/bequant.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/bigone.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/binancecoinm.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/binanceus.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/binanceusdm.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/bit2c.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/bitbank.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/bitbns.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/bitcoincom.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/bitfinex1.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/bitflyer.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/bithumb.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/bitopro.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/bitpanda.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/bitrue.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/bitso.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/bitteam.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/bitvavo.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/bl3p.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/blockchaincom.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/blofin.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/btcalpha.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/btcbox.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/btcmarkets.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/btcturk.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/cex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/coinbaseadvanced.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/coinbaseexchange.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/coincheck.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/coinlist.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/coinmate.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/coinmetro.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/coinone.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/coinsph.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/coinspot.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/currencycom.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/deribit.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/digifinex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/ellipx.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/exmo.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/fmfwio.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/gateio.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/hitbtc.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/hollaex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/huobi.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/huobijp.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/idex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/independentreserve.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/indodax.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/kuna.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/latoken.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/lbank.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/luno.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/lykke.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/mercado.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/myokx.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/novadax.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/okcoin.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/onetrading.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/oxfun.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/p2b.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/paradex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/paymium.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/phemex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/poloniex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/poloniexfutures.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/alpaca.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/ascendex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/bequant.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/binance.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/binancecoinm.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/binanceus.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/binanceusdm.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/bingx.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/bitfinex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/bitfinex1.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/bitget.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/bithumb.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/bitmart.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/bitmex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/bitpanda.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/bitrue.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/bitstamp.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/bitvavo.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/blockchaincom.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/blofin.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/bybit.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/cex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/coinbase.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/coinbaseadvanced.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/coinbaseexchange.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/coinbaseinternational.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/coincatch.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/coincheck.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/coinex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/coinone.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/cryptocom.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/currencycom.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/defx.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/deribit.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/exmo.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/gate.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/gateio.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/gemini.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/hashkey.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/hitbtc.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/hollaex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/htx.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/huobi.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/huobijp.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/hyperliquid.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/idex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/independentreserve.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/kraken.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/krakenfutures.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/kucoin.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/kucoinfutures.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/lbank.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/luno.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/mexc.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/myokx.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/ndax.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/okcoin.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/okx.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/onetrading.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/oxfun.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/p2b.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/paradex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/phemex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/poloniex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/poloniexfutures.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/probit.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/upbit.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/vertex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/wazirx.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/whitebit.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/woo.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/woofipro.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/pro/xt.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/probit.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ecdsa/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ecdsa/_version.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ecdsa/curves.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ecdsa/der.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ecdsa/ecdsa.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ecdsa/ellipticcurve.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ecdsa/keys.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ecdsa/numbertheory.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ecdsa/rfc6979.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ecdsa/util.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/abi/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/abi/abi.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/abi/base.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/abi/codec.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/abi/constants.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/abi/decoding.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/abi/encoding.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/abi/exceptions.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/abi/grammar.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/abi/packed.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/abi/py.typed +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/abi/registry.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/abi/tools/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/abi/tools/_strategies.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/abi/utils/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/abi/utils/numeric.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/abi/utils/padding.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/abi/utils/string.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/account/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/account/encode_typed_data/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/account/encode_typed_data/encoding_and_hashing.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/account/encode_typed_data/helpers.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/account/messages.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/account/py.typed +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/hexbytes/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/hexbytes/_utils.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/hexbytes/main.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/hexbytes/py.typed +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/typing/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/typing/abi.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/typing/bls.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/typing/discovery.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/typing/encoding.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/typing/enums.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/typing/ethpm.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/typing/evm.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/typing/networks.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/typing/py.typed +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/utils/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/utils/abi.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/utils/address.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/utils/applicators.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/utils/conversions.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/utils/currency.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/utils/curried/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/utils/debug.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/utils/decorators.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/utils/encoding.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/utils/exceptions.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/utils/functional.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/utils/hexadecimal.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/utils/humanize.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/utils/logging.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/utils/module_loading.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/utils/numeric.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/utils/py.typed +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/utils/toolz.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/utils/types.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/utils/typing/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/utils/typing/misc.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/ethereum/utils/units.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/keccak/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/keccak/keccak.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/__pyinstaller/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/__pyinstaller/hook-lark.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/ast_utils.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/common.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/exceptions.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/grammar.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/grammars/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/indenter.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/lark.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/lexer.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/load_grammar.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/parse_tree_builder.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/parser_frontends.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/parsers/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/parsers/cyk.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/parsers/earley.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/parsers/earley_common.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/parsers/earley_forest.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/parsers/grammar_analysis.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/parsers/lalr_analysis.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/parsers/lalr_interactive_parser.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/parsers/lalr_parser.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/parsers/lalr_parser_state.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/parsers/xearley.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/py.typed +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/reconstruct.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/tools/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/tools/nearley.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/tools/serialize.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/tools/standalone.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/tree.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/tree_matcher.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/tree_templates.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/utils.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/lark/visitors.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/marshmallow/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/marshmallow/base.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/marshmallow/class_registry.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/marshmallow/decorators.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/marshmallow/error_store.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/marshmallow/exceptions.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/marshmallow/fields.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/marshmallow/orderedset.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/marshmallow/py.typed +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/marshmallow/schema.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/marshmallow/types.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/marshmallow/utils.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/marshmallow/validate.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/marshmallow/warnings.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/marshmallow_dataclass/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/marshmallow_dataclass/collection_field.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/marshmallow_dataclass/lazy_class_attribute.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/marshmallow_dataclass/mypy.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/marshmallow_dataclass/py.typed +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/marshmallow_dataclass/typing.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/marshmallow_dataclass/union_field.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/marshmallow_oneofschema/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/marshmallow_oneofschema/one_of_schema.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/marshmallow_oneofschema/py.typed +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/msgpack/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/msgpack/exceptions.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/msgpack/ext.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/msgpack/fallback.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/parsimonious/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/parsimonious/exceptions.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/parsimonious/expressions.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/parsimonious/grammar.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/parsimonious/nodes.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/parsimonious/utils.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/cairo/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/cairo/data_types.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/cairo/deprecated_parse/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/cairo/deprecated_parse/cairo_types.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser_transformer.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/cairo/felt.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/cairo/type_parser.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/cairo/v1/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/cairo/v1/type_parser.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/cairo/v2/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/cairo/v2/type_parser.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/ccxt_utils.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/common.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/constants.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/hash/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/hash/address.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/hash/compiled_class_hash_objects.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/hash/selector.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/hash/storage.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/hash/utils.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/models/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/models/typed_data.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/serialization/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/serialization/_calldata_reader.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/serialization/_context.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/serialization/data_serializers/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/serialization/data_serializers/_common.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/serialization/data_serializers/array_serializer.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/serialization/data_serializers/bool_serializer.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/serialization/data_serializers/byte_array_serializer.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/serialization/data_serializers/cairo_data_serializer.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/serialization/data_serializers/enum_serializer.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/serialization/data_serializers/felt_serializer.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/serialization/data_serializers/named_tuple_serializer.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/serialization/data_serializers/option_serializer.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/serialization/data_serializers/output_serializer.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/serialization/data_serializers/payload_serializer.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/serialization/data_serializers/struct_serializer.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/serialization/data_serializers/tuple_serializer.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/serialization/data_serializers/uint256_serializer.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/serialization/data_serializers/uint_serializer.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/serialization/data_serializers/unit_serializer.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/serialization/errors.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/serialization/factory.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/serialization/function_serialization_adapter.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/serialization/tuple_dataclass.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/utils/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/utils/constructor_args_translator.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/utils/iterable.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/utils/schema.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starknet/utils/typed_data.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starkware/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starkware/crypto/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starkware/crypto/fast_pedersen_hash.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starkware/crypto/math_utils.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starkware/crypto/signature.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/starkware/crypto/utils.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/sympy/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/sympy/core/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/sympy/core/intfunc.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/sympy/external/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/sympy/external/gmpy.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/sympy/external/importtools.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/sympy/external/ntheory.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/sympy/external/pythonmpq.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/toolz/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/toolz/_signatures.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/toolz/_version.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/toolz/compatibility.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/toolz/curried/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/toolz/curried/exceptions.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/toolz/curried/operator.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/toolz/dicttoolz.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/toolz/functoolz.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/toolz/itertoolz.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/toolz/recipes.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/toolz/utils.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/typing_inspect/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/static_dependencies/typing_inspect/typing_inspect.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/test/__init__.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/test/tests_async.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/test/tests_helpers.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/test/tests_init.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/test/tests_sync.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/timex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/tokocrypto.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/tradeogre.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/upbit.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/vertex.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/wavesexchange.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/wazirx.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/xt.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/yobit.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/zaif.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt/zonda.py +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt.egg-info/SOURCES.txt +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt.egg-info/dependency_links.txt +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt.egg-info/requires.txt +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/ccxt.egg-info/top_level.txt +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/setup.cfg +0 -0
- {ccxt-4.4.43 → ccxt-4.4.44}/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.44
|
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
|
@@ -266,13 +266,13 @@ console.log(version, Object.keys(exchanges));
|
|
266
266
|
|
267
267
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
268
268
|
|
269
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.
|
270
|
-
* unpkg: https://unpkg.com/ccxt@4.4.
|
269
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.44/dist/ccxt.browser.min.js
|
270
|
+
* unpkg: https://unpkg.com/ccxt@4.4.44/dist/ccxt.browser.min.js
|
271
271
|
|
272
272
|
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.
|
273
273
|
|
274
274
|
```HTML
|
275
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.
|
275
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.44/dist/ccxt.browser.min.js"></script>
|
276
276
|
```
|
277
277
|
|
278
278
|
Creates a global `ccxt` object:
|
@@ -762,3 +762,4 @@ class ImplicitAPI:
|
|
762
762
|
papi_delete_margin_allopenorders = papiDeleteMarginAllOpenOrders = Entry('margin/allOpenOrders', 'papi', 'DELETE', {'cost': 5})
|
763
763
|
papi_delete_margin_orderlist = papiDeleteMarginOrderList = Entry('margin/orderList', 'papi', 'DELETE', {'cost': 2})
|
764
764
|
papi_delete_listenkey = papiDeleteListenKey = Entry('listenKey', 'papi', 'DELETE', {'cost': 0.2})
|
765
|
+
papiv2_get_um_account = papiV2GetUmAccount = Entry('um/account', 'papiV2', 'GET', {'cost': 1})
|
@@ -762,3 +762,4 @@ class ImplicitAPI:
|
|
762
762
|
papi_delete_margin_allopenorders = papiDeleteMarginAllOpenOrders = Entry('margin/allOpenOrders', 'papi', 'DELETE', {'cost': 5})
|
763
763
|
papi_delete_margin_orderlist = papiDeleteMarginOrderList = Entry('margin/orderList', 'papi', 'DELETE', {'cost': 2})
|
764
764
|
papi_delete_listenkey = papiDeleteListenKey = Entry('listenKey', 'papi', 'DELETE', {'cost': 0.2})
|
765
|
+
papiv2_get_um_account = papiV2GetUmAccount = Entry('um/account', 'papiV2', 'GET', {'cost': 1})
|
@@ -814,3 +814,4 @@ class ImplicitAPI:
|
|
814
814
|
papi_delete_margin_allopenorders = papiDeleteMarginAllOpenOrders = Entry('margin/allOpenOrders', 'papi', 'DELETE', {'cost': 5})
|
815
815
|
papi_delete_margin_orderlist = papiDeleteMarginOrderList = Entry('margin/orderList', 'papi', 'DELETE', {'cost': 2})
|
816
816
|
papi_delete_listenkey = papiDeleteListenKey = Entry('listenKey', 'papi', 'DELETE', {'cost': 0.2})
|
817
|
+
papiv2_get_um_account = papiV2GetUmAccount = Entry('um/account', 'papiV2', 'GET', {'cost': 1})
|
@@ -762,3 +762,4 @@ class ImplicitAPI:
|
|
762
762
|
papi_delete_margin_allopenorders = papiDeleteMarginAllOpenOrders = Entry('margin/allOpenOrders', 'papi', 'DELETE', {'cost': 5})
|
763
763
|
papi_delete_margin_orderlist = papiDeleteMarginOrderList = Entry('margin/orderList', 'papi', 'DELETE', {'cost': 2})
|
764
764
|
papi_delete_listenkey = papiDeleteListenKey = Entry('listenKey', 'papi', 'DELETE', {'cost': 0.2})
|
765
|
+
papiv2_get_um_account = papiV2GetUmAccount = Entry('um/account', 'papiV2', 'GET', {'cost': 1})
|
@@ -249,6 +249,7 @@ class binance(Exchange, ImplicitAPI):
|
|
249
249
|
'private': 'https://api.binance.com/api/v3',
|
250
250
|
'v1': 'https://api.binance.com/api/v1',
|
251
251
|
'papi': 'https://papi.binance.com/papi/v1',
|
252
|
+
'papiV2': 'https://papi.binance.com/papi/v2',
|
252
253
|
},
|
253
254
|
'www': 'https://www.binance.com',
|
254
255
|
'referral': {
|
@@ -1191,6 +1192,11 @@ class binance(Exchange, ImplicitAPI):
|
|
1191
1192
|
'listenKey': 0.2,
|
1192
1193
|
},
|
1193
1194
|
},
|
1195
|
+
'papiV2': {
|
1196
|
+
'get': {
|
1197
|
+
'um/account': 1,
|
1198
|
+
},
|
1199
|
+
},
|
1194
1200
|
},
|
1195
1201
|
'fees': {
|
1196
1202
|
'trading': {
|
@@ -1583,7 +1589,6 @@ class binance(Exchange, ImplicitAPI):
|
|
1583
1589
|
},
|
1584
1590
|
},
|
1585
1591
|
'features': {
|
1586
|
-
# https://developers.binance.com/docs/binance-spot-api-docs/rest-api#:~:text=quoteOrderQty
|
1587
1592
|
'spot': {
|
1588
1593
|
'sandbox': True,
|
1589
1594
|
'createOrder': {
|
@@ -1601,12 +1606,13 @@ class binance(Exchange, ImplicitAPI):
|
|
1601
1606
|
'GTD': False,
|
1602
1607
|
},
|
1603
1608
|
'hedged': True,
|
1609
|
+
'leverage': False,
|
1610
|
+
'marketBuyRequiresPrice': False,
|
1611
|
+
'marketBuyByCost': True,
|
1604
1612
|
# exchange-supported features
|
1605
|
-
'selfTradePrevention': True,
|
1613
|
+
'selfTradePrevention': True, # todo
|
1606
1614
|
'trailing': True,
|
1607
|
-
'
|
1608
|
-
'iceberg': True,
|
1609
|
-
'oco': False,
|
1615
|
+
'iceberg': True, # todo implementation
|
1610
1616
|
},
|
1611
1617
|
'createOrders': None,
|
1612
1618
|
'fetchMyTrades': {
|
@@ -1669,11 +1675,12 @@ class binance(Exchange, ImplicitAPI):
|
|
1669
1675
|
},
|
1670
1676
|
'hedged': True,
|
1671
1677
|
# exchange-supported features
|
1672
|
-
'selfTradePrevention': True,
|
1678
|
+
'selfTradePrevention': True, # todo
|
1673
1679
|
'trailing': True,
|
1674
|
-
'twap': False,
|
1675
1680
|
'iceberg': False,
|
1676
|
-
'
|
1681
|
+
'leverage': False,
|
1682
|
+
'marketBuyRequiresPrice': False,
|
1683
|
+
'marketBuyByCost': True,
|
1677
1684
|
},
|
1678
1685
|
'createOrders': {
|
1679
1686
|
'max': 5,
|
@@ -2826,7 +2833,7 @@ class binance(Exchange, ImplicitAPI):
|
|
2826
2833
|
"""
|
2827
2834
|
fetches the current integer timestamp in milliseconds from the exchange server
|
2828
2835
|
|
2829
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#check-server-time # spot
|
2836
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#check-server-time # spot
|
2830
2837
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Check-Server-Time # swap
|
2831
2838
|
https://developers.binance.com/docs/derivatives/coin-margined-futures/market-data/Check-Server-time # future
|
2832
2839
|
|
@@ -3062,7 +3069,7 @@ class binance(Exchange, ImplicitAPI):
|
|
3062
3069
|
"""
|
3063
3070
|
retrieves data on all markets for binance
|
3064
3071
|
|
3065
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#exchange-information # spot
|
3072
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#exchange-information # spot
|
3066
3073
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Exchange-Information # swap
|
3067
3074
|
https://developers.binance.com/docs/derivatives/coin-margined-futures/market-data/Exchange-Information # future
|
3068
3075
|
https://developers.binance.com/docs/derivatives/option/market-data/Exchange-Information # option
|
@@ -3617,7 +3624,7 @@ class binance(Exchange, ImplicitAPI):
|
|
3617
3624
|
"""
|
3618
3625
|
query for balance and get the amount of funds available for trading or funds locked in orders
|
3619
3626
|
|
3620
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#account-information-user_data # spot
|
3627
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#account-information-user_data # spot
|
3621
3628
|
https://developers.binance.com/docs/margin_trading/account/Query-Cross-Margin-Account-Details # cross margin
|
3622
3629
|
https://developers.binance.com/docs/margin_trading/account/Query-Isolated-Margin-Account-Info # isolated margin
|
3623
3630
|
https://developers.binance.com/docs/wallet/asset/funding-wallet # funding
|
@@ -3875,7 +3882,7 @@ class binance(Exchange, ImplicitAPI):
|
|
3875
3882
|
"""
|
3876
3883
|
fetches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
|
3877
3884
|
|
3878
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#order-book # spot
|
3885
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#order-book # spot
|
3879
3886
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Order-Book # swap
|
3880
3887
|
https://developers.binance.com/docs/derivatives/coin-margined-futures/market-data/Order-Book # future
|
3881
3888
|
https://developers.binance.com/docs/derivatives/option/market-data/Order-Book # option
|
@@ -4132,8 +4139,8 @@ class binance(Exchange, ImplicitAPI):
|
|
4132
4139
|
"""
|
4133
4140
|
fetches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
|
4134
4141
|
|
4135
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#24hr-ticker-price-change-statistics # spot
|
4136
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#rolling-window-price-change-statistics # spot
|
4142
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#24hr-ticker-price-change-statistics # spot
|
4143
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#rolling-window-price-change-statistics # spot
|
4137
4144
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/24hr-Ticker-Price-Change-Statistics # swap
|
4138
4145
|
https://developers.binance.com/docs/derivatives/coin-margined-futures/market-data/24hr-Ticker-Price-Change-Statistics # future
|
4139
4146
|
https://developers.binance.com/docs/derivatives/option/market-data/24hr-Ticker-Price-Change-Statistics # option
|
@@ -4171,7 +4178,7 @@ class binance(Exchange, ImplicitAPI):
|
|
4171
4178
|
"""
|
4172
4179
|
fetches the bid and ask price and volume for multiple markets
|
4173
4180
|
|
4174
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#symbol-order-book-ticker # spot
|
4181
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#symbol-order-book-ticker # spot
|
4175
4182
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Symbol-Order-Book-Ticker # swap
|
4176
4183
|
https://developers.binance.com/docs/derivatives/coin-margined-futures/market-data/Symbol-Order-Book-Ticker # future
|
4177
4184
|
|
@@ -4205,7 +4212,7 @@ class binance(Exchange, ImplicitAPI):
|
|
4205
4212
|
"""
|
4206
4213
|
fetches the last price for multiple markets
|
4207
4214
|
|
4208
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#symbol-price-ticker # spot
|
4215
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#symbol-price-ticker # spot
|
4209
4216
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Symbol-Price-Ticker # swap
|
4210
4217
|
https://developers.binance.com/docs/derivatives/coin-margined-futures/market-data/Symbol-Price-Ticker # future
|
4211
4218
|
|
@@ -4306,7 +4313,7 @@ class binance(Exchange, ImplicitAPI):
|
|
4306
4313
|
"""
|
4307
4314
|
fetches price tickers for multiple markets, statistical information calculated over the past 24 hours for each market
|
4308
4315
|
|
4309
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#24hr-ticker-price-change-statistics # spot
|
4316
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#24hr-ticker-price-change-statistics # spot
|
4310
4317
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/24hr-Ticker-Price-Change-Statistics # swap
|
4311
4318
|
https://developers.binance.com/docs/derivatives/coin-margined-futures/market-data/24hr-Ticker-Price-Change-Statistics # future
|
4312
4319
|
https://developers.binance.com/docs/derivatives/option/market-data/24hr-Ticker-Price-Change-Statistics # option
|
@@ -4467,7 +4474,7 @@ class binance(Exchange, ImplicitAPI):
|
|
4467
4474
|
"""
|
4468
4475
|
fetches historical candlestick data containing the open, high, low, and close price, and the volume of a market
|
4469
4476
|
|
4470
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#klinecandlestick-data
|
4477
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#klinecandlestick-data
|
4471
4478
|
https://developers.binance.com/docs/derivatives/option/market-data/Kline-Candlestick-Data
|
4472
4479
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Kline-Candlestick-Data
|
4473
4480
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Index-Price-Kline-Candlestick-Data
|
@@ -4843,17 +4850,17 @@ class binance(Exchange, ImplicitAPI):
|
|
4843
4850
|
get the list of most recent trades for a particular symbol
|
4844
4851
|
Default fetchTradesMethod
|
4845
4852
|
|
4846
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#compressedaggregate-trades-list # publicGetAggTrades(spot)
|
4853
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#compressedaggregate-trades-list # publicGetAggTrades(spot)
|
4847
4854
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Compressed-Aggregate-Trades-List # fapiPublicGetAggTrades(swap)
|
4848
4855
|
https://developers.binance.com/docs/derivatives/coin-margined-futures/market-data/Compressed-Aggregate-Trades-List # dapiPublicGetAggTrades(future)
|
4849
4856
|
https://developers.binance.com/docs/derivatives/option/market-data/Recent-Trades-List # eapiPublicGetTrades(option)
|
4850
4857
|
|
4851
4858
|
Other fetchTradesMethod
|
4852
4859
|
|
4853
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#recent-trades-list # publicGetTrades(spot)
|
4860
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#recent-trades-list # publicGetTrades(spot)
|
4854
4861
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Recent-Trades-List # fapiPublicGetTrades(swap)
|
4855
4862
|
https://developers.binance.com/docs/derivatives/coin-margined-futures/market-data/Recent-Trades-List # dapiPublicGetTrades(future)
|
4856
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#old-trade-lookup # publicGetHistoricalTrades(spot)
|
4863
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#old-trade-lookup # publicGetHistoricalTrades(spot)
|
4857
4864
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/market-data/rest-api/Old-Trades-Lookup # fapiPublicGetHistoricalTrades(swap)
|
4858
4865
|
https://developers.binance.com/docs/derivatives/coin-margined-futures/market-data/Old-Trades-Lookup # dapiPublicGetHistoricalTrades(future)
|
4859
4866
|
https://developers.binance.com/docs/derivatives/option/market-data/Old-Trades-Lookup # eapiPublicGetHistoricalTrades(option)
|
@@ -4980,7 +4987,7 @@ class binance(Exchange, ImplicitAPI):
|
|
4980
4987
|
@ignore
|
4981
4988
|
edit a trade order
|
4982
4989
|
|
4983
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#cancel-an-existing-order-and-send-a-new-order-trade
|
4990
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#cancel-an-existing-order-and-send-a-new-order-trade
|
4984
4991
|
|
4985
4992
|
:param str id: cancel order id
|
4986
4993
|
:param str symbol: unified symbol of the market to create an order in
|
@@ -5220,7 +5227,7 @@ class binance(Exchange, ImplicitAPI):
|
|
5220
5227
|
"""
|
5221
5228
|
edit a trade order
|
5222
5229
|
|
5223
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#cancel-an-existing-order-and-send-a-new-order-trade
|
5230
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#cancel-an-existing-order-and-send-a-new-order-trade
|
5224
5231
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/Modify-Order
|
5225
5232
|
https://developers.binance.com/docs/derivatives/coin-margined-futures/trade/Modify-Order
|
5226
5233
|
|
@@ -5895,13 +5902,13 @@ class binance(Exchange, ImplicitAPI):
|
|
5895
5902
|
"""
|
5896
5903
|
create a trade order
|
5897
5904
|
|
5898
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#new-order-trade
|
5899
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#test-new-order-trade
|
5905
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#new-order-trade
|
5906
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#test-new-order-trade
|
5900
5907
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/New-Order
|
5901
5908
|
https://developers.binance.com/docs/derivatives/coin-margined-futures/trade/New-Order
|
5902
5909
|
https://developers.binance.com/docs/derivatives/option/trade/New-Order
|
5903
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#sor
|
5904
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#test-new-order-using-sor-trade
|
5910
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#sor
|
5911
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#test-new-order-using-sor-trade
|
5905
5912
|
https://developers.binance.com/docs/derivatives/portfolio-margin/trade/New-UM-Order
|
5906
5913
|
https://developers.binance.com/docs/derivatives/portfolio-margin/trade/New-CM-Order
|
5907
5914
|
https://developers.binance.com/docs/derivatives/portfolio-margin/trade/New-Margin-Order
|
@@ -5927,6 +5934,7 @@ class binance(Exchange, ImplicitAPI):
|
|
5927
5934
|
:param str [params.stopLossOrTakeProfit]: 'stopLoss' or 'takeProfit', required for spot trailing orders
|
5928
5935
|
:param str [params.positionSide]: *swap and portfolio margin only* "BOTH" for one-way mode, "LONG" for buy side of hedged mode, "SHORT" for sell side of hedged mode
|
5929
5936
|
:param bool [params.hedged]: *swap and portfolio margin only* True for hedged mode, False for one way mode, default is False
|
5937
|
+
:param float [params.cost]: *spot market buy only* the quote quantity that can be used alternative for the amount
|
5930
5938
|
:returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
5931
5939
|
"""
|
5932
5940
|
await self.load_markets()
|
@@ -6235,7 +6243,7 @@ class binance(Exchange, ImplicitAPI):
|
|
6235
6243
|
"""
|
6236
6244
|
create a market order by providing the symbol, side and cost
|
6237
6245
|
|
6238
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#new-order-trade
|
6246
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#new-order-trade
|
6239
6247
|
|
6240
6248
|
:param str symbol: unified symbol of the market to create an order in
|
6241
6249
|
:param str side: 'buy' or 'sell'
|
@@ -6247,14 +6255,16 @@ class binance(Exchange, ImplicitAPI):
|
|
6247
6255
|
market = self.market(symbol)
|
6248
6256
|
if not market['spot']:
|
6249
6257
|
raise NotSupported(self.id + ' createMarketOrderWithCost() supports spot orders only')
|
6250
|
-
|
6251
|
-
|
6258
|
+
req = {
|
6259
|
+
'cost': cost,
|
6260
|
+
}
|
6261
|
+
return await self.create_order(symbol, 'market', side, 0, None, self.extend(req, params))
|
6252
6262
|
|
6253
6263
|
async def create_market_buy_order_with_cost(self, symbol: str, cost: float, params={}):
|
6254
6264
|
"""
|
6255
6265
|
create a market buy order by providing the symbol and cost
|
6256
6266
|
|
6257
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#new-order-trade
|
6267
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#new-order-trade
|
6258
6268
|
|
6259
6269
|
:param str symbol: unified symbol of the market to create an order in
|
6260
6270
|
:param float cost: how much you want to trade in units of the quote currency
|
@@ -6265,14 +6275,16 @@ class binance(Exchange, ImplicitAPI):
|
|
6265
6275
|
market = self.market(symbol)
|
6266
6276
|
if not market['spot']:
|
6267
6277
|
raise NotSupported(self.id + ' createMarketBuyOrderWithCost() supports spot orders only')
|
6268
|
-
|
6269
|
-
|
6278
|
+
req = {
|
6279
|
+
'cost': cost,
|
6280
|
+
}
|
6281
|
+
return await self.create_order(symbol, 'market', 'buy', 0, None, self.extend(req, params))
|
6270
6282
|
|
6271
6283
|
async def create_market_sell_order_with_cost(self, symbol: str, cost: float, params={}):
|
6272
6284
|
"""
|
6273
6285
|
create a market sell order by providing the symbol and cost
|
6274
6286
|
|
6275
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#new-order-trade
|
6287
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#new-order-trade
|
6276
6288
|
|
6277
6289
|
:param str symbol: unified symbol of the market to create an order in
|
6278
6290
|
:param float cost: how much you want to trade in units of the quote currency
|
@@ -6290,7 +6302,7 @@ class binance(Exchange, ImplicitAPI):
|
|
6290
6302
|
"""
|
6291
6303
|
fetches information on an order made by the user
|
6292
6304
|
|
6293
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#query-order-user_data
|
6305
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#query-order-user_data
|
6294
6306
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/Query-Order
|
6295
6307
|
https://developers.binance.com/docs/derivatives/coin-margined-futures/trade/Query-Order
|
6296
6308
|
https://developers.binance.com/docs/derivatives/option/trade/Query-Single-Order
|
@@ -6355,7 +6367,7 @@ class binance(Exchange, ImplicitAPI):
|
|
6355
6367
|
"""
|
6356
6368
|
fetches information on multiple orders made by the user
|
6357
6369
|
|
6358
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#all-orders-user_data
|
6370
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#all-orders-user_data
|
6359
6371
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/All-Orders
|
6360
6372
|
https://developers.binance.com/docs/derivatives/coin-margined-futures/trade/All-Orders
|
6361
6373
|
https://developers.binance.com/docs/derivatives/option/trade/Query-Option-Order-History
|
@@ -6614,7 +6626,7 @@ class binance(Exchange, ImplicitAPI):
|
|
6614
6626
|
"""
|
6615
6627
|
fetch all unfilled currently open orders
|
6616
6628
|
|
6617
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#current-open-orders-user_data
|
6629
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#current-open-orders-user_data
|
6618
6630
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/Current-All-Open-Orders
|
6619
6631
|
https://developers.binance.com/docs/derivatives/coin-margined-futures/trade/Current-All-Open-Orders
|
6620
6632
|
https://developers.binance.com/docs/derivatives/option/trade/Query-Current-Open-Option-Orders
|
@@ -6900,7 +6912,7 @@ class binance(Exchange, ImplicitAPI):
|
|
6900
6912
|
"""
|
6901
6913
|
fetches information on multiple closed orders made by the user
|
6902
6914
|
|
6903
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#all-orders-user_data
|
6915
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#all-orders-user_data
|
6904
6916
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/All-Orders
|
6905
6917
|
https://developers.binance.com/docs/derivatives/coin-margined-futures/trade/All-Orders
|
6906
6918
|
https://developers.binance.com/docs/derivatives/option/trade/Query-Option-Order-History
|
@@ -6929,7 +6941,7 @@ class binance(Exchange, ImplicitAPI):
|
|
6929
6941
|
"""
|
6930
6942
|
fetches information on multiple canceled orders made by the user
|
6931
6943
|
|
6932
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#all-orders-user_data
|
6944
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#all-orders-user_data
|
6933
6945
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/All-Orders
|
6934
6946
|
https://developers.binance.com/docs/derivatives/coin-margined-futures/trade/All-Orders
|
6935
6947
|
https://developers.binance.com/docs/derivatives/option/trade/Query-Option-Order-History
|
@@ -6958,7 +6970,7 @@ class binance(Exchange, ImplicitAPI):
|
|
6958
6970
|
"""
|
6959
6971
|
fetches information on multiple canceled orders made by the user
|
6960
6972
|
|
6961
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#all-orders-user_data
|
6973
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#all-orders-user_data
|
6962
6974
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/All-Orders
|
6963
6975
|
https://developers.binance.com/docs/derivatives/coin-margined-futures/trade/All-Orders
|
6964
6976
|
https://developers.binance.com/docs/derivatives/option/trade/Query-Option-Order-History
|
@@ -6990,7 +7002,7 @@ class binance(Exchange, ImplicitAPI):
|
|
6990
7002
|
"""
|
6991
7003
|
cancels an open order
|
6992
7004
|
|
6993
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#cancel-order-trade
|
7005
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#cancel-order-trade
|
6994
7006
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/Cancel-Order
|
6995
7007
|
https://developers.binance.com/docs/derivatives/coin-margined-futures/trade/Cancel-Order
|
6996
7008
|
https://developers.binance.com/docs/derivatives/option/trade/Cancel-Option-Order
|
@@ -7071,7 +7083,7 @@ class binance(Exchange, ImplicitAPI):
|
|
7071
7083
|
"""
|
7072
7084
|
cancel all open orders in a market
|
7073
7085
|
|
7074
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#cancel-all-open-orders-on-a-symbol-trade
|
7086
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#cancel-all-open-orders-on-a-symbol-trade
|
7075
7087
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/Cancel-All-Open-Orders
|
7076
7088
|
https://developers.binance.com/docs/derivatives/option/trade/Cancel-all-Option-orders-on-specific-symbol
|
7077
7089
|
https://developers.binance.com/docs/margin_trading/trade/Margin-Account-Cancel-All-Open-Orders
|
@@ -7296,7 +7308,7 @@ class binance(Exchange, ImplicitAPI):
|
|
7296
7308
|
"""
|
7297
7309
|
fetch all the trades made from a single order
|
7298
7310
|
|
7299
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#account-trade-list-user_data
|
7311
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#account-trade-list-user_data
|
7300
7312
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/Account-Trade-List
|
7301
7313
|
https://developers.binance.com/docs/derivatives/coin-margined-futures/trade/Account-Trade-List
|
7302
7314
|
https://developers.binance.com/docs/margin_trading/trade/Query-Margin-Account-Trade-List
|
@@ -7325,7 +7337,7 @@ class binance(Exchange, ImplicitAPI):
|
|
7325
7337
|
"""
|
7326
7338
|
fetch all trades made by the user
|
7327
7339
|
|
7328
|
-
https://developers.binance.com/docs/binance-spot-api-docs/rest-api#account-trade-list-user_data
|
7340
|
+
https://developers.binance.com/docs/binance-spot-api-docs/rest-api/public-api-endpoints#account-trade-list-user_data
|
7329
7341
|
https://developers.binance.com/docs/derivatives/usds-margined-futures/trade/rest-api/Account-Trade-List
|
7330
7342
|
https://developers.binance.com/docs/derivatives/coin-margined-futures/trade/Account-Trade-List
|
7331
7343
|
https://developers.binance.com/docs/margin_trading/trade/Query-Margin-Account-Trade-List
|
@@ -11061,7 +11073,7 @@ class binance(Exchange, ImplicitAPI):
|
|
11061
11073
|
body = self.urlencode(params)
|
11062
11074
|
else:
|
11063
11075
|
raise AuthenticationError(self.id + ' userDataStream endpoint requires `apiKey` credential')
|
11064
|
-
elif (api == 'private') or (api == 'eapiPrivate') or (api == 'sapi' and path != 'system/status') or (api == 'sapiV2') or (api == 'sapiV3') or (api == 'sapiV4') or (api == 'dapiPrivate') or (api == 'dapiPrivateV2') or (api == 'fapiPrivate') or (api == 'fapiPrivateV2') or (api == 'fapiPrivateV3') or (api == 'papi' and path != 'ping'):
|
11076
|
+
elif (api == 'private') or (api == 'eapiPrivate') or (api == 'sapi' and path != 'system/status') or (api == 'sapiV2') or (api == 'sapiV3') or (api == 'sapiV4') or (api == 'dapiPrivate') or (api == 'dapiPrivateV2') or (api == 'fapiPrivate') or (api == 'fapiPrivateV2') or (api == 'fapiPrivateV3') or (api == 'papi' and path != 'ping') or (api == 'papiV2'):
|
11065
11077
|
self.check_required_credentials()
|
11066
11078
|
if method == 'POST' and ((path == 'order') or (path == 'sor/order')):
|
11067
11079
|
# inject in implicit API calls
|
@@ -576,6 +576,11 @@ class bingx(Exchange, ImplicitAPI):
|
|
576
576
|
},
|
577
577
|
'hedged': True,
|
578
578
|
'trailing': True,
|
579
|
+
'leverage': False,
|
580
|
+
'marketBuyRequiresPrice': False,
|
581
|
+
'marketBuyByCost': True,
|
582
|
+
'selfTradePrevention': False,
|
583
|
+
'iceberg': False,
|
579
584
|
},
|
580
585
|
'createOrders': {
|
581
586
|
'max': 5,
|
@@ -439,8 +439,12 @@ class bitfinex(Exchange, ImplicitAPI):
|
|
439
439
|
'GTD': False,
|
440
440
|
},
|
441
441
|
'hedged': False,
|
442
|
-
'trailing': True, # todo:
|
443
|
-
# todo:
|
442
|
+
'trailing': True, # todo: implement
|
443
|
+
'leverage': True, # todo: implement
|
444
|
+
'marketBuyRequiresPrice': False,
|
445
|
+
'marketBuyByCost': True,
|
446
|
+
'selfTradePrevention': False,
|
447
|
+
'iceberg': False,
|
444
448
|
},
|
445
449
|
'createOrders': {
|
446
450
|
'max': 75,
|
@@ -6614,8 +6614,10 @@ class bitget(Exchange, ImplicitAPI):
|
|
6614
6614
|
# },
|
6615
6615
|
# ]
|
6616
6616
|
# }
|
6617
|
+
symbols = self.market_symbols(symbols)
|
6617
6618
|
data = self.safe_list(response, 'data', [])
|
6618
|
-
|
6619
|
+
result = self.parse_funding_rates(data, market)
|
6620
|
+
return self.filter_by_array(result, 'symbol', symbols)
|
6619
6621
|
|
6620
6622
|
def parse_funding_rate(self, contract, market: Market = None) -> FundingRate:
|
6621
6623
|
#
|
@@ -726,14 +726,11 @@ class bitmart(Exchange, ImplicitAPI):
|
|
726
726
|
},
|
727
727
|
'hedged': False,
|
728
728
|
'trailing': False,
|
729
|
-
'marketBuyRequiresPrice':
|
729
|
+
'marketBuyRequiresPrice': False, # todo: https://developer-pro.bitmart.com/en/spot/#new-order-v2-signed
|
730
730
|
'marketBuyByCost': True,
|
731
|
-
#
|
732
|
-
|
733
|
-
|
734
|
-
# 'twap': False,
|
735
|
-
# 'iceberg': False,
|
736
|
-
# 'oco': False,
|
731
|
+
'leverage': True, # todo: implement
|
732
|
+
'selfTradePrevention': False,
|
733
|
+
'iceberg': False,
|
737
734
|
},
|
738
735
|
'createOrders': {
|
739
736
|
'max': 10,
|
@@ -310,11 +310,9 @@ class bitmex(Exchange, ImplicitAPI):
|
|
310
310
|
'trailing': True,
|
311
311
|
'marketBuyRequiresPrice': False,
|
312
312
|
'marketBuyByCost': False,
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
# 'iceberg': False,
|
317
|
-
# 'oco': False,
|
313
|
+
'leverage': False,
|
314
|
+
'selfTradePrevention': False,
|
315
|
+
'iceberg': True, # todo
|
318
316
|
},
|
319
317
|
'createOrders': None,
|
320
318
|
'fetchMyTrades': {
|
@@ -525,6 +525,11 @@ class bitstamp(Exchange, ImplicitAPI):
|
|
525
525
|
},
|
526
526
|
'hedged': False,
|
527
527
|
'trailing': False,
|
528
|
+
'leverage': False,
|
529
|
+
'marketBuyByCost': False,
|
530
|
+
'marketBuyRequiresPrice': False,
|
531
|
+
'selfTradePrevention': False,
|
532
|
+
'iceberg': False,
|
528
533
|
},
|
529
534
|
'createOrders': None,
|
530
535
|
'fetchMyTrades': {
|
@@ -1125,12 +1125,12 @@ class bybit(Exchange, ImplicitAPI):
|
|
1125
1125
|
'GTD': False,
|
1126
1126
|
},
|
1127
1127
|
'hedged': True,
|
1128
|
-
#
|
1129
|
-
'selfTradePrevention': True,
|
1128
|
+
'selfTradePrevention': True, # todo: implement
|
1130
1129
|
'trailing': True,
|
1131
|
-
'twap': False,
|
1132
1130
|
'iceberg': False,
|
1133
|
-
'
|
1131
|
+
'leverage': False,
|
1132
|
+
'marketBuyRequiresPrice': False,
|
1133
|
+
'marketBuyByCost': True,
|
1134
1134
|
},
|
1135
1135
|
'createOrders': {
|
1136
1136
|
'max': 10,
|
@@ -1169,29 +1169,13 @@ class bybit(Exchange, ImplicitAPI):
|
|
1169
1169
|
'spot': {
|
1170
1170
|
'extends': 'default',
|
1171
1171
|
'createOrder': {
|
1172
|
-
'marginMode': False,
|
1173
|
-
'triggerPrice': True,
|
1174
1172
|
'triggerPriceType': None,
|
1175
1173
|
'triggerDirection': False,
|
1176
|
-
'stopLossPrice': True,
|
1177
|
-
'takeProfitPrice': True,
|
1178
1174
|
'attachedStopLossTakeProfit': {
|
1179
1175
|
'triggerPriceType': None,
|
1180
1176
|
'limitPrice': True,
|
1181
1177
|
},
|
1182
|
-
'
|
1183
|
-
'IOC': True,
|
1184
|
-
'FOK': True,
|
1185
|
-
'PO': True,
|
1186
|
-
'GTD': False,
|
1187
|
-
},
|
1188
|
-
'hedged': True,
|
1189
|
-
# exchange-supported features
|
1190
|
-
'selfTradePrevention': True,
|
1191
|
-
'trailing': True,
|
1192
|
-
'twap': False,
|
1193
|
-
'iceberg': False,
|
1194
|
-
'oco': False,
|
1178
|
+
'marketBuyRequiresPrice': True,
|
1195
1179
|
},
|
1196
1180
|
},
|
1197
1181
|
'swap': {
|
@@ -2057,6 +2041,7 @@ class bybit(Exchange, ImplicitAPI):
|
|
2057
2041
|
'quoteId': quoteId,
|
2058
2042
|
'settleId': settleId,
|
2059
2043
|
'type': 'option',
|
2044
|
+
'subType': 'linear',
|
2060
2045
|
'spot': False,
|
2061
2046
|
'margin': False,
|
2062
2047
|
'swap': False,
|
@@ -2064,8 +2049,8 @@ class bybit(Exchange, ImplicitAPI):
|
|
2064
2049
|
'option': True,
|
2065
2050
|
'active': isActive,
|
2066
2051
|
'contract': True,
|
2067
|
-
'linear':
|
2068
|
-
'inverse':
|
2052
|
+
'linear': True,
|
2053
|
+
'inverse': False,
|
2069
2054
|
'taker': self.safe_number(market, 'takerFee', self.parse_number('0.0006')),
|
2070
2055
|
'maker': self.safe_number(market, 'makerFee', self.parse_number('0.0001')),
|
2071
2056
|
'contractSize': self.parse_number('1'),
|