ccxt-ir 4.3.46.0.1__py2.py3-none-any.whl
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/__init__.py +358 -0
- ccxt/abantether.py +316 -0
- ccxt/abstract/__init__.py +0 -0
- ccxt/abstract/abantether.py +5 -0
- ccxt/abstract/ace.py +15 -0
- ccxt/abstract/afratether.py +6 -0
- ccxt/abstract/alpaca.py +70 -0
- ccxt/abstract/arzinja.py +5 -0
- ccxt/abstract/arzplus.py +7 -0
- ccxt/abstract/ascendex.py +77 -0
- ccxt/abstract/bequant.py +115 -0
- ccxt/abstract/bigone.py +45 -0
- ccxt/abstract/binance.py +712 -0
- ccxt/abstract/binancecoinm.py +712 -0
- ccxt/abstract/binanceus.py +764 -0
- ccxt/abstract/binanceusdm.py +712 -0
- ccxt/abstract/bingx.py +113 -0
- ccxt/abstract/bit2c.py +27 -0
- ccxt/abstract/bitbank.py +27 -0
- ccxt/abstract/bitbay.py +53 -0
- ccxt/abstract/bitbns.py +40 -0
- ccxt/abstract/bitcoincom.py +115 -0
- ccxt/abstract/bitfinex.py +69 -0
- ccxt/abstract/bitfinex2.py +139 -0
- ccxt/abstract/bitflyer.py +38 -0
- ccxt/abstract/bitget.py +508 -0
- ccxt/abstract/bithumb.py +32 -0
- ccxt/abstract/bitimen.py +7 -0
- ccxt/abstract/bitir.py +7 -0
- ccxt/abstract/bitmart.py +99 -0
- ccxt/abstract/bitmex.py +97 -0
- ccxt/abstract/bitopro.py +29 -0
- ccxt/abstract/bitpanda.py +35 -0
- ccxt/abstract/bitpin.py +7 -0
- ccxt/abstract/bitrue.py +72 -0
- ccxt/abstract/bitso.py +43 -0
- ccxt/abstract/bitstamp.py +258 -0
- ccxt/abstract/bitteam.py +29 -0
- ccxt/abstract/bitvavo.py +27 -0
- ccxt/abstract/bl3p.py +19 -0
- ccxt/abstract/blockchaincom.py +28 -0
- ccxt/abstract/blofin.py +37 -0
- ccxt/abstract/btcalpha.py +18 -0
- ccxt/abstract/btcbox.py +13 -0
- ccxt/abstract/btcmarkets.py +39 -0
- ccxt/abstract/btcturk.py +20 -0
- ccxt/abstract/bybit.py +298 -0
- ccxt/abstract/cex.py +33 -0
- ccxt/abstract/coinbase.py +94 -0
- ccxt/abstract/coinbaseadvanced.py +94 -0
- ccxt/abstract/coinbaseexchange.py +67 -0
- ccxt/abstract/coinbaseinternational.py +39 -0
- ccxt/abstract/coincatch.py +94 -0
- ccxt/abstract/coincheck.py +33 -0
- ccxt/abstract/coinex.py +237 -0
- ccxt/abstract/coinlist.py +54 -0
- ccxt/abstract/coinmate.py +62 -0
- ccxt/abstract/coinmetro.py +34 -0
- ccxt/abstract/coinone.py +67 -0
- ccxt/abstract/coinsph.py +54 -0
- ccxt/abstract/coinspot.py +28 -0
- ccxt/abstract/cryptocom.py +107 -0
- ccxt/abstract/currencycom.py +68 -0
- ccxt/abstract/delta.py +50 -0
- ccxt/abstract/deribit.py +125 -0
- ccxt/abstract/digifinex.py +91 -0
- ccxt/abstract/eterex.py +5 -0
- ccxt/abstract/excoino.py +7 -0
- ccxt/abstract/exir.py +8 -0
- ccxt/abstract/exmo.py +55 -0
- ccxt/abstract/exnovin.py +6 -0
- ccxt/abstract/farhadexchange.py +5 -0
- ccxt/abstract/fmfwio.py +115 -0
- ccxt/abstract/gate.py +265 -0
- ccxt/abstract/gateio.py +265 -0
- ccxt/abstract/gemini.py +58 -0
- ccxt/abstract/hashkey.py +67 -0
- ccxt/abstract/hitbtc.py +115 -0
- ccxt/abstract/hitbtc3.py +115 -0
- ccxt/abstract/hitobit.py +8 -0
- ccxt/abstract/hollaex.py +33 -0
- ccxt/abstract/htx.py +548 -0
- ccxt/abstract/huobi.py +548 -0
- ccxt/abstract/huobijp.py +114 -0
- ccxt/abstract/hyperliquid.py +6 -0
- ccxt/abstract/idex.py +26 -0
- ccxt/abstract/independentreserve.py +37 -0
- ccxt/abstract/indodax.py +26 -0
- ccxt/abstract/jibitex.py +7 -0
- ccxt/abstract/kraken.py +57 -0
- ccxt/abstract/krakenfutures.py +38 -0
- ccxt/abstract/kucoin.py +214 -0
- ccxt/abstract/kucoinfutures.py +233 -0
- ccxt/abstract/kuna.py +182 -0
- ccxt/abstract/latoken.py +56 -0
- ccxt/abstract/lbank.py +61 -0
- ccxt/abstract/luno.py +37 -0
- ccxt/abstract/lykke.py +29 -0
- ccxt/abstract/mercado.py +25 -0
- ccxt/abstract/mexc.py +178 -0
- ccxt/abstract/ndax.py +97 -0
- ccxt/abstract/nobitex.py +7 -0
- ccxt/abstract/novadax.py +29 -0
- ccxt/abstract/oceanex.py +22 -0
- ccxt/abstract/okcoin.py +74 -0
- ccxt/abstract/okexchange.py +8 -0
- ccxt/abstract/okx.py +324 -0
- ccxt/abstract/ompfinex.py +7 -0
- ccxt/abstract/onetrading.py +35 -0
- ccxt/abstract/oxfun.py +34 -0
- ccxt/abstract/p2b.py +22 -0
- ccxt/abstract/paradex.py +40 -0
- ccxt/abstract/paymium.py +28 -0
- ccxt/abstract/phemex.py +115 -0
- ccxt/abstract/poloniex.py +69 -0
- ccxt/abstract/poloniexfutures.py +48 -0
- ccxt/abstract/probit.py +23 -0
- ccxt/abstract/ramzinex.py +7 -0
- ccxt/abstract/sarmayex.py +5 -0
- ccxt/abstract/sarrafex.py +7 -0
- ccxt/abstract/tabdeal.py +7 -0
- ccxt/abstract/tetherland.py +5 -0
- ccxt/abstract/timex.py +62 -0
- ccxt/abstract/tokocrypto.py +37 -0
- ccxt/abstract/tradeogre.py +16 -0
- ccxt/abstract/twox.py +5 -0
- ccxt/abstract/ubitex.py +7 -0
- ccxt/abstract/upbit.py +38 -0
- ccxt/abstract/vertex.py +19 -0
- ccxt/abstract/wallex.py +8 -0
- ccxt/abstract/wavesexchange.py +154 -0
- ccxt/abstract/wazirx.py +30 -0
- ccxt/abstract/whitebit.py +98 -0
- ccxt/abstract/woo.py +83 -0
- ccxt/abstract/woofipro.py +119 -0
- ccxt/abstract/xt.py +152 -0
- ccxt/abstract/yobit.py +16 -0
- ccxt/abstract/zaif.py +38 -0
- ccxt/abstract/zonda.py +53 -0
- ccxt/ace.py +1012 -0
- ccxt/afratether.py +293 -0
- ccxt/alpaca.py +1083 -0
- ccxt/arzinja.py +285 -0
- ccxt/arzplus.py +412 -0
- ccxt/ascendex.py +3330 -0
- ccxt/async_support/__init__.py +337 -0
- ccxt/async_support/abantether.py +316 -0
- ccxt/async_support/ace.py +1012 -0
- ccxt/async_support/afratether.py +293 -0
- ccxt/async_support/alpaca.py +1083 -0
- ccxt/async_support/arzinja.py +285 -0
- ccxt/async_support/arzplus.py +412 -0
- ccxt/async_support/ascendex.py +3330 -0
- ccxt/async_support/base/__init__.py +1 -0
- ccxt/async_support/base/exchange.py +1966 -0
- ccxt/async_support/base/throttler.py +50 -0
- ccxt/async_support/base/ws/__init__.py +38 -0
- ccxt/async_support/base/ws/aiohttp_client.py +125 -0
- ccxt/async_support/base/ws/cache.py +212 -0
- ccxt/async_support/base/ws/client.py +193 -0
- ccxt/async_support/base/ws/fast_client.py +96 -0
- ccxt/async_support/base/ws/functions.py +59 -0
- ccxt/async_support/base/ws/future.py +58 -0
- ccxt/async_support/base/ws/order_book.py +78 -0
- ccxt/async_support/base/ws/order_book_side.py +174 -0
- ccxt/async_support/bequant.py +33 -0
- ccxt/async_support/bigone.py +2113 -0
- ccxt/async_support/binance.py +12234 -0
- ccxt/async_support/binancecoinm.py +45 -0
- ccxt/async_support/binanceus.py +211 -0
- ccxt/async_support/binanceusdm.py +58 -0
- ccxt/async_support/bingx.py +4325 -0
- ccxt/async_support/bit2c.py +866 -0
- ccxt/async_support/bitbank.py +1001 -0
- ccxt/async_support/bitbay.py +17 -0
- ccxt/async_support/bitbns.py +1154 -0
- ccxt/async_support/bitcoincom.py +17 -0
- ccxt/async_support/bitfinex.py +1617 -0
- ccxt/async_support/bitfinex2.py +3552 -0
- ccxt/async_support/bitflyer.py +995 -0
- ccxt/async_support/bitget.py +8273 -0
- ccxt/async_support/bithumb.py +1061 -0
- ccxt/async_support/bitimen.py +401 -0
- ccxt/async_support/bitir.py +490 -0
- ccxt/async_support/bitmart.py +4415 -0
- ccxt/async_support/bitmex.py +2756 -0
- ccxt/async_support/bitopro.py +1630 -0
- ccxt/async_support/bitpanda.py +16 -0
- ccxt/async_support/bitpin.py +454 -0
- ccxt/async_support/bitrue.py +3027 -0
- ccxt/async_support/bitso.py +1670 -0
- ccxt/async_support/bitstamp.py +2203 -0
- ccxt/async_support/bitteam.py +2239 -0
- ccxt/async_support/bitvavo.py +1968 -0
- ccxt/async_support/bl3p.py +485 -0
- ccxt/async_support/blockchaincom.py +1104 -0
- ccxt/async_support/blofin.py +2066 -0
- ccxt/async_support/btcalpha.py +891 -0
- ccxt/async_support/btcbox.py +544 -0
- ccxt/async_support/btcmarkets.py +1221 -0
- ccxt/async_support/btcturk.py +911 -0
- ccxt/async_support/bybit.py +8159 -0
- ccxt/async_support/cex.py +1605 -0
- ccxt/async_support/coinbase.py +4475 -0
- ccxt/async_support/coinbaseadvanced.py +17 -0
- ccxt/async_support/coinbaseexchange.py +1734 -0
- ccxt/async_support/coinbaseinternational.py +1899 -0
- ccxt/async_support/coincatch.py +5069 -0
- ccxt/async_support/coincheck.py +815 -0
- ccxt/async_support/coinex.py +5526 -0
- ccxt/async_support/coinlist.py +2243 -0
- ccxt/async_support/coinmate.py +1067 -0
- ccxt/async_support/coinmetro.py +1797 -0
- ccxt/async_support/coinone.py +1127 -0
- ccxt/async_support/coinsph.py +1850 -0
- ccxt/async_support/coinspot.py +534 -0
- ccxt/async_support/cryptocom.py +2822 -0
- ccxt/async_support/currencycom.py +1950 -0
- ccxt/async_support/delta.py +3376 -0
- ccxt/async_support/deribit.py +3437 -0
- ccxt/async_support/digifinex.py +3960 -0
- ccxt/async_support/eterex.py +286 -0
- ccxt/async_support/excoino.py +399 -0
- ccxt/async_support/exir.py +375 -0
- ccxt/async_support/exmo.py +2462 -0
- ccxt/async_support/exnovin.py +360 -0
- ccxt/async_support/farhadexchange.py +266 -0
- ccxt/async_support/fmfwio.py +34 -0
- ccxt/async_support/gate.py +6976 -0
- ccxt/async_support/gateio.py +16 -0
- ccxt/async_support/gemini.py +1825 -0
- ccxt/async_support/hashkey.py +4150 -0
- ccxt/async_support/hitbtc.py +3423 -0
- ccxt/async_support/hitbtc3.py +16 -0
- ccxt/async_support/hitobit.py +391 -0
- ccxt/async_support/hollaex.py +1813 -0
- ccxt/async_support/htx.py +8506 -0
- ccxt/async_support/huobi.py +16 -0
- ccxt/async_support/huobijp.py +1801 -0
- ccxt/async_support/hyperliquid.py +2431 -0
- ccxt/async_support/idex.py +1766 -0
- ccxt/async_support/independentreserve.py +784 -0
- ccxt/async_support/indodax.py +1247 -0
- ccxt/async_support/jibitex.py +395 -0
- ccxt/async_support/kraken.py +2894 -0
- ccxt/async_support/krakenfutures.py +2601 -0
- ccxt/async_support/kucoin.py +4602 -0
- ccxt/async_support/kucoinfutures.py +2698 -0
- ccxt/async_support/kuna.py +1841 -0
- ccxt/async_support/latoken.py +1664 -0
- ccxt/async_support/lbank.py +2683 -0
- ccxt/async_support/luno.py +1067 -0
- ccxt/async_support/lykke.py +1270 -0
- ccxt/async_support/mercado.py +842 -0
- ccxt/async_support/mexc.py +5369 -0
- ccxt/async_support/ndax.py +2354 -0
- ccxt/async_support/nobitex.py +419 -0
- ccxt/async_support/novadax.py +1484 -0
- ccxt/async_support/oceanex.py +903 -0
- ccxt/async_support/okcoin.py +2936 -0
- ccxt/async_support/okexchange.py +349 -0
- ccxt/async_support/okx.py +7827 -0
- ccxt/async_support/ompfinex.py +472 -0
- ccxt/async_support/onetrading.py +1911 -0
- ccxt/async_support/oxfun.py +2773 -0
- ccxt/async_support/p2b.py +1194 -0
- ccxt/async_support/paradex.py +2015 -0
- ccxt/async_support/paymium.py +564 -0
- ccxt/async_support/phemex.py +4473 -0
- ccxt/async_support/poloniex.py +2232 -0
- ccxt/async_support/poloniexfutures.py +1717 -0
- ccxt/async_support/probit.py +1734 -0
- ccxt/async_support/ramzinex.py +476 -0
- ccxt/async_support/sarmayex.py +357 -0
- ccxt/async_support/sarrafex.py +478 -0
- ccxt/async_support/tabdeal.py +364 -0
- ccxt/async_support/tetherland.py +349 -0
- ccxt/async_support/timex.py +1593 -0
- ccxt/async_support/tokocrypto.py +2405 -0
- ccxt/async_support/tradeogre.py +608 -0
- ccxt/async_support/twox.py +326 -0
- ccxt/async_support/ubitex.py +409 -0
- ccxt/async_support/upbit.py +1833 -0
- ccxt/async_support/vertex.py +2922 -0
- ccxt/async_support/wallex.py +445 -0
- ccxt/async_support/wavesexchange.py +2473 -0
- ccxt/async_support/wazirx.py +1224 -0
- ccxt/async_support/whitebit.py +2469 -0
- ccxt/async_support/woo.py +3114 -0
- ccxt/async_support/woofipro.py +2533 -0
- ccxt/async_support/xt.py +4454 -0
- ccxt/async_support/yobit.py +1283 -0
- ccxt/async_support/zaif.py +725 -0
- ccxt/async_support/zonda.py +1828 -0
- ccxt/base/__init__.py +27 -0
- ccxt/base/decimal_to_precision.py +174 -0
- ccxt/base/errors.py +242 -0
- ccxt/base/exchange.py +5941 -0
- ccxt/base/precise.py +287 -0
- ccxt/base/types.py +502 -0
- ccxt/bequant.py +33 -0
- ccxt/bigone.py +2112 -0
- ccxt/binance.py +12233 -0
- ccxt/binancecoinm.py +45 -0
- ccxt/binanceus.py +211 -0
- ccxt/binanceusdm.py +58 -0
- ccxt/bingx.py +4324 -0
- ccxt/bit2c.py +866 -0
- ccxt/bitbank.py +1001 -0
- ccxt/bitbay.py +17 -0
- ccxt/bitbns.py +1154 -0
- ccxt/bitcoincom.py +17 -0
- ccxt/bitfinex.py +1617 -0
- ccxt/bitfinex2.py +3552 -0
- ccxt/bitflyer.py +995 -0
- ccxt/bitget.py +8272 -0
- ccxt/bithumb.py +1061 -0
- ccxt/bitimen.py +401 -0
- ccxt/bitir.py +490 -0
- ccxt/bitmart.py +4415 -0
- ccxt/bitmex.py +2756 -0
- ccxt/bitopro.py +1630 -0
- ccxt/bitpanda.py +16 -0
- ccxt/bitpin.py +454 -0
- ccxt/bitrue.py +3026 -0
- ccxt/bitso.py +1670 -0
- ccxt/bitstamp.py +2203 -0
- ccxt/bitteam.py +2239 -0
- ccxt/bitvavo.py +1968 -0
- ccxt/bl3p.py +485 -0
- ccxt/blockchaincom.py +1104 -0
- ccxt/blofin.py +2066 -0
- ccxt/btcalpha.py +891 -0
- ccxt/btcbox.py +544 -0
- ccxt/btcmarkets.py +1221 -0
- ccxt/btcturk.py +911 -0
- ccxt/bybit.py +8158 -0
- ccxt/cex.py +1605 -0
- ccxt/coinbase.py +4474 -0
- ccxt/coinbaseadvanced.py +17 -0
- ccxt/coinbaseexchange.py +1734 -0
- ccxt/coinbaseinternational.py +1899 -0
- ccxt/coincatch.py +5069 -0
- ccxt/coincheck.py +815 -0
- ccxt/coinex.py +5525 -0
- ccxt/coinlist.py +2243 -0
- ccxt/coinmate.py +1067 -0
- ccxt/coinmetro.py +1797 -0
- ccxt/coinone.py +1127 -0
- ccxt/coinsph.py +1850 -0
- ccxt/coinspot.py +534 -0
- ccxt/cryptocom.py +2822 -0
- ccxt/currencycom.py +1950 -0
- ccxt/delta.py +3376 -0
- ccxt/deribit.py +3437 -0
- ccxt/digifinex.py +3959 -0
- ccxt/eterex.py +286 -0
- ccxt/excoino.py +399 -0
- ccxt/exir.py +375 -0
- ccxt/exmo.py +2462 -0
- ccxt/exnovin.py +360 -0
- ccxt/farhadexchange.py +266 -0
- ccxt/fmfwio.py +34 -0
- ccxt/gate.py +6975 -0
- ccxt/gateio.py +16 -0
- ccxt/gemini.py +1824 -0
- ccxt/hashkey.py +4150 -0
- ccxt/hitbtc.py +3423 -0
- ccxt/hitbtc3.py +16 -0
- ccxt/hitobit.py +391 -0
- ccxt/hollaex.py +1813 -0
- ccxt/htx.py +8505 -0
- ccxt/huobi.py +16 -0
- ccxt/huobijp.py +1801 -0
- ccxt/hyperliquid.py +2430 -0
- ccxt/idex.py +1766 -0
- ccxt/independentreserve.py +784 -0
- ccxt/indodax.py +1247 -0
- ccxt/jibitex.py +395 -0
- ccxt/kraken.py +2894 -0
- ccxt/krakenfutures.py +2601 -0
- ccxt/kucoin.py +4601 -0
- ccxt/kucoinfutures.py +2698 -0
- ccxt/kuna.py +1841 -0
- ccxt/latoken.py +1664 -0
- ccxt/lbank.py +2682 -0
- ccxt/luno.py +1067 -0
- ccxt/lykke.py +1270 -0
- ccxt/mercado.py +842 -0
- ccxt/mexc.py +5369 -0
- ccxt/ndax.py +2354 -0
- ccxt/nobitex.py +419 -0
- ccxt/novadax.py +1484 -0
- ccxt/oceanex.py +903 -0
- ccxt/okcoin.py +2936 -0
- ccxt/okexchange.py +349 -0
- ccxt/okx.py +7826 -0
- ccxt/ompfinex.py +472 -0
- ccxt/onetrading.py +1911 -0
- ccxt/oxfun.py +2772 -0
- ccxt/p2b.py +1194 -0
- ccxt/paradex.py +2015 -0
- ccxt/paymium.py +564 -0
- ccxt/phemex.py +4473 -0
- ccxt/poloniex.py +2232 -0
- ccxt/poloniexfutures.py +1717 -0
- ccxt/pro/__init__.py +149 -0
- ccxt/pro/alpaca.py +685 -0
- ccxt/pro/ascendex.py +916 -0
- ccxt/pro/bequant.py +38 -0
- ccxt/pro/binance.py +3488 -0
- ccxt/pro/binancecoinm.py +28 -0
- ccxt/pro/binanceus.py +48 -0
- ccxt/pro/binanceusdm.py +31 -0
- ccxt/pro/bingx.py +1264 -0
- ccxt/pro/bitcoincom.py +34 -0
- ccxt/pro/bitfinex.py +621 -0
- ccxt/pro/bitfinex2.py +1083 -0
- ccxt/pro/bitget.py +1692 -0
- ccxt/pro/bithumb.py +368 -0
- ccxt/pro/bitmart.py +1449 -0
- ccxt/pro/bitmex.py +1656 -0
- ccxt/pro/bitopro.py +445 -0
- ccxt/pro/bitpanda.py +15 -0
- ccxt/pro/bitrue.py +447 -0
- ccxt/pro/bitstamp.py +522 -0
- ccxt/pro/bitvavo.py +1270 -0
- ccxt/pro/blockchaincom.py +738 -0
- ccxt/pro/blofin.py +692 -0
- ccxt/pro/bybit.py +2000 -0
- ccxt/pro/cex.py +1440 -0
- ccxt/pro/coinbase.py +678 -0
- ccxt/pro/coinbaseadvanced.py +16 -0
- ccxt/pro/coinbaseexchange.py +895 -0
- ccxt/pro/coinbaseinternational.py +620 -0
- ccxt/pro/coincatch.py +1464 -0
- ccxt/pro/coincheck.py +199 -0
- ccxt/pro/coinex.py +1061 -0
- ccxt/pro/coinone.py +395 -0
- ccxt/pro/cryptocom.py +947 -0
- ccxt/pro/currencycom.py +536 -0
- ccxt/pro/deribit.py +892 -0
- ccxt/pro/exmo.py +629 -0
- ccxt/pro/gate.py +1416 -0
- ccxt/pro/gateio.py +15 -0
- ccxt/pro/gemini.py +865 -0
- ccxt/pro/hashkey.py +802 -0
- ccxt/pro/hitbtc.py +1216 -0
- ccxt/pro/hollaex.py +563 -0
- ccxt/pro/htx.py +2215 -0
- ccxt/pro/huobi.py +15 -0
- ccxt/pro/huobijp.py +570 -0
- ccxt/pro/hyperliquid.py +525 -0
- ccxt/pro/idex.py +672 -0
- ccxt/pro/independentreserve.py +270 -0
- ccxt/pro/kraken.py +1356 -0
- ccxt/pro/krakenfutures.py +1492 -0
- ccxt/pro/kucoin.py +1133 -0
- ccxt/pro/kucoinfutures.py +1081 -0
- ccxt/pro/lbank.py +843 -0
- ccxt/pro/luno.py +303 -0
- ccxt/pro/mexc.py +1122 -0
- ccxt/pro/ndax.py +506 -0
- ccxt/pro/okcoin.py +698 -0
- ccxt/pro/okx.py +1851 -0
- ccxt/pro/onetrading.py +1275 -0
- ccxt/pro/oxfun.py +950 -0
- ccxt/pro/p2b.py +419 -0
- ccxt/pro/paradex.py +352 -0
- ccxt/pro/phemex.py +1441 -0
- ccxt/pro/poloniex.py +1166 -0
- ccxt/pro/poloniexfutures.py +990 -0
- ccxt/pro/probit.py +551 -0
- ccxt/pro/upbit.py +520 -0
- ccxt/pro/vertex.py +943 -0
- ccxt/pro/wazirx.py +749 -0
- ccxt/pro/whitebit.py +864 -0
- ccxt/pro/woo.py +1078 -0
- ccxt/pro/woofipro.py +1183 -0
- ccxt/pro/xt.py +1067 -0
- ccxt/probit.py +1734 -0
- ccxt/ramzinex.py +476 -0
- ccxt/sarmayex.py +357 -0
- ccxt/sarrafex.py +478 -0
- ccxt/static_dependencies/__init__.py +1 -0
- ccxt/static_dependencies/ecdsa/__init__.py +14 -0
- ccxt/static_dependencies/ecdsa/_version.py +520 -0
- ccxt/static_dependencies/ecdsa/curves.py +56 -0
- ccxt/static_dependencies/ecdsa/der.py +221 -0
- ccxt/static_dependencies/ecdsa/ecdsa.py +310 -0
- ccxt/static_dependencies/ecdsa/ellipticcurve.py +197 -0
- ccxt/static_dependencies/ecdsa/keys.py +332 -0
- ccxt/static_dependencies/ecdsa/numbertheory.py +531 -0
- ccxt/static_dependencies/ecdsa/rfc6979.py +100 -0
- ccxt/static_dependencies/ecdsa/util.py +266 -0
- ccxt/static_dependencies/ethereum/__init__.py +7 -0
- ccxt/static_dependencies/ethereum/abi/__init__.py +16 -0
- ccxt/static_dependencies/ethereum/abi/abi.py +19 -0
- ccxt/static_dependencies/ethereum/abi/base.py +152 -0
- ccxt/static_dependencies/ethereum/abi/codec.py +217 -0
- ccxt/static_dependencies/ethereum/abi/constants.py +3 -0
- ccxt/static_dependencies/ethereum/abi/decoding.py +565 -0
- ccxt/static_dependencies/ethereum/abi/encoding.py +720 -0
- ccxt/static_dependencies/ethereum/abi/exceptions.py +139 -0
- ccxt/static_dependencies/ethereum/abi/grammar.py +443 -0
- ccxt/static_dependencies/ethereum/abi/packed.py +13 -0
- ccxt/static_dependencies/ethereum/abi/py.typed +0 -0
- ccxt/static_dependencies/ethereum/abi/registry.py +643 -0
- ccxt/static_dependencies/ethereum/abi/tools/__init__.py +3 -0
- ccxt/static_dependencies/ethereum/abi/tools/_strategies.py +230 -0
- ccxt/static_dependencies/ethereum/abi/utils/__init__.py +0 -0
- ccxt/static_dependencies/ethereum/abi/utils/numeric.py +83 -0
- ccxt/static_dependencies/ethereum/abi/utils/padding.py +27 -0
- ccxt/static_dependencies/ethereum/abi/utils/string.py +19 -0
- ccxt/static_dependencies/ethereum/account/__init__.py +3 -0
- ccxt/static_dependencies/ethereum/account/encode_typed_data/__init__.py +4 -0
- ccxt/static_dependencies/ethereum/account/encode_typed_data/encoding_and_hashing.py +239 -0
- ccxt/static_dependencies/ethereum/account/encode_typed_data/helpers.py +40 -0
- ccxt/static_dependencies/ethereum/account/messages.py +263 -0
- ccxt/static_dependencies/ethereum/account/py.typed +0 -0
- ccxt/static_dependencies/ethereum/hexbytes/__init__.py +5 -0
- ccxt/static_dependencies/ethereum/hexbytes/_utils.py +54 -0
- ccxt/static_dependencies/ethereum/hexbytes/main.py +65 -0
- ccxt/static_dependencies/ethereum/hexbytes/py.typed +0 -0
- ccxt/static_dependencies/ethereum/typing/__init__.py +63 -0
- ccxt/static_dependencies/ethereum/typing/abi.py +6 -0
- ccxt/static_dependencies/ethereum/typing/bls.py +7 -0
- ccxt/static_dependencies/ethereum/typing/discovery.py +5 -0
- ccxt/static_dependencies/ethereum/typing/encoding.py +7 -0
- ccxt/static_dependencies/ethereum/typing/enums.py +17 -0
- ccxt/static_dependencies/ethereum/typing/ethpm.py +9 -0
- ccxt/static_dependencies/ethereum/typing/evm.py +20 -0
- ccxt/static_dependencies/ethereum/typing/networks.py +1122 -0
- ccxt/static_dependencies/ethereum/typing/py.typed +0 -0
- ccxt/static_dependencies/ethereum/utils/__init__.py +115 -0
- ccxt/static_dependencies/ethereum/utils/abi.py +72 -0
- ccxt/static_dependencies/ethereum/utils/address.py +171 -0
- ccxt/static_dependencies/ethereum/utils/applicators.py +151 -0
- ccxt/static_dependencies/ethereum/utils/conversions.py +190 -0
- ccxt/static_dependencies/ethereum/utils/currency.py +107 -0
- ccxt/static_dependencies/ethereum/utils/curried/__init__.py +269 -0
- ccxt/static_dependencies/ethereum/utils/debug.py +20 -0
- ccxt/static_dependencies/ethereum/utils/decorators.py +132 -0
- ccxt/static_dependencies/ethereum/utils/encoding.py +6 -0
- ccxt/static_dependencies/ethereum/utils/exceptions.py +4 -0
- ccxt/static_dependencies/ethereum/utils/functional.py +75 -0
- ccxt/static_dependencies/ethereum/utils/hexadecimal.py +74 -0
- ccxt/static_dependencies/ethereum/utils/humanize.py +188 -0
- ccxt/static_dependencies/ethereum/utils/logging.py +159 -0
- ccxt/static_dependencies/ethereum/utils/module_loading.py +31 -0
- ccxt/static_dependencies/ethereum/utils/numeric.py +43 -0
- ccxt/static_dependencies/ethereum/utils/py.typed +0 -0
- ccxt/static_dependencies/ethereum/utils/toolz.py +76 -0
- ccxt/static_dependencies/ethereum/utils/types.py +54 -0
- ccxt/static_dependencies/ethereum/utils/typing/__init__.py +18 -0
- ccxt/static_dependencies/ethereum/utils/typing/misc.py +14 -0
- ccxt/static_dependencies/ethereum/utils/units.py +31 -0
- ccxt/static_dependencies/keccak/__init__.py +3 -0
- ccxt/static_dependencies/keccak/keccak.py +197 -0
- ccxt/static_dependencies/lark/__init__.py +38 -0
- ccxt/static_dependencies/lark/__pyinstaller/__init__.py +6 -0
- ccxt/static_dependencies/lark/__pyinstaller/hook-lark.py +14 -0
- ccxt/static_dependencies/lark/ast_utils.py +59 -0
- ccxt/static_dependencies/lark/common.py +86 -0
- ccxt/static_dependencies/lark/exceptions.py +292 -0
- ccxt/static_dependencies/lark/grammar.py +130 -0
- ccxt/static_dependencies/lark/grammars/__init__.py +0 -0
- ccxt/static_dependencies/lark/indenter.py +143 -0
- ccxt/static_dependencies/lark/lark.py +658 -0
- ccxt/static_dependencies/lark/lexer.py +678 -0
- ccxt/static_dependencies/lark/load_grammar.py +1428 -0
- ccxt/static_dependencies/lark/parse_tree_builder.py +391 -0
- ccxt/static_dependencies/lark/parser_frontends.py +257 -0
- ccxt/static_dependencies/lark/parsers/__init__.py +0 -0
- ccxt/static_dependencies/lark/parsers/cyk.py +340 -0
- ccxt/static_dependencies/lark/parsers/earley.py +314 -0
- ccxt/static_dependencies/lark/parsers/earley_common.py +42 -0
- ccxt/static_dependencies/lark/parsers/earley_forest.py +801 -0
- ccxt/static_dependencies/lark/parsers/grammar_analysis.py +203 -0
- ccxt/static_dependencies/lark/parsers/lalr_analysis.py +332 -0
- ccxt/static_dependencies/lark/parsers/lalr_interactive_parser.py +158 -0
- ccxt/static_dependencies/lark/parsers/lalr_parser.py +122 -0
- ccxt/static_dependencies/lark/parsers/lalr_parser_state.py +110 -0
- ccxt/static_dependencies/lark/parsers/xearley.py +165 -0
- ccxt/static_dependencies/lark/reconstruct.py +107 -0
- ccxt/static_dependencies/lark/tools/__init__.py +70 -0
- ccxt/static_dependencies/lark/tools/nearley.py +202 -0
- ccxt/static_dependencies/lark/tools/serialize.py +32 -0
- ccxt/static_dependencies/lark/tools/standalone.py +196 -0
- ccxt/static_dependencies/lark/tree.py +267 -0
- ccxt/static_dependencies/lark/tree_matcher.py +186 -0
- ccxt/static_dependencies/lark/tree_templates.py +180 -0
- ccxt/static_dependencies/lark/utils.py +343 -0
- ccxt/static_dependencies/lark/visitors.py +596 -0
- ccxt/static_dependencies/marshmallow/__init__.py +81 -0
- ccxt/static_dependencies/marshmallow/base.py +65 -0
- ccxt/static_dependencies/marshmallow/class_registry.py +94 -0
- ccxt/static_dependencies/marshmallow/decorators.py +231 -0
- ccxt/static_dependencies/marshmallow/error_store.py +60 -0
- ccxt/static_dependencies/marshmallow/exceptions.py +71 -0
- ccxt/static_dependencies/marshmallow/fields.py +2114 -0
- ccxt/static_dependencies/marshmallow/orderedset.py +89 -0
- ccxt/static_dependencies/marshmallow/schema.py +1228 -0
- ccxt/static_dependencies/marshmallow/types.py +12 -0
- ccxt/static_dependencies/marshmallow/utils.py +378 -0
- ccxt/static_dependencies/marshmallow/validate.py +678 -0
- ccxt/static_dependencies/marshmallow/warnings.py +2 -0
- ccxt/static_dependencies/marshmallow_dataclass/__init__.py +1047 -0
- ccxt/static_dependencies/marshmallow_dataclass/collection_field.py +51 -0
- ccxt/static_dependencies/marshmallow_dataclass/lazy_class_attribute.py +45 -0
- ccxt/static_dependencies/marshmallow_dataclass/mypy.py +71 -0
- ccxt/static_dependencies/marshmallow_dataclass/typing.py +14 -0
- ccxt/static_dependencies/marshmallow_dataclass/union_field.py +82 -0
- ccxt/static_dependencies/marshmallow_oneofschema/__init__.py +1 -0
- ccxt/static_dependencies/marshmallow_oneofschema/one_of_schema.py +193 -0
- ccxt/static_dependencies/msgpack/__init__.py +55 -0
- ccxt/static_dependencies/msgpack/exceptions.py +48 -0
- ccxt/static_dependencies/msgpack/ext.py +168 -0
- ccxt/static_dependencies/msgpack/fallback.py +951 -0
- ccxt/static_dependencies/parsimonious/__init__.py +10 -0
- ccxt/static_dependencies/parsimonious/exceptions.py +105 -0
- ccxt/static_dependencies/parsimonious/expressions.py +479 -0
- ccxt/static_dependencies/parsimonious/grammar.py +487 -0
- ccxt/static_dependencies/parsimonious/nodes.py +325 -0
- ccxt/static_dependencies/parsimonious/utils.py +40 -0
- ccxt/static_dependencies/starknet/__init__.py +0 -0
- ccxt/static_dependencies/starknet/cairo/__init__.py +0 -0
- ccxt/static_dependencies/starknet/cairo/data_types.py +123 -0
- ccxt/static_dependencies/starknet/cairo/deprecated_parse/__init__.py +0 -0
- ccxt/static_dependencies/starknet/cairo/deprecated_parse/cairo_types.py +77 -0
- ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser.py +46 -0
- ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser_transformer.py +138 -0
- ccxt/static_dependencies/starknet/cairo/felt.py +64 -0
- ccxt/static_dependencies/starknet/cairo/type_parser.py +121 -0
- ccxt/static_dependencies/starknet/cairo/v1/__init__.py +0 -0
- ccxt/static_dependencies/starknet/cairo/v1/type_parser.py +59 -0
- ccxt/static_dependencies/starknet/cairo/v2/__init__.py +0 -0
- ccxt/static_dependencies/starknet/cairo/v2/type_parser.py +77 -0
- ccxt/static_dependencies/starknet/ccxt_utils.py +7 -0
- ccxt/static_dependencies/starknet/common.py +15 -0
- ccxt/static_dependencies/starknet/constants.py +39 -0
- ccxt/static_dependencies/starknet/hash/__init__.py +0 -0
- ccxt/static_dependencies/starknet/hash/address.py +79 -0
- ccxt/static_dependencies/starknet/hash/compiled_class_hash_objects.py +111 -0
- ccxt/static_dependencies/starknet/hash/selector.py +16 -0
- ccxt/static_dependencies/starknet/hash/storage.py +12 -0
- ccxt/static_dependencies/starknet/hash/utils.py +78 -0
- ccxt/static_dependencies/starknet/models/__init__.py +0 -0
- ccxt/static_dependencies/starknet/models/typed_data.py +45 -0
- ccxt/static_dependencies/starknet/serialization/__init__.py +24 -0
- ccxt/static_dependencies/starknet/serialization/_calldata_reader.py +40 -0
- ccxt/static_dependencies/starknet/serialization/_context.py +142 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/__init__.py +10 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/_common.py +82 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/array_serializer.py +43 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/bool_serializer.py +37 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/byte_array_serializer.py +66 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/cairo_data_serializer.py +71 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/enum_serializer.py +71 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/felt_serializer.py +50 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/named_tuple_serializer.py +58 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/option_serializer.py +43 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/output_serializer.py +40 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/payload_serializer.py +72 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/struct_serializer.py +36 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/tuple_serializer.py +36 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/uint256_serializer.py +76 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/uint_serializer.py +100 -0
- ccxt/static_dependencies/starknet/serialization/data_serializers/unit_serializer.py +32 -0
- ccxt/static_dependencies/starknet/serialization/errors.py +10 -0
- ccxt/static_dependencies/starknet/serialization/factory.py +229 -0
- ccxt/static_dependencies/starknet/serialization/function_serialization_adapter.py +110 -0
- ccxt/static_dependencies/starknet/serialization/tuple_dataclass.py +59 -0
- ccxt/static_dependencies/starknet/utils/__init__.py +0 -0
- ccxt/static_dependencies/starknet/utils/constructor_args_translator.py +86 -0
- ccxt/static_dependencies/starknet/utils/iterable.py +13 -0
- ccxt/static_dependencies/starknet/utils/schema.py +13 -0
- ccxt/static_dependencies/starknet/utils/typed_data.py +182 -0
- ccxt/static_dependencies/starkware/__init__.py +0 -0
- ccxt/static_dependencies/starkware/crypto/__init__.py +0 -0
- ccxt/static_dependencies/starkware/crypto/fast_pedersen_hash.py +50 -0
- ccxt/static_dependencies/starkware/crypto/math_utils.py +78 -0
- ccxt/static_dependencies/starkware/crypto/signature.py +2344 -0
- ccxt/static_dependencies/starkware/crypto/utils.py +63 -0
- ccxt/static_dependencies/sympy/__init__.py +0 -0
- ccxt/static_dependencies/sympy/core/__init__.py +0 -0
- ccxt/static_dependencies/sympy/core/intfunc.py +35 -0
- ccxt/static_dependencies/sympy/external/__init__.py +0 -0
- ccxt/static_dependencies/sympy/external/gmpy.py +345 -0
- ccxt/static_dependencies/sympy/external/importtools.py +187 -0
- ccxt/static_dependencies/sympy/external/ntheory.py +637 -0
- ccxt/static_dependencies/sympy/external/pythonmpq.py +341 -0
- ccxt/static_dependencies/toolz/__init__.py +26 -0
- ccxt/static_dependencies/toolz/_signatures.py +784 -0
- ccxt/static_dependencies/toolz/_version.py +520 -0
- ccxt/static_dependencies/toolz/compatibility.py +30 -0
- ccxt/static_dependencies/toolz/curried/__init__.py +101 -0
- ccxt/static_dependencies/toolz/curried/exceptions.py +22 -0
- ccxt/static_dependencies/toolz/curried/operator.py +22 -0
- ccxt/static_dependencies/toolz/dicttoolz.py +339 -0
- ccxt/static_dependencies/toolz/functoolz.py +1049 -0
- ccxt/static_dependencies/toolz/itertoolz.py +1057 -0
- ccxt/static_dependencies/toolz/recipes.py +46 -0
- ccxt/static_dependencies/toolz/utils.py +9 -0
- ccxt/static_dependencies/typing_inspect/__init__.py +0 -0
- ccxt/static_dependencies/typing_inspect/typing_inspect.py +851 -0
- ccxt/tabdeal.py +364 -0
- ccxt/test/__init__.py +3 -0
- ccxt/test/base/__init__.py +29 -0
- ccxt/test/base/test_account.py +26 -0
- ccxt/test/base/test_balance.py +56 -0
- ccxt/test/base/test_borrow_interest.py +35 -0
- ccxt/test/base/test_borrow_rate.py +32 -0
- ccxt/test/base/test_calculate_fee.py +51 -0
- ccxt/test/base/test_crypto.py +127 -0
- ccxt/test/base/test_currency.py +76 -0
- ccxt/test/base/test_datetime.py +109 -0
- ccxt/test/base/test_decimal_to_precision.py +392 -0
- ccxt/test/base/test_deep_extend.py +68 -0
- ccxt/test/base/test_deposit_withdrawal.py +50 -0
- ccxt/test/base/test_exchange_datetime_functions.py +76 -0
- ccxt/test/base/test_funding_rate_history.py +29 -0
- ccxt/test/base/test_last_price.py +31 -0
- ccxt/test/base/test_ledger_entry.py +45 -0
- ccxt/test/base/test_ledger_item.py +48 -0
- ccxt/test/base/test_leverage_tier.py +33 -0
- ccxt/test/base/test_liquidation.py +50 -0
- ccxt/test/base/test_margin_mode.py +24 -0
- ccxt/test/base/test_margin_modification.py +35 -0
- ccxt/test/base/test_market.py +193 -0
- ccxt/test/base/test_number.py +411 -0
- ccxt/test/base/test_ohlcv.py +33 -0
- ccxt/test/base/test_open_interest.py +32 -0
- ccxt/test/base/test_order.py +64 -0
- ccxt/test/base/test_order_book.py +69 -0
- ccxt/test/base/test_position.py +60 -0
- ccxt/test/base/test_shared_methods.py +353 -0
- ccxt/test/base/test_status.py +24 -0
- ccxt/test/base/test_throttle.py +126 -0
- ccxt/test/base/test_ticker.py +92 -0
- ccxt/test/base/test_trade.py +47 -0
- ccxt/test/base/test_trading_fee.py +26 -0
- ccxt/test/base/test_transaction.py +39 -0
- ccxt/test/test_async.py +1649 -0
- ccxt/test/test_sync.py +1648 -0
- ccxt/test/tests_async.py +1558 -0
- ccxt/test/tests_helpers.py +287 -0
- ccxt/test/tests_init.py +39 -0
- ccxt/test/tests_sync.py +1555 -0
- ccxt/tetherland.py +349 -0
- ccxt/timex.py +1593 -0
- ccxt/tokocrypto.py +2405 -0
- ccxt/tradeogre.py +608 -0
- ccxt/twox.py +326 -0
- ccxt/ubitex.py +409 -0
- ccxt/upbit.py +1833 -0
- ccxt/vertex.py +2922 -0
- ccxt/wallex.py +445 -0
- ccxt/wavesexchange.py +2472 -0
- ccxt/wazirx.py +1224 -0
- ccxt/whitebit.py +2469 -0
- ccxt/woo.py +3114 -0
- ccxt/woofipro.py +2533 -0
- ccxt/xt.py +4453 -0
- ccxt/yobit.py +1283 -0
- ccxt/zaif.py +725 -0
- ccxt/zonda.py +1828 -0
- ccxt_ir-4.3.46.0.1.dist-info/LICENSE.txt +21 -0
- ccxt_ir-4.3.46.0.1.dist-info/METADATA +655 -0
- ccxt_ir-4.3.46.0.1.dist-info/RECORD +772 -0
- ccxt_ir-4.3.46.0.1.dist-info/WHEEL +6 -0
- ccxt_ir-4.3.46.0.1.dist-info/top_level.txt +1 -0
ccxt/abstract/binance.py
ADDED
|
@@ -0,0 +1,712 @@
|
|
|
1
|
+
from ccxt.base.types import Entry
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class ImplicitAPI:
|
|
5
|
+
sapi_get_copytrading_futures_userstatus = sapiGetCopyTradingFuturesUserStatus = Entry('copyTrading/futures/userStatus', 'sapi', 'GET', {'cost': 2})
|
|
6
|
+
sapi_get_copytrading_futures_leadsymbol = sapiGetCopyTradingFuturesLeadSymbol = Entry('copyTrading/futures/leadSymbol', 'sapi', 'GET', {'cost': 2})
|
|
7
|
+
sapi_get_system_status = sapiGetSystemStatus = Entry('system/status', 'sapi', 'GET', {'cost': 0.1})
|
|
8
|
+
sapi_get_accountsnapshot = sapiGetAccountSnapshot = Entry('accountSnapshot', 'sapi', 'GET', {'cost': 240})
|
|
9
|
+
sapi_get_account_info = sapiGetAccountInfo = Entry('account/info', 'sapi', 'GET', {'cost': 0.1})
|
|
10
|
+
sapi_get_margin_asset = sapiGetMarginAsset = Entry('margin/asset', 'sapi', 'GET', {'cost': 1})
|
|
11
|
+
sapi_get_margin_pair = sapiGetMarginPair = Entry('margin/pair', 'sapi', 'GET', {'cost': 1})
|
|
12
|
+
sapi_get_margin_allassets = sapiGetMarginAllAssets = Entry('margin/allAssets', 'sapi', 'GET', {'cost': 0.1})
|
|
13
|
+
sapi_get_margin_allpairs = sapiGetMarginAllPairs = Entry('margin/allPairs', 'sapi', 'GET', {'cost': 0.1})
|
|
14
|
+
sapi_get_margin_priceindex = sapiGetMarginPriceIndex = Entry('margin/priceIndex', 'sapi', 'GET', {'cost': 1})
|
|
15
|
+
sapi_get_spot_delist_schedule = sapiGetSpotDelistSchedule = Entry('spot/delist-schedule', 'sapi', 'GET', {'cost': 10})
|
|
16
|
+
sapi_get_asset_assetdividend = sapiGetAssetAssetDividend = Entry('asset/assetDividend', 'sapi', 'GET', {'cost': 1})
|
|
17
|
+
sapi_get_asset_dribblet = sapiGetAssetDribblet = Entry('asset/dribblet', 'sapi', 'GET', {'cost': 0.1})
|
|
18
|
+
sapi_get_asset_transfer = sapiGetAssetTransfer = Entry('asset/transfer', 'sapi', 'GET', {'cost': 0.1})
|
|
19
|
+
sapi_get_asset_assetdetail = sapiGetAssetAssetDetail = Entry('asset/assetDetail', 'sapi', 'GET', {'cost': 0.1})
|
|
20
|
+
sapi_get_asset_tradefee = sapiGetAssetTradeFee = Entry('asset/tradeFee', 'sapi', 'GET', {'cost': 0.1})
|
|
21
|
+
sapi_get_asset_ledger_transfer_cloud_mining_querybypage = sapiGetAssetLedgerTransferCloudMiningQueryByPage = Entry('asset/ledger-transfer/cloud-mining/queryByPage', 'sapi', 'GET', {'cost': 4.0002})
|
|
22
|
+
sapi_get_asset_convert_transfer_querybypage = sapiGetAssetConvertTransferQueryByPage = Entry('asset/convert-transfer/queryByPage', 'sapi', 'GET', {'cost': 0.033335})
|
|
23
|
+
sapi_get_asset_wallet_balance = sapiGetAssetWalletBalance = Entry('asset/wallet/balance', 'sapi', 'GET', {'cost': 6})
|
|
24
|
+
sapi_get_asset_custody_transfer_history = sapiGetAssetCustodyTransferHistory = Entry('asset/custody/transfer-history', 'sapi', 'GET', {'cost': 6})
|
|
25
|
+
sapi_get_margin_borrow_repay = sapiGetMarginBorrowRepay = Entry('margin/borrow-repay', 'sapi', 'GET', {'cost': 1})
|
|
26
|
+
sapi_get_margin_loan = sapiGetMarginLoan = Entry('margin/loan', 'sapi', 'GET', {'cost': 1})
|
|
27
|
+
sapi_get_margin_repay = sapiGetMarginRepay = Entry('margin/repay', 'sapi', 'GET', {'cost': 1})
|
|
28
|
+
sapi_get_margin_account = sapiGetMarginAccount = Entry('margin/account', 'sapi', 'GET', {'cost': 1})
|
|
29
|
+
sapi_get_margin_transfer = sapiGetMarginTransfer = Entry('margin/transfer', 'sapi', 'GET', {'cost': 0.1})
|
|
30
|
+
sapi_get_margin_interesthistory = sapiGetMarginInterestHistory = Entry('margin/interestHistory', 'sapi', 'GET', {'cost': 0.1})
|
|
31
|
+
sapi_get_margin_forceliquidationrec = sapiGetMarginForceLiquidationRec = Entry('margin/forceLiquidationRec', 'sapi', 'GET', {'cost': 0.1})
|
|
32
|
+
sapi_get_margin_order = sapiGetMarginOrder = Entry('margin/order', 'sapi', 'GET', {'cost': 1})
|
|
33
|
+
sapi_get_margin_openorders = sapiGetMarginOpenOrders = Entry('margin/openOrders', 'sapi', 'GET', {'cost': 1})
|
|
34
|
+
sapi_get_margin_allorders = sapiGetMarginAllOrders = Entry('margin/allOrders', 'sapi', 'GET', {'cost': 20})
|
|
35
|
+
sapi_get_margin_mytrades = sapiGetMarginMyTrades = Entry('margin/myTrades', 'sapi', 'GET', {'cost': 1})
|
|
36
|
+
sapi_get_margin_maxborrowable = sapiGetMarginMaxBorrowable = Entry('margin/maxBorrowable', 'sapi', 'GET', {'cost': 5})
|
|
37
|
+
sapi_get_margin_maxtransferable = sapiGetMarginMaxTransferable = Entry('margin/maxTransferable', 'sapi', 'GET', {'cost': 5})
|
|
38
|
+
sapi_get_margin_tradecoeff = sapiGetMarginTradeCoeff = Entry('margin/tradeCoeff', 'sapi', 'GET', {'cost': 1})
|
|
39
|
+
sapi_get_margin_isolated_transfer = sapiGetMarginIsolatedTransfer = Entry('margin/isolated/transfer', 'sapi', 'GET', {'cost': 0.1})
|
|
40
|
+
sapi_get_margin_isolated_account = sapiGetMarginIsolatedAccount = Entry('margin/isolated/account', 'sapi', 'GET', {'cost': 1})
|
|
41
|
+
sapi_get_margin_isolated_pair = sapiGetMarginIsolatedPair = Entry('margin/isolated/pair', 'sapi', 'GET', {'cost': 1})
|
|
42
|
+
sapi_get_margin_isolated_allpairs = sapiGetMarginIsolatedAllPairs = Entry('margin/isolated/allPairs', 'sapi', 'GET', {'cost': 1})
|
|
43
|
+
sapi_get_margin_isolated_accountlimit = sapiGetMarginIsolatedAccountLimit = Entry('margin/isolated/accountLimit', 'sapi', 'GET', {'cost': 0.1})
|
|
44
|
+
sapi_get_margin_interestratehistory = sapiGetMarginInterestRateHistory = Entry('margin/interestRateHistory', 'sapi', 'GET', {'cost': 0.1})
|
|
45
|
+
sapi_get_margin_orderlist = sapiGetMarginOrderList = Entry('margin/orderList', 'sapi', 'GET', {'cost': 1})
|
|
46
|
+
sapi_get_margin_allorderlist = sapiGetMarginAllOrderList = Entry('margin/allOrderList', 'sapi', 'GET', {'cost': 20})
|
|
47
|
+
sapi_get_margin_openorderlist = sapiGetMarginOpenOrderList = Entry('margin/openOrderList', 'sapi', 'GET', {'cost': 1})
|
|
48
|
+
sapi_get_margin_crossmargindata = sapiGetMarginCrossMarginData = Entry('margin/crossMarginData', 'sapi', 'GET', {'cost': 0.1, 'noCoin': 0.5})
|
|
49
|
+
sapi_get_margin_isolatedmargindata = sapiGetMarginIsolatedMarginData = Entry('margin/isolatedMarginData', 'sapi', 'GET', {'cost': 0.1, 'noCoin': 1})
|
|
50
|
+
sapi_get_margin_isolatedmargintier = sapiGetMarginIsolatedMarginTier = Entry('margin/isolatedMarginTier', 'sapi', 'GET', {'cost': 0.1})
|
|
51
|
+
sapi_get_margin_ratelimit_order = sapiGetMarginRateLimitOrder = Entry('margin/rateLimit/order', 'sapi', 'GET', {'cost': 2})
|
|
52
|
+
sapi_get_margin_dribblet = sapiGetMarginDribblet = Entry('margin/dribblet', 'sapi', 'GET', {'cost': 0.1})
|
|
53
|
+
sapi_get_margin_dust = sapiGetMarginDust = Entry('margin/dust', 'sapi', 'GET', {'cost': 20.001})
|
|
54
|
+
sapi_get_margin_crossmargincollateralratio = sapiGetMarginCrossMarginCollateralRatio = Entry('margin/crossMarginCollateralRatio', 'sapi', 'GET', {'cost': 10})
|
|
55
|
+
sapi_get_margin_exchange_small_liability = sapiGetMarginExchangeSmallLiability = Entry('margin/exchange-small-liability', 'sapi', 'GET', {'cost': 0.6667})
|
|
56
|
+
sapi_get_margin_exchange_small_liability_history = sapiGetMarginExchangeSmallLiabilityHistory = Entry('margin/exchange-small-liability-history', 'sapi', 'GET', {'cost': 0.6667})
|
|
57
|
+
sapi_get_margin_next_hourly_interest_rate = sapiGetMarginNextHourlyInterestRate = Entry('margin/next-hourly-interest-rate', 'sapi', 'GET', {'cost': 0.6667})
|
|
58
|
+
sapi_get_margin_capital_flow = sapiGetMarginCapitalFlow = Entry('margin/capital-flow', 'sapi', 'GET', {'cost': 10})
|
|
59
|
+
sapi_get_margin_delist_schedule = sapiGetMarginDelistSchedule = Entry('margin/delist-schedule', 'sapi', 'GET', {'cost': 10})
|
|
60
|
+
sapi_get_margin_available_inventory = sapiGetMarginAvailableInventory = Entry('margin/available-inventory', 'sapi', 'GET', {'cost': 0.3334})
|
|
61
|
+
sapi_get_margin_leveragebracket = sapiGetMarginLeverageBracket = Entry('margin/leverageBracket', 'sapi', 'GET', {'cost': 0.1})
|
|
62
|
+
sapi_get_loan_vip_loanable_data = sapiGetLoanVipLoanableData = Entry('loan/vip/loanable/data', 'sapi', 'GET', {'cost': 40})
|
|
63
|
+
sapi_get_loan_vip_collateral_data = sapiGetLoanVipCollateralData = Entry('loan/vip/collateral/data', 'sapi', 'GET', {'cost': 40})
|
|
64
|
+
sapi_get_loan_vip_request_data = sapiGetLoanVipRequestData = Entry('loan/vip/request/data', 'sapi', 'GET', {'cost': 2.6668})
|
|
65
|
+
sapi_get_loan_vip_request_interestrate = sapiGetLoanVipRequestInterestRate = Entry('loan/vip/request/interestRate', 'sapi', 'GET', {'cost': 2.6668})
|
|
66
|
+
sapi_get_loan_income = sapiGetLoanIncome = Entry('loan/income', 'sapi', 'GET', {'cost': 40.002})
|
|
67
|
+
sapi_get_loan_ongoing_orders = sapiGetLoanOngoingOrders = Entry('loan/ongoing/orders', 'sapi', 'GET', {'cost': 40})
|
|
68
|
+
sapi_get_loan_ltv_adjustment_history = sapiGetLoanLtvAdjustmentHistory = Entry('loan/ltv/adjustment/history', 'sapi', 'GET', {'cost': 40})
|
|
69
|
+
sapi_get_loan_borrow_history = sapiGetLoanBorrowHistory = Entry('loan/borrow/history', 'sapi', 'GET', {'cost': 40})
|
|
70
|
+
sapi_get_loan_repay_history = sapiGetLoanRepayHistory = Entry('loan/repay/history', 'sapi', 'GET', {'cost': 40})
|
|
71
|
+
sapi_get_loan_loanable_data = sapiGetLoanLoanableData = Entry('loan/loanable/data', 'sapi', 'GET', {'cost': 40})
|
|
72
|
+
sapi_get_loan_collateral_data = sapiGetLoanCollateralData = Entry('loan/collateral/data', 'sapi', 'GET', {'cost': 40})
|
|
73
|
+
sapi_get_loan_repay_collateral_rate = sapiGetLoanRepayCollateralRate = Entry('loan/repay/collateral/rate', 'sapi', 'GET', {'cost': 600})
|
|
74
|
+
sapi_get_loan_flexible_ongoing_orders = sapiGetLoanFlexibleOngoingOrders = Entry('loan/flexible/ongoing/orders', 'sapi', 'GET', {'cost': 30})
|
|
75
|
+
sapi_get_loan_flexible_borrow_history = sapiGetLoanFlexibleBorrowHistory = Entry('loan/flexible/borrow/history', 'sapi', 'GET', {'cost': 40})
|
|
76
|
+
sapi_get_loan_flexible_repay_history = sapiGetLoanFlexibleRepayHistory = Entry('loan/flexible/repay/history', 'sapi', 'GET', {'cost': 40})
|
|
77
|
+
sapi_get_loan_flexible_ltv_adjustment_history = sapiGetLoanFlexibleLtvAdjustmentHistory = Entry('loan/flexible/ltv/adjustment/history', 'sapi', 'GET', {'cost': 40})
|
|
78
|
+
sapi_get_loan_vip_ongoing_orders = sapiGetLoanVipOngoingOrders = Entry('loan/vip/ongoing/orders', 'sapi', 'GET', {'cost': 40})
|
|
79
|
+
sapi_get_loan_vip_repay_history = sapiGetLoanVipRepayHistory = Entry('loan/vip/repay/history', 'sapi', 'GET', {'cost': 40})
|
|
80
|
+
sapi_get_loan_vip_collateral_account = sapiGetLoanVipCollateralAccount = Entry('loan/vip/collateral/account', 'sapi', 'GET', {'cost': 600})
|
|
81
|
+
sapi_get_fiat_orders = sapiGetFiatOrders = Entry('fiat/orders', 'sapi', 'GET', {'cost': 600.03})
|
|
82
|
+
sapi_get_fiat_payments = sapiGetFiatPayments = Entry('fiat/payments', 'sapi', 'GET', {'cost': 0.1})
|
|
83
|
+
sapi_get_futures_transfer = sapiGetFuturesTransfer = Entry('futures/transfer', 'sapi', 'GET', {'cost': 1})
|
|
84
|
+
sapi_get_futures_histdatalink = sapiGetFuturesHistDataLink = Entry('futures/histDataLink', 'sapi', 'GET', {'cost': 0.1})
|
|
85
|
+
sapi_get_rebate_taxquery = sapiGetRebateTaxQuery = Entry('rebate/taxQuery', 'sapi', 'GET', {'cost': 80.004})
|
|
86
|
+
sapi_get_capital_config_getall = sapiGetCapitalConfigGetall = Entry('capital/config/getall', 'sapi', 'GET', {'cost': 1})
|
|
87
|
+
sapi_get_capital_deposit_address = sapiGetCapitalDepositAddress = Entry('capital/deposit/address', 'sapi', 'GET', {'cost': 1})
|
|
88
|
+
sapi_get_capital_deposit_address_list = sapiGetCapitalDepositAddressList = Entry('capital/deposit/address/list', 'sapi', 'GET', {'cost': 1})
|
|
89
|
+
sapi_get_capital_deposit_hisrec = sapiGetCapitalDepositHisrec = Entry('capital/deposit/hisrec', 'sapi', 'GET', {'cost': 0.1})
|
|
90
|
+
sapi_get_capital_deposit_subaddress = sapiGetCapitalDepositSubAddress = Entry('capital/deposit/subAddress', 'sapi', 'GET', {'cost': 0.1})
|
|
91
|
+
sapi_get_capital_deposit_subhisrec = sapiGetCapitalDepositSubHisrec = Entry('capital/deposit/subHisrec', 'sapi', 'GET', {'cost': 0.1})
|
|
92
|
+
sapi_get_capital_withdraw_history = sapiGetCapitalWithdrawHistory = Entry('capital/withdraw/history', 'sapi', 'GET', {'cost': 1800})
|
|
93
|
+
sapi_get_capital_withdraw_address_list = sapiGetCapitalWithdrawAddressList = Entry('capital/withdraw/address/list', 'sapi', 'GET', {'cost': 10})
|
|
94
|
+
sapi_get_capital_contract_convertible_coins = sapiGetCapitalContractConvertibleCoins = Entry('capital/contract/convertible-coins', 'sapi', 'GET', {'cost': 4.0002})
|
|
95
|
+
sapi_get_convert_tradeflow = sapiGetConvertTradeFlow = Entry('convert/tradeFlow', 'sapi', 'GET', {'cost': 20.001})
|
|
96
|
+
sapi_get_convert_exchangeinfo = sapiGetConvertExchangeInfo = Entry('convert/exchangeInfo', 'sapi', 'GET', {'cost': 50})
|
|
97
|
+
sapi_get_convert_assetinfo = sapiGetConvertAssetInfo = Entry('convert/assetInfo', 'sapi', 'GET', {'cost': 10})
|
|
98
|
+
sapi_get_convert_orderstatus = sapiGetConvertOrderStatus = Entry('convert/orderStatus', 'sapi', 'GET', {'cost': 0.6667})
|
|
99
|
+
sapi_get_convert_limit_queryopenorders = sapiGetConvertLimitQueryOpenOrders = Entry('convert/limit/queryOpenOrders', 'sapi', 'GET', {'cost': 20.001})
|
|
100
|
+
sapi_get_account_status = sapiGetAccountStatus = Entry('account/status', 'sapi', 'GET', {'cost': 0.1})
|
|
101
|
+
sapi_get_account_apitradingstatus = sapiGetAccountApiTradingStatus = Entry('account/apiTradingStatus', 'sapi', 'GET', {'cost': 0.1})
|
|
102
|
+
sapi_get_account_apirestrictions_iprestriction = sapiGetAccountApiRestrictionsIpRestriction = Entry('account/apiRestrictions/ipRestriction', 'sapi', 'GET', {'cost': 0.1})
|
|
103
|
+
sapi_get_bnbburn = sapiGetBnbBurn = Entry('bnbBurn', 'sapi', 'GET', {'cost': 0.1})
|
|
104
|
+
sapi_get_sub_account_futures_account = sapiGetSubAccountFuturesAccount = Entry('sub-account/futures/account', 'sapi', 'GET', {'cost': 1})
|
|
105
|
+
sapi_get_sub_account_futures_accountsummary = sapiGetSubAccountFuturesAccountSummary = Entry('sub-account/futures/accountSummary', 'sapi', 'GET', {'cost': 0.1})
|
|
106
|
+
sapi_get_sub_account_futures_positionrisk = sapiGetSubAccountFuturesPositionRisk = Entry('sub-account/futures/positionRisk', 'sapi', 'GET', {'cost': 1})
|
|
107
|
+
sapi_get_sub_account_futures_internaltransfer = sapiGetSubAccountFuturesInternalTransfer = Entry('sub-account/futures/internalTransfer', 'sapi', 'GET', {'cost': 0.1})
|
|
108
|
+
sapi_get_sub_account_list = sapiGetSubAccountList = Entry('sub-account/list', 'sapi', 'GET', {'cost': 0.1})
|
|
109
|
+
sapi_get_sub_account_margin_account = sapiGetSubAccountMarginAccount = Entry('sub-account/margin/account', 'sapi', 'GET', {'cost': 1})
|
|
110
|
+
sapi_get_sub_account_margin_accountsummary = sapiGetSubAccountMarginAccountSummary = Entry('sub-account/margin/accountSummary', 'sapi', 'GET', {'cost': 1})
|
|
111
|
+
sapi_get_sub_account_spotsummary = sapiGetSubAccountSpotSummary = Entry('sub-account/spotSummary', 'sapi', 'GET', {'cost': 0.1})
|
|
112
|
+
sapi_get_sub_account_status = sapiGetSubAccountStatus = Entry('sub-account/status', 'sapi', 'GET', {'cost': 1})
|
|
113
|
+
sapi_get_sub_account_sub_transfer_history = sapiGetSubAccountSubTransferHistory = Entry('sub-account/sub/transfer/history', 'sapi', 'GET', {'cost': 0.1})
|
|
114
|
+
sapi_get_sub_account_transfer_subuserhistory = sapiGetSubAccountTransferSubUserHistory = Entry('sub-account/transfer/subUserHistory', 'sapi', 'GET', {'cost': 0.1})
|
|
115
|
+
sapi_get_sub_account_universaltransfer = sapiGetSubAccountUniversalTransfer = Entry('sub-account/universalTransfer', 'sapi', 'GET', {'cost': 0.1})
|
|
116
|
+
sapi_get_sub_account_apirestrictions_iprestriction_thirdpartylist = sapiGetSubAccountApiRestrictionsIpRestrictionThirdPartyList = Entry('sub-account/apiRestrictions/ipRestriction/thirdPartyList', 'sapi', 'GET', {'cost': 1})
|
|
117
|
+
sapi_get_sub_account_transaction_statistics = sapiGetSubAccountTransactionStatistics = Entry('sub-account/transaction-statistics', 'sapi', 'GET', {'cost': 0.40002})
|
|
118
|
+
sapi_get_sub_account_subaccountapi_iprestriction = sapiGetSubAccountSubAccountApiIpRestriction = Entry('sub-account/subAccountApi/ipRestriction', 'sapi', 'GET', {'cost': 20.001})
|
|
119
|
+
sapi_get_managed_subaccount_asset = sapiGetManagedSubaccountAsset = Entry('managed-subaccount/asset', 'sapi', 'GET', {'cost': 0.1})
|
|
120
|
+
sapi_get_managed_subaccount_accountsnapshot = sapiGetManagedSubaccountAccountSnapshot = Entry('managed-subaccount/accountSnapshot', 'sapi', 'GET', {'cost': 240})
|
|
121
|
+
sapi_get_managed_subaccount_querytranslogforinvestor = sapiGetManagedSubaccountQueryTransLogForInvestor = Entry('managed-subaccount/queryTransLogForInvestor', 'sapi', 'GET', {'cost': 0.1})
|
|
122
|
+
sapi_get_managed_subaccount_querytranslogfortradeparent = sapiGetManagedSubaccountQueryTransLogForTradeParent = Entry('managed-subaccount/queryTransLogForTradeParent', 'sapi', 'GET', {'cost': 0.40002})
|
|
123
|
+
sapi_get_managed_subaccount_fetch_future_asset = sapiGetManagedSubaccountFetchFutureAsset = Entry('managed-subaccount/fetch-future-asset', 'sapi', 'GET', {'cost': 0.40002})
|
|
124
|
+
sapi_get_managed_subaccount_marginasset = sapiGetManagedSubaccountMarginAsset = Entry('managed-subaccount/marginAsset', 'sapi', 'GET', {'cost': 0.1})
|
|
125
|
+
sapi_get_managed_subaccount_info = sapiGetManagedSubaccountInfo = Entry('managed-subaccount/info', 'sapi', 'GET', {'cost': 0.40002})
|
|
126
|
+
sapi_get_managed_subaccount_deposit_address = sapiGetManagedSubaccountDepositAddress = Entry('managed-subaccount/deposit/address', 'sapi', 'GET', {'cost': 0.006667})
|
|
127
|
+
sapi_get_managed_subaccount_query_trans_log = sapiGetManagedSubaccountQueryTransLog = Entry('managed-subaccount/query-trans-log', 'sapi', 'GET', {'cost': 0.40002})
|
|
128
|
+
sapi_get_lending_daily_product_list = sapiGetLendingDailyProductList = Entry('lending/daily/product/list', 'sapi', 'GET', {'cost': 0.1})
|
|
129
|
+
sapi_get_lending_daily_userleftquota = sapiGetLendingDailyUserLeftQuota = Entry('lending/daily/userLeftQuota', 'sapi', 'GET', {'cost': 0.1})
|
|
130
|
+
sapi_get_lending_daily_userredemptionquota = sapiGetLendingDailyUserRedemptionQuota = Entry('lending/daily/userRedemptionQuota', 'sapi', 'GET', {'cost': 0.1})
|
|
131
|
+
sapi_get_lending_daily_token_position = sapiGetLendingDailyTokenPosition = Entry('lending/daily/token/position', 'sapi', 'GET', {'cost': 0.1})
|
|
132
|
+
sapi_get_lending_union_account = sapiGetLendingUnionAccount = Entry('lending/union/account', 'sapi', 'GET', {'cost': 0.1})
|
|
133
|
+
sapi_get_lending_union_purchaserecord = sapiGetLendingUnionPurchaseRecord = Entry('lending/union/purchaseRecord', 'sapi', 'GET', {'cost': 0.1})
|
|
134
|
+
sapi_get_lending_union_redemptionrecord = sapiGetLendingUnionRedemptionRecord = Entry('lending/union/redemptionRecord', 'sapi', 'GET', {'cost': 0.1})
|
|
135
|
+
sapi_get_lending_union_interesthistory = sapiGetLendingUnionInterestHistory = Entry('lending/union/interestHistory', 'sapi', 'GET', {'cost': 0.1})
|
|
136
|
+
sapi_get_lending_project_list = sapiGetLendingProjectList = Entry('lending/project/list', 'sapi', 'GET', {'cost': 0.1})
|
|
137
|
+
sapi_get_lending_project_position_list = sapiGetLendingProjectPositionList = Entry('lending/project/position/list', 'sapi', 'GET', {'cost': 0.1})
|
|
138
|
+
sapi_get_eth_staking_eth_history_stakinghistory = sapiGetEthStakingEthHistoryStakingHistory = Entry('eth-staking/eth/history/stakingHistory', 'sapi', 'GET', {'cost': 15})
|
|
139
|
+
sapi_get_eth_staking_eth_history_redemptionhistory = sapiGetEthStakingEthHistoryRedemptionHistory = Entry('eth-staking/eth/history/redemptionHistory', 'sapi', 'GET', {'cost': 15})
|
|
140
|
+
sapi_get_eth_staking_eth_history_rewardshistory = sapiGetEthStakingEthHistoryRewardsHistory = Entry('eth-staking/eth/history/rewardsHistory', 'sapi', 'GET', {'cost': 15})
|
|
141
|
+
sapi_get_eth_staking_eth_quota = sapiGetEthStakingEthQuota = Entry('eth-staking/eth/quota', 'sapi', 'GET', {'cost': 15})
|
|
142
|
+
sapi_get_eth_staking_eth_history_ratehistory = sapiGetEthStakingEthHistoryRateHistory = Entry('eth-staking/eth/history/rateHistory', 'sapi', 'GET', {'cost': 15})
|
|
143
|
+
sapi_get_eth_staking_account = sapiGetEthStakingAccount = Entry('eth-staking/account', 'sapi', 'GET', {'cost': 15})
|
|
144
|
+
sapi_get_eth_staking_wbeth_history_wraphistory = sapiGetEthStakingWbethHistoryWrapHistory = Entry('eth-staking/wbeth/history/wrapHistory', 'sapi', 'GET', {'cost': 15})
|
|
145
|
+
sapi_get_eth_staking_wbeth_history_unwraphistory = sapiGetEthStakingWbethHistoryUnwrapHistory = Entry('eth-staking/wbeth/history/unwrapHistory', 'sapi', 'GET', {'cost': 15})
|
|
146
|
+
sapi_get_eth_staking_eth_history_wbethrewardshistory = sapiGetEthStakingEthHistoryWbethRewardsHistory = Entry('eth-staking/eth/history/wbethRewardsHistory', 'sapi', 'GET', {'cost': 15})
|
|
147
|
+
sapi_get_mining_pub_algolist = sapiGetMiningPubAlgoList = Entry('mining/pub/algoList', 'sapi', 'GET', {'cost': 0.1})
|
|
148
|
+
sapi_get_mining_pub_coinlist = sapiGetMiningPubCoinList = Entry('mining/pub/coinList', 'sapi', 'GET', {'cost': 0.1})
|
|
149
|
+
sapi_get_mining_worker_detail = sapiGetMiningWorkerDetail = Entry('mining/worker/detail', 'sapi', 'GET', {'cost': 0.5})
|
|
150
|
+
sapi_get_mining_worker_list = sapiGetMiningWorkerList = Entry('mining/worker/list', 'sapi', 'GET', {'cost': 0.5})
|
|
151
|
+
sapi_get_mining_payment_list = sapiGetMiningPaymentList = Entry('mining/payment/list', 'sapi', 'GET', {'cost': 0.5})
|
|
152
|
+
sapi_get_mining_statistics_user_status = sapiGetMiningStatisticsUserStatus = Entry('mining/statistics/user/status', 'sapi', 'GET', {'cost': 0.5})
|
|
153
|
+
sapi_get_mining_statistics_user_list = sapiGetMiningStatisticsUserList = Entry('mining/statistics/user/list', 'sapi', 'GET', {'cost': 0.5})
|
|
154
|
+
sapi_get_mining_payment_uid = sapiGetMiningPaymentUid = Entry('mining/payment/uid', 'sapi', 'GET', {'cost': 0.5})
|
|
155
|
+
sapi_get_bswap_pools = sapiGetBswapPools = Entry('bswap/pools', 'sapi', 'GET', {'cost': 0.1})
|
|
156
|
+
sapi_get_bswap_liquidity = sapiGetBswapLiquidity = Entry('bswap/liquidity', 'sapi', 'GET', {'cost': 0.1, 'noPoolId': 1})
|
|
157
|
+
sapi_get_bswap_liquidityops = sapiGetBswapLiquidityOps = Entry('bswap/liquidityOps', 'sapi', 'GET', {'cost': 20.001})
|
|
158
|
+
sapi_get_bswap_quote = sapiGetBswapQuote = Entry('bswap/quote', 'sapi', 'GET', {'cost': 1.00005})
|
|
159
|
+
sapi_get_bswap_swap = sapiGetBswapSwap = Entry('bswap/swap', 'sapi', 'GET', {'cost': 20.001})
|
|
160
|
+
sapi_get_bswap_poolconfigure = sapiGetBswapPoolConfigure = Entry('bswap/poolConfigure', 'sapi', 'GET', {'cost': 1.00005})
|
|
161
|
+
sapi_get_bswap_addliquiditypreview = sapiGetBswapAddLiquidityPreview = Entry('bswap/addLiquidityPreview', 'sapi', 'GET', {'cost': 1.00005})
|
|
162
|
+
sapi_get_bswap_removeliquiditypreview = sapiGetBswapRemoveLiquidityPreview = Entry('bswap/removeLiquidityPreview', 'sapi', 'GET', {'cost': 1.00005})
|
|
163
|
+
sapi_get_bswap_unclaimedrewards = sapiGetBswapUnclaimedRewards = Entry('bswap/unclaimedRewards', 'sapi', 'GET', {'cost': 6.667})
|
|
164
|
+
sapi_get_bswap_claimedhistory = sapiGetBswapClaimedHistory = Entry('bswap/claimedHistory', 'sapi', 'GET', {'cost': 6.667})
|
|
165
|
+
sapi_get_blvt_tokeninfo = sapiGetBlvtTokenInfo = Entry('blvt/tokenInfo', 'sapi', 'GET', {'cost': 0.1})
|
|
166
|
+
sapi_get_blvt_subscribe_record = sapiGetBlvtSubscribeRecord = Entry('blvt/subscribe/record', 'sapi', 'GET', {'cost': 0.1})
|
|
167
|
+
sapi_get_blvt_redeem_record = sapiGetBlvtRedeemRecord = Entry('blvt/redeem/record', 'sapi', 'GET', {'cost': 0.1})
|
|
168
|
+
sapi_get_blvt_userlimit = sapiGetBlvtUserLimit = Entry('blvt/userLimit', 'sapi', 'GET', {'cost': 0.1})
|
|
169
|
+
sapi_get_apireferral_ifnewuser = sapiGetApiReferralIfNewUser = Entry('apiReferral/ifNewUser', 'sapi', 'GET', {'cost': 1})
|
|
170
|
+
sapi_get_apireferral_customization = sapiGetApiReferralCustomization = Entry('apiReferral/customization', 'sapi', 'GET', {'cost': 1})
|
|
171
|
+
sapi_get_apireferral_usercustomization = sapiGetApiReferralUserCustomization = Entry('apiReferral/userCustomization', 'sapi', 'GET', {'cost': 1})
|
|
172
|
+
sapi_get_apireferral_rebate_recentrecord = sapiGetApiReferralRebateRecentRecord = Entry('apiReferral/rebate/recentRecord', 'sapi', 'GET', {'cost': 1})
|
|
173
|
+
sapi_get_apireferral_rebate_historicalrecord = sapiGetApiReferralRebateHistoricalRecord = Entry('apiReferral/rebate/historicalRecord', 'sapi', 'GET', {'cost': 1})
|
|
174
|
+
sapi_get_apireferral_kickback_recentrecord = sapiGetApiReferralKickbackRecentRecord = Entry('apiReferral/kickback/recentRecord', 'sapi', 'GET', {'cost': 1})
|
|
175
|
+
sapi_get_apireferral_kickback_historicalrecord = sapiGetApiReferralKickbackHistoricalRecord = Entry('apiReferral/kickback/historicalRecord', 'sapi', 'GET', {'cost': 1})
|
|
176
|
+
sapi_get_broker_subaccountapi = sapiGetBrokerSubAccountApi = Entry('broker/subAccountApi', 'sapi', 'GET', {'cost': 1})
|
|
177
|
+
sapi_get_broker_subaccount = sapiGetBrokerSubAccount = Entry('broker/subAccount', 'sapi', 'GET', {'cost': 1})
|
|
178
|
+
sapi_get_broker_subaccountapi_commission_futures = sapiGetBrokerSubAccountApiCommissionFutures = Entry('broker/subAccountApi/commission/futures', 'sapi', 'GET', {'cost': 1})
|
|
179
|
+
sapi_get_broker_subaccountapi_commission_coinfutures = sapiGetBrokerSubAccountApiCommissionCoinFutures = Entry('broker/subAccountApi/commission/coinFutures', 'sapi', 'GET', {'cost': 1})
|
|
180
|
+
sapi_get_broker_info = sapiGetBrokerInfo = Entry('broker/info', 'sapi', 'GET', {'cost': 1})
|
|
181
|
+
sapi_get_broker_transfer = sapiGetBrokerTransfer = Entry('broker/transfer', 'sapi', 'GET', {'cost': 1})
|
|
182
|
+
sapi_get_broker_transfer_futures = sapiGetBrokerTransferFutures = Entry('broker/transfer/futures', 'sapi', 'GET', {'cost': 1})
|
|
183
|
+
sapi_get_broker_rebate_recentrecord = sapiGetBrokerRebateRecentRecord = Entry('broker/rebate/recentRecord', 'sapi', 'GET', {'cost': 1})
|
|
184
|
+
sapi_get_broker_rebate_historicalrecord = sapiGetBrokerRebateHistoricalRecord = Entry('broker/rebate/historicalRecord', 'sapi', 'GET', {'cost': 1})
|
|
185
|
+
sapi_get_broker_subaccount_bnbburn_status = sapiGetBrokerSubAccountBnbBurnStatus = Entry('broker/subAccount/bnbBurn/status', 'sapi', 'GET', {'cost': 1})
|
|
186
|
+
sapi_get_broker_subaccount_deposithist = sapiGetBrokerSubAccountDepositHist = Entry('broker/subAccount/depositHist', 'sapi', 'GET', {'cost': 1})
|
|
187
|
+
sapi_get_broker_subaccount_spotsummary = sapiGetBrokerSubAccountSpotSummary = Entry('broker/subAccount/spotSummary', 'sapi', 'GET', {'cost': 1})
|
|
188
|
+
sapi_get_broker_subaccount_marginsummary = sapiGetBrokerSubAccountMarginSummary = Entry('broker/subAccount/marginSummary', 'sapi', 'GET', {'cost': 1})
|
|
189
|
+
sapi_get_broker_subaccount_futuressummary = sapiGetBrokerSubAccountFuturesSummary = Entry('broker/subAccount/futuresSummary', 'sapi', 'GET', {'cost': 1})
|
|
190
|
+
sapi_get_broker_rebate_futures_recentrecord = sapiGetBrokerRebateFuturesRecentRecord = Entry('broker/rebate/futures/recentRecord', 'sapi', 'GET', {'cost': 1})
|
|
191
|
+
sapi_get_broker_subaccountapi_iprestriction = sapiGetBrokerSubAccountApiIpRestriction = Entry('broker/subAccountApi/ipRestriction', 'sapi', 'GET', {'cost': 1})
|
|
192
|
+
sapi_get_broker_universaltransfer = sapiGetBrokerUniversalTransfer = Entry('broker/universalTransfer', 'sapi', 'GET', {'cost': 1})
|
|
193
|
+
sapi_get_account_apirestrictions = sapiGetAccountApiRestrictions = Entry('account/apiRestrictions', 'sapi', 'GET', {'cost': 0.1})
|
|
194
|
+
sapi_get_c2c_ordermatch_listuserorderhistory = sapiGetC2cOrderMatchListUserOrderHistory = Entry('c2c/orderMatch/listUserOrderHistory', 'sapi', 'GET', {'cost': 0.1})
|
|
195
|
+
sapi_get_nft_history_transactions = sapiGetNftHistoryTransactions = Entry('nft/history/transactions', 'sapi', 'GET', {'cost': 20.001})
|
|
196
|
+
sapi_get_nft_history_deposit = sapiGetNftHistoryDeposit = Entry('nft/history/deposit', 'sapi', 'GET', {'cost': 20.001})
|
|
197
|
+
sapi_get_nft_history_withdraw = sapiGetNftHistoryWithdraw = Entry('nft/history/withdraw', 'sapi', 'GET', {'cost': 20.001})
|
|
198
|
+
sapi_get_nft_user_getasset = sapiGetNftUserGetAsset = Entry('nft/user/getAsset', 'sapi', 'GET', {'cost': 20.001})
|
|
199
|
+
sapi_get_pay_transactions = sapiGetPayTransactions = Entry('pay/transactions', 'sapi', 'GET', {'cost': 20.001})
|
|
200
|
+
sapi_get_giftcard_verify = sapiGetGiftcardVerify = Entry('giftcard/verify', 'sapi', 'GET', {'cost': 0.1})
|
|
201
|
+
sapi_get_giftcard_cryptography_rsa_public_key = sapiGetGiftcardCryptographyRsaPublicKey = Entry('giftcard/cryptography/rsa-public-key', 'sapi', 'GET', {'cost': 0.1})
|
|
202
|
+
sapi_get_giftcard_buycode_token_limit = sapiGetGiftcardBuyCodeTokenLimit = Entry('giftcard/buyCode/token-limit', 'sapi', 'GET', {'cost': 0.1})
|
|
203
|
+
sapi_get_algo_spot_openorders = sapiGetAlgoSpotOpenOrders = Entry('algo/spot/openOrders', 'sapi', 'GET', {'cost': 0.1})
|
|
204
|
+
sapi_get_algo_spot_historicalorders = sapiGetAlgoSpotHistoricalOrders = Entry('algo/spot/historicalOrders', 'sapi', 'GET', {'cost': 0.1})
|
|
205
|
+
sapi_get_algo_spot_suborders = sapiGetAlgoSpotSubOrders = Entry('algo/spot/subOrders', 'sapi', 'GET', {'cost': 0.1})
|
|
206
|
+
sapi_get_algo_futures_openorders = sapiGetAlgoFuturesOpenOrders = Entry('algo/futures/openOrders', 'sapi', 'GET', {'cost': 0.1})
|
|
207
|
+
sapi_get_algo_futures_historicalorders = sapiGetAlgoFuturesHistoricalOrders = Entry('algo/futures/historicalOrders', 'sapi', 'GET', {'cost': 0.1})
|
|
208
|
+
sapi_get_algo_futures_suborders = sapiGetAlgoFuturesSubOrders = Entry('algo/futures/subOrders', 'sapi', 'GET', {'cost': 0.1})
|
|
209
|
+
sapi_get_portfolio_account = sapiGetPortfolioAccount = Entry('portfolio/account', 'sapi', 'GET', {'cost': 0.1})
|
|
210
|
+
sapi_get_portfolio_collateralrate = sapiGetPortfolioCollateralRate = Entry('portfolio/collateralRate', 'sapi', 'GET', {'cost': 5})
|
|
211
|
+
sapi_get_portfolio_pmloan = sapiGetPortfolioPmLoan = Entry('portfolio/pmLoan', 'sapi', 'GET', {'cost': 3.3335})
|
|
212
|
+
sapi_get_portfolio_interest_history = sapiGetPortfolioInterestHistory = Entry('portfolio/interest-history', 'sapi', 'GET', {'cost': 0.6667})
|
|
213
|
+
sapi_get_portfolio_asset_index_price = sapiGetPortfolioAssetIndexPrice = Entry('portfolio/asset-index-price', 'sapi', 'GET', {'cost': 0.1})
|
|
214
|
+
sapi_get_portfolio_repay_futures_switch = sapiGetPortfolioRepayFuturesSwitch = Entry('portfolio/repay-futures-switch', 'sapi', 'GET', {'cost': 3})
|
|
215
|
+
sapi_get_portfolio_margin_asset_leverage = sapiGetPortfolioMarginAssetLeverage = Entry('portfolio/margin-asset-leverage', 'sapi', 'GET', {'cost': 5})
|
|
216
|
+
sapi_get_staking_productlist = sapiGetStakingProductList = Entry('staking/productList', 'sapi', 'GET', {'cost': 0.1})
|
|
217
|
+
sapi_get_staking_position = sapiGetStakingPosition = Entry('staking/position', 'sapi', 'GET', {'cost': 0.1})
|
|
218
|
+
sapi_get_staking_stakingrecord = sapiGetStakingStakingRecord = Entry('staking/stakingRecord', 'sapi', 'GET', {'cost': 0.1})
|
|
219
|
+
sapi_get_staking_personalleftquota = sapiGetStakingPersonalLeftQuota = Entry('staking/personalLeftQuota', 'sapi', 'GET', {'cost': 0.1})
|
|
220
|
+
sapi_get_lending_auto_invest_target_asset_list = sapiGetLendingAutoInvestTargetAssetList = Entry('lending/auto-invest/target-asset/list', 'sapi', 'GET', {'cost': 0.1})
|
|
221
|
+
sapi_get_lending_auto_invest_target_asset_roi_list = sapiGetLendingAutoInvestTargetAssetRoiList = Entry('lending/auto-invest/target-asset/roi/list', 'sapi', 'GET', {'cost': 0.1})
|
|
222
|
+
sapi_get_lending_auto_invest_all_asset = sapiGetLendingAutoInvestAllAsset = Entry('lending/auto-invest/all/asset', 'sapi', 'GET', {'cost': 0.1})
|
|
223
|
+
sapi_get_lending_auto_invest_source_asset_list = sapiGetLendingAutoInvestSourceAssetList = Entry('lending/auto-invest/source-asset/list', 'sapi', 'GET', {'cost': 0.1})
|
|
224
|
+
sapi_get_lending_auto_invest_plan_list = sapiGetLendingAutoInvestPlanList = Entry('lending/auto-invest/plan/list', 'sapi', 'GET', {'cost': 0.1})
|
|
225
|
+
sapi_get_lending_auto_invest_plan_id = sapiGetLendingAutoInvestPlanId = Entry('lending/auto-invest/plan/id', 'sapi', 'GET', {'cost': 0.1})
|
|
226
|
+
sapi_get_lending_auto_invest_history_list = sapiGetLendingAutoInvestHistoryList = Entry('lending/auto-invest/history/list', 'sapi', 'GET', {'cost': 0.1})
|
|
227
|
+
sapi_get_lending_auto_invest_index_info = sapiGetLendingAutoInvestIndexInfo = Entry('lending/auto-invest/index/info', 'sapi', 'GET', {'cost': 0.1})
|
|
228
|
+
sapi_get_lending_auto_invest_index_user_summary = sapiGetLendingAutoInvestIndexUserSummary = Entry('lending/auto-invest/index/user-summary', 'sapi', 'GET', {'cost': 0.1})
|
|
229
|
+
sapi_get_lending_auto_invest_one_off_status = sapiGetLendingAutoInvestOneOffStatus = Entry('lending/auto-invest/one-off/status', 'sapi', 'GET', {'cost': 0.1})
|
|
230
|
+
sapi_get_lending_auto_invest_redeem_history = sapiGetLendingAutoInvestRedeemHistory = Entry('lending/auto-invest/redeem/history', 'sapi', 'GET', {'cost': 0.1})
|
|
231
|
+
sapi_get_lending_auto_invest_rebalance_history = sapiGetLendingAutoInvestRebalanceHistory = Entry('lending/auto-invest/rebalance/history', 'sapi', 'GET', {'cost': 0.1})
|
|
232
|
+
sapi_get_simple_earn_flexible_list = sapiGetSimpleEarnFlexibleList = Entry('simple-earn/flexible/list', 'sapi', 'GET', {'cost': 15})
|
|
233
|
+
sapi_get_simple_earn_locked_list = sapiGetSimpleEarnLockedList = Entry('simple-earn/locked/list', 'sapi', 'GET', {'cost': 15})
|
|
234
|
+
sapi_get_simple_earn_flexible_personalleftquota = sapiGetSimpleEarnFlexiblePersonalLeftQuota = Entry('simple-earn/flexible/personalLeftQuota', 'sapi', 'GET', {'cost': 15})
|
|
235
|
+
sapi_get_simple_earn_locked_personalleftquota = sapiGetSimpleEarnLockedPersonalLeftQuota = Entry('simple-earn/locked/personalLeftQuota', 'sapi', 'GET', {'cost': 15})
|
|
236
|
+
sapi_get_simple_earn_flexible_subscriptionpreview = sapiGetSimpleEarnFlexibleSubscriptionPreview = Entry('simple-earn/flexible/subscriptionPreview', 'sapi', 'GET', {'cost': 15})
|
|
237
|
+
sapi_get_simple_earn_locked_subscriptionpreview = sapiGetSimpleEarnLockedSubscriptionPreview = Entry('simple-earn/locked/subscriptionPreview', 'sapi', 'GET', {'cost': 15})
|
|
238
|
+
sapi_get_simple_earn_flexible_history_ratehistory = sapiGetSimpleEarnFlexibleHistoryRateHistory = Entry('simple-earn/flexible/history/rateHistory', 'sapi', 'GET', {'cost': 15})
|
|
239
|
+
sapi_get_simple_earn_flexible_position = sapiGetSimpleEarnFlexiblePosition = Entry('simple-earn/flexible/position', 'sapi', 'GET', {'cost': 15})
|
|
240
|
+
sapi_get_simple_earn_locked_position = sapiGetSimpleEarnLockedPosition = Entry('simple-earn/locked/position', 'sapi', 'GET', {'cost': 15})
|
|
241
|
+
sapi_get_simple_earn_account = sapiGetSimpleEarnAccount = Entry('simple-earn/account', 'sapi', 'GET', {'cost': 15})
|
|
242
|
+
sapi_get_simple_earn_flexible_history_subscriptionrecord = sapiGetSimpleEarnFlexibleHistorySubscriptionRecord = Entry('simple-earn/flexible/history/subscriptionRecord', 'sapi', 'GET', {'cost': 15})
|
|
243
|
+
sapi_get_simple_earn_locked_history_subscriptionrecord = sapiGetSimpleEarnLockedHistorySubscriptionRecord = Entry('simple-earn/locked/history/subscriptionRecord', 'sapi', 'GET', {'cost': 15})
|
|
244
|
+
sapi_get_simple_earn_flexible_history_redemptionrecord = sapiGetSimpleEarnFlexibleHistoryRedemptionRecord = Entry('simple-earn/flexible/history/redemptionRecord', 'sapi', 'GET', {'cost': 15})
|
|
245
|
+
sapi_get_simple_earn_locked_history_redemptionrecord = sapiGetSimpleEarnLockedHistoryRedemptionRecord = Entry('simple-earn/locked/history/redemptionRecord', 'sapi', 'GET', {'cost': 15})
|
|
246
|
+
sapi_get_simple_earn_flexible_history_rewardsrecord = sapiGetSimpleEarnFlexibleHistoryRewardsRecord = Entry('simple-earn/flexible/history/rewardsRecord', 'sapi', 'GET', {'cost': 15})
|
|
247
|
+
sapi_get_simple_earn_locked_history_rewardsrecord = sapiGetSimpleEarnLockedHistoryRewardsRecord = Entry('simple-earn/locked/history/rewardsRecord', 'sapi', 'GET', {'cost': 15})
|
|
248
|
+
sapi_get_simple_earn_flexible_history_collateralrecord = sapiGetSimpleEarnFlexibleHistoryCollateralRecord = Entry('simple-earn/flexible/history/collateralRecord', 'sapi', 'GET', {'cost': 0.1})
|
|
249
|
+
sapi_get_dci_product_list = sapiGetDciProductList = Entry('dci/product/list', 'sapi', 'GET', {'cost': 0.1})
|
|
250
|
+
sapi_get_dci_product_positions = sapiGetDciProductPositions = Entry('dci/product/positions', 'sapi', 'GET', {'cost': 0.1})
|
|
251
|
+
sapi_get_dci_product_accounts = sapiGetDciProductAccounts = Entry('dci/product/accounts', 'sapi', 'GET', {'cost': 0.1})
|
|
252
|
+
sapi_post_asset_dust = sapiPostAssetDust = Entry('asset/dust', 'sapi', 'POST', {'cost': 0.06667})
|
|
253
|
+
sapi_post_asset_dust_btc = sapiPostAssetDustBtc = Entry('asset/dust-btc', 'sapi', 'POST', {'cost': 0.1})
|
|
254
|
+
sapi_post_asset_transfer = sapiPostAssetTransfer = Entry('asset/transfer', 'sapi', 'POST', {'cost': 6.0003})
|
|
255
|
+
sapi_post_asset_get_funding_asset = sapiPostAssetGetFundingAsset = Entry('asset/get-funding-asset', 'sapi', 'POST', {'cost': 0.1})
|
|
256
|
+
sapi_post_asset_convert_transfer = sapiPostAssetConvertTransfer = Entry('asset/convert-transfer', 'sapi', 'POST', {'cost': 0.033335})
|
|
257
|
+
sapi_post_account_disablefastwithdrawswitch = sapiPostAccountDisableFastWithdrawSwitch = Entry('account/disableFastWithdrawSwitch', 'sapi', 'POST', {'cost': 0.1})
|
|
258
|
+
sapi_post_account_enablefastwithdrawswitch = sapiPostAccountEnableFastWithdrawSwitch = Entry('account/enableFastWithdrawSwitch', 'sapi', 'POST', {'cost': 0.1})
|
|
259
|
+
sapi_post_capital_withdraw_apply = sapiPostCapitalWithdrawApply = Entry('capital/withdraw/apply', 'sapi', 'POST', {'cost': 4.0002})
|
|
260
|
+
sapi_post_capital_contract_convertible_coins = sapiPostCapitalContractConvertibleCoins = Entry('capital/contract/convertible-coins', 'sapi', 'POST', {'cost': 4.0002})
|
|
261
|
+
sapi_post_capital_deposit_credit_apply = sapiPostCapitalDepositCreditApply = Entry('capital/deposit/credit-apply', 'sapi', 'POST', {'cost': 0.1})
|
|
262
|
+
sapi_post_margin_borrow_repay = sapiPostMarginBorrowRepay = Entry('margin/borrow-repay', 'sapi', 'POST', {'cost': 20.001})
|
|
263
|
+
sapi_post_margin_transfer = sapiPostMarginTransfer = Entry('margin/transfer', 'sapi', 'POST', {'cost': 4.0002})
|
|
264
|
+
sapi_post_margin_loan = sapiPostMarginLoan = Entry('margin/loan', 'sapi', 'POST', {'cost': 20.001})
|
|
265
|
+
sapi_post_margin_repay = sapiPostMarginRepay = Entry('margin/repay', 'sapi', 'POST', {'cost': 20.001})
|
|
266
|
+
sapi_post_margin_order = sapiPostMarginOrder = Entry('margin/order', 'sapi', 'POST', {'cost': 0.040002})
|
|
267
|
+
sapi_post_margin_order_oco = sapiPostMarginOrderOco = Entry('margin/order/oco', 'sapi', 'POST', {'cost': 0.040002})
|
|
268
|
+
sapi_post_margin_dust = sapiPostMarginDust = Entry('margin/dust', 'sapi', 'POST', {'cost': 20.001})
|
|
269
|
+
sapi_post_margin_exchange_small_liability = sapiPostMarginExchangeSmallLiability = Entry('margin/exchange-small-liability', 'sapi', 'POST', {'cost': 20.001})
|
|
270
|
+
sapi_post_margin_isolated_transfer = sapiPostMarginIsolatedTransfer = Entry('margin/isolated/transfer', 'sapi', 'POST', {'cost': 4.0002})
|
|
271
|
+
sapi_post_margin_isolated_account = sapiPostMarginIsolatedAccount = Entry('margin/isolated/account', 'sapi', 'POST', {'cost': 2.0001})
|
|
272
|
+
sapi_post_margin_max_leverage = sapiPostMarginMaxLeverage = Entry('margin/max-leverage', 'sapi', 'POST', {'cost': 300})
|
|
273
|
+
sapi_post_bnbburn = sapiPostBnbBurn = Entry('bnbBurn', 'sapi', 'POST', {'cost': 0.1})
|
|
274
|
+
sapi_post_sub_account_virtualsubaccount = sapiPostSubAccountVirtualSubAccount = Entry('sub-account/virtualSubAccount', 'sapi', 'POST', {'cost': 0.1})
|
|
275
|
+
sapi_post_sub_account_margin_transfer = sapiPostSubAccountMarginTransfer = Entry('sub-account/margin/transfer', 'sapi', 'POST', {'cost': 4.0002})
|
|
276
|
+
sapi_post_sub_account_margin_enable = sapiPostSubAccountMarginEnable = Entry('sub-account/margin/enable', 'sapi', 'POST', {'cost': 0.1})
|
|
277
|
+
sapi_post_sub_account_futures_enable = sapiPostSubAccountFuturesEnable = Entry('sub-account/futures/enable', 'sapi', 'POST', {'cost': 0.1})
|
|
278
|
+
sapi_post_sub_account_futures_transfer = sapiPostSubAccountFuturesTransfer = Entry('sub-account/futures/transfer', 'sapi', 'POST', {'cost': 0.1})
|
|
279
|
+
sapi_post_sub_account_futures_internaltransfer = sapiPostSubAccountFuturesInternalTransfer = Entry('sub-account/futures/internalTransfer', 'sapi', 'POST', {'cost': 0.1})
|
|
280
|
+
sapi_post_sub_account_transfer_subtosub = sapiPostSubAccountTransferSubToSub = Entry('sub-account/transfer/subToSub', 'sapi', 'POST', {'cost': 0.1})
|
|
281
|
+
sapi_post_sub_account_transfer_subtomaster = sapiPostSubAccountTransferSubToMaster = Entry('sub-account/transfer/subToMaster', 'sapi', 'POST', {'cost': 0.1})
|
|
282
|
+
sapi_post_sub_account_universaltransfer = sapiPostSubAccountUniversalTransfer = Entry('sub-account/universalTransfer', 'sapi', 'POST', {'cost': 0.1})
|
|
283
|
+
sapi_post_sub_account_options_enable = sapiPostSubAccountOptionsEnable = Entry('sub-account/options/enable', 'sapi', 'POST', {'cost': 0.1})
|
|
284
|
+
sapi_post_managed_subaccount_deposit = sapiPostManagedSubaccountDeposit = Entry('managed-subaccount/deposit', 'sapi', 'POST', {'cost': 0.1})
|
|
285
|
+
sapi_post_managed_subaccount_withdraw = sapiPostManagedSubaccountWithdraw = Entry('managed-subaccount/withdraw', 'sapi', 'POST', {'cost': 0.1})
|
|
286
|
+
sapi_post_userdatastream = sapiPostUserDataStream = Entry('userDataStream', 'sapi', 'POST', {'cost': 0.1})
|
|
287
|
+
sapi_post_userdatastream_isolated = sapiPostUserDataStreamIsolated = Entry('userDataStream/isolated', 'sapi', 'POST', {'cost': 0.1})
|
|
288
|
+
sapi_post_futures_transfer = sapiPostFuturesTransfer = Entry('futures/transfer', 'sapi', 'POST', {'cost': 0.1})
|
|
289
|
+
sapi_post_lending_customizedfixed_purchase = sapiPostLendingCustomizedFixedPurchase = Entry('lending/customizedFixed/purchase', 'sapi', 'POST', {'cost': 0.1})
|
|
290
|
+
sapi_post_lending_daily_purchase = sapiPostLendingDailyPurchase = Entry('lending/daily/purchase', 'sapi', 'POST', {'cost': 0.1})
|
|
291
|
+
sapi_post_lending_daily_redeem = sapiPostLendingDailyRedeem = Entry('lending/daily/redeem', 'sapi', 'POST', {'cost': 0.1})
|
|
292
|
+
sapi_post_bswap_liquidityadd = sapiPostBswapLiquidityAdd = Entry('bswap/liquidityAdd', 'sapi', 'POST', {'cost': 60})
|
|
293
|
+
sapi_post_bswap_liquidityremove = sapiPostBswapLiquidityRemove = Entry('bswap/liquidityRemove', 'sapi', 'POST', {'cost': 60})
|
|
294
|
+
sapi_post_bswap_swap = sapiPostBswapSwap = Entry('bswap/swap', 'sapi', 'POST', {'cost': 60})
|
|
295
|
+
sapi_post_bswap_claimrewards = sapiPostBswapClaimRewards = Entry('bswap/claimRewards', 'sapi', 'POST', {'cost': 6.667})
|
|
296
|
+
sapi_post_blvt_subscribe = sapiPostBlvtSubscribe = Entry('blvt/subscribe', 'sapi', 'POST', {'cost': 0.1})
|
|
297
|
+
sapi_post_blvt_redeem = sapiPostBlvtRedeem = Entry('blvt/redeem', 'sapi', 'POST', {'cost': 0.1})
|
|
298
|
+
sapi_post_apireferral_customization = sapiPostApiReferralCustomization = Entry('apiReferral/customization', 'sapi', 'POST', {'cost': 1})
|
|
299
|
+
sapi_post_apireferral_usercustomization = sapiPostApiReferralUserCustomization = Entry('apiReferral/userCustomization', 'sapi', 'POST', {'cost': 1})
|
|
300
|
+
sapi_post_apireferral_rebate_historicalrecord = sapiPostApiReferralRebateHistoricalRecord = Entry('apiReferral/rebate/historicalRecord', 'sapi', 'POST', {'cost': 1})
|
|
301
|
+
sapi_post_apireferral_kickback_historicalrecord = sapiPostApiReferralKickbackHistoricalRecord = Entry('apiReferral/kickback/historicalRecord', 'sapi', 'POST', {'cost': 1})
|
|
302
|
+
sapi_post_broker_subaccount = sapiPostBrokerSubAccount = Entry('broker/subAccount', 'sapi', 'POST', {'cost': 1})
|
|
303
|
+
sapi_post_broker_subaccount_margin = sapiPostBrokerSubAccountMargin = Entry('broker/subAccount/margin', 'sapi', 'POST', {'cost': 1})
|
|
304
|
+
sapi_post_broker_subaccount_futures = sapiPostBrokerSubAccountFutures = Entry('broker/subAccount/futures', 'sapi', 'POST', {'cost': 1})
|
|
305
|
+
sapi_post_broker_subaccountapi = sapiPostBrokerSubAccountApi = Entry('broker/subAccountApi', 'sapi', 'POST', {'cost': 1})
|
|
306
|
+
sapi_post_broker_subaccountapi_permission = sapiPostBrokerSubAccountApiPermission = Entry('broker/subAccountApi/permission', 'sapi', 'POST', {'cost': 1})
|
|
307
|
+
sapi_post_broker_subaccountapi_commission = sapiPostBrokerSubAccountApiCommission = Entry('broker/subAccountApi/commission', 'sapi', 'POST', {'cost': 1})
|
|
308
|
+
sapi_post_broker_subaccountapi_commission_futures = sapiPostBrokerSubAccountApiCommissionFutures = Entry('broker/subAccountApi/commission/futures', 'sapi', 'POST', {'cost': 1})
|
|
309
|
+
sapi_post_broker_subaccountapi_commission_coinfutures = sapiPostBrokerSubAccountApiCommissionCoinFutures = Entry('broker/subAccountApi/commission/coinFutures', 'sapi', 'POST', {'cost': 1})
|
|
310
|
+
sapi_post_broker_transfer = sapiPostBrokerTransfer = Entry('broker/transfer', 'sapi', 'POST', {'cost': 1})
|
|
311
|
+
sapi_post_broker_transfer_futures = sapiPostBrokerTransferFutures = Entry('broker/transfer/futures', 'sapi', 'POST', {'cost': 1})
|
|
312
|
+
sapi_post_broker_rebate_historicalrecord = sapiPostBrokerRebateHistoricalRecord = Entry('broker/rebate/historicalRecord', 'sapi', 'POST', {'cost': 1})
|
|
313
|
+
sapi_post_broker_subaccount_bnbburn_spot = sapiPostBrokerSubAccountBnbBurnSpot = Entry('broker/subAccount/bnbBurn/spot', 'sapi', 'POST', {'cost': 1})
|
|
314
|
+
sapi_post_broker_subaccount_bnbburn_margininterest = sapiPostBrokerSubAccountBnbBurnMarginInterest = Entry('broker/subAccount/bnbBurn/marginInterest', 'sapi', 'POST', {'cost': 1})
|
|
315
|
+
sapi_post_broker_subaccount_blvt = sapiPostBrokerSubAccountBlvt = Entry('broker/subAccount/blvt', 'sapi', 'POST', {'cost': 1})
|
|
316
|
+
sapi_post_broker_subaccountapi_iprestriction = sapiPostBrokerSubAccountApiIpRestriction = Entry('broker/subAccountApi/ipRestriction', 'sapi', 'POST', {'cost': 1})
|
|
317
|
+
sapi_post_broker_subaccountapi_iprestriction_iplist = sapiPostBrokerSubAccountApiIpRestrictionIpList = Entry('broker/subAccountApi/ipRestriction/ipList', 'sapi', 'POST', {'cost': 1})
|
|
318
|
+
sapi_post_broker_universaltransfer = sapiPostBrokerUniversalTransfer = Entry('broker/universalTransfer', 'sapi', 'POST', {'cost': 1})
|
|
319
|
+
sapi_post_broker_subaccountapi_permission_universaltransfer = sapiPostBrokerSubAccountApiPermissionUniversalTransfer = Entry('broker/subAccountApi/permission/universalTransfer', 'sapi', 'POST', {'cost': 1})
|
|
320
|
+
sapi_post_broker_subaccountapi_permission_vanillaoptions = sapiPostBrokerSubAccountApiPermissionVanillaOptions = Entry('broker/subAccountApi/permission/vanillaOptions', 'sapi', 'POST', {'cost': 1})
|
|
321
|
+
sapi_post_giftcard_createcode = sapiPostGiftcardCreateCode = Entry('giftcard/createCode', 'sapi', 'POST', {'cost': 0.1})
|
|
322
|
+
sapi_post_giftcard_redeemcode = sapiPostGiftcardRedeemCode = Entry('giftcard/redeemCode', 'sapi', 'POST', {'cost': 0.1})
|
|
323
|
+
sapi_post_giftcard_buycode = sapiPostGiftcardBuyCode = Entry('giftcard/buyCode', 'sapi', 'POST', {'cost': 0.1})
|
|
324
|
+
sapi_post_algo_spot_newordertwap = sapiPostAlgoSpotNewOrderTwap = Entry('algo/spot/newOrderTwap', 'sapi', 'POST', {'cost': 20.001})
|
|
325
|
+
sapi_post_algo_futures_newordervp = sapiPostAlgoFuturesNewOrderVp = Entry('algo/futures/newOrderVp', 'sapi', 'POST', {'cost': 20.001})
|
|
326
|
+
sapi_post_algo_futures_newordertwap = sapiPostAlgoFuturesNewOrderTwap = Entry('algo/futures/newOrderTwap', 'sapi', 'POST', {'cost': 20.001})
|
|
327
|
+
sapi_post_staking_purchase = sapiPostStakingPurchase = Entry('staking/purchase', 'sapi', 'POST', {'cost': 0.1})
|
|
328
|
+
sapi_post_staking_redeem = sapiPostStakingRedeem = Entry('staking/redeem', 'sapi', 'POST', {'cost': 0.1})
|
|
329
|
+
sapi_post_staking_setautostaking = sapiPostStakingSetAutoStaking = Entry('staking/setAutoStaking', 'sapi', 'POST', {'cost': 0.1})
|
|
330
|
+
sapi_post_eth_staking_eth_stake = sapiPostEthStakingEthStake = Entry('eth-staking/eth/stake', 'sapi', 'POST', {'cost': 15})
|
|
331
|
+
sapi_post_eth_staking_eth_redeem = sapiPostEthStakingEthRedeem = Entry('eth-staking/eth/redeem', 'sapi', 'POST', {'cost': 15})
|
|
332
|
+
sapi_post_eth_staking_wbeth_wrap = sapiPostEthStakingWbethWrap = Entry('eth-staking/wbeth/wrap', 'sapi', 'POST', {'cost': 15})
|
|
333
|
+
sapi_post_mining_hash_transfer_config = sapiPostMiningHashTransferConfig = Entry('mining/hash-transfer/config', 'sapi', 'POST', {'cost': 0.5})
|
|
334
|
+
sapi_post_mining_hash_transfer_config_cancel = sapiPostMiningHashTransferConfigCancel = Entry('mining/hash-transfer/config/cancel', 'sapi', 'POST', {'cost': 0.5})
|
|
335
|
+
sapi_post_portfolio_repay = sapiPostPortfolioRepay = Entry('portfolio/repay', 'sapi', 'POST', {'cost': 20.001})
|
|
336
|
+
sapi_post_loan_vip_renew = sapiPostLoanVipRenew = Entry('loan/vip/renew', 'sapi', 'POST', {'cost': 40.002})
|
|
337
|
+
sapi_post_loan_vip_borrow = sapiPostLoanVipBorrow = Entry('loan/vip/borrow', 'sapi', 'POST', {'cost': 40.002})
|
|
338
|
+
sapi_post_loan_borrow = sapiPostLoanBorrow = Entry('loan/borrow', 'sapi', 'POST', {'cost': 40.002})
|
|
339
|
+
sapi_post_loan_repay = sapiPostLoanRepay = Entry('loan/repay', 'sapi', 'POST', {'cost': 40.002})
|
|
340
|
+
sapi_post_loan_adjust_ltv = sapiPostLoanAdjustLtv = Entry('loan/adjust/ltv', 'sapi', 'POST', {'cost': 40.002})
|
|
341
|
+
sapi_post_loan_customize_margin_call = sapiPostLoanCustomizeMarginCall = Entry('loan/customize/margin_call', 'sapi', 'POST', {'cost': 40.002})
|
|
342
|
+
sapi_post_loan_flexible_repay = sapiPostLoanFlexibleRepay = Entry('loan/flexible/repay', 'sapi', 'POST', {'cost': 40.002})
|
|
343
|
+
sapi_post_loan_flexible_adjust_ltv = sapiPostLoanFlexibleAdjustLtv = Entry('loan/flexible/adjust/ltv', 'sapi', 'POST', {'cost': 40.002})
|
|
344
|
+
sapi_post_loan_vip_repay = sapiPostLoanVipRepay = Entry('loan/vip/repay', 'sapi', 'POST', {'cost': 40.002})
|
|
345
|
+
sapi_post_convert_getquote = sapiPostConvertGetQuote = Entry('convert/getQuote', 'sapi', 'POST', {'cost': 1.3334})
|
|
346
|
+
sapi_post_convert_acceptquote = sapiPostConvertAcceptQuote = Entry('convert/acceptQuote', 'sapi', 'POST', {'cost': 3.3335})
|
|
347
|
+
sapi_post_convert_limit_placeorder = sapiPostConvertLimitPlaceOrder = Entry('convert/limit/placeOrder', 'sapi', 'POST', {'cost': 3.3335})
|
|
348
|
+
sapi_post_convert_limit_cancelorder = sapiPostConvertLimitCancelOrder = Entry('convert/limit/cancelOrder', 'sapi', 'POST', {'cost': 1.3334})
|
|
349
|
+
sapi_post_portfolio_auto_collection = sapiPostPortfolioAutoCollection = Entry('portfolio/auto-collection', 'sapi', 'POST', {'cost': 150})
|
|
350
|
+
sapi_post_portfolio_asset_collection = sapiPostPortfolioAssetCollection = Entry('portfolio/asset-collection', 'sapi', 'POST', {'cost': 6})
|
|
351
|
+
sapi_post_portfolio_bnb_transfer = sapiPostPortfolioBnbTransfer = Entry('portfolio/bnb-transfer', 'sapi', 'POST', {'cost': 150})
|
|
352
|
+
sapi_post_portfolio_repay_futures_switch = sapiPostPortfolioRepayFuturesSwitch = Entry('portfolio/repay-futures-switch', 'sapi', 'POST', {'cost': 150})
|
|
353
|
+
sapi_post_portfolio_repay_futures_negative_balance = sapiPostPortfolioRepayFuturesNegativeBalance = Entry('portfolio/repay-futures-negative-balance', 'sapi', 'POST', {'cost': 150})
|
|
354
|
+
sapi_post_lending_auto_invest_plan_add = sapiPostLendingAutoInvestPlanAdd = Entry('lending/auto-invest/plan/add', 'sapi', 'POST', {'cost': 0.1})
|
|
355
|
+
sapi_post_lending_auto_invest_plan_edit = sapiPostLendingAutoInvestPlanEdit = Entry('lending/auto-invest/plan/edit', 'sapi', 'POST', {'cost': 0.1})
|
|
356
|
+
sapi_post_lending_auto_invest_plan_edit_status = sapiPostLendingAutoInvestPlanEditStatus = Entry('lending/auto-invest/plan/edit-status', 'sapi', 'POST', {'cost': 0.1})
|
|
357
|
+
sapi_post_lending_auto_invest_one_off = sapiPostLendingAutoInvestOneOff = Entry('lending/auto-invest/one-off', 'sapi', 'POST', {'cost': 0.1})
|
|
358
|
+
sapi_post_lending_auto_invest_redeem = sapiPostLendingAutoInvestRedeem = Entry('lending/auto-invest/redeem', 'sapi', 'POST', {'cost': 0.1})
|
|
359
|
+
sapi_post_simple_earn_flexible_subscribe = sapiPostSimpleEarnFlexibleSubscribe = Entry('simple-earn/flexible/subscribe', 'sapi', 'POST', {'cost': 0.1})
|
|
360
|
+
sapi_post_simple_earn_locked_subscribe = sapiPostSimpleEarnLockedSubscribe = Entry('simple-earn/locked/subscribe', 'sapi', 'POST', {'cost': 0.1})
|
|
361
|
+
sapi_post_simple_earn_flexible_redeem = sapiPostSimpleEarnFlexibleRedeem = Entry('simple-earn/flexible/redeem', 'sapi', 'POST', {'cost': 0.1})
|
|
362
|
+
sapi_post_simple_earn_locked_redeem = sapiPostSimpleEarnLockedRedeem = Entry('simple-earn/locked/redeem', 'sapi', 'POST', {'cost': 0.1})
|
|
363
|
+
sapi_post_simple_earn_flexible_setautosubscribe = sapiPostSimpleEarnFlexibleSetAutoSubscribe = Entry('simple-earn/flexible/setAutoSubscribe', 'sapi', 'POST', {'cost': 15})
|
|
364
|
+
sapi_post_simple_earn_locked_setautosubscribe = sapiPostSimpleEarnLockedSetAutoSubscribe = Entry('simple-earn/locked/setAutoSubscribe', 'sapi', 'POST', {'cost': 15})
|
|
365
|
+
sapi_post_dci_product_subscribe = sapiPostDciProductSubscribe = Entry('dci/product/subscribe', 'sapi', 'POST', {'cost': 0.1})
|
|
366
|
+
sapi_post_dci_product_auto_compound_edit = sapiPostDciProductAutoCompoundEdit = Entry('dci/product/auto_compound/edit', 'sapi', 'POST', {'cost': 0.1})
|
|
367
|
+
sapi_put_userdatastream = sapiPutUserDataStream = Entry('userDataStream', 'sapi', 'PUT', {'cost': 0.1})
|
|
368
|
+
sapi_put_userdatastream_isolated = sapiPutUserDataStreamIsolated = Entry('userDataStream/isolated', 'sapi', 'PUT', {'cost': 0.1})
|
|
369
|
+
sapi_delete_margin_openorders = sapiDeleteMarginOpenOrders = Entry('margin/openOrders', 'sapi', 'DELETE', {'cost': 0.1})
|
|
370
|
+
sapi_delete_margin_order = sapiDeleteMarginOrder = Entry('margin/order', 'sapi', 'DELETE', {'cost': 0.006667})
|
|
371
|
+
sapi_delete_margin_orderlist = sapiDeleteMarginOrderList = Entry('margin/orderList', 'sapi', 'DELETE', {'cost': 0.006667})
|
|
372
|
+
sapi_delete_margin_isolated_account = sapiDeleteMarginIsolatedAccount = Entry('margin/isolated/account', 'sapi', 'DELETE', {'cost': 2.0001})
|
|
373
|
+
sapi_delete_userdatastream = sapiDeleteUserDataStream = Entry('userDataStream', 'sapi', 'DELETE', {'cost': 0.1})
|
|
374
|
+
sapi_delete_userdatastream_isolated = sapiDeleteUserDataStreamIsolated = Entry('userDataStream/isolated', 'sapi', 'DELETE', {'cost': 0.1})
|
|
375
|
+
sapi_delete_broker_subaccountapi = sapiDeleteBrokerSubAccountApi = Entry('broker/subAccountApi', 'sapi', 'DELETE', {'cost': 1})
|
|
376
|
+
sapi_delete_broker_subaccountapi_iprestriction_iplist = sapiDeleteBrokerSubAccountApiIpRestrictionIpList = Entry('broker/subAccountApi/ipRestriction/ipList', 'sapi', 'DELETE', {'cost': 1})
|
|
377
|
+
sapi_delete_algo_spot_order = sapiDeleteAlgoSpotOrder = Entry('algo/spot/order', 'sapi', 'DELETE', {'cost': 0.1})
|
|
378
|
+
sapi_delete_algo_futures_order = sapiDeleteAlgoFuturesOrder = Entry('algo/futures/order', 'sapi', 'DELETE', {'cost': 0.1})
|
|
379
|
+
sapi_delete_sub_account_subaccountapi_iprestriction_iplist = sapiDeleteSubAccountSubAccountApiIpRestrictionIpList = Entry('sub-account/subAccountApi/ipRestriction/ipList', 'sapi', 'DELETE', {'cost': 20.001})
|
|
380
|
+
sapiv2_get_eth_staking_account = sapiV2GetEthStakingAccount = Entry('eth-staking/account', 'sapiV2', 'GET', {'cost': 15})
|
|
381
|
+
sapiv2_get_sub_account_futures_account = sapiV2GetSubAccountFuturesAccount = Entry('sub-account/futures/account', 'sapiV2', 'GET', {'cost': 0.1})
|
|
382
|
+
sapiv2_get_sub_account_futures_accountsummary = sapiV2GetSubAccountFuturesAccountSummary = Entry('sub-account/futures/accountSummary', 'sapiV2', 'GET', {'cost': 1})
|
|
383
|
+
sapiv2_get_sub_account_futures_positionrisk = sapiV2GetSubAccountFuturesPositionRisk = Entry('sub-account/futures/positionRisk', 'sapiV2', 'GET', {'cost': 0.1})
|
|
384
|
+
sapiv2_get_loan_flexible_ongoing_orders = sapiV2GetLoanFlexibleOngoingOrders = Entry('loan/flexible/ongoing/orders', 'sapiV2', 'GET', {'cost': 30})
|
|
385
|
+
sapiv2_get_loan_flexible_borrow_history = sapiV2GetLoanFlexibleBorrowHistory = Entry('loan/flexible/borrow/history', 'sapiV2', 'GET', {'cost': 40})
|
|
386
|
+
sapiv2_get_loan_flexible_repay_history = sapiV2GetLoanFlexibleRepayHistory = Entry('loan/flexible/repay/history', 'sapiV2', 'GET', {'cost': 40})
|
|
387
|
+
sapiv2_get_loan_flexible_ltv_adjustment_history = sapiV2GetLoanFlexibleLtvAdjustmentHistory = Entry('loan/flexible/ltv/adjustment/history', 'sapiV2', 'GET', {'cost': 40})
|
|
388
|
+
sapiv2_get_loan_flexible_loanable_data = sapiV2GetLoanFlexibleLoanableData = Entry('loan/flexible/loanable/data', 'sapiV2', 'GET', {'cost': 40})
|
|
389
|
+
sapiv2_get_loan_flexible_collateral_data = sapiV2GetLoanFlexibleCollateralData = Entry('loan/flexible/collateral/data', 'sapiV2', 'GET', {'cost': 40})
|
|
390
|
+
sapiv2_post_eth_staking_eth_stake = sapiV2PostEthStakingEthStake = Entry('eth-staking/eth/stake', 'sapiV2', 'POST', {'cost': 15})
|
|
391
|
+
sapiv2_post_sub_account_subaccountapi_iprestriction = sapiV2PostSubAccountSubAccountApiIpRestriction = Entry('sub-account/subAccountApi/ipRestriction', 'sapiV2', 'POST', {'cost': 20.001})
|
|
392
|
+
sapiv2_post_loan_flexible_borrow = sapiV2PostLoanFlexibleBorrow = Entry('loan/flexible/borrow', 'sapiV2', 'POST', {'cost': 40.002})
|
|
393
|
+
sapiv2_post_loan_flexible_repay = sapiV2PostLoanFlexibleRepay = Entry('loan/flexible/repay', 'sapiV2', 'POST', {'cost': 40.002})
|
|
394
|
+
sapiv2_post_loan_flexible_adjust_ltv = sapiV2PostLoanFlexibleAdjustLtv = Entry('loan/flexible/adjust/ltv', 'sapiV2', 'POST', {'cost': 40.002})
|
|
395
|
+
sapiv3_get_sub_account_assets = sapiV3GetSubAccountAssets = Entry('sub-account/assets', 'sapiV3', 'GET', {'cost': 0.40002})
|
|
396
|
+
sapiv3_post_asset_getuserasset = sapiV3PostAssetGetUserAsset = Entry('asset/getUserAsset', 'sapiV3', 'POST', {'cost': 0.5})
|
|
397
|
+
sapiv4_get_sub_account_assets = sapiV4GetSubAccountAssets = Entry('sub-account/assets', 'sapiV4', 'GET', {'cost': 0.40002})
|
|
398
|
+
dapipublic_get_ping = dapiPublicGetPing = Entry('ping', 'dapiPublic', 'GET', {'cost': 1})
|
|
399
|
+
dapipublic_get_time = dapiPublicGetTime = Entry('time', 'dapiPublic', 'GET', {'cost': 1})
|
|
400
|
+
dapipublic_get_exchangeinfo = dapiPublicGetExchangeInfo = Entry('exchangeInfo', 'dapiPublic', 'GET', {'cost': 1})
|
|
401
|
+
dapipublic_get_depth = dapiPublicGetDepth = Entry('depth', 'dapiPublic', 'GET', {'cost': 2, 'byLimit': [[50, 2], [100, 5], [500, 10], [1000, 20]]})
|
|
402
|
+
dapipublic_get_trades = dapiPublicGetTrades = Entry('trades', 'dapiPublic', 'GET', {'cost': 5})
|
|
403
|
+
dapipublic_get_historicaltrades = dapiPublicGetHistoricalTrades = Entry('historicalTrades', 'dapiPublic', 'GET', {'cost': 20})
|
|
404
|
+
dapipublic_get_aggtrades = dapiPublicGetAggTrades = Entry('aggTrades', 'dapiPublic', 'GET', {'cost': 20})
|
|
405
|
+
dapipublic_get_premiumindex = dapiPublicGetPremiumIndex = Entry('premiumIndex', 'dapiPublic', 'GET', {'cost': 10})
|
|
406
|
+
dapipublic_get_fundingrate = dapiPublicGetFundingRate = Entry('fundingRate', 'dapiPublic', 'GET', {'cost': 1})
|
|
407
|
+
dapipublic_get_klines = dapiPublicGetKlines = Entry('klines', 'dapiPublic', 'GET', {'cost': 1, 'byLimit': [[99, 1], [499, 2], [1000, 5], [10000, 10]]})
|
|
408
|
+
dapipublic_get_continuousklines = dapiPublicGetContinuousKlines = Entry('continuousKlines', 'dapiPublic', 'GET', {'cost': 1, 'byLimit': [[99, 1], [499, 2], [1000, 5], [10000, 10]]})
|
|
409
|
+
dapipublic_get_indexpriceklines = dapiPublicGetIndexPriceKlines = Entry('indexPriceKlines', 'dapiPublic', 'GET', {'cost': 1, 'byLimit': [[99, 1], [499, 2], [1000, 5], [10000, 10]]})
|
|
410
|
+
dapipublic_get_markpriceklines = dapiPublicGetMarkPriceKlines = Entry('markPriceKlines', 'dapiPublic', 'GET', {'cost': 1, 'byLimit': [[99, 1], [499, 2], [1000, 5], [10000, 10]]})
|
|
411
|
+
dapipublic_get_premiumindexklines = dapiPublicGetPremiumIndexKlines = Entry('premiumIndexKlines', 'dapiPublic', 'GET', {'cost': 1, 'byLimit': [[99, 1], [499, 2], [1000, 5], [10000, 10]]})
|
|
412
|
+
dapipublic_get_ticker_24hr = dapiPublicGetTicker24hr = Entry('ticker/24hr', 'dapiPublic', 'GET', {'cost': 1, 'noSymbol': 40})
|
|
413
|
+
dapipublic_get_ticker_price = dapiPublicGetTickerPrice = Entry('ticker/price', 'dapiPublic', 'GET', {'cost': 1, 'noSymbol': 2})
|
|
414
|
+
dapipublic_get_ticker_bookticker = dapiPublicGetTickerBookTicker = Entry('ticker/bookTicker', 'dapiPublic', 'GET', {'cost': 2, 'noSymbol': 5})
|
|
415
|
+
dapipublic_get_constituents = dapiPublicGetConstituents = Entry('constituents', 'dapiPublic', 'GET', {'cost': 2})
|
|
416
|
+
dapipublic_get_openinterest = dapiPublicGetOpenInterest = Entry('openInterest', 'dapiPublic', 'GET', {'cost': 1})
|
|
417
|
+
dapidata_get_delivery_price = dapiDataGetDeliveryPrice = Entry('delivery-price', 'dapiData', 'GET', {'cost': 1})
|
|
418
|
+
dapidata_get_openinteresthist = dapiDataGetOpenInterestHist = Entry('openInterestHist', 'dapiData', 'GET', {'cost': 1})
|
|
419
|
+
dapidata_get_toplongshortaccountratio = dapiDataGetTopLongShortAccountRatio = Entry('topLongShortAccountRatio', 'dapiData', 'GET', {'cost': 1})
|
|
420
|
+
dapidata_get_toplongshortpositionratio = dapiDataGetTopLongShortPositionRatio = Entry('topLongShortPositionRatio', 'dapiData', 'GET', {'cost': 1})
|
|
421
|
+
dapidata_get_globallongshortaccountratio = dapiDataGetGlobalLongShortAccountRatio = Entry('globalLongShortAccountRatio', 'dapiData', 'GET', {'cost': 1})
|
|
422
|
+
dapidata_get_takerbuysellvol = dapiDataGetTakerBuySellVol = Entry('takerBuySellVol', 'dapiData', 'GET', {'cost': 1})
|
|
423
|
+
dapidata_get_basis = dapiDataGetBasis = Entry('basis', 'dapiData', 'GET', {'cost': 1})
|
|
424
|
+
dapiprivate_get_positionside_dual = dapiPrivateGetPositionSideDual = Entry('positionSide/dual', 'dapiPrivate', 'GET', {'cost': 30})
|
|
425
|
+
dapiprivate_get_orderamendment = dapiPrivateGetOrderAmendment = Entry('orderAmendment', 'dapiPrivate', 'GET', {'cost': 1})
|
|
426
|
+
dapiprivate_get_order = dapiPrivateGetOrder = Entry('order', 'dapiPrivate', 'GET', {'cost': 1})
|
|
427
|
+
dapiprivate_get_openorder = dapiPrivateGetOpenOrder = Entry('openOrder', 'dapiPrivate', 'GET', {'cost': 1})
|
|
428
|
+
dapiprivate_get_openorders = dapiPrivateGetOpenOrders = Entry('openOrders', 'dapiPrivate', 'GET', {'cost': 1, 'noSymbol': 5})
|
|
429
|
+
dapiprivate_get_allorders = dapiPrivateGetAllOrders = Entry('allOrders', 'dapiPrivate', 'GET', {'cost': 20, 'noSymbol': 40})
|
|
430
|
+
dapiprivate_get_balance = dapiPrivateGetBalance = Entry('balance', 'dapiPrivate', 'GET', {'cost': 1})
|
|
431
|
+
dapiprivate_get_account = dapiPrivateGetAccount = Entry('account', 'dapiPrivate', 'GET', {'cost': 5})
|
|
432
|
+
dapiprivate_get_positionmargin_history = dapiPrivateGetPositionMarginHistory = Entry('positionMargin/history', 'dapiPrivate', 'GET', {'cost': 1})
|
|
433
|
+
dapiprivate_get_positionrisk = dapiPrivateGetPositionRisk = Entry('positionRisk', 'dapiPrivate', 'GET', {'cost': 1})
|
|
434
|
+
dapiprivate_get_usertrades = dapiPrivateGetUserTrades = Entry('userTrades', 'dapiPrivate', 'GET', {'cost': 20, 'noSymbol': 40})
|
|
435
|
+
dapiprivate_get_income = dapiPrivateGetIncome = Entry('income', 'dapiPrivate', 'GET', {'cost': 20})
|
|
436
|
+
dapiprivate_get_leveragebracket = dapiPrivateGetLeverageBracket = Entry('leverageBracket', 'dapiPrivate', 'GET', {'cost': 1})
|
|
437
|
+
dapiprivate_get_forceorders = dapiPrivateGetForceOrders = Entry('forceOrders', 'dapiPrivate', 'GET', {'cost': 20, 'noSymbol': 50})
|
|
438
|
+
dapiprivate_get_adlquantile = dapiPrivateGetAdlQuantile = Entry('adlQuantile', 'dapiPrivate', 'GET', {'cost': 5})
|
|
439
|
+
dapiprivate_get_commissionrate = dapiPrivateGetCommissionRate = Entry('commissionRate', 'dapiPrivate', 'GET', {'cost': 20})
|
|
440
|
+
dapiprivate_get_income_asyn = dapiPrivateGetIncomeAsyn = Entry('income/asyn', 'dapiPrivate', 'GET', {'cost': 5})
|
|
441
|
+
dapiprivate_get_income_asyn_id = dapiPrivateGetIncomeAsynId = Entry('income/asyn/id', 'dapiPrivate', 'GET', {'cost': 5})
|
|
442
|
+
dapiprivate_get_pmexchangeinfo = dapiPrivateGetPmExchangeInfo = Entry('pmExchangeInfo', 'dapiPrivate', 'GET', {'cost': 0.5})
|
|
443
|
+
dapiprivate_get_pmaccountinfo = dapiPrivateGetPmAccountInfo = Entry('pmAccountInfo', 'dapiPrivate', 'GET', {'cost': 0.5})
|
|
444
|
+
dapiprivate_post_positionside_dual = dapiPrivatePostPositionSideDual = Entry('positionSide/dual', 'dapiPrivate', 'POST', {'cost': 1})
|
|
445
|
+
dapiprivate_post_order = dapiPrivatePostOrder = Entry('order', 'dapiPrivate', 'POST', {'cost': 4})
|
|
446
|
+
dapiprivate_post_batchorders = dapiPrivatePostBatchOrders = Entry('batchOrders', 'dapiPrivate', 'POST', {'cost': 5})
|
|
447
|
+
dapiprivate_post_countdowncancelall = dapiPrivatePostCountdownCancelAll = Entry('countdownCancelAll', 'dapiPrivate', 'POST', {'cost': 10})
|
|
448
|
+
dapiprivate_post_leverage = dapiPrivatePostLeverage = Entry('leverage', 'dapiPrivate', 'POST', {'cost': 1})
|
|
449
|
+
dapiprivate_post_margintype = dapiPrivatePostMarginType = Entry('marginType', 'dapiPrivate', 'POST', {'cost': 1})
|
|
450
|
+
dapiprivate_post_positionmargin = dapiPrivatePostPositionMargin = Entry('positionMargin', 'dapiPrivate', 'POST', {'cost': 1})
|
|
451
|
+
dapiprivate_post_listenkey = dapiPrivatePostListenKey = Entry('listenKey', 'dapiPrivate', 'POST', {'cost': 1})
|
|
452
|
+
dapiprivate_put_listenkey = dapiPrivatePutListenKey = Entry('listenKey', 'dapiPrivate', 'PUT', {'cost': 1})
|
|
453
|
+
dapiprivate_put_order = dapiPrivatePutOrder = Entry('order', 'dapiPrivate', 'PUT', {'cost': 1})
|
|
454
|
+
dapiprivate_put_batchorders = dapiPrivatePutBatchOrders = Entry('batchOrders', 'dapiPrivate', 'PUT', {'cost': 5})
|
|
455
|
+
dapiprivate_delete_order = dapiPrivateDeleteOrder = Entry('order', 'dapiPrivate', 'DELETE', {'cost': 1})
|
|
456
|
+
dapiprivate_delete_allopenorders = dapiPrivateDeleteAllOpenOrders = Entry('allOpenOrders', 'dapiPrivate', 'DELETE', {'cost': 1})
|
|
457
|
+
dapiprivate_delete_batchorders = dapiPrivateDeleteBatchOrders = Entry('batchOrders', 'dapiPrivate', 'DELETE', {'cost': 5})
|
|
458
|
+
dapiprivate_delete_listenkey = dapiPrivateDeleteListenKey = Entry('listenKey', 'dapiPrivate', 'DELETE', {'cost': 1})
|
|
459
|
+
dapiprivatev2_get_leveragebracket = dapiPrivateV2GetLeverageBracket = Entry('leverageBracket', 'dapiPrivateV2', 'GET', {'cost': 1})
|
|
460
|
+
fapipublic_get_ping = fapiPublicGetPing = Entry('ping', 'fapiPublic', 'GET', {'cost': 1})
|
|
461
|
+
fapipublic_get_time = fapiPublicGetTime = Entry('time', 'fapiPublic', 'GET', {'cost': 1})
|
|
462
|
+
fapipublic_get_exchangeinfo = fapiPublicGetExchangeInfo = Entry('exchangeInfo', 'fapiPublic', 'GET', {'cost': 1})
|
|
463
|
+
fapipublic_get_depth = fapiPublicGetDepth = Entry('depth', 'fapiPublic', 'GET', {'cost': 2, 'byLimit': [[50, 2], [100, 5], [500, 10], [1000, 20]]})
|
|
464
|
+
fapipublic_get_trades = fapiPublicGetTrades = Entry('trades', 'fapiPublic', 'GET', {'cost': 5})
|
|
465
|
+
fapipublic_get_historicaltrades = fapiPublicGetHistoricalTrades = Entry('historicalTrades', 'fapiPublic', 'GET', {'cost': 20})
|
|
466
|
+
fapipublic_get_aggtrades = fapiPublicGetAggTrades = Entry('aggTrades', 'fapiPublic', 'GET', {'cost': 20})
|
|
467
|
+
fapipublic_get_klines = fapiPublicGetKlines = Entry('klines', 'fapiPublic', 'GET', {'cost': 1, 'byLimit': [[99, 1], [499, 2], [1000, 5], [10000, 10]]})
|
|
468
|
+
fapipublic_get_continuousklines = fapiPublicGetContinuousKlines = Entry('continuousKlines', 'fapiPublic', 'GET', {'cost': 1, 'byLimit': [[99, 1], [499, 2], [1000, 5], [10000, 10]]})
|
|
469
|
+
fapipublic_get_markpriceklines = fapiPublicGetMarkPriceKlines = Entry('markPriceKlines', 'fapiPublic', 'GET', {'cost': 1, 'byLimit': [[99, 1], [499, 2], [1000, 5], [10000, 10]]})
|
|
470
|
+
fapipublic_get_indexpriceklines = fapiPublicGetIndexPriceKlines = Entry('indexPriceKlines', 'fapiPublic', 'GET', {'cost': 1, 'byLimit': [[99, 1], [499, 2], [1000, 5], [10000, 10]]})
|
|
471
|
+
fapipublic_get_premiumindexklines = fapiPublicGetPremiumIndexKlines = Entry('premiumIndexKlines', 'fapiPublic', 'GET', {'cost': 1, 'byLimit': [[99, 1], [499, 2], [1000, 5], [10000, 10]]})
|
|
472
|
+
fapipublic_get_fundingrate = fapiPublicGetFundingRate = Entry('fundingRate', 'fapiPublic', 'GET', {'cost': 1})
|
|
473
|
+
fapipublic_get_fundinginfo = fapiPublicGetFundingInfo = Entry('fundingInfo', 'fapiPublic', 'GET', {'cost': 1})
|
|
474
|
+
fapipublic_get_premiumindex = fapiPublicGetPremiumIndex = Entry('premiumIndex', 'fapiPublic', 'GET', {'cost': 1})
|
|
475
|
+
fapipublic_get_ticker_24hr = fapiPublicGetTicker24hr = Entry('ticker/24hr', 'fapiPublic', 'GET', {'cost': 1, 'noSymbol': 40})
|
|
476
|
+
fapipublic_get_ticker_price = fapiPublicGetTickerPrice = Entry('ticker/price', 'fapiPublic', 'GET', {'cost': 1, 'noSymbol': 2})
|
|
477
|
+
fapipublic_get_ticker_bookticker = fapiPublicGetTickerBookTicker = Entry('ticker/bookTicker', 'fapiPublic', 'GET', {'cost': 1, 'noSymbol': 2})
|
|
478
|
+
fapipublic_get_openinterest = fapiPublicGetOpenInterest = Entry('openInterest', 'fapiPublic', 'GET', {'cost': 1})
|
|
479
|
+
fapipublic_get_indexinfo = fapiPublicGetIndexInfo = Entry('indexInfo', 'fapiPublic', 'GET', {'cost': 1})
|
|
480
|
+
fapipublic_get_assetindex = fapiPublicGetAssetIndex = Entry('assetIndex', 'fapiPublic', 'GET', {'cost': 1, 'noSymbol': 10})
|
|
481
|
+
fapipublic_get_constituents = fapiPublicGetConstituents = Entry('constituents', 'fapiPublic', 'GET', {'cost': 2})
|
|
482
|
+
fapipublic_get_apitradingstatus = fapiPublicGetApiTradingStatus = Entry('apiTradingStatus', 'fapiPublic', 'GET', {'cost': 1, 'noSymbol': 10})
|
|
483
|
+
fapipublic_get_lvtklines = fapiPublicGetLvtKlines = Entry('lvtKlines', 'fapiPublic', 'GET', {'cost': 1})
|
|
484
|
+
fapidata_get_delivery_price = fapiDataGetDeliveryPrice = Entry('delivery-price', 'fapiData', 'GET', {'cost': 1})
|
|
485
|
+
fapidata_get_openinteresthist = fapiDataGetOpenInterestHist = Entry('openInterestHist', 'fapiData', 'GET', {'cost': 1})
|
|
486
|
+
fapidata_get_toplongshortaccountratio = fapiDataGetTopLongShortAccountRatio = Entry('topLongShortAccountRatio', 'fapiData', 'GET', {'cost': 1})
|
|
487
|
+
fapidata_get_toplongshortpositionratio = fapiDataGetTopLongShortPositionRatio = Entry('topLongShortPositionRatio', 'fapiData', 'GET', {'cost': 1})
|
|
488
|
+
fapidata_get_globallongshortaccountratio = fapiDataGetGlobalLongShortAccountRatio = Entry('globalLongShortAccountRatio', 'fapiData', 'GET', {'cost': 1})
|
|
489
|
+
fapidata_get_takerlongshortratio = fapiDataGetTakerlongshortRatio = Entry('takerlongshortRatio', 'fapiData', 'GET', {'cost': 1})
|
|
490
|
+
fapidata_get_basis = fapiDataGetBasis = Entry('basis', 'fapiData', 'GET', {'cost': 1})
|
|
491
|
+
fapiprivate_get_forceorders = fapiPrivateGetForceOrders = Entry('forceOrders', 'fapiPrivate', 'GET', {'cost': 20, 'noSymbol': 50})
|
|
492
|
+
fapiprivate_get_allorders = fapiPrivateGetAllOrders = Entry('allOrders', 'fapiPrivate', 'GET', {'cost': 5})
|
|
493
|
+
fapiprivate_get_openorder = fapiPrivateGetOpenOrder = Entry('openOrder', 'fapiPrivate', 'GET', {'cost': 1})
|
|
494
|
+
fapiprivate_get_openorders = fapiPrivateGetOpenOrders = Entry('openOrders', 'fapiPrivate', 'GET', {'cost': 1})
|
|
495
|
+
fapiprivate_get_order = fapiPrivateGetOrder = Entry('order', 'fapiPrivate', 'GET', {'cost': 1})
|
|
496
|
+
fapiprivate_get_account = fapiPrivateGetAccount = Entry('account', 'fapiPrivate', 'GET', {'cost': 5})
|
|
497
|
+
fapiprivate_get_balance = fapiPrivateGetBalance = Entry('balance', 'fapiPrivate', 'GET', {'cost': 5})
|
|
498
|
+
fapiprivate_get_leveragebracket = fapiPrivateGetLeverageBracket = Entry('leverageBracket', 'fapiPrivate', 'GET', {'cost': 1})
|
|
499
|
+
fapiprivate_get_positionmargin_history = fapiPrivateGetPositionMarginHistory = Entry('positionMargin/history', 'fapiPrivate', 'GET', {'cost': 1})
|
|
500
|
+
fapiprivate_get_positionrisk = fapiPrivateGetPositionRisk = Entry('positionRisk', 'fapiPrivate', 'GET', {'cost': 5})
|
|
501
|
+
fapiprivate_get_positionside_dual = fapiPrivateGetPositionSideDual = Entry('positionSide/dual', 'fapiPrivate', 'GET', {'cost': 30})
|
|
502
|
+
fapiprivate_get_usertrades = fapiPrivateGetUserTrades = Entry('userTrades', 'fapiPrivate', 'GET', {'cost': 5})
|
|
503
|
+
fapiprivate_get_income = fapiPrivateGetIncome = Entry('income', 'fapiPrivate', 'GET', {'cost': 30})
|
|
504
|
+
fapiprivate_get_commissionrate = fapiPrivateGetCommissionRate = Entry('commissionRate', 'fapiPrivate', 'GET', {'cost': 20})
|
|
505
|
+
fapiprivate_get_ratelimit_order = fapiPrivateGetRateLimitOrder = Entry('rateLimit/order', 'fapiPrivate', 'GET', {'cost': 1})
|
|
506
|
+
fapiprivate_get_apitradingstatus = fapiPrivateGetApiTradingStatus = Entry('apiTradingStatus', 'fapiPrivate', 'GET', {'cost': 1})
|
|
507
|
+
fapiprivate_get_multiassetsmargin = fapiPrivateGetMultiAssetsMargin = Entry('multiAssetsMargin', 'fapiPrivate', 'GET', {'cost': 30})
|
|
508
|
+
fapiprivate_get_apireferral_ifnewuser = fapiPrivateGetApiReferralIfNewUser = Entry('apiReferral/ifNewUser', 'fapiPrivate', 'GET', {'cost': 1})
|
|
509
|
+
fapiprivate_get_apireferral_customization = fapiPrivateGetApiReferralCustomization = Entry('apiReferral/customization', 'fapiPrivate', 'GET', {'cost': 1})
|
|
510
|
+
fapiprivate_get_apireferral_usercustomization = fapiPrivateGetApiReferralUserCustomization = Entry('apiReferral/userCustomization', 'fapiPrivate', 'GET', {'cost': 1})
|
|
511
|
+
fapiprivate_get_apireferral_tradernum = fapiPrivateGetApiReferralTraderNum = Entry('apiReferral/traderNum', 'fapiPrivate', 'GET', {'cost': 1})
|
|
512
|
+
fapiprivate_get_apireferral_overview = fapiPrivateGetApiReferralOverview = Entry('apiReferral/overview', 'fapiPrivate', 'GET', {'cost': 1})
|
|
513
|
+
fapiprivate_get_apireferral_tradevol = fapiPrivateGetApiReferralTradeVol = Entry('apiReferral/tradeVol', 'fapiPrivate', 'GET', {'cost': 1})
|
|
514
|
+
fapiprivate_get_apireferral_rebatevol = fapiPrivateGetApiReferralRebateVol = Entry('apiReferral/rebateVol', 'fapiPrivate', 'GET', {'cost': 1})
|
|
515
|
+
fapiprivate_get_apireferral_tradersummary = fapiPrivateGetApiReferralTraderSummary = Entry('apiReferral/traderSummary', 'fapiPrivate', 'GET', {'cost': 1})
|
|
516
|
+
fapiprivate_get_adlquantile = fapiPrivateGetAdlQuantile = Entry('adlQuantile', 'fapiPrivate', 'GET', {'cost': 5})
|
|
517
|
+
fapiprivate_get_pmaccountinfo = fapiPrivateGetPmAccountInfo = Entry('pmAccountInfo', 'fapiPrivate', 'GET', {'cost': 5})
|
|
518
|
+
fapiprivate_get_orderamendment = fapiPrivateGetOrderAmendment = Entry('orderAmendment', 'fapiPrivate', 'GET', {'cost': 1})
|
|
519
|
+
fapiprivate_get_income_asyn = fapiPrivateGetIncomeAsyn = Entry('income/asyn', 'fapiPrivate', 'GET', {'cost': 1000})
|
|
520
|
+
fapiprivate_get_income_asyn_id = fapiPrivateGetIncomeAsynId = Entry('income/asyn/id', 'fapiPrivate', 'GET', {'cost': 10})
|
|
521
|
+
fapiprivate_get_order_asyn = fapiPrivateGetOrderAsyn = Entry('order/asyn', 'fapiPrivate', 'GET', {'cost': 1000})
|
|
522
|
+
fapiprivate_get_order_asyn_id = fapiPrivateGetOrderAsynId = Entry('order/asyn/id', 'fapiPrivate', 'GET', {'cost': 10})
|
|
523
|
+
fapiprivate_get_trade_asyn = fapiPrivateGetTradeAsyn = Entry('trade/asyn', 'fapiPrivate', 'GET', {'cost': 1000})
|
|
524
|
+
fapiprivate_get_trade_asyn_id = fapiPrivateGetTradeAsynId = Entry('trade/asyn/id', 'fapiPrivate', 'GET', {'cost': 10})
|
|
525
|
+
fapiprivate_get_feeburn = fapiPrivateGetFeeBurn = Entry('feeBurn', 'fapiPrivate', 'GET', {'cost': 1})
|
|
526
|
+
fapiprivate_post_batchorders = fapiPrivatePostBatchOrders = Entry('batchOrders', 'fapiPrivate', 'POST', {'cost': 5})
|
|
527
|
+
fapiprivate_post_positionside_dual = fapiPrivatePostPositionSideDual = Entry('positionSide/dual', 'fapiPrivate', 'POST', {'cost': 1})
|
|
528
|
+
fapiprivate_post_positionmargin = fapiPrivatePostPositionMargin = Entry('positionMargin', 'fapiPrivate', 'POST', {'cost': 1})
|
|
529
|
+
fapiprivate_post_margintype = fapiPrivatePostMarginType = Entry('marginType', 'fapiPrivate', 'POST', {'cost': 1})
|
|
530
|
+
fapiprivate_post_order = fapiPrivatePostOrder = Entry('order', 'fapiPrivate', 'POST', {'cost': 4})
|
|
531
|
+
fapiprivate_post_leverage = fapiPrivatePostLeverage = Entry('leverage', 'fapiPrivate', 'POST', {'cost': 1})
|
|
532
|
+
fapiprivate_post_listenkey = fapiPrivatePostListenKey = Entry('listenKey', 'fapiPrivate', 'POST', {'cost': 1})
|
|
533
|
+
fapiprivate_post_countdowncancelall = fapiPrivatePostCountdownCancelAll = Entry('countdownCancelAll', 'fapiPrivate', 'POST', {'cost': 10})
|
|
534
|
+
fapiprivate_post_multiassetsmargin = fapiPrivatePostMultiAssetsMargin = Entry('multiAssetsMargin', 'fapiPrivate', 'POST', {'cost': 1})
|
|
535
|
+
fapiprivate_post_apireferral_customization = fapiPrivatePostApiReferralCustomization = Entry('apiReferral/customization', 'fapiPrivate', 'POST', {'cost': 1})
|
|
536
|
+
fapiprivate_post_apireferral_usercustomization = fapiPrivatePostApiReferralUserCustomization = Entry('apiReferral/userCustomization', 'fapiPrivate', 'POST', {'cost': 1})
|
|
537
|
+
fapiprivate_post_feeburn = fapiPrivatePostFeeBurn = Entry('feeBurn', 'fapiPrivate', 'POST', {'cost': 1})
|
|
538
|
+
fapiprivate_put_listenkey = fapiPrivatePutListenKey = Entry('listenKey', 'fapiPrivate', 'PUT', {'cost': 1})
|
|
539
|
+
fapiprivate_put_order = fapiPrivatePutOrder = Entry('order', 'fapiPrivate', 'PUT', {'cost': 1})
|
|
540
|
+
fapiprivate_put_batchorders = fapiPrivatePutBatchOrders = Entry('batchOrders', 'fapiPrivate', 'PUT', {'cost': 5})
|
|
541
|
+
fapiprivate_delete_batchorders = fapiPrivateDeleteBatchOrders = Entry('batchOrders', 'fapiPrivate', 'DELETE', {'cost': 1})
|
|
542
|
+
fapiprivate_delete_order = fapiPrivateDeleteOrder = Entry('order', 'fapiPrivate', 'DELETE', {'cost': 1})
|
|
543
|
+
fapiprivate_delete_allopenorders = fapiPrivateDeleteAllOpenOrders = Entry('allOpenOrders', 'fapiPrivate', 'DELETE', {'cost': 1})
|
|
544
|
+
fapiprivate_delete_listenkey = fapiPrivateDeleteListenKey = Entry('listenKey', 'fapiPrivate', 'DELETE', {'cost': 1})
|
|
545
|
+
fapipublicv2_get_ticker_price = fapiPublicV2GetTickerPrice = Entry('ticker/price', 'fapiPublicV2', 'GET', {'cost': 0})
|
|
546
|
+
fapiprivatev2_get_account = fapiPrivateV2GetAccount = Entry('account', 'fapiPrivateV2', 'GET', {'cost': 1})
|
|
547
|
+
fapiprivatev2_get_balance = fapiPrivateV2GetBalance = Entry('balance', 'fapiPrivateV2', 'GET', {'cost': 1})
|
|
548
|
+
fapiprivatev2_get_positionrisk = fapiPrivateV2GetPositionRisk = Entry('positionRisk', 'fapiPrivateV2', 'GET', {'cost': 1})
|
|
549
|
+
eapipublic_get_ping = eapiPublicGetPing = Entry('ping', 'eapiPublic', 'GET', {'cost': 1})
|
|
550
|
+
eapipublic_get_time = eapiPublicGetTime = Entry('time', 'eapiPublic', 'GET', {'cost': 1})
|
|
551
|
+
eapipublic_get_exchangeinfo = eapiPublicGetExchangeInfo = Entry('exchangeInfo', 'eapiPublic', 'GET', {'cost': 1})
|
|
552
|
+
eapipublic_get_index = eapiPublicGetIndex = Entry('index', 'eapiPublic', 'GET', {'cost': 1})
|
|
553
|
+
eapipublic_get_ticker = eapiPublicGetTicker = Entry('ticker', 'eapiPublic', 'GET', {'cost': 5})
|
|
554
|
+
eapipublic_get_mark = eapiPublicGetMark = Entry('mark', 'eapiPublic', 'GET', {'cost': 5})
|
|
555
|
+
eapipublic_get_depth = eapiPublicGetDepth = Entry('depth', 'eapiPublic', 'GET', {'cost': 1})
|
|
556
|
+
eapipublic_get_klines = eapiPublicGetKlines = Entry('klines', 'eapiPublic', 'GET', {'cost': 1})
|
|
557
|
+
eapipublic_get_trades = eapiPublicGetTrades = Entry('trades', 'eapiPublic', 'GET', {'cost': 5})
|
|
558
|
+
eapipublic_get_historicaltrades = eapiPublicGetHistoricalTrades = Entry('historicalTrades', 'eapiPublic', 'GET', {'cost': 20})
|
|
559
|
+
eapipublic_get_exercisehistory = eapiPublicGetExerciseHistory = Entry('exerciseHistory', 'eapiPublic', 'GET', {'cost': 3})
|
|
560
|
+
eapipublic_get_openinterest = eapiPublicGetOpenInterest = Entry('openInterest', 'eapiPublic', 'GET', {'cost': 3})
|
|
561
|
+
eapiprivate_get_account = eapiPrivateGetAccount = Entry('account', 'eapiPrivate', 'GET', {'cost': 3})
|
|
562
|
+
eapiprivate_get_position = eapiPrivateGetPosition = Entry('position', 'eapiPrivate', 'GET', {'cost': 5})
|
|
563
|
+
eapiprivate_get_openorders = eapiPrivateGetOpenOrders = Entry('openOrders', 'eapiPrivate', 'GET', {'cost': 1, 'noSymbol': 40})
|
|
564
|
+
eapiprivate_get_historyorders = eapiPrivateGetHistoryOrders = Entry('historyOrders', 'eapiPrivate', 'GET', {'cost': 3})
|
|
565
|
+
eapiprivate_get_usertrades = eapiPrivateGetUserTrades = Entry('userTrades', 'eapiPrivate', 'GET', {'cost': 5})
|
|
566
|
+
eapiprivate_get_exerciserecord = eapiPrivateGetExerciseRecord = Entry('exerciseRecord', 'eapiPrivate', 'GET', {'cost': 5})
|
|
567
|
+
eapiprivate_get_bill = eapiPrivateGetBill = Entry('bill', 'eapiPrivate', 'GET', {'cost': 1})
|
|
568
|
+
eapiprivate_get_income_asyn = eapiPrivateGetIncomeAsyn = Entry('income/asyn', 'eapiPrivate', 'GET', {'cost': 5})
|
|
569
|
+
eapiprivate_get_income_asyn_id = eapiPrivateGetIncomeAsynId = Entry('income/asyn/id', 'eapiPrivate', 'GET', {'cost': 5})
|
|
570
|
+
eapiprivate_get_marginaccount = eapiPrivateGetMarginAccount = Entry('marginAccount', 'eapiPrivate', 'GET', {'cost': 3})
|
|
571
|
+
eapiprivate_get_mmp = eapiPrivateGetMmp = Entry('mmp', 'eapiPrivate', 'GET', {'cost': 1})
|
|
572
|
+
eapiprivate_get_countdowncancelall = eapiPrivateGetCountdownCancelAll = Entry('countdownCancelAll', 'eapiPrivate', 'GET', {'cost': 1})
|
|
573
|
+
eapiprivate_get_order = eapiPrivateGetOrder = Entry('order', 'eapiPrivate', 'GET', {'cost': 1})
|
|
574
|
+
eapiprivate_post_order = eapiPrivatePostOrder = Entry('order', 'eapiPrivate', 'POST', {'cost': 1})
|
|
575
|
+
eapiprivate_post_batchorders = eapiPrivatePostBatchOrders = Entry('batchOrders', 'eapiPrivate', 'POST', {'cost': 5})
|
|
576
|
+
eapiprivate_post_listenkey = eapiPrivatePostListenKey = Entry('listenKey', 'eapiPrivate', 'POST', {'cost': 1})
|
|
577
|
+
eapiprivate_post_mmpset = eapiPrivatePostMmpSet = Entry('mmpSet', 'eapiPrivate', 'POST', {'cost': 1})
|
|
578
|
+
eapiprivate_post_mmpreset = eapiPrivatePostMmpReset = Entry('mmpReset', 'eapiPrivate', 'POST', {'cost': 1})
|
|
579
|
+
eapiprivate_post_countdowncancelall = eapiPrivatePostCountdownCancelAll = Entry('countdownCancelAll', 'eapiPrivate', 'POST', {'cost': 1})
|
|
580
|
+
eapiprivate_post_countdowncancelallheartbeat = eapiPrivatePostCountdownCancelAllHeartBeat = Entry('countdownCancelAllHeartBeat', 'eapiPrivate', 'POST', {'cost': 10})
|
|
581
|
+
eapiprivate_put_listenkey = eapiPrivatePutListenKey = Entry('listenKey', 'eapiPrivate', 'PUT', {'cost': 1})
|
|
582
|
+
eapiprivate_delete_order = eapiPrivateDeleteOrder = Entry('order', 'eapiPrivate', 'DELETE', {'cost': 1})
|
|
583
|
+
eapiprivate_delete_batchorders = eapiPrivateDeleteBatchOrders = Entry('batchOrders', 'eapiPrivate', 'DELETE', {'cost': 1})
|
|
584
|
+
eapiprivate_delete_allopenorders = eapiPrivateDeleteAllOpenOrders = Entry('allOpenOrders', 'eapiPrivate', 'DELETE', {'cost': 1})
|
|
585
|
+
eapiprivate_delete_allopenordersbyunderlying = eapiPrivateDeleteAllOpenOrdersByUnderlying = Entry('allOpenOrdersByUnderlying', 'eapiPrivate', 'DELETE', {'cost': 1})
|
|
586
|
+
eapiprivate_delete_listenkey = eapiPrivateDeleteListenKey = Entry('listenKey', 'eapiPrivate', 'DELETE', {'cost': 1})
|
|
587
|
+
public_get_ping = publicGetPing = Entry('ping', 'public', 'GET', {'cost': 0.2})
|
|
588
|
+
public_get_time = publicGetTime = Entry('time', 'public', 'GET', {'cost': 0.2})
|
|
589
|
+
public_get_depth = publicGetDepth = Entry('depth', 'public', 'GET', {'cost': 1, 'byLimit': [[100, 1], [500, 5], [1000, 10], [5000, 50]]})
|
|
590
|
+
public_get_trades = publicGetTrades = Entry('trades', 'public', 'GET', {'cost': 2})
|
|
591
|
+
public_get_aggtrades = publicGetAggTrades = Entry('aggTrades', 'public', 'GET', {'cost': 0.4})
|
|
592
|
+
public_get_historicaltrades = publicGetHistoricalTrades = Entry('historicalTrades', 'public', 'GET', {'cost': 2})
|
|
593
|
+
public_get_klines = publicGetKlines = Entry('klines', 'public', 'GET', {'cost': 0.4})
|
|
594
|
+
public_get_uiklines = publicGetUiKlines = Entry('uiKlines', 'public', 'GET', {'cost': 0.4})
|
|
595
|
+
public_get_ticker_24hr = publicGetTicker24hr = Entry('ticker/24hr', 'public', 'GET', {'cost': 0.4, 'noSymbol': 16})
|
|
596
|
+
public_get_ticker = publicGetTicker = Entry('ticker', 'public', 'GET', {'cost': 0.4, 'noSymbol': 16})
|
|
597
|
+
public_get_ticker_tradingday = publicGetTickerTradingDay = Entry('ticker/tradingDay', 'public', 'GET', {'cost': 0.8})
|
|
598
|
+
public_get_ticker_price = publicGetTickerPrice = Entry('ticker/price', 'public', 'GET', {'cost': 0.4, 'noSymbol': 0.8})
|
|
599
|
+
public_get_ticker_bookticker = publicGetTickerBookTicker = Entry('ticker/bookTicker', 'public', 'GET', {'cost': 0.4, 'noSymbol': 0.8})
|
|
600
|
+
public_get_exchangeinfo = publicGetExchangeInfo = Entry('exchangeInfo', 'public', 'GET', {'cost': 4})
|
|
601
|
+
public_get_avgprice = publicGetAvgPrice = Entry('avgPrice', 'public', 'GET', {'cost': 0.4})
|
|
602
|
+
public_put_userdatastream = publicPutUserDataStream = Entry('userDataStream', 'public', 'PUT', {'cost': 0.4})
|
|
603
|
+
public_post_userdatastream = publicPostUserDataStream = Entry('userDataStream', 'public', 'POST', {'cost': 0.4})
|
|
604
|
+
public_delete_userdatastream = publicDeleteUserDataStream = Entry('userDataStream', 'public', 'DELETE', {'cost': 0.4})
|
|
605
|
+
private_get_allorderlist = privateGetAllOrderList = Entry('allOrderList', 'private', 'GET', {'cost': 4})
|
|
606
|
+
private_get_openorderlist = privateGetOpenOrderList = Entry('openOrderList', 'private', 'GET', {'cost': 1.2})
|
|
607
|
+
private_get_orderlist = privateGetOrderList = Entry('orderList', 'private', 'GET', {'cost': 0.8})
|
|
608
|
+
private_get_order = privateGetOrder = Entry('order', 'private', 'GET', {'cost': 0.8})
|
|
609
|
+
private_get_openorders = privateGetOpenOrders = Entry('openOrders', 'private', 'GET', {'cost': 1.2, 'noSymbol': 16})
|
|
610
|
+
private_get_allorders = privateGetAllOrders = Entry('allOrders', 'private', 'GET', {'cost': 4})
|
|
611
|
+
private_get_account = privateGetAccount = Entry('account', 'private', 'GET', {'cost': 4})
|
|
612
|
+
private_get_mytrades = privateGetMyTrades = Entry('myTrades', 'private', 'GET', {'cost': 4})
|
|
613
|
+
private_get_ratelimit_order = privateGetRateLimitOrder = Entry('rateLimit/order', 'private', 'GET', {'cost': 8})
|
|
614
|
+
private_get_mypreventedmatches = privateGetMyPreventedMatches = Entry('myPreventedMatches', 'private', 'GET', {'cost': 4})
|
|
615
|
+
private_get_myallocations = privateGetMyAllocations = Entry('myAllocations', 'private', 'GET', {'cost': 4})
|
|
616
|
+
private_get_account_commission = privateGetAccountCommission = Entry('account/commission', 'private', 'GET', {'cost': 4})
|
|
617
|
+
private_post_order_oco = privatePostOrderOco = Entry('order/oco', 'private', 'POST', {'cost': 0.2})
|
|
618
|
+
private_post_orderlist_oco = privatePostOrderListOco = Entry('orderList/oco', 'private', 'POST', {'cost': 0.2})
|
|
619
|
+
private_post_orderlist_oto = privatePostOrderListOto = Entry('orderList/oto', 'private', 'POST', {'cost': 0.2})
|
|
620
|
+
private_post_orderlist_otoco = privatePostOrderListOtoco = Entry('orderList/otoco', 'private', 'POST', {'cost': 0.2})
|
|
621
|
+
private_post_sor_order = privatePostSorOrder = Entry('sor/order', 'private', 'POST', {'cost': 0.2})
|
|
622
|
+
private_post_sor_order_test = privatePostSorOrderTest = Entry('sor/order/test', 'private', 'POST', {'cost': 0.2})
|
|
623
|
+
private_post_order = privatePostOrder = Entry('order', 'private', 'POST', {'cost': 0.2})
|
|
624
|
+
private_post_order_cancelreplace = privatePostOrderCancelReplace = Entry('order/cancelReplace', 'private', 'POST', {'cost': 0.2})
|
|
625
|
+
private_post_order_test = privatePostOrderTest = Entry('order/test', 'private', 'POST', {'cost': 0.2})
|
|
626
|
+
private_delete_openorders = privateDeleteOpenOrders = Entry('openOrders', 'private', 'DELETE', {'cost': 0.2})
|
|
627
|
+
private_delete_orderlist = privateDeleteOrderList = Entry('orderList', 'private', 'DELETE', {'cost': 0.2})
|
|
628
|
+
private_delete_order = privateDeleteOrder = Entry('order', 'private', 'DELETE', {'cost': 0.2})
|
|
629
|
+
papi_get_ping = papiGetPing = Entry('ping', 'papi', 'GET', {'cost': 1})
|
|
630
|
+
papi_get_um_order = papiGetUmOrder = Entry('um/order', 'papi', 'GET', {'cost': 1})
|
|
631
|
+
papi_get_um_openorder = papiGetUmOpenOrder = Entry('um/openOrder', 'papi', 'GET', {'cost': 1})
|
|
632
|
+
papi_get_um_openorders = papiGetUmOpenOrders = Entry('um/openOrders', 'papi', 'GET', {'cost': 1})
|
|
633
|
+
papi_get_um_allorders = papiGetUmAllOrders = Entry('um/allOrders', 'papi', 'GET', {'cost': 5})
|
|
634
|
+
papi_get_cm_order = papiGetCmOrder = Entry('cm/order', 'papi', 'GET', {'cost': 1})
|
|
635
|
+
papi_get_cm_openorder = papiGetCmOpenOrder = Entry('cm/openOrder', 'papi', 'GET', {'cost': 1})
|
|
636
|
+
papi_get_cm_openorders = papiGetCmOpenOrders = Entry('cm/openOrders', 'papi', 'GET', {'cost': 1})
|
|
637
|
+
papi_get_cm_allorders = papiGetCmAllOrders = Entry('cm/allOrders', 'papi', 'GET', {'cost': 20})
|
|
638
|
+
papi_get_um_conditional_openorder = papiGetUmConditionalOpenOrder = Entry('um/conditional/openOrder', 'papi', 'GET', {'cost': 1})
|
|
639
|
+
papi_get_um_conditional_openorders = papiGetUmConditionalOpenOrders = Entry('um/conditional/openOrders', 'papi', 'GET', {'cost': 40})
|
|
640
|
+
papi_get_um_conditional_orderhistory = papiGetUmConditionalOrderHistory = Entry('um/conditional/orderHistory', 'papi', 'GET', {'cost': 1})
|
|
641
|
+
papi_get_um_conditional_allorders = papiGetUmConditionalAllOrders = Entry('um/conditional/allOrders', 'papi', 'GET', {'cost': 40})
|
|
642
|
+
papi_get_cm_conditional_openorder = papiGetCmConditionalOpenOrder = Entry('cm/conditional/openOrder', 'papi', 'GET', {'cost': 1})
|
|
643
|
+
papi_get_cm_conditional_openorders = papiGetCmConditionalOpenOrders = Entry('cm/conditional/openOrders', 'papi', 'GET', {'cost': 40})
|
|
644
|
+
papi_get_cm_conditional_orderhistory = papiGetCmConditionalOrderHistory = Entry('cm/conditional/orderHistory', 'papi', 'GET', {'cost': 1})
|
|
645
|
+
papi_get_cm_conditional_allorders = papiGetCmConditionalAllOrders = Entry('cm/conditional/allOrders', 'papi', 'GET', {'cost': 40})
|
|
646
|
+
papi_get_margin_order = papiGetMarginOrder = Entry('margin/order', 'papi', 'GET', {'cost': 5})
|
|
647
|
+
papi_get_margin_openorders = papiGetMarginOpenOrders = Entry('margin/openOrders', 'papi', 'GET', {'cost': 5})
|
|
648
|
+
papi_get_margin_allorders = papiGetMarginAllOrders = Entry('margin/allOrders', 'papi', 'GET', {'cost': 100})
|
|
649
|
+
papi_get_margin_orderlist = papiGetMarginOrderList = Entry('margin/orderList', 'papi', 'GET', {'cost': 5})
|
|
650
|
+
papi_get_margin_allorderlist = papiGetMarginAllOrderList = Entry('margin/allOrderList', 'papi', 'GET', {'cost': 100})
|
|
651
|
+
papi_get_margin_openorderlist = papiGetMarginOpenOrderList = Entry('margin/openOrderList', 'papi', 'GET', {'cost': 5})
|
|
652
|
+
papi_get_margin_mytrades = papiGetMarginMyTrades = Entry('margin/myTrades', 'papi', 'GET', {'cost': 5})
|
|
653
|
+
papi_get_balance = papiGetBalance = Entry('balance', 'papi', 'GET', {'cost': 20})
|
|
654
|
+
papi_get_account = papiGetAccount = Entry('account', 'papi', 'GET', {'cost': 20})
|
|
655
|
+
papi_get_margin_maxborrowable = papiGetMarginMaxBorrowable = Entry('margin/maxBorrowable', 'papi', 'GET', {'cost': 5})
|
|
656
|
+
papi_get_margin_maxwithdraw = papiGetMarginMaxWithdraw = Entry('margin/maxWithdraw', 'papi', 'GET', {'cost': 5})
|
|
657
|
+
papi_get_um_positionrisk = papiGetUmPositionRisk = Entry('um/positionRisk', 'papi', 'GET', {'cost': 5})
|
|
658
|
+
papi_get_cm_positionrisk = papiGetCmPositionRisk = Entry('cm/positionRisk', 'papi', 'GET', {'cost': 1})
|
|
659
|
+
papi_get_um_positionside_dual = papiGetUmPositionSideDual = Entry('um/positionSide/dual', 'papi', 'GET', {'cost': 30})
|
|
660
|
+
papi_get_cm_positionside_dual = papiGetCmPositionSideDual = Entry('cm/positionSide/dual', 'papi', 'GET', {'cost': 30})
|
|
661
|
+
papi_get_um_usertrades = papiGetUmUserTrades = Entry('um/userTrades', 'papi', 'GET', {'cost': 5})
|
|
662
|
+
papi_get_cm_usertrades = papiGetCmUserTrades = Entry('cm/userTrades', 'papi', 'GET', {'cost': 20})
|
|
663
|
+
papi_get_um_leveragebracket = papiGetUmLeverageBracket = Entry('um/leverageBracket', 'papi', 'GET', {'cost': 1})
|
|
664
|
+
papi_get_cm_leveragebracket = papiGetCmLeverageBracket = Entry('cm/leverageBracket', 'papi', 'GET', {'cost': 1})
|
|
665
|
+
papi_get_margin_forceorders = papiGetMarginForceOrders = Entry('margin/forceOrders', 'papi', 'GET', {'cost': 1})
|
|
666
|
+
papi_get_um_forceorders = papiGetUmForceOrders = Entry('um/forceOrders', 'papi', 'GET', {'cost': 20})
|
|
667
|
+
papi_get_cm_forceorders = papiGetCmForceOrders = Entry('cm/forceOrders', 'papi', 'GET', {'cost': 20})
|
|
668
|
+
papi_get_um_apitradingstatus = papiGetUmApiTradingStatus = Entry('um/apiTradingStatus', 'papi', 'GET', {'cost': 1})
|
|
669
|
+
papi_get_um_commissionrate = papiGetUmCommissionRate = Entry('um/commissionRate', 'papi', 'GET', {'cost': 20})
|
|
670
|
+
papi_get_cm_commissionrate = papiGetCmCommissionRate = Entry('cm/commissionRate', 'papi', 'GET', {'cost': 20})
|
|
671
|
+
papi_get_margin_marginloan = papiGetMarginMarginLoan = Entry('margin/marginLoan', 'papi', 'GET', {'cost': 10})
|
|
672
|
+
papi_get_margin_repayloan = papiGetMarginRepayLoan = Entry('margin/repayLoan', 'papi', 'GET', {'cost': 10})
|
|
673
|
+
papi_get_margin_margininteresthistory = papiGetMarginMarginInterestHistory = Entry('margin/marginInterestHistory', 'papi', 'GET', {'cost': 1})
|
|
674
|
+
papi_get_portfolio_interest_history = papiGetPortfolioInterestHistory = Entry('portfolio/interest-history', 'papi', 'GET', {'cost': 50})
|
|
675
|
+
papi_get_um_income = papiGetUmIncome = Entry('um/income', 'papi', 'GET', {'cost': 30})
|
|
676
|
+
papi_get_cm_income = papiGetCmIncome = Entry('cm/income', 'papi', 'GET', {'cost': 30})
|
|
677
|
+
papi_get_um_account = papiGetUmAccount = Entry('um/account', 'papi', 'GET', {'cost': 5})
|
|
678
|
+
papi_get_cm_account = papiGetCmAccount = Entry('cm/account', 'papi', 'GET', {'cost': 5})
|
|
679
|
+
papi_get_repay_futures_switch = papiGetRepayFuturesSwitch = Entry('repay-futures-switch', 'papi', 'GET', {'cost': 3})
|
|
680
|
+
papi_get_um_adlquantile = papiGetUmAdlQuantile = Entry('um/adlQuantile', 'papi', 'GET', {'cost': 5})
|
|
681
|
+
papi_get_cm_adlquantile = papiGetCmAdlQuantile = Entry('cm/adlQuantile', 'papi', 'GET', {'cost': 5})
|
|
682
|
+
papi_post_um_order = papiPostUmOrder = Entry('um/order', 'papi', 'POST', {'cost': 1})
|
|
683
|
+
papi_post_um_conditional_order = papiPostUmConditionalOrder = Entry('um/conditional/order', 'papi', 'POST', {'cost': 1})
|
|
684
|
+
papi_post_cm_order = papiPostCmOrder = Entry('cm/order', 'papi', 'POST', {'cost': 1})
|
|
685
|
+
papi_post_cm_conditional_order = papiPostCmConditionalOrder = Entry('cm/conditional/order', 'papi', 'POST', {'cost': 1})
|
|
686
|
+
papi_post_margin_order = papiPostMarginOrder = Entry('margin/order', 'papi', 'POST', {'cost': 0.0133})
|
|
687
|
+
papi_post_marginloan = papiPostMarginLoan = Entry('marginLoan', 'papi', 'POST', {'cost': 0.1333})
|
|
688
|
+
papi_post_repayloan = papiPostRepayLoan = Entry('repayLoan', 'papi', 'POST', {'cost': 0.1333})
|
|
689
|
+
papi_post_margin_order_oco = papiPostMarginOrderOco = Entry('margin/order/oco', 'papi', 'POST', {'cost': 0.04})
|
|
690
|
+
papi_post_um_leverage = papiPostUmLeverage = Entry('um/leverage', 'papi', 'POST', {'cost': 1})
|
|
691
|
+
papi_post_cm_leverage = papiPostCmLeverage = Entry('cm/leverage', 'papi', 'POST', {'cost': 1})
|
|
692
|
+
papi_post_um_positionside_dual = papiPostUmPositionSideDual = Entry('um/positionSide/dual', 'papi', 'POST', {'cost': 1})
|
|
693
|
+
papi_post_cm_positionside_dual = papiPostCmPositionSideDual = Entry('cm/positionSide/dual', 'papi', 'POST', {'cost': 1})
|
|
694
|
+
papi_post_auto_collection = papiPostAutoCollection = Entry('auto-collection', 'papi', 'POST', {'cost': 0.6667})
|
|
695
|
+
papi_post_bnb_transfer = papiPostBnbTransfer = Entry('bnb-transfer', 'papi', 'POST', {'cost': 0.6667})
|
|
696
|
+
papi_post_repay_futures_switch = papiPostRepayFuturesSwitch = Entry('repay-futures-switch', 'papi', 'POST', {'cost': 150})
|
|
697
|
+
papi_post_repay_futures_negative_balance = papiPostRepayFuturesNegativeBalance = Entry('repay-futures-negative-balance', 'papi', 'POST', {'cost': 150})
|
|
698
|
+
papi_post_listenkey = papiPostListenKey = Entry('listenKey', 'papi', 'POST', {'cost': 1})
|
|
699
|
+
papi_post_asset_collection = papiPostAssetCollection = Entry('asset-collection', 'papi', 'POST', {'cost': 3})
|
|
700
|
+
papi_put_listenkey = papiPutListenKey = Entry('listenKey', 'papi', 'PUT', {'cost': 1})
|
|
701
|
+
papi_delete_um_order = papiDeleteUmOrder = Entry('um/order', 'papi', 'DELETE', {'cost': 1})
|
|
702
|
+
papi_delete_um_conditional_order = papiDeleteUmConditionalOrder = Entry('um/conditional/order', 'papi', 'DELETE', {'cost': 1})
|
|
703
|
+
papi_delete_um_allopenorders = papiDeleteUmAllOpenOrders = Entry('um/allOpenOrders', 'papi', 'DELETE', {'cost': 1})
|
|
704
|
+
papi_delete_um_conditional_allopenorders = papiDeleteUmConditionalAllOpenOrders = Entry('um/conditional/allOpenOrders', 'papi', 'DELETE', {'cost': 1})
|
|
705
|
+
papi_delete_cm_order = papiDeleteCmOrder = Entry('cm/order', 'papi', 'DELETE', {'cost': 1})
|
|
706
|
+
papi_delete_cm_conditional_order = papiDeleteCmConditionalOrder = Entry('cm/conditional/order', 'papi', 'DELETE', {'cost': 1})
|
|
707
|
+
papi_delete_cm_allopenorders = papiDeleteCmAllOpenOrders = Entry('cm/allOpenOrders', 'papi', 'DELETE', {'cost': 1})
|
|
708
|
+
papi_delete_cm_conditional_allopenorders = papiDeleteCmConditionalAllOpenOrders = Entry('cm/conditional/allOpenOrders', 'papi', 'DELETE', {'cost': 1})
|
|
709
|
+
papi_delete_margin_order = papiDeleteMarginOrder = Entry('margin/order', 'papi', 'DELETE', {'cost': 1})
|
|
710
|
+
papi_delete_margin_allopenorders = papiDeleteMarginAllOpenOrders = Entry('margin/allOpenOrders', 'papi', 'DELETE', {'cost': 5})
|
|
711
|
+
papi_delete_margin_orderlist = papiDeleteMarginOrderList = Entry('margin/orderList', 'papi', 'DELETE', {'cost': 2})
|
|
712
|
+
papi_delete_listenkey = papiDeleteListenKey = Entry('listenKey', 'papi', 'DELETE', {'cost': 1})
|