ccxt 4.4.86__tar.gz → 4.4.88__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.86/ccxt.egg-info → ccxt-4.4.88}/PKG-INFO +18 -6
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/__init__.py +5 -1
- ccxt-4.4.88/ccxt/abstract/okxus.py +349 -0
- ccxt-4.4.88/ccxt/abstract/woofipro.py +119 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/__init__.py +5 -1
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/base/exchange.py +8 -5
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/bitteam.py +31 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/bybit.py +19 -57
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/coinmetro.py +3 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/gate.py +91 -73
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/htx.py +10 -8
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/hyperliquid.py +32 -16
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/kraken.py +5 -8
- ccxt-4.4.88/ccxt/async_support/modetrade.py +2727 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/okx.py +90 -3
- ccxt-4.4.88/ccxt/async_support/okxus.py +54 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/paradex.py +4 -1
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/phemex.py +4 -6
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/poloniex.py +172 -159
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/probit.py +18 -47
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/timex.py +5 -10
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/vertex.py +3 -4
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/whitebit.py +41 -11
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/woo.py +101 -75
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/woofipro.py +25 -20
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/xt.py +31 -41
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/base/exchange.py +13 -9
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/bitteam.py +31 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/bybit.py +19 -57
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/coinmetro.py +3 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/gate.py +91 -73
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/htx.py +10 -8
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/hyperliquid.py +32 -16
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/kraken.py +5 -8
- ccxt-4.4.88/ccxt/modetrade.py +2727 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/okx.py +90 -3
- ccxt-4.4.88/ccxt/okxus.py +54 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/paradex.py +4 -1
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/phemex.py +4 -6
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/poloniex.py +172 -159
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/__init__.py +69 -1
- ccxt-4.4.88/ccxt/pro/modetrade.py +1271 -0
- ccxt-4.4.88/ccxt/pro/okxus.py +38 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/probit.py +18 -47
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/test/tests_async.py +17 -1
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/test/tests_sync.py +17 -1
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/timex.py +5 -10
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/vertex.py +3 -4
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/whitebit.py +41 -11
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/woo.py +100 -75
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/woofipro.py +24 -20
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/xt.py +31 -41
- {ccxt-4.4.86 → ccxt-4.4.88/ccxt.egg-info}/PKG-INFO +18 -6
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt.egg-info/SOURCES.txt +8 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/package.json +1 -1
- {ccxt-4.4.86 → ccxt-4.4.88}/LICENSE.txt +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/MANIFEST.in +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/README.rst +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/alpaca.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/apex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/ascendex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/bequant.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/bigone.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/binance.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/binancecoinm.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/binanceus.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/binanceusdm.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/bingx.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/bit2c.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/bitbank.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/bitbns.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/bitfinex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/bitflyer.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/bitget.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/bithumb.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/bitmart.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/bitmex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/bitopro.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/bitrue.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/bitso.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/bitstamp.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/bitteam.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/bittrade.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/bitvavo.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/blockchaincom.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/blofin.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/btcalpha.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/btcbox.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/btcmarkets.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/btcturk.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/bybit.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/cex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/coinbase.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/coinbaseadvanced.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/coinbaseexchange.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/coinbaseinternational.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/coincatch.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/coincheck.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/coinex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/coinlist.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/coinmate.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/coinmetro.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/coinone.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/coinsph.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/coinspot.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/cryptocom.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/cryptomus.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/defx.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/delta.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/deribit.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/derive.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/digifinex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/ellipx.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/exmo.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/fmfwio.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/gate.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/gateio.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/gemini.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/hashkey.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/hitbtc.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/hollaex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/htx.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/huobi.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/hyperliquid.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/independentreserve.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/indodax.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/kraken.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/krakenfutures.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/kucoin.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/kucoinfutures.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/latoken.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/lbank.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/luno.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/mercado.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/mexc.py +0 -0
- ccxt-4.4.86/ccxt/abstract/woofipro.py → ccxt-4.4.88/ccxt/abstract/modetrade.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/myokx.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/ndax.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/novadax.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/oceanex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/okcoin.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/okx.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/onetrading.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/oxfun.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/p2b.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/paradex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/paymium.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/phemex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/poloniex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/probit.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/timex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/tokocrypto.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/tradeogre.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/upbit.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/vertex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/wavesexchange.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/whitebit.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/woo.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/xt.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/yobit.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/zaif.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/abstract/zonda.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/alpaca.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/apex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/ascendex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/alpaca.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/apex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/ascendex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/base/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/base/throttler.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/base/ws/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/base/ws/aiohttp_client.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/base/ws/cache.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/base/ws/client.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/base/ws/functions.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/base/ws/future.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/base/ws/order_book.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/base/ws/order_book_side.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/bequant.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/bigone.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/binance.py +1 -1
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/binancecoinm.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/binanceus.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/binanceusdm.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/bingx.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/bit2c.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/bitbank.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/bitbns.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/bitcoincom.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/bitfinex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/bitfinex1.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/bitflyer.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/bitget.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/bithumb.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/bitmart.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/bitmex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/bitopro.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/bitpanda.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/bitrue.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/bitso.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/bitstamp.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/bittrade.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/bitvavo.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/blockchaincom.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/blofin.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/btcalpha.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/btcbox.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/btcmarkets.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/btcturk.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/cex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/coinbase.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/coinbaseadvanced.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/coinbaseexchange.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/coinbaseinternational.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/coincatch.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/coincheck.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/coinex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/coinlist.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/coinmate.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/coinone.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/coinsph.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/coinspot.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/cryptocom.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/cryptomus.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/defx.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/delta.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/deribit.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/derive.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/digifinex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/ellipx.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/exmo.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/fmfwio.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/gateio.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/gemini.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/hashkey.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/hitbtc.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/hollaex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/huobi.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/independentreserve.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/indodax.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/krakenfutures.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/kucoin.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/kucoinfutures.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/latoken.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/lbank.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/luno.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/mercado.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/mexc.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/myokx.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/ndax.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/novadax.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/oceanex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/okcoin.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/onetrading.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/oxfun.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/p2b.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/paymium.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/poloniexfutures.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/tokocrypto.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/tradeogre.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/upbit.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/wavesexchange.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/yobit.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/zaif.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/async_support/zonda.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/base/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/base/decimal_to_precision.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/base/errors.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/base/precise.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/base/types.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/bequant.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/bigone.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/binance.py +1 -1
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/binancecoinm.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/binanceus.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/binanceusdm.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/bingx.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/bit2c.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/bitbank.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/bitbns.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/bitcoincom.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/bitfinex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/bitfinex1.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/bitflyer.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/bitget.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/bithumb.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/bitmart.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/bitmex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/bitopro.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/bitpanda.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/bitrue.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/bitso.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/bitstamp.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/bittrade.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/bitvavo.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/blockchaincom.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/blofin.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/btcalpha.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/btcbox.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/btcmarkets.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/btcturk.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/cex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/coinbase.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/coinbaseadvanced.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/coinbaseexchange.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/coinbaseinternational.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/coincatch.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/coincheck.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/coinex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/coinlist.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/coinmate.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/coinone.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/coinsph.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/coinspot.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/cryptocom.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/cryptomus.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/defx.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/delta.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/deribit.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/derive.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/digifinex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/ellipx.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/exmo.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/fmfwio.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/gateio.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/gemini.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/hashkey.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/hitbtc.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/hollaex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/huobi.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/independentreserve.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/indodax.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/krakenfutures.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/kucoin.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/kucoinfutures.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/latoken.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/lbank.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/luno.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/mercado.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/mexc.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/myokx.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/ndax.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/novadax.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/oceanex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/okcoin.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/onetrading.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/oxfun.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/p2b.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/paymium.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/poloniexfutures.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/alpaca.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/apex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/ascendex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/bequant.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/binance.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/binancecoinm.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/binanceus.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/binanceusdm.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/bingx.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/bitcoincom.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/bitfinex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/bitfinex1.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/bitget.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/bithumb.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/bitmart.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/bitmex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/bitopro.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/bitpanda.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/bitrue.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/bitstamp.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/bittrade.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/bitvavo.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/blockchaincom.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/blofin.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/bybit.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/cex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/coinbase.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/coinbaseadvanced.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/coinbaseexchange.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/coinbaseinternational.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/coincatch.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/coincheck.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/coinex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/coinone.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/cryptocom.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/defx.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/deribit.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/derive.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/exmo.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/gate.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/gateio.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/gemini.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/hashkey.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/hitbtc.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/hollaex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/htx.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/huobi.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/hyperliquid.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/independentreserve.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/kraken.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/krakenfutures.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/kucoin.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/kucoinfutures.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/lbank.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/luno.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/mexc.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/myokx.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/ndax.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/okcoin.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/okx.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/onetrading.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/oxfun.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/p2b.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/paradex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/phemex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/poloniex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/poloniexfutures.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/probit.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/tradeogre.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/upbit.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/vertex.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/wazirx.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/whitebit.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/woo.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/woofipro.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/pro/xt.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ecdsa/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ecdsa/_version.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ecdsa/curves.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ecdsa/der.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ecdsa/ecdsa.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ecdsa/ellipticcurve.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ecdsa/keys.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ecdsa/numbertheory.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ecdsa/rfc6979.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ecdsa/util.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/abi/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/abi/abi.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/abi/base.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/abi/codec.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/abi/constants.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/abi/decoding.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/abi/encoding.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/abi/exceptions.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/abi/grammar.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/abi/packed.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/abi/py.typed +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/abi/registry.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/abi/tools/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/abi/tools/_strategies.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/abi/utils/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/abi/utils/numeric.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/abi/utils/padding.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/abi/utils/string.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/account/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/account/encode_typed_data/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/account/encode_typed_data/encoding_and_hashing.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/account/encode_typed_data/helpers.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/account/messages.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/account/py.typed +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/hexbytes/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/hexbytes/_utils.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/hexbytes/main.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/hexbytes/py.typed +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/typing/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/typing/abi.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/typing/bls.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/typing/discovery.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/typing/encoding.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/typing/enums.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/typing/ethpm.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/typing/evm.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/typing/networks.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/typing/py.typed +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/utils/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/utils/abi.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/utils/address.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/utils/applicators.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/utils/conversions.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/utils/currency.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/utils/curried/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/utils/debug.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/utils/decorators.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/utils/encoding.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/utils/exceptions.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/utils/functional.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/utils/hexadecimal.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/utils/humanize.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/utils/logging.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/utils/module_loading.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/utils/numeric.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/utils/py.typed +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/utils/toolz.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/utils/types.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/utils/typing/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/utils/typing/misc.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/ethereum/utils/units.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/keccak/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/keccak/keccak.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/__pyinstaller/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/__pyinstaller/hook-lark.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/ast_utils.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/common.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/exceptions.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/grammar.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/grammars/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/indenter.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/lark.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/lexer.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/load_grammar.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/parse_tree_builder.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/parser_frontends.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/parsers/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/parsers/cyk.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/parsers/earley.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/parsers/earley_common.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/parsers/earley_forest.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/parsers/grammar_analysis.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/parsers/lalr_analysis.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/parsers/lalr_interactive_parser.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/parsers/lalr_parser.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/parsers/lalr_parser_state.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/parsers/xearley.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/py.typed +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/reconstruct.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/tools/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/tools/nearley.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/tools/serialize.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/tools/standalone.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/tree.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/tree_matcher.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/tree_templates.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/utils.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/lark/visitors.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/marshmallow/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/marshmallow/base.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/marshmallow/class_registry.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/marshmallow/decorators.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/marshmallow/error_store.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/marshmallow/exceptions.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/marshmallow/fields.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/marshmallow/orderedset.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/marshmallow/py.typed +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/marshmallow/schema.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/marshmallow/types.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/marshmallow/utils.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/marshmallow/validate.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/marshmallow/warnings.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/marshmallow_dataclass/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/marshmallow_dataclass/collection_field.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/marshmallow_dataclass/lazy_class_attribute.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/marshmallow_dataclass/mypy.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/marshmallow_dataclass/py.typed +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/marshmallow_dataclass/typing.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/marshmallow_dataclass/union_field.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/marshmallow_oneofschema/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/marshmallow_oneofschema/one_of_schema.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/marshmallow_oneofschema/py.typed +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/msgpack/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/msgpack/exceptions.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/msgpack/ext.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/msgpack/fallback.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/parsimonious/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/parsimonious/exceptions.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/parsimonious/expressions.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/parsimonious/grammar.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/parsimonious/nodes.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/parsimonious/utils.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/cairo/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/cairo/data_types.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/cairo/deprecated_parse/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/cairo/deprecated_parse/cairo_types.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser_transformer.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/cairo/felt.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/cairo/type_parser.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/cairo/v1/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/cairo/v1/type_parser.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/cairo/v2/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/cairo/v2/type_parser.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/ccxt_utils.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/common.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/constants.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/hash/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/hash/address.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/hash/compiled_class_hash_objects.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/hash/selector.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/hash/storage.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/hash/utils.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/models/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/models/typed_data.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/serialization/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/serialization/_calldata_reader.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/serialization/_context.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/serialization/data_serializers/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/serialization/data_serializers/_common.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/serialization/data_serializers/array_serializer.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/serialization/data_serializers/bool_serializer.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/serialization/data_serializers/byte_array_serializer.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/serialization/data_serializers/cairo_data_serializer.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/serialization/data_serializers/enum_serializer.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/serialization/data_serializers/felt_serializer.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/serialization/data_serializers/named_tuple_serializer.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/serialization/data_serializers/option_serializer.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/serialization/data_serializers/output_serializer.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/serialization/data_serializers/payload_serializer.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/serialization/data_serializers/struct_serializer.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/serialization/data_serializers/tuple_serializer.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/serialization/data_serializers/uint256_serializer.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/serialization/data_serializers/uint_serializer.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/serialization/data_serializers/unit_serializer.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/serialization/errors.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/serialization/factory.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/serialization/function_serialization_adapter.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/serialization/tuple_dataclass.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/utils/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/utils/constructor_args_translator.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/utils/iterable.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/utils/schema.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starknet/utils/typed_data.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starkware/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starkware/crypto/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starkware/crypto/fast_pedersen_hash.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starkware/crypto/math_utils.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starkware/crypto/signature.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/starkware/crypto/utils.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/sympy/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/sympy/core/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/sympy/core/intfunc.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/sympy/external/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/sympy/external/gmpy.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/sympy/external/importtools.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/sympy/external/ntheory.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/sympy/external/pythonmpq.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/toolz/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/toolz/_signatures.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/toolz/_version.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/toolz/compatibility.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/toolz/curried/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/toolz/curried/exceptions.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/toolz/curried/operator.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/toolz/dicttoolz.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/toolz/functoolz.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/toolz/itertoolz.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/toolz/recipes.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/toolz/utils.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/typing_inspect/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/static_dependencies/typing_inspect/typing_inspect.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/test/__init__.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/test/tests_helpers.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/test/tests_init.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/tokocrypto.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/tradeogre.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/upbit.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/wavesexchange.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/yobit.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/zaif.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt/zonda.py +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt.egg-info/dependency_links.txt +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt.egg-info/requires.txt +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/ccxt.egg-info/top_level.txt +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/setup.cfg +0 -0
- {ccxt-4.4.86 → ccxt-4.4.88}/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.88
|
4
4
|
Summary: A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 100+ exchanges
|
5
5
|
Home-page: https://ccxt.com
|
6
6
|
Author: Igor Kroitor
|
@@ -38,7 +38,7 @@ License-File: LICENSE.txt
|
|
38
38
|
|
39
39
|
# CCXT – CryptoCurrency eXchange Trading Library
|
40
40
|
|
41
|
-
[](https://www.npmjs.com/package/ccxt) [](https://npmjs.com/package/ccxt) [](https://pypi.python.org/pypi/ccxt) [](https://www.nuget.org/packages/ccxt) [](https://godoc.org/github.com/ccxt/ccxt/go/v4) [](https://discord.gg/ccxt) [](https://www.npmjs.com/package/ccxt) [](https://npmjs.com/package/ccxt) [](https://pypi.python.org/pypi/ccxt) [](https://www.nuget.org/packages/ccxt) [](https://godoc.org/github.com/ccxt/ccxt/go/v4) [](https://discord.gg/ccxt) [](https://github.com/ccxt/ccxt/wiki/Exchange-Markets) [](https://x.com/ccxt_official)
|
42
42
|
|
43
43
|
A `JavaScript` / `Python` / `PHP` / `C#` / `Go` library for cryptocurrency trading and e-commerce with support for many bitcoin/ether/altcoin exchange markets and merchant APIs.
|
44
44
|
|
@@ -56,6 +56,15 @@ Current feature list:
|
|
56
56
|
- an out of the box unified API that is extremely easy to integrate
|
57
57
|
- works in Node 10.4+, Python 3, PHP 8.1+, netstandard2.0/2.1, Go 1.20+ and web browsers
|
58
58
|
|
59
|
+
## Disclaimer
|
60
|
+
|
61
|
+
CCXT is not a service nor a server. CCXT is a software. **CCXT is a free open source non-custodian API broker software under MIT license**.
|
62
|
+
|
63
|
+
- **Non-custodian** means CCXT is not an intermediary in trading, it does not hold traders' money at any point in time, traders install CCXT and use CCXT to talk to exchanges directly.
|
64
|
+
- **MIT license** means CCXT can be used for any purpose, but use at your own risk without any warranties.
|
65
|
+
- **API broker** means CCXT is funded with rebates from exchanges' API broker programs and it is an official API broker with many exchanges. Broker rebates from trading fees range from 30% to 65%. All rebates and related fees are handled by the exchanges solely in accordance with exchanges' respective terms and conditions established by each partner exchange.
|
66
|
+
- **Free software** means CCXT is free to use and has no hidden fees, with CCXT traders pay the same trading fees they would pay to the exchanges directly.
|
67
|
+
- **Open source** means anyone is allowed to use it, to look inside the code and to change everything, including other brokers.
|
59
68
|
|
60
69
|
## See Also
|
61
70
|
|
@@ -86,12 +95,13 @@ Current feature list:
|
|
86
95
|
| [](https://www.kucoin.com/ucenter/signup?rcode=E5wkqe) | kucoin | [KuCoin](https://www.kucoin.com/ucenter/signup?rcode=E5wkqe) | [](https://docs.kucoin.com) |  | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) | |
|
87
96
|
| [](https://futures.kucoin.com/?rcode=E5wkqe) | kucoinfutures | [KuCoin Futures](https://futures.kucoin.com/?rcode=E5wkqe) | [](https://docs.kucoin.com/futures) |  | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) | |
|
88
97
|
| [](https://www.mexc.com/register?inviteCode=mexc-1FQ1GNu1) | mexc | [MEXC Global](https://www.mexc.com/register?inviteCode=mexc-1FQ1GNu1) | [](https://mexcdevelop.github.io/apidocs/) |  | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) | |
|
98
|
+
| [](https://trade.mode.network?ref=MODETRADE) | modetrade | [Mode Trade](https://trade.mode.network?ref=MODETRADE) | [](undefined) |  | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) | [](https://trade.mode.network?ref=MODETRADE) |
|
89
99
|
| [](https://www.okx.com/join/CCXT2023) | okx | [OKX](https://www.okx.com/join/CCXT2023) | [](https://www.okx.com/docs-v5/en/) |  | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) | [](https://www.okx.com/join/CCXT2023) |
|
90
100
|
| [](https://woox.io/register?ref=DIJT0CNL) | woo | [WOO X](https://woox.io/register?ref=DIJT0CNL) | [](https://docs.woox.io/) |  | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) | [](https://woox.io/register?ref=DIJT0CNL) |
|
91
101
|
| [](https://dex.woo.org/en/trade?ref=CCXT) | woofipro | [WOOFI PRO](https://dex.woo.org/en/trade?ref=CCXT) | [](https://orderly.network/docs/build-on-evm/building-on-evm) |  | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) | [](https://dex.woo.org/en/trade?ref=CCXT) |
|
92
102
|
|
93
103
|
## Supported Cryptocurrency Exchanges
|
94
|
-
<!--- init list -->The CCXT library currently supports the following
|
104
|
+
<!--- init list -->The CCXT library currently supports the following 103 cryptocurrency exchange markets and trading APIs:
|
95
105
|
|
96
106
|
|logo |id |name |ver |type |certified |pro |
|
97
107
|
|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------|----------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------:|--------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------|
|
@@ -169,12 +179,14 @@ Current feature list:
|
|
169
179
|
| [](https://www.luno.com/invite/44893A) | luno | [luno](https://www.luno.com/invite/44893A) | [](https://www.luno.com/en/api) |  | | [](https://ccxt.pro) |
|
170
180
|
| [](https://www.mercadobitcoin.com.br) | mercado | [Mercado Bitcoin](https://www.mercadobitcoin.com.br) | [](https://www.mercadobitcoin.com.br/api-doc) |  | | |
|
171
181
|
| [](https://www.mexc.com/register?inviteCode=mexc-1FQ1GNu1) | mexc | [MEXC Global](https://www.mexc.com/register?inviteCode=mexc-1FQ1GNu1) | [](https://mexcdevelop.github.io/apidocs/) |  | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) |
|
182
|
+
| [](https://trade.mode.network?ref=MODETRADE) | modetrade | [Mode Trade](https://trade.mode.network?ref=MODETRADE) | [](undefined) |  | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) |
|
172
183
|
| [](https://www.my.okx.com/join/CCXT2023) | myokx | [MyOKX (EEA)](https://www.my.okx.com/join/CCXT2023) | [](https://my.okx.com/docs-v5/en/#overview) |  | | [](https://ccxt.pro) |
|
173
184
|
| [](https://one.ndax.io/bfQiSL) | ndax | [NDAX](https://one.ndax.io/bfQiSL) | [](https://apidoc.ndax.io/) |  | | [](https://ccxt.pro) |
|
174
185
|
| [](https://www.novadax.com.br/?s=ccxt) | novadax | [NovaDAX](https://www.novadax.com.br/?s=ccxt) | [](https://doc.novadax.com/pt-BR/) |  | | |
|
175
186
|
| [](https://oceanex.pro/signup?referral=VE24QX) | oceanex | [OceanEx](https://oceanex.pro/signup?referral=VE24QX) | [](https://api.oceanex.pro/doc/v1) |  | | |
|
176
187
|
| [](https://www.okcoin.com/account/register?flag=activity&channelId=600001513) | okcoin | [OKCoin](https://www.okcoin.com/account/register?flag=activity&channelId=600001513) | [](https://www.okcoin.com/docs/en/) |  | | [](https://ccxt.pro) |
|
177
188
|
| [](https://www.okx.com/join/CCXT2023) | okx | [OKX](https://www.okx.com/join/CCXT2023) | [](https://www.okx.com/docs-v5/en/) |  | [](https://github.com/ccxt/ccxt/wiki/Certification) | [](https://ccxt.pro) |
|
189
|
+
| [](https://www.app.okx.com/join/CCXT2023) | okxus | [OKX (US)](https://www.app.okx.com/join/CCXT2023) | [](https://app.okx.com/docs-v5/en/#overview) |  | | [](https://ccxt.pro) |
|
178
190
|
| [](https://onetrading.com/) | onetrading | [One Trading](https://onetrading.com/) | [](https://docs.onetrading.com) |  | | [](https://ccxt.pro) |
|
179
191
|
| [](https://ox.fun/register?shareAccountId=5ZUD4a7G) | oxfun | [OXFUN](https://ox.fun/register?shareAccountId=5ZUD4a7G) | [](https://docs.ox.fun/) |  | | [](https://ccxt.pro) |
|
180
192
|
| [](https://p2pb2b.com?referral=ee784c53) | p2b | [p2b](https://p2pb2b.com?referral=ee784c53) | [](https://github.com/P2B-team/p2b-api-docs/blob/master/api-doc.md) |  | | [](https://ccxt.pro) |
|
@@ -257,13 +269,13 @@ console.log(version, Object.keys(exchanges));
|
|
257
269
|
|
258
270
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
259
271
|
|
260
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.
|
261
|
-
* unpkg: https://unpkg.com/ccxt@4.4.
|
272
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.88/dist/ccxt.browser.min.js
|
273
|
+
* unpkg: https://unpkg.com/ccxt@4.4.88/dist/ccxt.browser.min.js
|
262
274
|
|
263
275
|
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.
|
264
276
|
|
265
277
|
```HTML
|
266
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.
|
278
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.88/dist/ccxt.browser.min.js"></script>
|
267
279
|
```
|
268
280
|
|
269
281
|
Creates a global `ccxt` object:
|
@@ -22,7 +22,7 @@
|
|
22
22
|
|
23
23
|
# ----------------------------------------------------------------------------
|
24
24
|
|
25
|
-
__version__ = '4.4.
|
25
|
+
__version__ = '4.4.88'
|
26
26
|
|
27
27
|
# ----------------------------------------------------------------------------
|
28
28
|
|
@@ -160,12 +160,14 @@ from ccxt.lbank import lbank # noqa: F4
|
|
160
160
|
from ccxt.luno import luno # noqa: F401
|
161
161
|
from ccxt.mercado import mercado # noqa: F401
|
162
162
|
from ccxt.mexc import mexc # noqa: F401
|
163
|
+
from ccxt.modetrade import modetrade # noqa: F401
|
163
164
|
from ccxt.myokx import myokx # noqa: F401
|
164
165
|
from ccxt.ndax import ndax # noqa: F401
|
165
166
|
from ccxt.novadax import novadax # noqa: F401
|
166
167
|
from ccxt.oceanex import oceanex # noqa: F401
|
167
168
|
from ccxt.okcoin import okcoin # noqa: F401
|
168
169
|
from ccxt.okx import okx # noqa: F401
|
170
|
+
from ccxt.okxus import okxus # noqa: F401
|
169
171
|
from ccxt.onetrading import onetrading # noqa: F401
|
170
172
|
from ccxt.oxfun import oxfun # noqa: F401
|
171
173
|
from ccxt.p2b import p2b # noqa: F401
|
@@ -266,12 +268,14 @@ exchanges = [
|
|
266
268
|
'luno',
|
267
269
|
'mercado',
|
268
270
|
'mexc',
|
271
|
+
'modetrade',
|
269
272
|
'myokx',
|
270
273
|
'ndax',
|
271
274
|
'novadax',
|
272
275
|
'oceanex',
|
273
276
|
'okcoin',
|
274
277
|
'okx',
|
278
|
+
'okxus',
|
275
279
|
'onetrading',
|
276
280
|
'oxfun',
|
277
281
|
'p2b',
|
@@ -0,0 +1,349 @@
|
|
1
|
+
from ccxt.base.types import Entry
|
2
|
+
|
3
|
+
|
4
|
+
class ImplicitAPI:
|
5
|
+
public_get_market_books_full = publicGetMarketBooksFull = Entry('market/books-full', 'public', 'GET', {'cost': 2})
|
6
|
+
public_get_market_tickers = publicGetMarketTickers = Entry('market/tickers', 'public', 'GET', {'cost': 1})
|
7
|
+
public_get_market_ticker = publicGetMarketTicker = Entry('market/ticker', 'public', 'GET', {'cost': 1})
|
8
|
+
public_get_market_index_tickers = publicGetMarketIndexTickers = Entry('market/index-tickers', 'public', 'GET', {'cost': 1})
|
9
|
+
public_get_market_books = publicGetMarketBooks = Entry('market/books', 'public', 'GET', {'cost': 0.5})
|
10
|
+
public_get_market_books_lite = publicGetMarketBooksLite = Entry('market/books-lite', 'public', 'GET', {'cost': 1.6666666666666667})
|
11
|
+
public_get_market_candles = publicGetMarketCandles = Entry('market/candles', 'public', 'GET', {'cost': 0.5})
|
12
|
+
public_get_market_history_candles = publicGetMarketHistoryCandles = Entry('market/history-candles', 'public', 'GET', {'cost': 1})
|
13
|
+
public_get_market_index_candles = publicGetMarketIndexCandles = Entry('market/index-candles', 'public', 'GET', {'cost': 1})
|
14
|
+
public_get_market_history_index_candles = publicGetMarketHistoryIndexCandles = Entry('market/history-index-candles', 'public', 'GET', {'cost': 2})
|
15
|
+
public_get_market_mark_price_candles = publicGetMarketMarkPriceCandles = Entry('market/mark-price-candles', 'public', 'GET', {'cost': 1})
|
16
|
+
public_get_market_history_mark_price_candles = publicGetMarketHistoryMarkPriceCandles = Entry('market/history-mark-price-candles', 'public', 'GET', {'cost': 2})
|
17
|
+
public_get_market_trades = publicGetMarketTrades = Entry('market/trades', 'public', 'GET', {'cost': 0.2})
|
18
|
+
public_get_market_history_trades = publicGetMarketHistoryTrades = Entry('market/history-trades', 'public', 'GET', {'cost': 2})
|
19
|
+
public_get_market_option_instrument_family_trades = publicGetMarketOptionInstrumentFamilyTrades = Entry('market/option/instrument-family-trades', 'public', 'GET', {'cost': 1})
|
20
|
+
public_get_market_platform_24_volume = publicGetMarketPlatform24Volume = Entry('market/platform-24-volume', 'public', 'GET', {'cost': 10})
|
21
|
+
public_get_market_open_oracle = publicGetMarketOpenOracle = Entry('market/open-oracle', 'public', 'GET', {'cost': 50})
|
22
|
+
public_get_market_exchange_rate = publicGetMarketExchangeRate = Entry('market/exchange-rate', 'public', 'GET', {'cost': 20})
|
23
|
+
public_get_market_index_components = publicGetMarketIndexComponents = Entry('market/index-components', 'public', 'GET', {'cost': 1})
|
24
|
+
public_get_public_economic_calendar = publicGetPublicEconomicCalendar = Entry('public/economic-calendar', 'public', 'GET', {'cost': 50})
|
25
|
+
public_get_market_block_tickers = publicGetMarketBlockTickers = Entry('market/block-tickers', 'public', 'GET', {'cost': 1})
|
26
|
+
public_get_market_block_ticker = publicGetMarketBlockTicker = Entry('market/block-ticker', 'public', 'GET', {'cost': 1})
|
27
|
+
public_get_public_block_trades = publicGetPublicBlockTrades = Entry('public/block-trades', 'public', 'GET', {'cost': 1})
|
28
|
+
public_get_public_instruments = publicGetPublicInstruments = Entry('public/instruments', 'public', 'GET', {'cost': 1})
|
29
|
+
public_get_public_delivery_exercise_history = publicGetPublicDeliveryExerciseHistory = Entry('public/delivery-exercise-history', 'public', 'GET', {'cost': 0.5})
|
30
|
+
public_get_public_open_interest = publicGetPublicOpenInterest = Entry('public/open-interest', 'public', 'GET', {'cost': 1})
|
31
|
+
public_get_public_funding_rate = publicGetPublicFundingRate = Entry('public/funding-rate', 'public', 'GET', {'cost': 1})
|
32
|
+
public_get_public_funding_rate_history = publicGetPublicFundingRateHistory = Entry('public/funding-rate-history', 'public', 'GET', {'cost': 1})
|
33
|
+
public_get_public_price_limit = publicGetPublicPriceLimit = Entry('public/price-limit', 'public', 'GET', {'cost': 1})
|
34
|
+
public_get_public_opt_summary = publicGetPublicOptSummary = Entry('public/opt-summary', 'public', 'GET', {'cost': 1})
|
35
|
+
public_get_public_estimated_price = publicGetPublicEstimatedPrice = Entry('public/estimated-price', 'public', 'GET', {'cost': 2})
|
36
|
+
public_get_public_discount_rate_interest_free_quota = publicGetPublicDiscountRateInterestFreeQuota = Entry('public/discount-rate-interest-free-quota', 'public', 'GET', {'cost': 10})
|
37
|
+
public_get_public_time = publicGetPublicTime = Entry('public/time', 'public', 'GET', {'cost': 2})
|
38
|
+
public_get_public_mark_price = publicGetPublicMarkPrice = Entry('public/mark-price', 'public', 'GET', {'cost': 2})
|
39
|
+
public_get_public_position_tiers = publicGetPublicPositionTiers = Entry('public/position-tiers', 'public', 'GET', {'cost': 2})
|
40
|
+
public_get_public_interest_rate_loan_quota = publicGetPublicInterestRateLoanQuota = Entry('public/interest-rate-loan-quota', 'public', 'GET', {'cost': 10})
|
41
|
+
public_get_public_vip_interest_rate_loan_quota = publicGetPublicVipInterestRateLoanQuota = Entry('public/vip-interest-rate-loan-quota', 'public', 'GET', {'cost': 10})
|
42
|
+
public_get_public_underlying = publicGetPublicUnderlying = Entry('public/underlying', 'public', 'GET', {'cost': 1})
|
43
|
+
public_get_public_insurance_fund = publicGetPublicInsuranceFund = Entry('public/insurance-fund', 'public', 'GET', {'cost': 2})
|
44
|
+
public_get_public_convert_contract_coin = publicGetPublicConvertContractCoin = Entry('public/convert-contract-coin', 'public', 'GET', {'cost': 2})
|
45
|
+
public_get_public_option_trades = publicGetPublicOptionTrades = Entry('public/option-trades', 'public', 'GET', {'cost': 1})
|
46
|
+
public_get_public_instrument_tick_bands = publicGetPublicInstrumentTickBands = Entry('public/instrument-tick-bands', 'public', 'GET', {'cost': 4})
|
47
|
+
public_get_rubik_stat_trading_data_support_coin = publicGetRubikStatTradingDataSupportCoin = Entry('rubik/stat/trading-data/support-coin', 'public', 'GET', {'cost': 4})
|
48
|
+
public_get_rubik_stat_taker_volume = publicGetRubikStatTakerVolume = Entry('rubik/stat/taker-volume', 'public', 'GET', {'cost': 4})
|
49
|
+
public_get_rubik_stat_margin_loan_ratio = publicGetRubikStatMarginLoanRatio = Entry('rubik/stat/margin/loan-ratio', 'public', 'GET', {'cost': 4})
|
50
|
+
public_get_rubik_stat_contracts_long_short_account_ratio = publicGetRubikStatContractsLongShortAccountRatio = Entry('rubik/stat/contracts/long-short-account-ratio', 'public', 'GET', {'cost': 4})
|
51
|
+
public_get_rubik_stat_contracts_long_short_account_ratio_contract = publicGetRubikStatContractsLongShortAccountRatioContract = Entry('rubik/stat/contracts/long-short-account-ratio-contract', 'public', 'GET', {'cost': 4})
|
52
|
+
public_get_rubik_stat_contracts_open_interest_volume = publicGetRubikStatContractsOpenInterestVolume = Entry('rubik/stat/contracts/open-interest-volume', 'public', 'GET', {'cost': 4})
|
53
|
+
public_get_rubik_stat_option_open_interest_volume = publicGetRubikStatOptionOpenInterestVolume = Entry('rubik/stat/option/open-interest-volume', 'public', 'GET', {'cost': 4})
|
54
|
+
public_get_rubik_stat_option_open_interest_volume_ratio = publicGetRubikStatOptionOpenInterestVolumeRatio = Entry('rubik/stat/option/open-interest-volume-ratio', 'public', 'GET', {'cost': 4})
|
55
|
+
public_get_rubik_stat_option_open_interest_volume_expiry = publicGetRubikStatOptionOpenInterestVolumeExpiry = Entry('rubik/stat/option/open-interest-volume-expiry', 'public', 'GET', {'cost': 4})
|
56
|
+
public_get_rubik_stat_option_open_interest_volume_strike = publicGetRubikStatOptionOpenInterestVolumeStrike = Entry('rubik/stat/option/open-interest-volume-strike', 'public', 'GET', {'cost': 4})
|
57
|
+
public_get_rubik_stat_option_taker_block_volume = publicGetRubikStatOptionTakerBlockVolume = Entry('rubik/stat/option/taker-block-volume', 'public', 'GET', {'cost': 4})
|
58
|
+
public_get_system_status = publicGetSystemStatus = Entry('system/status', 'public', 'GET', {'cost': 50})
|
59
|
+
public_get_sprd_spreads = publicGetSprdSpreads = Entry('sprd/spreads', 'public', 'GET', {'cost': 1})
|
60
|
+
public_get_sprd_books = publicGetSprdBooks = Entry('sprd/books', 'public', 'GET', {'cost': 0.5})
|
61
|
+
public_get_sprd_ticker = publicGetSprdTicker = Entry('sprd/ticker', 'public', 'GET', {'cost': 1})
|
62
|
+
public_get_sprd_public_trades = publicGetSprdPublicTrades = Entry('sprd/public-trades', 'public', 'GET', {'cost': 0.2})
|
63
|
+
public_get_market_sprd_ticker = publicGetMarketSprdTicker = Entry('market/sprd-ticker', 'public', 'GET', {'cost': 2})
|
64
|
+
public_get_market_sprd_candles = publicGetMarketSprdCandles = Entry('market/sprd-candles', 'public', 'GET', {'cost': 2})
|
65
|
+
public_get_market_sprd_history_candles = publicGetMarketSprdHistoryCandles = Entry('market/sprd-history-candles', 'public', 'GET', {'cost': 2})
|
66
|
+
public_get_tradingbot_grid_ai_param = publicGetTradingBotGridAiParam = Entry('tradingBot/grid/ai-param', 'public', 'GET', {'cost': 1})
|
67
|
+
public_get_tradingbot_grid_min_investment = publicGetTradingBotGridMinInvestment = Entry('tradingBot/grid/min-investment', 'public', 'GET', {'cost': 1})
|
68
|
+
public_get_tradingbot_public_rsi_back_testing = publicGetTradingBotPublicRsiBackTesting = Entry('tradingBot/public/rsi-back-testing', 'public', 'GET', {'cost': 1})
|
69
|
+
public_get_asset_exchange_list = publicGetAssetExchangeList = Entry('asset/exchange-list', 'public', 'GET', {'cost': 1.6666666666666667})
|
70
|
+
public_get_finance_staking_defi_eth_apy_history = publicGetFinanceStakingDefiEthApyHistory = Entry('finance/staking-defi/eth/apy-history', 'public', 'GET', {'cost': 1.6666666666666667})
|
71
|
+
public_get_finance_staking_defi_sol_apy_history = publicGetFinanceStakingDefiSolApyHistory = Entry('finance/staking-defi/sol/apy-history', 'public', 'GET', {'cost': 1.6666666666666667})
|
72
|
+
public_get_finance_savings_lending_rate_summary = publicGetFinanceSavingsLendingRateSummary = Entry('finance/savings/lending-rate-summary', 'public', 'GET', {'cost': 1.6666666666666667})
|
73
|
+
public_get_finance_savings_lending_rate_history = publicGetFinanceSavingsLendingRateHistory = Entry('finance/savings/lending-rate-history', 'public', 'GET', {'cost': 1.6666666666666667})
|
74
|
+
public_get_finance_fixed_loan_lending_offers = publicGetFinanceFixedLoanLendingOffers = Entry('finance/fixed-loan/lending-offers', 'public', 'GET', {'cost': 3.3333333333333335})
|
75
|
+
public_get_finance_fixed_loan_lending_apy_history = publicGetFinanceFixedLoanLendingApyHistory = Entry('finance/fixed-loan/lending-apy-history', 'public', 'GET', {'cost': 3.3333333333333335})
|
76
|
+
public_get_finance_fixed_loan_pending_lending_volume = publicGetFinanceFixedLoanPendingLendingVolume = Entry('finance/fixed-loan/pending-lending-volume', 'public', 'GET', {'cost': 3.3333333333333335})
|
77
|
+
public_get_finance_sfp_dcd_products = publicGetFinanceSfpDcdProducts = Entry('finance/sfp/dcd/products', 'public', 'GET', {'cost': 0.6666666666666666})
|
78
|
+
public_get_copytrading_public_lead_traders = publicGetCopytradingPublicLeadTraders = Entry('copytrading/public-lead-traders', 'public', 'GET', {'cost': 4})
|
79
|
+
public_get_copytrading_public_weekly_pnl = publicGetCopytradingPublicWeeklyPnl = Entry('copytrading/public-weekly-pnl', 'public', 'GET', {'cost': 4})
|
80
|
+
public_get_copytrading_public_stats = publicGetCopytradingPublicStats = Entry('copytrading/public-stats', 'public', 'GET', {'cost': 4})
|
81
|
+
public_get_copytrading_public_preference_currency = publicGetCopytradingPublicPreferenceCurrency = Entry('copytrading/public-preference-currency', 'public', 'GET', {'cost': 4})
|
82
|
+
public_get_copytrading_public_current_subpositions = publicGetCopytradingPublicCurrentSubpositions = Entry('copytrading/public-current-subpositions', 'public', 'GET', {'cost': 4})
|
83
|
+
public_get_copytrading_public_subpositions_history = publicGetCopytradingPublicSubpositionsHistory = Entry('copytrading/public-subpositions-history', 'public', 'GET', {'cost': 4})
|
84
|
+
public_get_support_announcements_types = publicGetSupportAnnouncementsTypes = Entry('support/announcements-types', 'public', 'GET', {'cost': 20})
|
85
|
+
private_get_rfq_counterparties = privateGetRfqCounterparties = Entry('rfq/counterparties', 'private', 'GET', {'cost': 4})
|
86
|
+
private_get_rfq_maker_instrument_settings = privateGetRfqMakerInstrumentSettings = Entry('rfq/maker-instrument-settings', 'private', 'GET', {'cost': 4})
|
87
|
+
private_get_rfq_mmp_config = privateGetRfqMmpConfig = Entry('rfq/mmp-config', 'private', 'GET', {'cost': 4})
|
88
|
+
private_get_rfq_rfqs = privateGetRfqRfqs = Entry('rfq/rfqs', 'private', 'GET', {'cost': 10})
|
89
|
+
private_get_rfq_quotes = privateGetRfqQuotes = Entry('rfq/quotes', 'private', 'GET', {'cost': 10})
|
90
|
+
private_get_rfq_trades = privateGetRfqTrades = Entry('rfq/trades', 'private', 'GET', {'cost': 4})
|
91
|
+
private_get_rfq_public_trades = privateGetRfqPublicTrades = Entry('rfq/public-trades', 'private', 'GET', {'cost': 4})
|
92
|
+
private_get_sprd_order = privateGetSprdOrder = Entry('sprd/order', 'private', 'GET', {'cost': 0.3333333333333333})
|
93
|
+
private_get_sprd_orders_pending = privateGetSprdOrdersPending = Entry('sprd/orders-pending', 'private', 'GET', {'cost': 0.3333333333333333})
|
94
|
+
private_get_sprd_orders_history = privateGetSprdOrdersHistory = Entry('sprd/orders-history', 'private', 'GET', {'cost': 0.5})
|
95
|
+
private_get_sprd_orders_history_archive = privateGetSprdOrdersHistoryArchive = Entry('sprd/orders-history-archive', 'private', 'GET', {'cost': 0.5})
|
96
|
+
private_get_sprd_trades = privateGetSprdTrades = Entry('sprd/trades', 'private', 'GET', {'cost': 0.3333333333333333})
|
97
|
+
private_get_trade_order = privateGetTradeOrder = Entry('trade/order', 'private', 'GET', {'cost': 0.3333333333333333})
|
98
|
+
private_get_trade_orders_pending = privateGetTradeOrdersPending = Entry('trade/orders-pending', 'private', 'GET', {'cost': 0.3333333333333333})
|
99
|
+
private_get_trade_orders_history = privateGetTradeOrdersHistory = Entry('trade/orders-history', 'private', 'GET', {'cost': 0.5})
|
100
|
+
private_get_trade_orders_history_archive = privateGetTradeOrdersHistoryArchive = Entry('trade/orders-history-archive', 'private', 'GET', {'cost': 1})
|
101
|
+
private_get_trade_fills = privateGetTradeFills = Entry('trade/fills', 'private', 'GET', {'cost': 0.3333333333333333})
|
102
|
+
private_get_trade_fills_history = privateGetTradeFillsHistory = Entry('trade/fills-history', 'private', 'GET', {'cost': 2.2})
|
103
|
+
private_get_trade_fills_archive = privateGetTradeFillsArchive = Entry('trade/fills-archive', 'private', 'GET', {'cost': 2})
|
104
|
+
private_get_trade_order_algo = privateGetTradeOrderAlgo = Entry('trade/order-algo', 'private', 'GET', {'cost': 1})
|
105
|
+
private_get_trade_orders_algo_pending = privateGetTradeOrdersAlgoPending = Entry('trade/orders-algo-pending', 'private', 'GET', {'cost': 1})
|
106
|
+
private_get_trade_orders_algo_history = privateGetTradeOrdersAlgoHistory = Entry('trade/orders-algo-history', 'private', 'GET', {'cost': 1})
|
107
|
+
private_get_trade_easy_convert_currency_list = privateGetTradeEasyConvertCurrencyList = Entry('trade/easy-convert-currency-list', 'private', 'GET', {'cost': 20})
|
108
|
+
private_get_trade_easy_convert_history = privateGetTradeEasyConvertHistory = Entry('trade/easy-convert-history', 'private', 'GET', {'cost': 20})
|
109
|
+
private_get_trade_one_click_repay_currency_list = privateGetTradeOneClickRepayCurrencyList = Entry('trade/one-click-repay-currency-list', 'private', 'GET', {'cost': 20})
|
110
|
+
private_get_trade_one_click_repay_currency_list_v2 = privateGetTradeOneClickRepayCurrencyListV2 = Entry('trade/one-click-repay-currency-list-v2', 'private', 'GET', {'cost': 20})
|
111
|
+
private_get_trade_one_click_repay_history = privateGetTradeOneClickRepayHistory = Entry('trade/one-click-repay-history', 'private', 'GET', {'cost': 20})
|
112
|
+
private_get_trade_one_click_repay_history_v2 = privateGetTradeOneClickRepayHistoryV2 = Entry('trade/one-click-repay-history-v2', 'private', 'GET', {'cost': 20})
|
113
|
+
private_get_trade_account_rate_limit = privateGetTradeAccountRateLimit = Entry('trade/account-rate-limit', 'private', 'GET', {'cost': 1})
|
114
|
+
private_get_asset_currencies = privateGetAssetCurrencies = Entry('asset/currencies', 'private', 'GET', {'cost': 1.6666666666666667})
|
115
|
+
private_get_asset_balances = privateGetAssetBalances = Entry('asset/balances', 'private', 'GET', {'cost': 1.6666666666666667})
|
116
|
+
private_get_asset_non_tradable_assets = privateGetAssetNonTradableAssets = Entry('asset/non-tradable-assets', 'private', 'GET', {'cost': 1.6666666666666667})
|
117
|
+
private_get_asset_asset_valuation = privateGetAssetAssetValuation = Entry('asset/asset-valuation', 'private', 'GET', {'cost': 10})
|
118
|
+
private_get_asset_transfer_state = privateGetAssetTransferState = Entry('asset/transfer-state', 'private', 'GET', {'cost': 10})
|
119
|
+
private_get_asset_bills = privateGetAssetBills = Entry('asset/bills', 'private', 'GET', {'cost': 1.6666666666666667})
|
120
|
+
private_get_asset_deposit_lightning = privateGetAssetDepositLightning = Entry('asset/deposit-lightning', 'private', 'GET', {'cost': 5})
|
121
|
+
private_get_asset_deposit_address = privateGetAssetDepositAddress = Entry('asset/deposit-address', 'private', 'GET', {'cost': 1.6666666666666667})
|
122
|
+
private_get_asset_deposit_history = privateGetAssetDepositHistory = Entry('asset/deposit-history', 'private', 'GET', {'cost': 1.6666666666666667})
|
123
|
+
private_get_asset_withdrawal_history = privateGetAssetWithdrawalHistory = Entry('asset/withdrawal-history', 'private', 'GET', {'cost': 1.6666666666666667})
|
124
|
+
private_get_asset_deposit_withdraw_status = privateGetAssetDepositWithdrawStatus = Entry('asset/deposit-withdraw-status', 'private', 'GET', {'cost': 20})
|
125
|
+
private_get_asset_convert_currencies = privateGetAssetConvertCurrencies = Entry('asset/convert/currencies', 'private', 'GET', {'cost': 1.6666666666666667})
|
126
|
+
private_get_asset_convert_currency_pair = privateGetAssetConvertCurrencyPair = Entry('asset/convert/currency-pair', 'private', 'GET', {'cost': 1.6666666666666667})
|
127
|
+
private_get_asset_convert_history = privateGetAssetConvertHistory = Entry('asset/convert/history', 'private', 'GET', {'cost': 1.6666666666666667})
|
128
|
+
private_get_asset_monthly_statement = privateGetAssetMonthlyStatement = Entry('asset/monthly-statement', 'private', 'GET', {'cost': 2})
|
129
|
+
private_get_account_instruments = privateGetAccountInstruments = Entry('account/instruments', 'private', 'GET', {'cost': 1})
|
130
|
+
private_get_account_balance = privateGetAccountBalance = Entry('account/balance', 'private', 'GET', {'cost': 2})
|
131
|
+
private_get_account_positions = privateGetAccountPositions = Entry('account/positions', 'private', 'GET', {'cost': 2})
|
132
|
+
private_get_account_positions_history = privateGetAccountPositionsHistory = Entry('account/positions-history', 'private', 'GET', {'cost': 100})
|
133
|
+
private_get_account_account_position_risk = privateGetAccountAccountPositionRisk = Entry('account/account-position-risk', 'private', 'GET', {'cost': 2})
|
134
|
+
private_get_account_bills = privateGetAccountBills = Entry('account/bills', 'private', 'GET', {'cost': 1.6666666666666667})
|
135
|
+
private_get_account_bills_archive = privateGetAccountBillsArchive = Entry('account/bills-archive', 'private', 'GET', {'cost': 1.6666666666666667})
|
136
|
+
private_get_account_bills_history_archive = privateGetAccountBillsHistoryArchive = Entry('account/bills-history-archive', 'private', 'GET', {'cost': 2})
|
137
|
+
private_get_account_config = privateGetAccountConfig = Entry('account/config', 'private', 'GET', {'cost': 4})
|
138
|
+
private_get_account_max_size = privateGetAccountMaxSize = Entry('account/max-size', 'private', 'GET', {'cost': 1})
|
139
|
+
private_get_account_max_avail_size = privateGetAccountMaxAvailSize = Entry('account/max-avail-size', 'private', 'GET', {'cost': 1})
|
140
|
+
private_get_account_leverage_info = privateGetAccountLeverageInfo = Entry('account/leverage-info', 'private', 'GET', {'cost': 1})
|
141
|
+
private_get_account_adjust_leverage_info = privateGetAccountAdjustLeverageInfo = Entry('account/adjust-leverage-info', 'private', 'GET', {'cost': 4})
|
142
|
+
private_get_account_max_loan = privateGetAccountMaxLoan = Entry('account/max-loan', 'private', 'GET', {'cost': 1})
|
143
|
+
private_get_account_trade_fee = privateGetAccountTradeFee = Entry('account/trade-fee', 'private', 'GET', {'cost': 4})
|
144
|
+
private_get_account_interest_accrued = privateGetAccountInterestAccrued = Entry('account/interest-accrued', 'private', 'GET', {'cost': 4})
|
145
|
+
private_get_account_interest_rate = privateGetAccountInterestRate = Entry('account/interest-rate', 'private', 'GET', {'cost': 4})
|
146
|
+
private_get_account_max_withdrawal = privateGetAccountMaxWithdrawal = Entry('account/max-withdrawal', 'private', 'GET', {'cost': 1})
|
147
|
+
private_get_account_risk_state = privateGetAccountRiskState = Entry('account/risk-state', 'private', 'GET', {'cost': 2})
|
148
|
+
private_get_account_quick_margin_borrow_repay_history = privateGetAccountQuickMarginBorrowRepayHistory = Entry('account/quick-margin-borrow-repay-history', 'private', 'GET', {'cost': 4})
|
149
|
+
private_get_account_borrow_repay_history = privateGetAccountBorrowRepayHistory = Entry('account/borrow-repay-history', 'private', 'GET', {'cost': 4})
|
150
|
+
private_get_account_vip_interest_accrued = privateGetAccountVipInterestAccrued = Entry('account/vip-interest-accrued', 'private', 'GET', {'cost': 4})
|
151
|
+
private_get_account_vip_interest_deducted = privateGetAccountVipInterestDeducted = Entry('account/vip-interest-deducted', 'private', 'GET', {'cost': 4})
|
152
|
+
private_get_account_vip_loan_order_list = privateGetAccountVipLoanOrderList = Entry('account/vip-loan-order-list', 'private', 'GET', {'cost': 4})
|
153
|
+
private_get_account_vip_loan_order_detail = privateGetAccountVipLoanOrderDetail = Entry('account/vip-loan-order-detail', 'private', 'GET', {'cost': 4})
|
154
|
+
private_get_account_interest_limits = privateGetAccountInterestLimits = Entry('account/interest-limits', 'private', 'GET', {'cost': 4})
|
155
|
+
private_get_account_greeks = privateGetAccountGreeks = Entry('account/greeks', 'private', 'GET', {'cost': 2})
|
156
|
+
private_get_account_position_tiers = privateGetAccountPositionTiers = Entry('account/position-tiers', 'private', 'GET', {'cost': 2})
|
157
|
+
private_get_account_mmp_config = privateGetAccountMmpConfig = Entry('account/mmp-config', 'private', 'GET', {'cost': 4})
|
158
|
+
private_get_account_fixed_loan_borrowing_limit = privateGetAccountFixedLoanBorrowingLimit = Entry('account/fixed-loan/borrowing-limit', 'private', 'GET', {'cost': 4})
|
159
|
+
private_get_account_fixed_loan_borrowing_quote = privateGetAccountFixedLoanBorrowingQuote = Entry('account/fixed-loan/borrowing-quote', 'private', 'GET', {'cost': 5})
|
160
|
+
private_get_account_fixed_loan_borrowing_orders_list = privateGetAccountFixedLoanBorrowingOrdersList = Entry('account/fixed-loan/borrowing-orders-list', 'private', 'GET', {'cost': 5})
|
161
|
+
private_get_account_spot_manual_borrow_repay = privateGetAccountSpotManualBorrowRepay = Entry('account/spot-manual-borrow-repay', 'private', 'GET', {'cost': 10})
|
162
|
+
private_get_account_set_auto_repay = privateGetAccountSetAutoRepay = Entry('account/set-auto-repay', 'private', 'GET', {'cost': 4})
|
163
|
+
private_get_account_spot_borrow_repay_history = privateGetAccountSpotBorrowRepayHistory = Entry('account/spot-borrow-repay-history', 'private', 'GET', {'cost': 4})
|
164
|
+
private_get_account_move_positions_history = privateGetAccountMovePositionsHistory = Entry('account/move-positions-history', 'private', 'GET', {'cost': 10})
|
165
|
+
private_get_users_subaccount_list = privateGetUsersSubaccountList = Entry('users/subaccount/list', 'private', 'GET', {'cost': 10})
|
166
|
+
private_get_account_subaccount_balances = privateGetAccountSubaccountBalances = Entry('account/subaccount/balances', 'private', 'GET', {'cost': 3.3333333333333335})
|
167
|
+
private_get_asset_subaccount_balances = privateGetAssetSubaccountBalances = Entry('asset/subaccount/balances', 'private', 'GET', {'cost': 3.3333333333333335})
|
168
|
+
private_get_account_subaccount_max_withdrawal = privateGetAccountSubaccountMaxWithdrawal = Entry('account/subaccount/max-withdrawal', 'private', 'GET', {'cost': 1})
|
169
|
+
private_get_asset_subaccount_bills = privateGetAssetSubaccountBills = Entry('asset/subaccount/bills', 'private', 'GET', {'cost': 1.6666666666666667})
|
170
|
+
private_get_asset_subaccount_managed_subaccount_bills = privateGetAssetSubaccountManagedSubaccountBills = Entry('asset/subaccount/managed-subaccount-bills', 'private', 'GET', {'cost': 1.6666666666666667})
|
171
|
+
private_get_users_entrust_subaccount_list = privateGetUsersEntrustSubaccountList = Entry('users/entrust-subaccount-list', 'private', 'GET', {'cost': 10})
|
172
|
+
private_get_account_subaccount_interest_limits = privateGetAccountSubaccountInterestLimits = Entry('account/subaccount/interest-limits', 'private', 'GET', {'cost': 4})
|
173
|
+
private_get_users_subaccount_apikey = privateGetUsersSubaccountApikey = Entry('users/subaccount/apikey', 'private', 'GET', {'cost': 10})
|
174
|
+
private_get_tradingbot_grid_orders_algo_pending = privateGetTradingBotGridOrdersAlgoPending = Entry('tradingBot/grid/orders-algo-pending', 'private', 'GET', {'cost': 1})
|
175
|
+
private_get_tradingbot_grid_orders_algo_history = privateGetTradingBotGridOrdersAlgoHistory = Entry('tradingBot/grid/orders-algo-history', 'private', 'GET', {'cost': 1})
|
176
|
+
private_get_tradingbot_grid_orders_algo_details = privateGetTradingBotGridOrdersAlgoDetails = Entry('tradingBot/grid/orders-algo-details', 'private', 'GET', {'cost': 1})
|
177
|
+
private_get_tradingbot_grid_sub_orders = privateGetTradingBotGridSubOrders = Entry('tradingBot/grid/sub-orders', 'private', 'GET', {'cost': 1})
|
178
|
+
private_get_tradingbot_grid_positions = privateGetTradingBotGridPositions = Entry('tradingBot/grid/positions', 'private', 'GET', {'cost': 1})
|
179
|
+
private_get_tradingbot_grid_ai_param = privateGetTradingBotGridAiParam = Entry('tradingBot/grid/ai-param', 'private', 'GET', {'cost': 1})
|
180
|
+
private_get_tradingbot_signal_signals = privateGetTradingBotSignalSignals = Entry('tradingBot/signal/signals', 'private', 'GET', {'cost': 1})
|
181
|
+
private_get_tradingbot_signal_orders_algo_details = privateGetTradingBotSignalOrdersAlgoDetails = Entry('tradingBot/signal/orders-algo-details', 'private', 'GET', {'cost': 1})
|
182
|
+
private_get_tradingbot_signal_orders_algo_history = privateGetTradingBotSignalOrdersAlgoHistory = Entry('tradingBot/signal/orders-algo-history', 'private', 'GET', {'cost': 1})
|
183
|
+
private_get_tradingbot_signal_positions = privateGetTradingBotSignalPositions = Entry('tradingBot/signal/positions', 'private', 'GET', {'cost': 1})
|
184
|
+
private_get_tradingbot_signal_positions_history = privateGetTradingBotSignalPositionsHistory = Entry('tradingBot/signal/positions-history', 'private', 'GET', {'cost': 1})
|
185
|
+
private_get_tradingbot_signal_sub_orders = privateGetTradingBotSignalSubOrders = Entry('tradingBot/signal/sub-orders', 'private', 'GET', {'cost': 1})
|
186
|
+
private_get_tradingbot_signal_event_history = privateGetTradingBotSignalEventHistory = Entry('tradingBot/signal/event-history', 'private', 'GET', {'cost': 1})
|
187
|
+
private_get_tradingbot_recurring_orders_algo_pending = privateGetTradingBotRecurringOrdersAlgoPending = Entry('tradingBot/recurring/orders-algo-pending', 'private', 'GET', {'cost': 1})
|
188
|
+
private_get_tradingbot_recurring_orders_algo_history = privateGetTradingBotRecurringOrdersAlgoHistory = Entry('tradingBot/recurring/orders-algo-history', 'private', 'GET', {'cost': 1})
|
189
|
+
private_get_tradingbot_recurring_orders_algo_details = privateGetTradingBotRecurringOrdersAlgoDetails = Entry('tradingBot/recurring/orders-algo-details', 'private', 'GET', {'cost': 1})
|
190
|
+
private_get_tradingbot_recurring_sub_orders = privateGetTradingBotRecurringSubOrders = Entry('tradingBot/recurring/sub-orders', 'private', 'GET', {'cost': 1})
|
191
|
+
private_get_finance_savings_balance = privateGetFinanceSavingsBalance = Entry('finance/savings/balance', 'private', 'GET', {'cost': 1.6666666666666667})
|
192
|
+
private_get_finance_savings_lending_history = privateGetFinanceSavingsLendingHistory = Entry('finance/savings/lending-history', 'private', 'GET', {'cost': 1.6666666666666667})
|
193
|
+
private_get_finance_staking_defi_offers = privateGetFinanceStakingDefiOffers = Entry('finance/staking-defi/offers', 'private', 'GET', {'cost': 3.3333333333333335})
|
194
|
+
private_get_finance_staking_defi_orders_active = privateGetFinanceStakingDefiOrdersActive = Entry('finance/staking-defi/orders-active', 'private', 'GET', {'cost': 3.3333333333333335})
|
195
|
+
private_get_finance_staking_defi_orders_history = privateGetFinanceStakingDefiOrdersHistory = Entry('finance/staking-defi/orders-history', 'private', 'GET', {'cost': 3.3333333333333335})
|
196
|
+
private_get_finance_staking_defi_eth_balance = privateGetFinanceStakingDefiEthBalance = Entry('finance/staking-defi/eth/balance', 'private', 'GET', {'cost': 1.6666666666666667})
|
197
|
+
private_get_finance_staking_defi_eth_purchase_redeem_history = privateGetFinanceStakingDefiEthPurchaseRedeemHistory = Entry('finance/staking-defi/eth/purchase-redeem-history', 'private', 'GET', {'cost': 1.6666666666666667})
|
198
|
+
private_get_finance_staking_defi_eth_product_info = privateGetFinanceStakingDefiEthProductInfo = Entry('finance/staking-defi/eth/product-info', 'private', 'GET', {'cost': 3})
|
199
|
+
private_get_finance_staking_defi_sol_balance = privateGetFinanceStakingDefiSolBalance = Entry('finance/staking-defi/sol/balance', 'private', 'GET', {'cost': 1.6666666666666667})
|
200
|
+
private_get_finance_staking_defi_sol_purchase_redeem_history = privateGetFinanceStakingDefiSolPurchaseRedeemHistory = Entry('finance/staking-defi/sol/purchase-redeem-history', 'private', 'GET', {'cost': 1.6666666666666667})
|
201
|
+
private_get_copytrading_current_subpositions = privateGetCopytradingCurrentSubpositions = Entry('copytrading/current-subpositions', 'private', 'GET', {'cost': 1})
|
202
|
+
private_get_copytrading_subpositions_history = privateGetCopytradingSubpositionsHistory = Entry('copytrading/subpositions-history', 'private', 'GET', {'cost': 1})
|
203
|
+
private_get_copytrading_instruments = privateGetCopytradingInstruments = Entry('copytrading/instruments', 'private', 'GET', {'cost': 4})
|
204
|
+
private_get_copytrading_profit_sharing_details = privateGetCopytradingProfitSharingDetails = Entry('copytrading/profit-sharing-details', 'private', 'GET', {'cost': 4})
|
205
|
+
private_get_copytrading_total_profit_sharing = privateGetCopytradingTotalProfitSharing = Entry('copytrading/total-profit-sharing', 'private', 'GET', {'cost': 4})
|
206
|
+
private_get_copytrading_unrealized_profit_sharing_details = privateGetCopytradingUnrealizedProfitSharingDetails = Entry('copytrading/unrealized-profit-sharing-details', 'private', 'GET', {'cost': 4})
|
207
|
+
private_get_copytrading_copy_settings = privateGetCopytradingCopySettings = Entry('copytrading/copy-settings', 'private', 'GET', {'cost': 4})
|
208
|
+
private_get_copytrading_batch_leverage_info = privateGetCopytradingBatchLeverageInfo = Entry('copytrading/batch-leverage-info', 'private', 'GET', {'cost': 4})
|
209
|
+
private_get_copytrading_current_lead_traders = privateGetCopytradingCurrentLeadTraders = Entry('copytrading/current-lead-traders', 'private', 'GET', {'cost': 4})
|
210
|
+
private_get_copytrading_lead_traders_history = privateGetCopytradingLeadTradersHistory = Entry('copytrading/lead-traders-history', 'private', 'GET', {'cost': 4})
|
211
|
+
private_get_broker_nd_info = privateGetBrokerNdInfo = Entry('broker/nd/info', 'private', 'GET', {'cost': 10})
|
212
|
+
private_get_broker_nd_subaccount_info = privateGetBrokerNdSubaccountInfo = Entry('broker/nd/subaccount-info', 'private', 'GET', {'cost': 10})
|
213
|
+
private_get_broker_nd_subaccount_apikey = privateGetBrokerNdSubaccountApikey = Entry('broker/nd/subaccount/apikey', 'private', 'GET', {'cost': 10})
|
214
|
+
private_get_asset_broker_nd_subaccount_deposit_address = privateGetAssetBrokerNdSubaccountDepositAddress = Entry('asset/broker/nd/subaccount-deposit-address', 'private', 'GET', {'cost': 1.6666666666666667})
|
215
|
+
private_get_asset_broker_nd_subaccount_deposit_history = privateGetAssetBrokerNdSubaccountDepositHistory = Entry('asset/broker/nd/subaccount-deposit-history', 'private', 'GET', {'cost': 4})
|
216
|
+
private_get_asset_broker_nd_subaccount_withdrawal_history = privateGetAssetBrokerNdSubaccountWithdrawalHistory = Entry('asset/broker/nd/subaccount-withdrawal-history', 'private', 'GET', {'cost': 4})
|
217
|
+
private_get_broker_nd_rebate_daily = privateGetBrokerNdRebateDaily = Entry('broker/nd/rebate-daily', 'private', 'GET', {'cost': 100})
|
218
|
+
private_get_broker_nd_rebate_per_orders = privateGetBrokerNdRebatePerOrders = Entry('broker/nd/rebate-per-orders', 'private', 'GET', {'cost': 300})
|
219
|
+
private_get_finance_sfp_dcd_order = privateGetFinanceSfpDcdOrder = Entry('finance/sfp/dcd/order', 'private', 'GET', {'cost': 2})
|
220
|
+
private_get_finance_sfp_dcd_orders = privateGetFinanceSfpDcdOrders = Entry('finance/sfp/dcd/orders', 'private', 'GET', {'cost': 2})
|
221
|
+
private_get_broker_fd_rebate_per_orders = privateGetBrokerFdRebatePerOrders = Entry('broker/fd/rebate-per-orders', 'private', 'GET', {'cost': 300})
|
222
|
+
private_get_broker_fd_if_rebate = privateGetBrokerFdIfRebate = Entry('broker/fd/if-rebate', 'private', 'GET', {'cost': 5})
|
223
|
+
private_get_affiliate_invitee_detail = privateGetAffiliateInviteeDetail = Entry('affiliate/invitee/detail', 'private', 'GET', {'cost': 1})
|
224
|
+
private_get_users_partner_if_rebate = privateGetUsersPartnerIfRebate = Entry('users/partner/if-rebate', 'private', 'GET', {'cost': 1})
|
225
|
+
private_get_support_announcements = privateGetSupportAnnouncements = Entry('support/announcements', 'private', 'GET', {'cost': 4})
|
226
|
+
private_post_rfq_create_rfq = privatePostRfqCreateRfq = Entry('rfq/create-rfq', 'private', 'POST', {'cost': 4})
|
227
|
+
private_post_rfq_cancel_rfq = privatePostRfqCancelRfq = Entry('rfq/cancel-rfq', 'private', 'POST', {'cost': 4})
|
228
|
+
private_post_rfq_cancel_batch_rfqs = privatePostRfqCancelBatchRfqs = Entry('rfq/cancel-batch-rfqs', 'private', 'POST', {'cost': 10})
|
229
|
+
private_post_rfq_cancel_all_rfqs = privatePostRfqCancelAllRfqs = Entry('rfq/cancel-all-rfqs', 'private', 'POST', {'cost': 10})
|
230
|
+
private_post_rfq_execute_quote = privatePostRfqExecuteQuote = Entry('rfq/execute-quote', 'private', 'POST', {'cost': 15})
|
231
|
+
private_post_rfq_maker_instrument_settings = privatePostRfqMakerInstrumentSettings = Entry('rfq/maker-instrument-settings', 'private', 'POST', {'cost': 4})
|
232
|
+
private_post_rfq_mmp_reset = privatePostRfqMmpReset = Entry('rfq/mmp-reset', 'private', 'POST', {'cost': 4})
|
233
|
+
private_post_rfq_mmp_config = privatePostRfqMmpConfig = Entry('rfq/mmp-config', 'private', 'POST', {'cost': 100})
|
234
|
+
private_post_rfq_create_quote = privatePostRfqCreateQuote = Entry('rfq/create-quote', 'private', 'POST', {'cost': 0.4})
|
235
|
+
private_post_rfq_cancel_quote = privatePostRfqCancelQuote = Entry('rfq/cancel-quote', 'private', 'POST', {'cost': 0.4})
|
236
|
+
private_post_rfq_cancel_batch_quotes = privatePostRfqCancelBatchQuotes = Entry('rfq/cancel-batch-quotes', 'private', 'POST', {'cost': 10})
|
237
|
+
private_post_rfq_cancel_all_quotes = privatePostRfqCancelAllQuotes = Entry('rfq/cancel-all-quotes', 'private', 'POST', {'cost': 10})
|
238
|
+
private_post_sprd_order = privatePostSprdOrder = Entry('sprd/order', 'private', 'POST', {'cost': 1})
|
239
|
+
private_post_sprd_cancel_order = privatePostSprdCancelOrder = Entry('sprd/cancel-order', 'private', 'POST', {'cost': 1})
|
240
|
+
private_post_sprd_mass_cancel = privatePostSprdMassCancel = Entry('sprd/mass-cancel', 'private', 'POST', {'cost': 1})
|
241
|
+
private_post_sprd_amend_order = privatePostSprdAmendOrder = Entry('sprd/amend-order', 'private', 'POST', {'cost': 1})
|
242
|
+
private_post_sprd_cancel_all_after = privatePostSprdCancelAllAfter = Entry('sprd/cancel-all-after', 'private', 'POST', {'cost': 10})
|
243
|
+
private_post_trade_order = privatePostTradeOrder = Entry('trade/order', 'private', 'POST', {'cost': 0.3333333333333333})
|
244
|
+
private_post_trade_batch_orders = privatePostTradeBatchOrders = Entry('trade/batch-orders', 'private', 'POST', {'cost': 0.06666666666666667})
|
245
|
+
private_post_trade_cancel_order = privatePostTradeCancelOrder = Entry('trade/cancel-order', 'private', 'POST', {'cost': 0.3333333333333333})
|
246
|
+
private_post_trade_cancel_batch_orders = privatePostTradeCancelBatchOrders = Entry('trade/cancel-batch-orders', 'private', 'POST', {'cost': 0.06666666666666667})
|
247
|
+
private_post_trade_amend_order = privatePostTradeAmendOrder = Entry('trade/amend-order', 'private', 'POST', {'cost': 0.3333333333333333})
|
248
|
+
private_post_trade_amend_batch_orders = privatePostTradeAmendBatchOrders = Entry('trade/amend-batch-orders', 'private', 'POST', {'cost': 0.006666666666666667})
|
249
|
+
private_post_trade_close_position = privatePostTradeClosePosition = Entry('trade/close-position', 'private', 'POST', {'cost': 1})
|
250
|
+
private_post_trade_fills_archive = privatePostTradeFillsArchive = Entry('trade/fills-archive', 'private', 'POST', {'cost': 172800})
|
251
|
+
private_post_trade_order_algo = privatePostTradeOrderAlgo = Entry('trade/order-algo', 'private', 'POST', {'cost': 1})
|
252
|
+
private_post_trade_cancel_algos = privatePostTradeCancelAlgos = Entry('trade/cancel-algos', 'private', 'POST', {'cost': 1})
|
253
|
+
private_post_trade_amend_algos = privatePostTradeAmendAlgos = Entry('trade/amend-algos', 'private', 'POST', {'cost': 1})
|
254
|
+
private_post_trade_cancel_advance_algos = privatePostTradeCancelAdvanceAlgos = Entry('trade/cancel-advance-algos', 'private', 'POST', {'cost': 1})
|
255
|
+
private_post_trade_easy_convert = privatePostTradeEasyConvert = Entry('trade/easy-convert', 'private', 'POST', {'cost': 20})
|
256
|
+
private_post_trade_one_click_repay = privatePostTradeOneClickRepay = Entry('trade/one-click-repay', 'private', 'POST', {'cost': 20})
|
257
|
+
private_post_trade_one_click_repay_v2 = privatePostTradeOneClickRepayV2 = Entry('trade/one-click-repay-v2', 'private', 'POST', {'cost': 20})
|
258
|
+
private_post_trade_mass_cancel = privatePostTradeMassCancel = Entry('trade/mass-cancel', 'private', 'POST', {'cost': 4})
|
259
|
+
private_post_trade_cancel_all_after = privatePostTradeCancelAllAfter = Entry('trade/cancel-all-after', 'private', 'POST', {'cost': 10})
|
260
|
+
private_post_asset_transfer = privatePostAssetTransfer = Entry('asset/transfer', 'private', 'POST', {'cost': 10})
|
261
|
+
private_post_asset_withdrawal = privatePostAssetWithdrawal = Entry('asset/withdrawal', 'private', 'POST', {'cost': 1.6666666666666667})
|
262
|
+
private_post_asset_withdrawal_lightning = privatePostAssetWithdrawalLightning = Entry('asset/withdrawal-lightning', 'private', 'POST', {'cost': 5})
|
263
|
+
private_post_asset_cancel_withdrawal = privatePostAssetCancelWithdrawal = Entry('asset/cancel-withdrawal', 'private', 'POST', {'cost': 1.6666666666666667})
|
264
|
+
private_post_asset_convert_dust_assets = privatePostAssetConvertDustAssets = Entry('asset/convert-dust-assets', 'private', 'POST', {'cost': 10})
|
265
|
+
private_post_asset_convert_estimate_quote = privatePostAssetConvertEstimateQuote = Entry('asset/convert/estimate-quote', 'private', 'POST', {'cost': 1})
|
266
|
+
private_post_asset_convert_trade = privatePostAssetConvertTrade = Entry('asset/convert/trade', 'private', 'POST', {'cost': 1})
|
267
|
+
private_post_asset_monthly_statement = privatePostAssetMonthlyStatement = Entry('asset/monthly-statement', 'private', 'POST', {'cost': 1})
|
268
|
+
private_post_account_set_position_mode = privatePostAccountSetPositionMode = Entry('account/set-position-mode', 'private', 'POST', {'cost': 4})
|
269
|
+
private_post_account_set_leverage = privatePostAccountSetLeverage = Entry('account/set-leverage', 'private', 'POST', {'cost': 1})
|
270
|
+
private_post_account_position_margin_balance = privatePostAccountPositionMarginBalance = Entry('account/position/margin-balance', 'private', 'POST', {'cost': 1})
|
271
|
+
private_post_account_set_greeks = privatePostAccountSetGreeks = Entry('account/set-greeks', 'private', 'POST', {'cost': 4})
|
272
|
+
private_post_account_set_isolated_mode = privatePostAccountSetIsolatedMode = Entry('account/set-isolated-mode', 'private', 'POST', {'cost': 4})
|
273
|
+
private_post_account_quick_margin_borrow_repay = privatePostAccountQuickMarginBorrowRepay = Entry('account/quick-margin-borrow-repay', 'private', 'POST', {'cost': 4})
|
274
|
+
private_post_account_borrow_repay = privatePostAccountBorrowRepay = Entry('account/borrow-repay', 'private', 'POST', {'cost': 1.6666666666666667})
|
275
|
+
private_post_account_simulated_margin = privatePostAccountSimulatedMargin = Entry('account/simulated_margin', 'private', 'POST', {'cost': 10})
|
276
|
+
private_post_account_position_builder = privatePostAccountPositionBuilder = Entry('account/position-builder', 'private', 'POST', {'cost': 10})
|
277
|
+
private_post_account_set_riskoffset_type = privatePostAccountSetRiskOffsetType = Entry('account/set-riskOffset-type', 'private', 'POST', {'cost': 2})
|
278
|
+
private_post_account_activate_option = privatePostAccountActivateOption = Entry('account/activate-option', 'private', 'POST', {'cost': 4})
|
279
|
+
private_post_account_set_auto_loan = privatePostAccountSetAutoLoan = Entry('account/set-auto-loan', 'private', 'POST', {'cost': 4})
|
280
|
+
private_post_account_set_account_level = privatePostAccountSetAccountLevel = Entry('account/set-account-level', 'private', 'POST', {'cost': 4})
|
281
|
+
private_post_account_mmp_reset = privatePostAccountMmpReset = Entry('account/mmp-reset', 'private', 'POST', {'cost': 4})
|
282
|
+
private_post_account_mmp_config = privatePostAccountMmpConfig = Entry('account/mmp-config', 'private', 'POST', {'cost': 100})
|
283
|
+
private_post_account_fixed_loan_borrowing_order = privatePostAccountFixedLoanBorrowingOrder = Entry('account/fixed-loan/borrowing-order', 'private', 'POST', {'cost': 5})
|
284
|
+
private_post_account_fixed_loan_amend_borrowing_order = privatePostAccountFixedLoanAmendBorrowingOrder = Entry('account/fixed-loan/amend-borrowing-order', 'private', 'POST', {'cost': 5})
|
285
|
+
private_post_account_fixed_loan_manual_reborrow = privatePostAccountFixedLoanManualReborrow = Entry('account/fixed-loan/manual-reborrow', 'private', 'POST', {'cost': 5})
|
286
|
+
private_post_account_fixed_loan_repay_borrowing_order = privatePostAccountFixedLoanRepayBorrowingOrder = Entry('account/fixed-loan/repay-borrowing-order', 'private', 'POST', {'cost': 5})
|
287
|
+
private_post_account_bills_history_archive = privatePostAccountBillsHistoryArchive = Entry('account/bills-history-archive', 'private', 'POST', {'cost': 72000})
|
288
|
+
private_post_account_move_positions = privatePostAccountMovePositions = Entry('account/move-positions', 'private', 'POST', {'cost': 10})
|
289
|
+
private_post_users_subaccount_modify_apikey = privatePostUsersSubaccountModifyApikey = Entry('users/subaccount/modify-apikey', 'private', 'POST', {'cost': 10})
|
290
|
+
private_post_asset_subaccount_transfer = privatePostAssetSubaccountTransfer = Entry('asset/subaccount/transfer', 'private', 'POST', {'cost': 10})
|
291
|
+
private_post_users_subaccount_set_transfer_out = privatePostUsersSubaccountSetTransferOut = Entry('users/subaccount/set-transfer-out', 'private', 'POST', {'cost': 10})
|
292
|
+
private_post_account_subaccount_set_loan_allocation = privatePostAccountSubaccountSetLoanAllocation = Entry('account/subaccount/set-loan-allocation', 'private', 'POST', {'cost': 4})
|
293
|
+
private_post_users_subaccount_create_subaccount = privatePostUsersSubaccountCreateSubaccount = Entry('users/subaccount/create-subaccount', 'private', 'POST', {'cost': 10})
|
294
|
+
private_post_users_subaccount_subaccount_apikey = privatePostUsersSubaccountSubaccountApikey = Entry('users/subaccount/subaccount-apikey', 'private', 'POST', {'cost': 10})
|
295
|
+
private_post_users_subaccount_delete_apikey = privatePostUsersSubaccountDeleteApikey = Entry('users/subaccount/delete-apikey', 'private', 'POST', {'cost': 10})
|
296
|
+
private_post_tradingbot_grid_order_algo = privatePostTradingBotGridOrderAlgo = Entry('tradingBot/grid/order-algo', 'private', 'POST', {'cost': 1})
|
297
|
+
private_post_tradingbot_grid_amend_order_algo = privatePostTradingBotGridAmendOrderAlgo = Entry('tradingBot/grid/amend-order-algo', 'private', 'POST', {'cost': 1})
|
298
|
+
private_post_tradingbot_grid_stop_order_algo = privatePostTradingBotGridStopOrderAlgo = Entry('tradingBot/grid/stop-order-algo', 'private', 'POST', {'cost': 1})
|
299
|
+
private_post_tradingbot_grid_close_position = privatePostTradingBotGridClosePosition = Entry('tradingBot/grid/close-position', 'private', 'POST', {'cost': 1})
|
300
|
+
private_post_tradingbot_grid_cancel_close_order = privatePostTradingBotGridCancelCloseOrder = Entry('tradingBot/grid/cancel-close-order', 'private', 'POST', {'cost': 1})
|
301
|
+
private_post_tradingbot_grid_order_instant_trigger = privatePostTradingBotGridOrderInstantTrigger = Entry('tradingBot/grid/order-instant-trigger', 'private', 'POST', {'cost': 1})
|
302
|
+
private_post_tradingbot_grid_withdraw_income = privatePostTradingBotGridWithdrawIncome = Entry('tradingBot/grid/withdraw-income', 'private', 'POST', {'cost': 1})
|
303
|
+
private_post_tradingbot_grid_compute_margin_balance = privatePostTradingBotGridComputeMarginBalance = Entry('tradingBot/grid/compute-margin-balance', 'private', 'POST', {'cost': 1})
|
304
|
+
private_post_tradingbot_grid_margin_balance = privatePostTradingBotGridMarginBalance = Entry('tradingBot/grid/margin-balance', 'private', 'POST', {'cost': 1})
|
305
|
+
private_post_tradingbot_grid_min_investment = privatePostTradingBotGridMinInvestment = Entry('tradingBot/grid/min-investment', 'private', 'POST', {'cost': 1})
|
306
|
+
private_post_tradingbot_grid_adjust_investment = privatePostTradingBotGridAdjustInvestment = Entry('tradingBot/grid/adjust-investment', 'private', 'POST', {'cost': 1})
|
307
|
+
private_post_tradingbot_signal_create_signal = privatePostTradingBotSignalCreateSignal = Entry('tradingBot/signal/create-signal', 'private', 'POST', {'cost': 1})
|
308
|
+
private_post_tradingbot_signal_order_algo = privatePostTradingBotSignalOrderAlgo = Entry('tradingBot/signal/order-algo', 'private', 'POST', {'cost': 1})
|
309
|
+
private_post_tradingbot_signal_stop_order_algo = privatePostTradingBotSignalStopOrderAlgo = Entry('tradingBot/signal/stop-order-algo', 'private', 'POST', {'cost': 1})
|
310
|
+
private_post_tradingbot_signal_margin_balance = privatePostTradingBotSignalMarginBalance = Entry('tradingBot/signal/margin-balance', 'private', 'POST', {'cost': 1})
|
311
|
+
private_post_tradingbot_signal_amendtpsl = privatePostTradingBotSignalAmendTPSL = Entry('tradingBot/signal/amendTPSL', 'private', 'POST', {'cost': 1})
|
312
|
+
private_post_tradingbot_signal_set_instruments = privatePostTradingBotSignalSetInstruments = Entry('tradingBot/signal/set-instruments', 'private', 'POST', {'cost': 1})
|
313
|
+
private_post_tradingbot_signal_close_position = privatePostTradingBotSignalClosePosition = Entry('tradingBot/signal/close-position', 'private', 'POST', {'cost': 1})
|
314
|
+
private_post_tradingbot_signal_sub_order = privatePostTradingBotSignalSubOrder = Entry('tradingBot/signal/sub-order', 'private', 'POST', {'cost': 1})
|
315
|
+
private_post_tradingbot_signal_cancel_sub_order = privatePostTradingBotSignalCancelSubOrder = Entry('tradingBot/signal/cancel-sub-order', 'private', 'POST', {'cost': 1})
|
316
|
+
private_post_tradingbot_recurring_order_algo = privatePostTradingBotRecurringOrderAlgo = Entry('tradingBot/recurring/order-algo', 'private', 'POST', {'cost': 1})
|
317
|
+
private_post_tradingbot_recurring_amend_order_algo = privatePostTradingBotRecurringAmendOrderAlgo = Entry('tradingBot/recurring/amend-order-algo', 'private', 'POST', {'cost': 1})
|
318
|
+
private_post_tradingbot_recurring_stop_order_algo = privatePostTradingBotRecurringStopOrderAlgo = Entry('tradingBot/recurring/stop-order-algo', 'private', 'POST', {'cost': 1})
|
319
|
+
private_post_finance_savings_purchase_redempt = privatePostFinanceSavingsPurchaseRedempt = Entry('finance/savings/purchase-redempt', 'private', 'POST', {'cost': 1.6666666666666667})
|
320
|
+
private_post_finance_savings_set_lending_rate = privatePostFinanceSavingsSetLendingRate = Entry('finance/savings/set-lending-rate', 'private', 'POST', {'cost': 1.6666666666666667})
|
321
|
+
private_post_finance_staking_defi_purchase = privatePostFinanceStakingDefiPurchase = Entry('finance/staking-defi/purchase', 'private', 'POST', {'cost': 3})
|
322
|
+
private_post_finance_staking_defi_redeem = privatePostFinanceStakingDefiRedeem = Entry('finance/staking-defi/redeem', 'private', 'POST', {'cost': 3})
|
323
|
+
private_post_finance_staking_defi_cancel = privatePostFinanceStakingDefiCancel = Entry('finance/staking-defi/cancel', 'private', 'POST', {'cost': 3})
|
324
|
+
private_post_finance_staking_defi_eth_purchase = privatePostFinanceStakingDefiEthPurchase = Entry('finance/staking-defi/eth/purchase', 'private', 'POST', {'cost': 5})
|
325
|
+
private_post_finance_staking_defi_eth_redeem = privatePostFinanceStakingDefiEthRedeem = Entry('finance/staking-defi/eth/redeem', 'private', 'POST', {'cost': 5})
|
326
|
+
private_post_finance_staking_defi_sol_purchase = privatePostFinanceStakingDefiSolPurchase = Entry('finance/staking-defi/sol/purchase', 'private', 'POST', {'cost': 5})
|
327
|
+
private_post_finance_staking_defi_sol_redeem = privatePostFinanceStakingDefiSolRedeem = Entry('finance/staking-defi/sol/redeem', 'private', 'POST', {'cost': 5})
|
328
|
+
private_post_copytrading_algo_order = privatePostCopytradingAlgoOrder = Entry('copytrading/algo-order', 'private', 'POST', {'cost': 1})
|
329
|
+
private_post_copytrading_close_subposition = privatePostCopytradingCloseSubposition = Entry('copytrading/close-subposition', 'private', 'POST', {'cost': 1})
|
330
|
+
private_post_copytrading_set_instruments = privatePostCopytradingSetInstruments = Entry('copytrading/set-instruments', 'private', 'POST', {'cost': 4})
|
331
|
+
private_post_copytrading_first_copy_settings = privatePostCopytradingFirstCopySettings = Entry('copytrading/first-copy-settings', 'private', 'POST', {'cost': 4})
|
332
|
+
private_post_copytrading_amend_copy_settings = privatePostCopytradingAmendCopySettings = Entry('copytrading/amend-copy-settings', 'private', 'POST', {'cost': 4})
|
333
|
+
private_post_copytrading_stop_copy_trading = privatePostCopytradingStopCopyTrading = Entry('copytrading/stop-copy-trading', 'private', 'POST', {'cost': 4})
|
334
|
+
private_post_copytrading_batch_set_leverage = privatePostCopytradingBatchSetLeverage = Entry('copytrading/batch-set-leverage', 'private', 'POST', {'cost': 4})
|
335
|
+
private_post_broker_nd_create_subaccount = privatePostBrokerNdCreateSubaccount = Entry('broker/nd/create-subaccount', 'private', 'POST', {'cost': 0.25})
|
336
|
+
private_post_broker_nd_delete_subaccount = privatePostBrokerNdDeleteSubaccount = Entry('broker/nd/delete-subaccount', 'private', 'POST', {'cost': 1})
|
337
|
+
private_post_broker_nd_subaccount_apikey = privatePostBrokerNdSubaccountApikey = Entry('broker/nd/subaccount/apikey', 'private', 'POST', {'cost': 0.25})
|
338
|
+
private_post_broker_nd_subaccount_modify_apikey = privatePostBrokerNdSubaccountModifyApikey = Entry('broker/nd/subaccount/modify-apikey', 'private', 'POST', {'cost': 1})
|
339
|
+
private_post_broker_nd_subaccount_delete_apikey = privatePostBrokerNdSubaccountDeleteApikey = Entry('broker/nd/subaccount/delete-apikey', 'private', 'POST', {'cost': 1})
|
340
|
+
private_post_broker_nd_set_subaccount_level = privatePostBrokerNdSetSubaccountLevel = Entry('broker/nd/set-subaccount-level', 'private', 'POST', {'cost': 4})
|
341
|
+
private_post_broker_nd_set_subaccount_fee_rate = privatePostBrokerNdSetSubaccountFeeRate = Entry('broker/nd/set-subaccount-fee-rate', 'private', 'POST', {'cost': 4})
|
342
|
+
private_post_broker_nd_set_subaccount_assets = privatePostBrokerNdSetSubaccountAssets = Entry('broker/nd/set-subaccount-assets', 'private', 'POST', {'cost': 0.25})
|
343
|
+
private_post_asset_broker_nd_subaccount_deposit_address = privatePostAssetBrokerNdSubaccountDepositAddress = Entry('asset/broker/nd/subaccount-deposit-address', 'private', 'POST', {'cost': 1})
|
344
|
+
private_post_asset_broker_nd_modify_subaccount_deposit_address = privatePostAssetBrokerNdModifySubaccountDepositAddress = Entry('asset/broker/nd/modify-subaccount-deposit-address', 'private', 'POST', {'cost': 1.6666666666666667})
|
345
|
+
private_post_broker_nd_rebate_per_orders = privatePostBrokerNdRebatePerOrders = Entry('broker/nd/rebate-per-orders', 'private', 'POST', {'cost': 36000})
|
346
|
+
private_post_finance_sfp_dcd_quote = privatePostFinanceSfpDcdQuote = Entry('finance/sfp/dcd/quote', 'private', 'POST', {'cost': 10})
|
347
|
+
private_post_finance_sfp_dcd_order = privatePostFinanceSfpDcdOrder = Entry('finance/sfp/dcd/order', 'private', 'POST', {'cost': 10})
|
348
|
+
private_post_broker_nd_report_subaccount_ip = privatePostBrokerNdReportSubaccountIp = Entry('broker/nd/report-subaccount-ip', 'private', 'POST', {'cost': 0.25})
|
349
|
+
private_post_broker_fd_rebate_per_orders = privatePostBrokerFdRebatePerOrders = Entry('broker/fd/rebate-per-orders', 'private', 'POST', {'cost': 36000})
|