ccxt 4.2.88__tar.gz → 4.2.90__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.
Potentially problematic release.
This version of ccxt might be problematic. Click here for more details.
- {ccxt-4.2.88/ccxt.egg-info → ccxt-4.2.90}/PKG-INFO +4 -4
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/__init__.py +1 -1
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/bingx.py +2 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/bybit.py +2 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/ascendex.py +6 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/__init__.py +1 -1
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/ascendex.py +6 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/base/exchange.py +15 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/bigone.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/binance.py +88 -14
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/bingx.py +96 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/bit2c.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/bitbank.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/bitfinex.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/bitfinex2.py +4 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/bitflyer.py +4 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/bitget.py +12 -5
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/bitmart.py +6 -4
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/bitmex.py +3 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/bitopro.py +3 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/bitrue.py +3 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/bitso.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/bitstamp.py +89 -97
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/bitteam.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/bitvavo.py +3 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/bl3p.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/blockchaincom.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/blofin.py +4 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/bybit.py +57 -5
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/cex.py +3 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/coinbase.py +42 -22
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/coinbaseinternational.py +3 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/coinbasepro.py +3 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/coincheck.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/coinex.py +101 -13
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/coinlist.py +3 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/coinmate.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/coinmetro.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/coinone.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/coinsph.py +6 -4
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/cryptocom.py +1 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/currencycom.py +3 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/delta.py +3 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/deribit.py +3 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/digifinex.py +7 -4
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/exmo.py +4 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/gate.py +8 -4
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/gemini.py +13 -12
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/hitbtc.py +8 -5
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/hollaex.py +3 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/htx.py +7 -4
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/huobijp.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/hyperliquid.py +3 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/idex.py +3 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/independentreserve.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/kraken.py +3 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/kucoin.py +43 -18
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/kucoinfutures.py +32 -4
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/kuna.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/latoken.py +7 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/lbank.py +7 -5
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/luno.py +4 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/lykke.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/mexc.py +57 -9
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/ndax.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/oceanex.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/okcoin.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/okx.py +149 -12
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/onetrading.py +3 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/phemex.py +3 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/poloniex.py +3 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/probit.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/timex.py +6 -4
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/upbit.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/wazirx.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/whitebit.py +3 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/woo.py +4 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/yobit.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/base/exchange.py +65 -12
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/base/types.py +33 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/bigone.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/binance.py +88 -14
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/bingx.py +96 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/bit2c.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/bitbank.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/bitfinex.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/bitfinex2.py +4 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/bitflyer.py +4 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/bitget.py +12 -5
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/bitmart.py +6 -4
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/bitmex.py +3 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/bitopro.py +3 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/bitrue.py +3 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/bitso.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/bitstamp.py +89 -97
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/bitteam.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/bitvavo.py +3 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/bl3p.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/blockchaincom.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/blofin.py +4 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/bybit.py +57 -5
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/cex.py +3 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/coinbase.py +42 -22
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/coinbaseinternational.py +3 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/coinbasepro.py +3 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/coincheck.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/coinex.py +101 -13
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/coinlist.py +3 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/coinmate.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/coinmetro.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/coinone.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/coinsph.py +6 -4
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/cryptocom.py +1 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/currencycom.py +3 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/delta.py +3 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/deribit.py +3 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/digifinex.py +7 -4
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/exmo.py +4 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/gate.py +8 -4
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/gemini.py +13 -12
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/hitbtc.py +8 -5
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/hollaex.py +3 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/htx.py +7 -4
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/huobijp.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/hyperliquid.py +3 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/idex.py +3 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/independentreserve.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/kraken.py +3 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/kucoin.py +43 -18
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/kucoinfutures.py +32 -4
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/kuna.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/latoken.py +7 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/lbank.py +7 -5
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/luno.py +4 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/lykke.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/mexc.py +57 -9
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/ndax.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/oceanex.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/okcoin.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/okx.py +149 -12
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/onetrading.py +3 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/phemex.py +3 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/poloniex.py +3 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/__init__.py +1 -1
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/bitget.py +2 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/bitvavo.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/probit.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/timex.py +6 -4
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/upbit.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/wazirx.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/whitebit.py +3 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/woo.py +4 -3
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/yobit.py +2 -2
- {ccxt-4.2.88 → ccxt-4.2.90/ccxt.egg-info}/PKG-INFO +4 -4
- {ccxt-4.2.88 → ccxt-4.2.90}/package.json +1 -1
- {ccxt-4.2.88 → ccxt-4.2.90}/LICENSE.txt +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/MANIFEST.in +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/README.rst +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/__init__.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/ace.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/alpaca.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/ascendex.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/bequant.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/bigone.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/binance.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/binancecoinm.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/binanceus.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/binanceusdm.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/bit2c.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/bitbank.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/bitbay.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/bitbns.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/bitcoincom.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/bitfinex.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/bitfinex2.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/bitflyer.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/bitget.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/bithumb.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/bitmart.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/bitmex.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/bitopro.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/bitpanda.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/bitrue.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/bitso.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/bitstamp.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/bitteam.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/bitvavo.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/bl3p.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/blockchaincom.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/blofin.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/btcalpha.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/btcbox.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/btcmarkets.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/btcturk.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/cex.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/coinbase.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/coinbaseinternational.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/coinbasepro.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/coincheck.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/coinex.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/coinlist.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/coinmate.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/coinmetro.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/coinone.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/coinsph.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/coinspot.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/cryptocom.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/currencycom.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/delta.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/deribit.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/digifinex.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/exmo.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/fmfwio.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/gate.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/gateio.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/gemini.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/hitbtc.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/hitbtc3.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/hollaex.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/htx.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/huobi.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/huobijp.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/hyperliquid.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/idex.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/independentreserve.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/indodax.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/kraken.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/krakenfutures.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/kucoin.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/kucoinfutures.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/kuna.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/latoken.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/lbank.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/luno.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/lykke.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/mercado.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/mexc.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/ndax.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/novadax.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/oceanex.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/okcoin.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/okx.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/onetrading.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/p2b.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/paymium.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/phemex.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/poloniex.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/poloniexfutures.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/probit.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/timex.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/tokocrypto.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/tradeogre.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/upbit.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/wavesexchange.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/wazirx.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/whitebit.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/woo.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/yobit.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/zaif.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/abstract/zonda.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/ace.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/alpaca.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/ace.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/alpaca.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/base/__init__.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/base/throttler.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/base/ws/__init__.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/base/ws/aiohttp_client.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/base/ws/cache.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/base/ws/client.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/base/ws/fast_client.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/base/ws/functions.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/base/ws/future.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/base/ws/order_book.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/base/ws/order_book_side.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/bequant.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/binancecoinm.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/binanceus.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/binanceusdm.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/bitbay.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/bitbns.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/bitcoincom.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/bithumb.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/bitpanda.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/btcalpha.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/btcbox.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/btcmarkets.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/btcturk.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/coinspot.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/flowbtc.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/fmfwio.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/gateio.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/hitbtc3.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/huobi.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/indodax.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/krakenfutures.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/mercado.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/novadax.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/p2b.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/paymium.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/poloniexfutures.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/tokocrypto.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/tradeogre.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/wavesexchange.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/zaif.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/async_support/zonda.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/base/__init__.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/base/decimal_to_precision.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/base/errors.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/base/precise.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/bequant.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/binancecoinm.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/binanceus.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/binanceusdm.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/bitbay.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/bitbns.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/bitcoincom.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/bithumb.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/bitpanda.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/btcalpha.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/btcbox.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/btcmarkets.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/btcturk.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/coinspot.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/flowbtc.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/fmfwio.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/gateio.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/hitbtc3.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/huobi.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/indodax.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/krakenfutures.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/mercado.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/novadax.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/p2b.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/paymium.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/poloniexfutures.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/alpaca.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/ascendex.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/bequant.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/binance.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/binancecoinm.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/binanceus.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/binanceusdm.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/bingx.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/bitcoincom.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/bitfinex.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/bitfinex2.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/bithumb.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/bitmart.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/bitmex.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/bitopro.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/bitpanda.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/bitrue.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/bitstamp.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/blockchaincom.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/bybit.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/cex.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/coinbase.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/coinbaseinternational.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/coinbasepro.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/coincheck.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/coinex.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/coinone.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/cryptocom.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/currencycom.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/deribit.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/exmo.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/gate.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/gateio.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/gemini.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/hitbtc.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/hollaex.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/htx.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/huobi.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/huobijp.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/hyperliquid.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/idex.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/independentreserve.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/kraken.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/krakenfutures.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/kucoin.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/kucoinfutures.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/lbank.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/luno.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/mexc.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/ndax.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/okcoin.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/okx.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/onetrading.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/p2b.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/phemex.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/poloniex.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/poloniexfutures.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/probit.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/upbit.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/wazirx.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/whitebit.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/pro/woo.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/__init__.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ecdsa/__init__.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ecdsa/_version.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ecdsa/curves.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ecdsa/der.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ecdsa/ecdsa.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ecdsa/ellipticcurve.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ecdsa/keys.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ecdsa/numbertheory.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ecdsa/rfc6979.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ecdsa/util.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/__init__.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/abi/__init__.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/abi/abi.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/abi/base.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/abi/codec.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/abi/constants.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/abi/decoding.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/abi/encoding.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/abi/exceptions.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/abi/grammar.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/abi/packed.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/abi/py.typed +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/abi/registry.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/abi/tools/__init__.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/abi/tools/_strategies.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/abi/utils/__init__.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/abi/utils/numeric.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/abi/utils/padding.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/abi/utils/string.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/account/__init__.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/account/encode_typed_data/__init__.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/account/encode_typed_data/encoding_and_hashing.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/account/encode_typed_data/helpers.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/account/messages.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/account/py.typed +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/hexbytes/__init__.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/hexbytes/_utils.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/hexbytes/main.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/hexbytes/py.typed +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/typing/__init__.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/typing/abi.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/typing/bls.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/typing/discovery.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/typing/encoding.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/typing/enums.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/typing/ethpm.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/typing/evm.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/typing/networks.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/typing/py.typed +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/utils/__init__.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/utils/abi.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/utils/address.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/utils/applicators.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/utils/conversions.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/utils/currency.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/utils/curried/__init__.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/utils/debug.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/utils/decorators.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/utils/encoding.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/utils/exceptions.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/utils/functional.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/utils/hexadecimal.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/utils/humanize.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/utils/logging.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/utils/module_loading.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/utils/numeric.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/utils/py.typed +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/utils/toolz.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/utils/types.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/utils/typing/__init__.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/utils/typing/misc.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/ethereum/utils/units.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/keccak/__init__.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/keccak/keccak.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/msgpack/__init__.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/msgpack/exceptions.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/msgpack/ext.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/msgpack/fallback.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/parsimonious/__init__.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/parsimonious/exceptions.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/parsimonious/expressions.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/parsimonious/grammar.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/parsimonious/nodes.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/parsimonious/utils.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/toolz/__init__.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/toolz/_signatures.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/toolz/_version.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/toolz/compatibility.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/toolz/curried/__init__.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/toolz/curried/exceptions.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/toolz/curried/operator.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/toolz/dicttoolz.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/toolz/functoolz.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/toolz/itertoolz.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/toolz/recipes.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/static_dependencies/toolz/utils.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/__init__.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/__init__.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_account.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_balance.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_borrow_interest.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_borrow_rate.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_calculate_fee.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_crypto.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_currency.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_datetime.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_decimal_to_precision.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_deep_extend.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_deposit_withdrawal.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_exchange_datetime_functions.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_funding_rate_history.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_last_price.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_ledger_entry.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_ledger_item.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_leverage_tier.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_margin_mode.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_margin_modification.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_market.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_number.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_ohlcv.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_open_interest.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_order.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_order_book.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_position.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_shared_methods.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_status.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_throttle.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_ticker.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_trade.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_trading_fee.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/base/test_transaction.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/test_async.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/test/test_sync.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/tokocrypto.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/tradeogre.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/wavesexchange.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/zaif.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt/zonda.py +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt.egg-info/SOURCES.txt +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt.egg-info/dependency_links.txt +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt.egg-info/requires.txt +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/ccxt.egg-info/top_level.txt +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/setup.cfg +0 -0
- {ccxt-4.2.88 → ccxt-4.2.90}/setup.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ccxt
|
3
|
-
Version: 4.2.
|
3
|
+
Version: 4.2.90
|
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
|
@@ -225,13 +225,13 @@ Description: # CCXT – CryptoCurrency eXchange Trading Library
|
|
225
225
|
|
226
226
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
227
227
|
|
228
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.2.
|
229
|
-
* unpkg: https://unpkg.com/ccxt@4.2.
|
228
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.2.90/dist/ccxt.browser.js
|
229
|
+
* unpkg: https://unpkg.com/ccxt@4.2.90/dist/ccxt.browser.js
|
230
230
|
|
231
231
|
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.
|
232
232
|
|
233
233
|
```HTML
|
234
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.2.
|
234
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.2.90/dist/ccxt.browser.js"></script>
|
235
235
|
```
|
236
236
|
|
237
237
|
Creates a global `ccxt` object:
|
@@ -30,6 +30,7 @@ class ImplicitAPI:
|
|
30
30
|
swap_v1_private_get_positionside_dual = swapV1PrivateGetPositionSideDual = Entry('positionSide/dual', ['swap', 'v1', 'private'], 'GET', {'cost': 1})
|
31
31
|
swap_v1_private_get_market_markpriceklines = swapV1PrivateGetMarketMarkPriceKlines = Entry('market/markPriceKlines', ['swap', 'v1', 'private'], 'GET', {'cost': 1})
|
32
32
|
swap_v1_private_get_trade_batchcancelreplace = swapV1PrivateGetTradeBatchCancelReplace = Entry('trade/batchCancelReplace', ['swap', 'v1', 'private'], 'GET', {'cost': 1})
|
33
|
+
swap_v1_private_get_trade_fullorder = swapV1PrivateGetTradeFullOrder = Entry('trade/fullOrder', ['swap', 'v1', 'private'], 'GET', {'cost': 1})
|
33
34
|
swap_v1_private_post_trade_cancelreplace = swapV1PrivatePostTradeCancelReplace = Entry('trade/cancelReplace', ['swap', 'v1', 'private'], 'POST', {'cost': 1})
|
34
35
|
swap_v1_private_post_positionside_dual = swapV1PrivatePostPositionSideDual = Entry('positionSide/dual', ['swap', 'v1', 'private'], 'POST', {'cost': 1})
|
35
36
|
swap_v1_private_post_trade_closeposition = swapV1PrivatePostTradeClosePosition = Entry('trade/closePosition', ['swap', 'v1', 'private'], 'POST', {'cost': 1})
|
@@ -97,6 +98,7 @@ class ImplicitAPI:
|
|
97
98
|
copytrading_v1_private_get_swap_trace_currenttrack = copyTradingV1PrivateGetSwapTraceCurrentTrack = Entry('swap/trace/currentTrack', ['copyTrading', 'v1', 'private'], 'GET', {'cost': 1})
|
98
99
|
copytrading_v1_private_post_swap_trace_closetrackorder = copyTradingV1PrivatePostSwapTraceCloseTrackOrder = Entry('swap/trace/closeTrackOrder', ['copyTrading', 'v1', 'private'], 'POST', {'cost': 1})
|
99
100
|
copytrading_v1_private_post_swap_trace_settpsl = copyTradingV1PrivatePostSwapTraceSetTPSL = Entry('swap/trace/setTPSL', ['copyTrading', 'v1', 'private'], 'POST', {'cost': 1})
|
101
|
+
copytrading_v1_private_post_spot_trader_sellorder = copyTradingV1PrivatePostSpotTraderSellOrder = Entry('spot/trader/sellOrder', ['copyTrading', 'v1', 'private'], 'POST', {'cost': 1})
|
100
102
|
api_v3_private_get_asset_transfer = apiV3PrivateGetAssetTransfer = Entry('asset/transfer', ['api', 'v3', 'private'], 'GET', {'cost': 1})
|
101
103
|
api_v3_private_get_capital_deposit_hisrec = apiV3PrivateGetCapitalDepositHisrec = Entry('capital/deposit/hisrec', ['api', 'v3', 'private'], 'GET', {'cost': 1})
|
102
104
|
api_v3_private_get_capital_withdraw_history = apiV3PrivateGetCapitalWithdrawHistory = Entry('capital/withdraw/history', ['api', 'v3', 'private'], 'GET', {'cost': 1})
|
@@ -155,6 +155,7 @@ class ImplicitAPI:
|
|
155
155
|
private_get_v5_user_get_member_type = privateGetV5UserGetMemberType = Entry('v5/user/get-member-type', 'private', 'GET', {'cost': 5})
|
156
156
|
private_get_v5_user_aff_customer_info = privateGetV5UserAffCustomerInfo = Entry('v5/user/aff-customer-info', 'private', 'GET', {'cost': 5})
|
157
157
|
private_get_v5_user_del_submember = privateGetV5UserDelSubmember = Entry('v5/user/del-submember', 'private', 'GET', {'cost': 5})
|
158
|
+
private_get_v5_user_submembers = privateGetV5UserSubmembers = Entry('v5/user/submembers', 'private', 'GET', {'cost': 5})
|
158
159
|
private_get_v5_spot_lever_token_order_record = privateGetV5SpotLeverTokenOrderRecord = Entry('v5/spot-lever-token/order-record', 'private', 'GET', {'cost': 1})
|
159
160
|
private_get_v5_spot_margin_trade_state = privateGetV5SpotMarginTradeState = Entry('v5/spot-margin-trade/state', 'private', 'GET', {'cost': 5})
|
160
161
|
private_get_v5_spot_cross_margin_trade_loan_info = privateGetV5SpotCrossMarginTradeLoanInfo = Entry('v5/spot-cross-margin-trade/loan-info', 'private', 'GET', {'cost': 1})
|
@@ -291,3 +292,4 @@ class ImplicitAPI:
|
|
291
292
|
private_post_v5_lending_redeem_cancel = privatePostV5LendingRedeemCancel = Entry('v5/lending/redeem-cancel', 'private', 'POST', {'cost': 5})
|
292
293
|
private_post_v5_account_set_collateral_switch = privatePostV5AccountSetCollateralSwitch = Entry('v5/account/set-collateral-switch', 'private', 'POST', {'cost': 5})
|
293
294
|
private_post_v5_account_set_collateral_switch_batch = privatePostV5AccountSetCollateralSwitchBatch = Entry('v5/account/set-collateral-switch-batch', 'private', 'POST', {'cost': 5})
|
295
|
+
private_post_v5_account_demo_apply_money = privatePostV5AccountDemoApplyMoney = Entry('v5/account/demo-apply-money', 'private', 'POST', {'cost': 5})
|
@@ -6,7 +6,7 @@
|
|
6
6
|
from ccxt.base.exchange import Exchange
|
7
7
|
from ccxt.abstract.ascendex import ImplicitAPI
|
8
8
|
import hashlib
|
9
|
-
from ccxt.base.types import Account, Balances, Currency, Int, Leverage, Leverages, MarginMode, MarginModes, MarginModification, Market, Num, Order, OrderBook, OrderRequest, OrderSide, OrderType, Str, Strings, Ticker, Tickers, Trade, Transaction, TransferEntry
|
9
|
+
from ccxt.base.types import Account, Balances, Currencies, Currency, Int, Leverage, Leverages, MarginMode, MarginModes, MarginModification, Market, Num, Order, OrderBook, OrderRequest, OrderSide, OrderType, Str, Strings, Ticker, Tickers, Trade, TradingFees, Transaction, TransferEntry
|
10
10
|
from typing import List
|
11
11
|
from ccxt.base.errors import ExchangeError
|
12
12
|
from ccxt.base.errors import PermissionDenied
|
@@ -395,7 +395,7 @@ class ascendex(Exchange, ImplicitAPI):
|
|
395
395
|
lowercaseAccount = account.lower()
|
396
396
|
return self.capitalize(lowercaseAccount)
|
397
397
|
|
398
|
-
def fetch_currencies(self, params={}):
|
398
|
+
def fetch_currencies(self, params={}) -> Currencies:
|
399
399
|
"""
|
400
400
|
fetches all available currencies on an exchange
|
401
401
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -1394,7 +1394,7 @@ class ascendex(Exchange, ImplicitAPI):
|
|
1394
1394
|
'trades': None,
|
1395
1395
|
}, market)
|
1396
1396
|
|
1397
|
-
def fetch_trading_fees(self, params={}):
|
1397
|
+
def fetch_trading_fees(self, params={}) -> TradingFees:
|
1398
1398
|
"""
|
1399
1399
|
fetch the trading fees for multiple markets
|
1400
1400
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -1437,6 +1437,8 @@ class ascendex(Exchange, ImplicitAPI):
|
|
1437
1437
|
'symbol': symbol,
|
1438
1438
|
'maker': self.safe_number(takerMaker, 'maker'),
|
1439
1439
|
'taker': self.safe_number(takerMaker, 'taker'),
|
1440
|
+
'percentage': None,
|
1441
|
+
'tierBased': None,
|
1440
1442
|
}
|
1441
1443
|
return result
|
1442
1444
|
|
@@ -2742,6 +2744,7 @@ class ascendex(Exchange, ImplicitAPI):
|
|
2742
2744
|
'info': data,
|
2743
2745
|
'symbol': market['symbol'],
|
2744
2746
|
'type': None,
|
2747
|
+
'marginMode': 'isolated',
|
2745
2748
|
'amount': None,
|
2746
2749
|
'total': None,
|
2747
2750
|
'code': market['quote'],
|
@@ -6,7 +6,7 @@
|
|
6
6
|
from ccxt.async_support.base.exchange import Exchange
|
7
7
|
from ccxt.abstract.ascendex import ImplicitAPI
|
8
8
|
import hashlib
|
9
|
-
from ccxt.base.types import Account, Balances, Currency, Int, Leverage, Leverages, MarginMode, MarginModes, MarginModification, Market, Num, Order, OrderBook, OrderRequest, OrderSide, OrderType, Str, Strings, Ticker, Tickers, Trade, Transaction, TransferEntry
|
9
|
+
from ccxt.base.types import Account, Balances, Currencies, Currency, Int, Leverage, Leverages, MarginMode, MarginModes, MarginModification, Market, Num, Order, OrderBook, OrderRequest, OrderSide, OrderType, Str, Strings, Ticker, Tickers, Trade, TradingFees, Transaction, TransferEntry
|
10
10
|
from typing import List
|
11
11
|
from ccxt.base.errors import ExchangeError
|
12
12
|
from ccxt.base.errors import PermissionDenied
|
@@ -395,7 +395,7 @@ class ascendex(Exchange, ImplicitAPI):
|
|
395
395
|
lowercaseAccount = account.lower()
|
396
396
|
return self.capitalize(lowercaseAccount)
|
397
397
|
|
398
|
-
async def fetch_currencies(self, params={}):
|
398
|
+
async def fetch_currencies(self, params={}) -> Currencies:
|
399
399
|
"""
|
400
400
|
fetches all available currencies on an exchange
|
401
401
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -1394,7 +1394,7 @@ class ascendex(Exchange, ImplicitAPI):
|
|
1394
1394
|
'trades': None,
|
1395
1395
|
}, market)
|
1396
1396
|
|
1397
|
-
async def fetch_trading_fees(self, params={}):
|
1397
|
+
async def fetch_trading_fees(self, params={}) -> TradingFees:
|
1398
1398
|
"""
|
1399
1399
|
fetch the trading fees for multiple markets
|
1400
1400
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -1437,6 +1437,8 @@ class ascendex(Exchange, ImplicitAPI):
|
|
1437
1437
|
'symbol': symbol,
|
1438
1438
|
'maker': self.safe_number(takerMaker, 'maker'),
|
1439
1439
|
'taker': self.safe_number(takerMaker, 'taker'),
|
1440
|
+
'percentage': None,
|
1441
|
+
'tierBased': None,
|
1440
1442
|
}
|
1441
1443
|
return result
|
1442
1444
|
|
@@ -2742,6 +2744,7 @@ class ascendex(Exchange, ImplicitAPI):
|
|
2742
2744
|
'info': data,
|
2743
2745
|
'symbol': market['symbol'],
|
2744
2746
|
'type': None,
|
2747
|
+
'marginMode': 'isolated',
|
2745
2748
|
'amount': None,
|
2746
2749
|
'total': None,
|
2747
2750
|
'code': market['quote'],
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
# -----------------------------------------------------------------------------
|
4
4
|
|
5
|
-
__version__ = '4.2.
|
5
|
+
__version__ = '4.2.90'
|
6
6
|
|
7
7
|
# -----------------------------------------------------------------------------
|
8
8
|
|
@@ -677,6 +677,18 @@ class Exchange(BaseExchange):
|
|
677
677
|
async def set_margin(self, symbol: str, amount: float, params={}):
|
678
678
|
raise NotSupported(self.id + ' setMargin() is not supported yet')
|
679
679
|
|
680
|
+
async def fetch_margin_adjustment_history(self, symbol: Str = None, type: Str = None, since: Num = None, limit: Num = None, params={}):
|
681
|
+
"""
|
682
|
+
fetches the history of margin added or reduced from contract isolated positions
|
683
|
+
:param str [symbol]: unified market symbol
|
684
|
+
:param str [type]: "add" or "reduce"
|
685
|
+
:param int [since]: timestamp in ms of the earliest change to fetch
|
686
|
+
:param int [limit]: the maximum amount of changes to fetch
|
687
|
+
:param dict params: extra parameters specific to the exchange api endpoint
|
688
|
+
:returns dict[]: a list of `margin structures <https://docs.ccxt.com/#/?id=margin-loan-structure>`
|
689
|
+
"""
|
690
|
+
raise NotSupported(self.id + ' fetchMarginAdjustmentHistory() is not supported yet')
|
691
|
+
|
680
692
|
async def set_margin_mode(self, marginMode: str, symbol: Str = None, params={}):
|
681
693
|
raise NotSupported(self.id + ' setMarginMode() is not supported yet')
|
682
694
|
|
@@ -1406,7 +1418,8 @@ class Exchange(BaseExchange):
|
|
1406
1418
|
async def fetch_trading_fee(self, symbol: str, params={}):
|
1407
1419
|
if not self.has['fetchTradingFees']:
|
1408
1420
|
raise NotSupported(self.id + ' fetchTradingFee() is not supported yet')
|
1409
|
-
|
1421
|
+
fees = await self.fetch_trading_fees(params)
|
1422
|
+
return self.safe_dict(fees, symbol)
|
1410
1423
|
|
1411
1424
|
async def fetch_funding_rate(self, symbol: str, params={}):
|
1412
1425
|
if self.has['fetchFundingRates']:
|
@@ -6,7 +6,7 @@
|
|
6
6
|
from ccxt.async_support.base.exchange import Exchange
|
7
7
|
from ccxt.abstract.bigone import ImplicitAPI
|
8
8
|
import asyncio
|
9
|
-
from ccxt.base.types import Balances, Bool, Currency, Int, Market, Num, Order, OrderBook, OrderSide, OrderType, Str, Strings, Ticker, Tickers, Trade, Transaction, TransferEntry
|
9
|
+
from ccxt.base.types import Balances, Bool, Currencies, Currency, Int, Market, Num, Order, OrderBook, OrderSide, OrderType, Str, Strings, Ticker, Tickers, Trade, Transaction, TransferEntry
|
10
10
|
from typing import List
|
11
11
|
from ccxt.base.errors import ExchangeError
|
12
12
|
from ccxt.base.errors import PermissionDenied
|
@@ -340,7 +340,7 @@ class bigone(Exchange, ImplicitAPI):
|
|
340
340
|
},
|
341
341
|
})
|
342
342
|
|
343
|
-
async def fetch_currencies(self, params={}):
|
343
|
+
async def fetch_currencies(self, params={}) -> Currencies:
|
344
344
|
"""
|
345
345
|
fetches all available currencies on an exchange
|
346
346
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -8,7 +8,7 @@ from ccxt.abstract.binance import ImplicitAPI
|
|
8
8
|
import asyncio
|
9
9
|
import hashlib
|
10
10
|
import json
|
11
|
-
from ccxt.base.types import Balances, Currency, Greeks, Int, Leverage, Leverages, MarginMode, MarginModes, MarginModification, Market, MarketInterface, Num, Option, Order, OrderBook, OrderRequest, OrderSide, OrderType, Str, Strings, Ticker, Tickers, Trade, Transaction, TransferEntry
|
11
|
+
from ccxt.base.types import Balances, Currencies, Currency, Greeks, Int, Leverage, Leverages, MarginMode, MarginModes, MarginModification, Market, MarketInterface, Num, Option, Order, OrderBook, OrderRequest, OrderSide, OrderType, Str, Strings, Ticker, Tickers, Trade, TradingFeeInterface, TradingFees, Transaction, TransferEntry
|
12
12
|
from typing import List
|
13
13
|
from ccxt.base.errors import ExchangeError
|
14
14
|
from ccxt.base.errors import PermissionDenied
|
@@ -121,6 +121,7 @@ class binance(Exchange, ImplicitAPI):
|
|
121
121
|
'fetchLeverages': True,
|
122
122
|
'fetchLeverageTiers': True,
|
123
123
|
'fetchLiquidations': False,
|
124
|
+
'fetchMarginAdjustmentHistory': True,
|
124
125
|
'fetchMarginMode': 'emulated',
|
125
126
|
'fetchMarginModes': True,
|
126
127
|
'fetchMarketLeverageTiers': 'emulated',
|
@@ -2593,7 +2594,7 @@ class binance(Exchange, ImplicitAPI):
|
|
2593
2594
|
response = await self.publicGetTime(query)
|
2594
2595
|
return self.safe_integer(response, 'serverTime')
|
2595
2596
|
|
2596
|
-
async def fetch_currencies(self, params={}):
|
2597
|
+
async def fetch_currencies(self, params={}) -> Currencies:
|
2597
2598
|
"""
|
2598
2599
|
fetches all available currencies on an exchange
|
2599
2600
|
:see: https://binance-docs.github.io/apidocs/spot/en/#all-coins-39-information-user_data
|
@@ -8037,7 +8038,7 @@ class binance(Exchange, ImplicitAPI):
|
|
8037
8038
|
# {id: '9a67628b16ba4988ae20d329333f16bc'}
|
8038
8039
|
return self.parse_transaction(response, currency)
|
8039
8040
|
|
8040
|
-
def parse_trading_fee(self, fee, market: Market = None):
|
8041
|
+
def parse_trading_fee(self, fee, market: Market = None) -> TradingFeeInterface:
|
8041
8042
|
#
|
8042
8043
|
# spot
|
8043
8044
|
# [
|
@@ -8062,9 +8063,11 @@ class binance(Exchange, ImplicitAPI):
|
|
8062
8063
|
'symbol': symbol,
|
8063
8064
|
'maker': self.safe_number_2(fee, 'makerCommission', 'makerCommissionRate'),
|
8064
8065
|
'taker': self.safe_number_2(fee, 'takerCommission', 'takerCommissionRate'),
|
8066
|
+
'percentage': None,
|
8067
|
+
'tierBased': None,
|
8065
8068
|
}
|
8066
8069
|
|
8067
|
-
async def fetch_trading_fee(self, symbol: str, params={}):
|
8070
|
+
async def fetch_trading_fee(self, symbol: str, params={}) -> TradingFeeInterface:
|
8068
8071
|
"""
|
8069
8072
|
fetch the trading fees for a market
|
8070
8073
|
:see: https://binance-docs.github.io/apidocs/spot/en/#trade-fee-user_data
|
@@ -8127,7 +8130,7 @@ class binance(Exchange, ImplicitAPI):
|
|
8127
8130
|
data = self.safe_dict(data, 0, {})
|
8128
8131
|
return self.parse_trading_fee(data, market)
|
8129
8132
|
|
8130
|
-
async def fetch_trading_fees(self, params={}):
|
8133
|
+
async def fetch_trading_fees(self, params={}) -> TradingFees:
|
8131
8134
|
"""
|
8132
8135
|
fetch the trading fees for multiple markets
|
8133
8136
|
:see: https://binance-docs.github.io/apidocs/spot/en/#trade-fee-user_data
|
@@ -10328,21 +10331,37 @@ class binance(Exchange, ImplicitAPI):
|
|
10328
10331
|
# "type": 1
|
10329
10332
|
# }
|
10330
10333
|
#
|
10334
|
+
# fetchMarginAdjustmentHistory
|
10335
|
+
#
|
10336
|
+
# {
|
10337
|
+
# symbol: "XRPUSDT",
|
10338
|
+
# type: "1",
|
10339
|
+
# deltaType: "TRADE",
|
10340
|
+
# amount: "2.57148240",
|
10341
|
+
# asset: "USDT",
|
10342
|
+
# time: "1711046271555",
|
10343
|
+
# positionSide: "BOTH",
|
10344
|
+
# clientTranId: ""
|
10345
|
+
# }
|
10346
|
+
#
|
10331
10347
|
rawType = self.safe_integer(data, 'type')
|
10332
|
-
resultType = 'add' if (rawType == 1) else 'reduce'
|
10333
|
-
resultAmount = self.safe_number(data, 'amount')
|
10334
10348
|
errorCode = self.safe_string(data, 'code')
|
10335
|
-
|
10349
|
+
marketId = self.safe_string(data, 'symbol')
|
10350
|
+
timestamp = self.safe_integer(data, 'time')
|
10351
|
+
market = self.safe_market(marketId, market, None, 'swap')
|
10352
|
+
noErrorCode = errorCode is None
|
10353
|
+
success = errorCode == '200'
|
10336
10354
|
return {
|
10337
10355
|
'info': data,
|
10338
10356
|
'symbol': market['symbol'],
|
10339
|
-
'type':
|
10340
|
-
'
|
10357
|
+
'type': 'add' if (rawType == 1) else 'reduce',
|
10358
|
+
'marginMode': 'isolated',
|
10359
|
+
'amount': self.safe_number(data, 'amount'),
|
10360
|
+
'code': self.safe_string(data, 'asset'),
|
10341
10361
|
'total': None,
|
10342
|
-
'
|
10343
|
-
'
|
10344
|
-
'
|
10345
|
-
'datetime': None,
|
10362
|
+
'status': 'ok' if (success or noErrorCode) else 'failed',
|
10363
|
+
'timestamp': timestamp,
|
10364
|
+
'datetime': self.iso8601(timestamp),
|
10346
10365
|
}
|
10347
10366
|
|
10348
10367
|
async def reduce_margin(self, symbol: str, amount, params={}) -> MarginModification:
|
@@ -11504,3 +11523,58 @@ class binance(Exchange, ImplicitAPI):
|
|
11504
11523
|
'baseVolume': self.safe_number(chain, 'volume'),
|
11505
11524
|
'quoteVolume': None,
|
11506
11525
|
}
|
11526
|
+
|
11527
|
+
async def fetch_margin_adjustment_history(self, symbol: Str = None, type: Str = None, since: Num = None, limit: Num = None, params={}) -> List[MarginModification]:
|
11528
|
+
"""
|
11529
|
+
fetches the history of margin added or reduced from contract isolated positions
|
11530
|
+
:see: https://binance-docs.github.io/apidocs/futures/en/#get-position-margin-change-history-trade
|
11531
|
+
:see: https://binance-docs.github.io/apidocs/delivery/en/#get-position-margin-change-history-trade
|
11532
|
+
:param str symbol: unified market symbol
|
11533
|
+
:param str [type]: "add" or "reduce"
|
11534
|
+
:param int [since]: timestamp in ms of the earliest change to fetch
|
11535
|
+
:param int [limit]: the maximum amount of changes to fetch
|
11536
|
+
:param dict params: extra parameters specific to the exchange api endpoint
|
11537
|
+
:param int [params.until]: timestamp in ms of the latest change to fetch
|
11538
|
+
:returns dict[]: a list of `margin structures <https://docs.ccxt.com/#/?id=margin-loan-structure>`
|
11539
|
+
"""
|
11540
|
+
await self.load_markets()
|
11541
|
+
if symbol is None:
|
11542
|
+
raise ArgumentsRequired(self.id + ' fetchMarginAdjustmentHistory() requires a symbol argument')
|
11543
|
+
market = self.market(symbol)
|
11544
|
+
until = self.safe_integer(params, 'until')
|
11545
|
+
params = self.omit(params, 'until')
|
11546
|
+
request = {
|
11547
|
+
'symbol': market['id'],
|
11548
|
+
}
|
11549
|
+
if type is not None:
|
11550
|
+
request['type'] = 1 if (type == 'add') else 2
|
11551
|
+
if since is not None:
|
11552
|
+
request['startTime'] = since
|
11553
|
+
if limit is not None:
|
11554
|
+
request['limit'] = limit
|
11555
|
+
if until is not None:
|
11556
|
+
request['endTime'] = until
|
11557
|
+
response = None
|
11558
|
+
if market['linear']:
|
11559
|
+
response = await self.fapiPrivateGetPositionMarginHistory(self.extend(request, params))
|
11560
|
+
elif market['inverse']:
|
11561
|
+
response = await self.dapiPrivateGetPositionMarginHistory(self.extend(request, params))
|
11562
|
+
else:
|
11563
|
+
raise BadRequest(self.id + 'fetchMarginAdjustmentHistory() is not supported for markets of type ' + market['type'])
|
11564
|
+
#
|
11565
|
+
# [
|
11566
|
+
# {
|
11567
|
+
# symbol: "XRPUSDT",
|
11568
|
+
# type: "1",
|
11569
|
+
# deltaType: "TRADE",
|
11570
|
+
# amount: "2.57148240",
|
11571
|
+
# asset: "USDT",
|
11572
|
+
# time: "1711046271555",
|
11573
|
+
# positionSide: "BOTH",
|
11574
|
+
# clientTranId: ""
|
11575
|
+
# }
|
11576
|
+
# ...
|
11577
|
+
# ]
|
11578
|
+
#
|
11579
|
+
modifications = self.parse_margin_modifications(response)
|
11580
|
+
return self.filter_by_symbol_since_limit(modifications, symbol, since, limit)
|
@@ -8,7 +8,7 @@ from ccxt.abstract.bingx import ImplicitAPI
|
|
8
8
|
import asyncio
|
9
9
|
import hashlib
|
10
10
|
import numbers
|
11
|
-
from ccxt.base.types import Balances, Currency, Int, Leverage, MarginMode, MarginModification, Market, Num, Order, OrderBook, OrderRequest, OrderSide, OrderType, Position, Str, Strings, Ticker, Tickers, Trade, Transaction, TransferEntry
|
11
|
+
from ccxt.base.types import Balances, Currencies, Currency, Int, Leverage, MarginMode, MarginModification, Market, Num, Order, OrderBook, OrderRequest, OrderSide, OrderType, Position, Str, Strings, Ticker, Tickers, Trade, Transaction, TransferEntry
|
12
12
|
from typing import List
|
13
13
|
from ccxt.base.errors import ExchangeError
|
14
14
|
from ccxt.base.errors import PermissionDenied
|
@@ -74,6 +74,7 @@ class bingx(Exchange, ImplicitAPI):
|
|
74
74
|
'fetchFundingRates': True,
|
75
75
|
'fetchLeverage': True,
|
76
76
|
'fetchLiquidations': False,
|
77
|
+
'fetchMarginAdjustmentHistory': False,
|
77
78
|
'fetchMarginMode': True,
|
78
79
|
'fetchMarkets': True,
|
79
80
|
'fetchMarkOHLCV': True,
|
@@ -83,6 +84,7 @@ class bingx(Exchange, ImplicitAPI):
|
|
83
84
|
'fetchOpenOrders': True,
|
84
85
|
'fetchOrder': True,
|
85
86
|
'fetchOrderBook': True,
|
87
|
+
'fetchOrders': True,
|
86
88
|
'fetchPositionMode': True,
|
87
89
|
'fetchPositions': True,
|
88
90
|
'fetchTicker': True,
|
@@ -194,6 +196,7 @@ class bingx(Exchange, ImplicitAPI):
|
|
194
196
|
'positionSide/dual': 1,
|
195
197
|
'market/markPriceKlines': 1,
|
196
198
|
'trade/batchCancelReplace': 1,
|
199
|
+
'trade/fullOrder': 1,
|
197
200
|
},
|
198
201
|
'post': {
|
199
202
|
'trade/cancelReplace': 1,
|
@@ -341,6 +344,7 @@ class bingx(Exchange, ImplicitAPI):
|
|
341
344
|
'post': {
|
342
345
|
'swap/trace/closeTrackOrder': 1,
|
343
346
|
'swap/trace/setTPSL': 1,
|
347
|
+
'spot/trader/sellOrder': 1,
|
344
348
|
},
|
345
349
|
},
|
346
350
|
},
|
@@ -455,7 +459,7 @@ class bingx(Exchange, ImplicitAPI):
|
|
455
459
|
data = self.safe_dict(response, 'data')
|
456
460
|
return self.safe_integer(data, 'serverTime')
|
457
461
|
|
458
|
-
async def fetch_currencies(self, params={}):
|
462
|
+
async def fetch_currencies(self, params={}) -> Currencies:
|
459
463
|
"""
|
460
464
|
fetches all available currencies on an exchange
|
461
465
|
:see: https://bingx-api.github.io/docs/#/common/account-api.html#All%20Coins
|
@@ -2587,7 +2591,7 @@ class bingx(Exchange, ImplicitAPI):
|
|
2587
2591
|
:returns dict: An `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
2588
2592
|
"""
|
2589
2593
|
if symbol is None:
|
2590
|
-
raise ArgumentsRequired(self.id + '
|
2594
|
+
raise ArgumentsRequired(self.id + ' fetchOrder() requires a symbol argument')
|
2591
2595
|
await self.load_markets()
|
2592
2596
|
market = self.market(symbol)
|
2593
2597
|
request: dict = {
|
@@ -2655,6 +2659,94 @@ class bingx(Exchange, ImplicitAPI):
|
|
2655
2659
|
first = self.safe_dict(data, 'order', data)
|
2656
2660
|
return self.parse_order(first, market)
|
2657
2661
|
|
2662
|
+
async def fetch_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
2663
|
+
"""
|
2664
|
+
fetches information on multiple orders made by the user
|
2665
|
+
:see: https://bingx-api.github.io/docs/#/en-us/swapV2/trade-api.html#User's%20All%20Orders
|
2666
|
+
:param str symbol: unified market symbol of the market orders were made in
|
2667
|
+
:param int [since]: the earliest time in ms to fetch orders for
|
2668
|
+
:param int [limit]: the maximum number of order structures to retrieve
|
2669
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
2670
|
+
:param int [params.until]: the latest time in ms to fetch entries for
|
2671
|
+
:param int [params.orderId]: Only return subsequent orders, and return the latest order by default
|
2672
|
+
:returns Order[]: a list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
|
2673
|
+
"""
|
2674
|
+
await self.load_markets()
|
2675
|
+
request = {}
|
2676
|
+
market = None
|
2677
|
+
if symbol is not None:
|
2678
|
+
market = self.market(symbol)
|
2679
|
+
request['symbol'] = market['id']
|
2680
|
+
type = None
|
2681
|
+
type, params = self.handle_market_type_and_params('fetchOrders', market, params)
|
2682
|
+
if type != 'swap':
|
2683
|
+
raise NotSupported(self.id + ' fetchOrders() is only supported for swap markets')
|
2684
|
+
if limit is not None:
|
2685
|
+
request['limit'] = limit
|
2686
|
+
if since is not None:
|
2687
|
+
request['startTime'] = since
|
2688
|
+
until = self.safe_integer_2(params, 'until', 'till') # unified in milliseconds
|
2689
|
+
endTime = self.safe_integer(params, 'endTime', until) # exchange-specific in milliseconds
|
2690
|
+
params = self.omit(params, ['endTime', 'till', 'until'])
|
2691
|
+
if endTime is not None:
|
2692
|
+
request['endTime'] = endTime
|
2693
|
+
response = await self.swapV1PrivateGetTradeFullOrder(self.extend(request, params))
|
2694
|
+
#
|
2695
|
+
# {
|
2696
|
+
# "code": 0,
|
2697
|
+
# "msg": "",
|
2698
|
+
# "data": {
|
2699
|
+
# "orders": [
|
2700
|
+
# {
|
2701
|
+
# "symbol": "PYTH-USDT",
|
2702
|
+
# "orderId": 1736007506620112100,
|
2703
|
+
# "side": "SELL",
|
2704
|
+
# "positionSide": "SHORT",
|
2705
|
+
# "type": "LIMIT",
|
2706
|
+
# "origQty": "33",
|
2707
|
+
# "price": "0.3916",
|
2708
|
+
# "executedQty": "33",
|
2709
|
+
# "avgPrice": "0.3916",
|
2710
|
+
# "cumQuote": "13",
|
2711
|
+
# "stopPrice": "",
|
2712
|
+
# "profit": "0.0000",
|
2713
|
+
# "commission": "-0.002585",
|
2714
|
+
# "status": "FILLED",
|
2715
|
+
# "time": 1702731418000,
|
2716
|
+
# "updateTime": 1702731470000,
|
2717
|
+
# "clientOrderId": "",
|
2718
|
+
# "leverage": "15X",
|
2719
|
+
# "takeProfit": {
|
2720
|
+
# "type": "TAKE_PROFIT",
|
2721
|
+
# "quantity": 0,
|
2722
|
+
# "stopPrice": 0,
|
2723
|
+
# "price": 0,
|
2724
|
+
# "workingType": ""
|
2725
|
+
# },
|
2726
|
+
# "stopLoss": {
|
2727
|
+
# "type": "STOP",
|
2728
|
+
# "quantity": 0,
|
2729
|
+
# "stopPrice": 0,
|
2730
|
+
# "price": 0,
|
2731
|
+
# "workingType": ""
|
2732
|
+
# },
|
2733
|
+
# "advanceAttr": 0,
|
2734
|
+
# "positionID": 0,
|
2735
|
+
# "takeProfitEntrustPrice": 0,
|
2736
|
+
# "stopLossEntrustPrice": 0,
|
2737
|
+
# "orderType": "",
|
2738
|
+
# "workingType": "MARK_PRICE",
|
2739
|
+
# "stopGuaranteed": False,
|
2740
|
+
# "triggerOrderId": 1736012449498123500
|
2741
|
+
# }
|
2742
|
+
# ]
|
2743
|
+
# }
|
2744
|
+
# }
|
2745
|
+
#
|
2746
|
+
data = self.safe_dict(response, 'data', {})
|
2747
|
+
orders = self.safe_list(data, 'orders', [])
|
2748
|
+
return self.parse_orders(orders, market, since, limit)
|
2749
|
+
|
2658
2750
|
async def fetch_open_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
2659
2751
|
"""
|
2660
2752
|
:see: https://bingx-api.github.io/docs/#/spot/trade-api.html#Query%20Open%20Orders
|
@@ -3307,6 +3399,7 @@ class bingx(Exchange, ImplicitAPI):
|
|
3307
3399
|
'info': data,
|
3308
3400
|
'symbol': self.safe_string(market, 'symbol'),
|
3309
3401
|
'type': 'add' if (type == '1') else 'reduce',
|
3402
|
+
'marginMode': 'isolated',
|
3310
3403
|
'amount': self.safe_number(data, 'amount'),
|
3311
3404
|
'total': self.safe_number(data, 'margin'),
|
3312
3405
|
'code': self.safe_string(market, 'settle'),
|
@@ -6,7 +6,7 @@
|
|
6
6
|
from ccxt.async_support.base.exchange import Exchange
|
7
7
|
from ccxt.abstract.bit2c import ImplicitAPI
|
8
8
|
import hashlib
|
9
|
-
from ccxt.base.types import Balances, Currency, Int, Market, Num, Order, OrderBook, OrderSide, OrderType, Str, Ticker, Trade
|
9
|
+
from ccxt.base.types import Balances, Currency, Int, Market, Num, Order, OrderBook, OrderSide, OrderType, Str, Ticker, Trade, TradingFees
|
10
10
|
from typing import List
|
11
11
|
from ccxt.base.errors import ExchangeError
|
12
12
|
from ccxt.base.errors import PermissionDenied
|
@@ -360,7 +360,7 @@ class bit2c(Exchange, ImplicitAPI):
|
|
360
360
|
raise ExchangeError(response)
|
361
361
|
return self.parse_trades(response, market, since, limit)
|
362
362
|
|
363
|
-
async def fetch_trading_fees(self, params={}):
|
363
|
+
async def fetch_trading_fees(self, params={}) -> TradingFees:
|
364
364
|
"""
|
365
365
|
fetch the trading fees for multiple markets
|
366
366
|
:see: https://bit2c.co.il/home/api#balance
|
@@ -6,7 +6,7 @@
|
|
6
6
|
from ccxt.async_support.base.exchange import Exchange
|
7
7
|
from ccxt.abstract.bitbank import ImplicitAPI
|
8
8
|
import hashlib
|
9
|
-
from ccxt.base.types import Balances, Currency, Int, Market, Num, Order, OrderBook, OrderSide, OrderType, Str, Ticker, Trade, Transaction
|
9
|
+
from ccxt.base.types import Balances, Currency, Int, Market, Num, Order, OrderBook, OrderSide, OrderType, Str, Ticker, Trade, TradingFees, Transaction
|
10
10
|
from typing import List
|
11
11
|
from ccxt.base.errors import ExchangeError
|
12
12
|
from ccxt.base.errors import PermissionDenied
|
@@ -390,7 +390,7 @@ class bitbank(Exchange, ImplicitAPI):
|
|
390
390
|
trades = self.safe_list(data, 'transactions', [])
|
391
391
|
return self.parse_trades(trades, market, since, limit)
|
392
392
|
|
393
|
-
async def fetch_trading_fees(self, params={}):
|
393
|
+
async def fetch_trading_fees(self, params={}) -> TradingFees:
|
394
394
|
"""
|
395
395
|
fetch the trading fees for multiple markets
|
396
396
|
:see: https://github.com/bitbankinc/bitbank-api-docs/blob/38d6d7c6f486c793872fd4b4087a0d090a04cd0a/rest-api.md#get-all-pairs-info
|
@@ -6,7 +6,7 @@
|
|
6
6
|
from ccxt.async_support.base.exchange import Exchange
|
7
7
|
from ccxt.abstract.bitfinex import ImplicitAPI
|
8
8
|
import hashlib
|
9
|
-
from ccxt.base.types import Balances, Currency, Int, Market, Num, Order, OrderBook, OrderSide, OrderType, Str, Strings, Ticker, Tickers, Trade, Transaction, TransferEntry
|
9
|
+
from ccxt.base.types import Balances, Currency, Int, Market, Num, Order, OrderBook, OrderSide, OrderType, Str, Strings, Ticker, Tickers, Trade, TradingFees, Transaction, TransferEntry
|
10
10
|
from typing import List
|
11
11
|
from ccxt.base.errors import ExchangeError
|
12
12
|
from ccxt.base.errors import PermissionDenied
|
@@ -480,7 +480,7 @@ class bitfinex(Exchange, ImplicitAPI):
|
|
480
480
|
'info': fee,
|
481
481
|
}
|
482
482
|
|
483
|
-
async def fetch_trading_fees(self, params={}):
|
483
|
+
async def fetch_trading_fees(self, params={}) -> TradingFees:
|
484
484
|
"""
|
485
485
|
fetch the trading fees for multiple markets
|
486
486
|
:see: https://docs.bitfinex.com/v1/reference/rest-auth-summary
|
@@ -6,7 +6,7 @@
|
|
6
6
|
from ccxt.async_support.base.exchange import Exchange
|
7
7
|
from ccxt.abstract.bitfinex2 import ImplicitAPI
|
8
8
|
import hashlib
|
9
|
-
from ccxt.base.types import Balances, Currency, Int, MarginModification, Market, Num, Order, OrderBook, OrderRequest, OrderSide, OrderType, Str, Strings, Ticker, Tickers, Trade, Transaction, TransferEntry
|
9
|
+
from ccxt.base.types import Balances, Currencies, Currency, Int, MarginModification, Market, Num, Order, OrderBook, OrderRequest, OrderSide, OrderType, Str, Strings, Ticker, Tickers, Trade, TradingFees, Transaction, TransferEntry
|
10
10
|
from typing import List
|
11
11
|
from ccxt.base.errors import ExchangeError
|
12
12
|
from ccxt.base.errors import PermissionDenied
|
@@ -630,7 +630,7 @@ class bitfinex2(Exchange, ImplicitAPI):
|
|
630
630
|
})
|
631
631
|
return result
|
632
632
|
|
633
|
-
async def fetch_currencies(self, params={}):
|
633
|
+
async def fetch_currencies(self, params={}) -> Currencies:
|
634
634
|
"""
|
635
635
|
fetches all available currencies on an exchange
|
636
636
|
:see: https://docs.bitfinex.com/reference/rest-public-conf
|
@@ -2261,7 +2261,7 @@ class bitfinex2(Exchange, ImplicitAPI):
|
|
2261
2261
|
},
|
2262
2262
|
}
|
2263
2263
|
|
2264
|
-
async def fetch_trading_fees(self, params={}):
|
2264
|
+
async def fetch_trading_fees(self, params={}) -> TradingFees:
|
2265
2265
|
"""
|
2266
2266
|
fetch the trading fees for multiple markets
|
2267
2267
|
:see: https://docs.bitfinex.com/reference/rest-auth-summary
|
@@ -3325,6 +3325,7 @@ class bitfinex2(Exchange, ImplicitAPI):
|
|
3325
3325
|
'info': data,
|
3326
3326
|
'symbol': market['symbol'],
|
3327
3327
|
'type': None,
|
3328
|
+
'marginMode': 'isolated',
|
3328
3329
|
'amount': None,
|
3329
3330
|
'total': None,
|
3330
3331
|
'code': None,
|