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/latoken.py
ADDED
|
@@ -0,0 +1,1664 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+
# PLEASE DO NOT EDIT THIS FILE, IT IS GENERATED AND WILL BE OVERWRITTEN:
|
|
4
|
+
# https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-contribute-code
|
|
5
|
+
|
|
6
|
+
from ccxt.base.exchange import Exchange
|
|
7
|
+
from ccxt.abstract.latoken import ImplicitAPI
|
|
8
|
+
import hashlib
|
|
9
|
+
from ccxt.base.types import Balances, Currencies, Currency, Int, Market, Num, Order, OrderBook, OrderSide, OrderType, Str, Strings, Ticker, Tickers, Trade, TradingFeeInterface, Transaction, TransferEntry, TransferEntries
|
|
10
|
+
from typing import List
|
|
11
|
+
from ccxt.base.errors import ExchangeError
|
|
12
|
+
from ccxt.base.errors import AuthenticationError
|
|
13
|
+
from ccxt.base.errors import PermissionDenied
|
|
14
|
+
from ccxt.base.errors import AccountSuspended
|
|
15
|
+
from ccxt.base.errors import ArgumentsRequired
|
|
16
|
+
from ccxt.base.errors import BadRequest
|
|
17
|
+
from ccxt.base.errors import BadSymbol
|
|
18
|
+
from ccxt.base.errors import InsufficientFunds
|
|
19
|
+
from ccxt.base.errors import InvalidOrder
|
|
20
|
+
from ccxt.base.errors import NotSupported
|
|
21
|
+
from ccxt.base.errors import RateLimitExceeded
|
|
22
|
+
from ccxt.base.errors import ExchangeNotAvailable
|
|
23
|
+
from ccxt.base.errors import InvalidNonce
|
|
24
|
+
from ccxt.base.decimal_to_precision import TICK_SIZE
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
class latoken(Exchange, ImplicitAPI):
|
|
28
|
+
|
|
29
|
+
def describe(self):
|
|
30
|
+
return self.deep_extend(super(latoken, self).describe(), {
|
|
31
|
+
'id': 'latoken',
|
|
32
|
+
'name': 'Latoken',
|
|
33
|
+
'countries': ['KY'], # Cayman Islands
|
|
34
|
+
'version': 'v2',
|
|
35
|
+
'rateLimit': 1000,
|
|
36
|
+
'has': {
|
|
37
|
+
'CORS': None,
|
|
38
|
+
'spot': True,
|
|
39
|
+
'margin': False,
|
|
40
|
+
'swap': False,
|
|
41
|
+
'future': False,
|
|
42
|
+
'option': False,
|
|
43
|
+
'cancelAllOrders': True,
|
|
44
|
+
'cancelOrder': True,
|
|
45
|
+
'closeAllPositions': False,
|
|
46
|
+
'closePosition': False,
|
|
47
|
+
'createOrder': True,
|
|
48
|
+
'createPostOnlyOrder': False,
|
|
49
|
+
'createStopLimitOrder': True,
|
|
50
|
+
'createStopMarketOrder': False,
|
|
51
|
+
'createStopOrder': True,
|
|
52
|
+
'fetchBalance': True,
|
|
53
|
+
'fetchBorrowRateHistories': False,
|
|
54
|
+
'fetchBorrowRateHistory': False,
|
|
55
|
+
'fetchCrossBorrowRate': False,
|
|
56
|
+
'fetchCrossBorrowRates': False,
|
|
57
|
+
'fetchCurrencies': True,
|
|
58
|
+
'fetchDepositAddress': False,
|
|
59
|
+
'fetchDepositAddresses': False,
|
|
60
|
+
'fetchDepositAddressesByNetwork': False,
|
|
61
|
+
'fetchDepositsWithdrawals': True,
|
|
62
|
+
'fetchDepositWithdrawFees': False,
|
|
63
|
+
'fetchIsolatedBorrowRate': False,
|
|
64
|
+
'fetchIsolatedBorrowRates': False,
|
|
65
|
+
'fetchMarginMode': False,
|
|
66
|
+
'fetchMarkets': True,
|
|
67
|
+
'fetchMyTrades': True,
|
|
68
|
+
'fetchOpenOrders': True,
|
|
69
|
+
'fetchOrder': True,
|
|
70
|
+
'fetchOrderBook': True,
|
|
71
|
+
'fetchOrders': True,
|
|
72
|
+
'fetchPosition': False,
|
|
73
|
+
'fetchPositionHistory': False,
|
|
74
|
+
'fetchPositionMode': False,
|
|
75
|
+
'fetchPositions': False,
|
|
76
|
+
'fetchPositionsForSymbol': False,
|
|
77
|
+
'fetchPositionsHistory': False,
|
|
78
|
+
'fetchPositionsRisk': False,
|
|
79
|
+
'fetchTicker': True,
|
|
80
|
+
'fetchTickers': True,
|
|
81
|
+
'fetchTime': True,
|
|
82
|
+
'fetchTrades': True,
|
|
83
|
+
'fetchTradingFee': True,
|
|
84
|
+
'fetchTradingFees': False,
|
|
85
|
+
'fetchTransactions': 'emulated',
|
|
86
|
+
'fetchTransfer': False,
|
|
87
|
+
'fetchTransfers': True,
|
|
88
|
+
'transfer': True,
|
|
89
|
+
},
|
|
90
|
+
'urls': {
|
|
91
|
+
'logo': 'https://user-images.githubusercontent.com/1294454/61511972-24c39f00-aa01-11e9-9f7c-471f1d6e5214.jpg',
|
|
92
|
+
'api': {
|
|
93
|
+
'rest': 'https://api.latoken.com',
|
|
94
|
+
},
|
|
95
|
+
'www': 'https://latoken.com',
|
|
96
|
+
'doc': [
|
|
97
|
+
'https://api.latoken.com',
|
|
98
|
+
],
|
|
99
|
+
'fees': 'https://latoken.com/fees',
|
|
100
|
+
'referral': 'https://latoken.com/invite?r=mvgp2djk',
|
|
101
|
+
},
|
|
102
|
+
'api': {
|
|
103
|
+
'public': {
|
|
104
|
+
'get': {
|
|
105
|
+
'book/{currency}/{quote}': 1,
|
|
106
|
+
'chart/week': 1,
|
|
107
|
+
'chart/week/{currency}/{quote}': 1,
|
|
108
|
+
'currency': 1,
|
|
109
|
+
'currency/available': 1,
|
|
110
|
+
'currency/quotes': 1,
|
|
111
|
+
'currency/{currency}': 1,
|
|
112
|
+
'pair': 1,
|
|
113
|
+
'pair/available': 1,
|
|
114
|
+
'ticker': 1,
|
|
115
|
+
'ticker/{base}/{quote}': 1,
|
|
116
|
+
'time': 1,
|
|
117
|
+
'trade/history/{currency}/{quote}': 1,
|
|
118
|
+
'trade/fee/{currency}/{quote}': 1,
|
|
119
|
+
'trade/feeLevels': 1,
|
|
120
|
+
'transaction/bindings': 1,
|
|
121
|
+
},
|
|
122
|
+
},
|
|
123
|
+
'private': {
|
|
124
|
+
'get': {
|
|
125
|
+
'auth/account': 1,
|
|
126
|
+
'auth/account/currency/{currency}/{type}': 1,
|
|
127
|
+
'auth/order': 1,
|
|
128
|
+
'auth/order/getOrder/{id}': 1,
|
|
129
|
+
'auth/order/pair/{currency}/{quote}': 1,
|
|
130
|
+
'auth/order/pair/{currency}/{quote}/active': 1,
|
|
131
|
+
'auth/stopOrder': 1,
|
|
132
|
+
'auth/stopOrder/getOrder/{id}': 1,
|
|
133
|
+
'auth/stopOrder/pair/{currency}/{quote}': 1,
|
|
134
|
+
'auth/stopOrder/pair/{currency}/{quote}/active': 1,
|
|
135
|
+
'auth/trade': 1,
|
|
136
|
+
'auth/trade/pair/{currency}/{quote}': 1,
|
|
137
|
+
'auth/trade/fee/{currency}/{quote}': 1,
|
|
138
|
+
'auth/transaction': 1,
|
|
139
|
+
'auth/transaction/bindings': 1,
|
|
140
|
+
'auth/transaction/bindings/{currency}': 1,
|
|
141
|
+
'auth/transaction/{id}': 1,
|
|
142
|
+
'auth/transfer': 1,
|
|
143
|
+
},
|
|
144
|
+
'post': {
|
|
145
|
+
'auth/order/cancel': 1,
|
|
146
|
+
'auth/order/cancelAll': 1,
|
|
147
|
+
'auth/order/cancelAll/{currency}/{quote}': 1,
|
|
148
|
+
'auth/order/place': 1,
|
|
149
|
+
'auth/spot/deposit': 1,
|
|
150
|
+
'auth/spot/withdraw': 1,
|
|
151
|
+
'auth/stopOrder/cancel': 1,
|
|
152
|
+
'auth/stopOrder/cancelAll': 1,
|
|
153
|
+
'auth/stopOrder/cancelAll/{currency}/{quote}': 1,
|
|
154
|
+
'auth/stopOrder/place': 1,
|
|
155
|
+
'auth/transaction/depositAddress': 1,
|
|
156
|
+
'auth/transaction/withdraw': 1,
|
|
157
|
+
'auth/transaction/withdraw/cancel': 1,
|
|
158
|
+
'auth/transaction/withdraw/confirm': 1,
|
|
159
|
+
'auth/transaction/withdraw/resendCode': 1,
|
|
160
|
+
'auth/transfer/email': 1,
|
|
161
|
+
'auth/transfer/id': 1,
|
|
162
|
+
'auth/transfer/phone': 1,
|
|
163
|
+
},
|
|
164
|
+
},
|
|
165
|
+
},
|
|
166
|
+
'precisionMode': TICK_SIZE,
|
|
167
|
+
'fees': {
|
|
168
|
+
'trading': {
|
|
169
|
+
'feeSide': 'get',
|
|
170
|
+
'tierBased': False,
|
|
171
|
+
'percentage': True,
|
|
172
|
+
'maker': self.parse_number('0.0049'),
|
|
173
|
+
'taker': self.parse_number('0.0049'),
|
|
174
|
+
},
|
|
175
|
+
},
|
|
176
|
+
'commonCurrencies': {
|
|
177
|
+
'BUX': 'Buxcoin',
|
|
178
|
+
'CBT': 'Community Business Token',
|
|
179
|
+
'CTC': 'CyberTronchain',
|
|
180
|
+
'DMD': 'Diamond Coin',
|
|
181
|
+
'FREN': 'Frenchie',
|
|
182
|
+
'GDX': 'GoldenX',
|
|
183
|
+
'GEC': 'Geco One',
|
|
184
|
+
'GEM': 'NFTmall',
|
|
185
|
+
'GMT': 'GMT Token',
|
|
186
|
+
'IMC': 'IMCoin',
|
|
187
|
+
'MT': 'Monarch',
|
|
188
|
+
'TPAY': 'Tetra Pay',
|
|
189
|
+
'TRADE': 'Smart Trade Coin',
|
|
190
|
+
'TSL': 'Treasure SL',
|
|
191
|
+
'UNO': 'Unobtanium',
|
|
192
|
+
'WAR': 'Warrior Token',
|
|
193
|
+
},
|
|
194
|
+
'exceptions': {
|
|
195
|
+
'exact': {
|
|
196
|
+
'INTERNAL_ERROR': ExchangeError, # internal server error. You can contact our support to solve self problem. {"message":"Internal Server Error","error":"INTERNAL_ERROR","status":"FAILURE"}
|
|
197
|
+
'SERVICE_UNAVAILABLE': ExchangeNotAvailable, # requested information currently not available. You can contact our support to solve self problem or retry later.
|
|
198
|
+
'NOT_AUTHORIZED': AuthenticationError, # user's query not authorized. Check if you are logged in.
|
|
199
|
+
'FORBIDDEN': PermissionDenied, # you don't have enough access rights.
|
|
200
|
+
'BAD_REQUEST': BadRequest, # some bad request, for example bad fields values or something else. Read response message for more information.
|
|
201
|
+
'NOT_FOUND': ExchangeError, # entity not found. Read message for more information.
|
|
202
|
+
'ACCESS_DENIED': PermissionDenied, # access is denied. Probably you don't have enough access rights, you contact our support.
|
|
203
|
+
'REQUEST_REJECTED': ExchangeError, # user's request rejected for some reasons. Check error message.
|
|
204
|
+
'HTTP_MEDIA_TYPE_NOT_SUPPORTED': BadRequest, # http media type not supported.
|
|
205
|
+
'MEDIA_TYPE_NOT_ACCEPTABLE': BadRequest, # media type not acceptable
|
|
206
|
+
'METHOD_ARGUMENT_NOT_VALID': BadRequest, # one of method argument is invalid. Check argument types and error message for more information.
|
|
207
|
+
'VALIDATION_ERROR': BadRequest, # check errors field to get reasons.
|
|
208
|
+
'ACCOUNT_EXPIRED': AccountSuspended, # restore your account or create a new one.
|
|
209
|
+
'BAD_CREDENTIALS': AuthenticationError, # invalid username or password.
|
|
210
|
+
'COOKIE_THEFT': AuthenticationError, # cookie has been stolen. Let's try reset your cookies.
|
|
211
|
+
'CREDENTIALS_EXPIRED': AccountSuspended, # credentials expired.
|
|
212
|
+
'INSUFFICIENT_AUTHENTICATION': AuthenticationError, # for example, 2FA required.
|
|
213
|
+
'UNKNOWN_LOCATION': AuthenticationError, # user logged from unusual location, email confirmation required.
|
|
214
|
+
'TOO_MANY_REQUESTS': RateLimitExceeded, # too many requests at the time. A response header X-Rate-Limit-Remaining indicates the number of allowed request per a period.
|
|
215
|
+
'INSUFFICIENT_FUNDS': InsufficientFunds, # {"message":"not enough balance on the spot account for currency(USDT), need(20.000)","error":"INSUFFICIENT_FUNDS","status":"FAILURE"}
|
|
216
|
+
'ORDER_VALIDATION': InvalidOrder, # {"message":"Quantity(0) is not positive","error":"ORDER_VALIDATION","status":"FAILURE"}
|
|
217
|
+
'BAD_TICKS': InvalidOrder, # {"status":"FAILURE","message":"Quantity(1.4) does not match quantity tick(10)","error":"BAD_TICKS","errors":null,"result":false}
|
|
218
|
+
},
|
|
219
|
+
'broad': {
|
|
220
|
+
'invalid API key, signature or digest': AuthenticationError, # {"result":false,"message":"invalid API key, signature or digest","error":"BAD_REQUEST","status":"FAILURE"}
|
|
221
|
+
'The API key was revoked': AuthenticationError, # {"result":false,"message":"The API key was revoked","error":"BAD_REQUEST","status":"FAILURE"}
|
|
222
|
+
'request expired or bad': InvalidNonce, # {"result":false,"message":"request expired or bad <timeAlive>/<timestamp> format","error":"BAD_REQUEST","status":"FAILURE"}
|
|
223
|
+
'For input string': BadRequest, # {"result":false,"message":"Internal error","error":"For input string: \"NaN\"","status":"FAILURE"}
|
|
224
|
+
'Unable to resolve currency by tag': BadSymbol, # {"message":"Unable to resolve currency by tag(None)","error":"NOT_FOUND","status":"FAILURE"}
|
|
225
|
+
"Can't find currency with tag": BadSymbol, # {"status":"FAILURE","message":"Can't find currency with tag = None","error":"NOT_FOUND","errors":null,"result":false}
|
|
226
|
+
'Unable to place order because pair is in inactive state': BadSymbol, # {"message":"Unable to place order because pair is in inactive state(PAIR_STATUS_INACTIVE)","error":"ORDER_VALIDATION","status":"FAILURE"}
|
|
227
|
+
'API keys are not available for': AccountSuspended, # {"result":false,"message":"API keys are not available for FROZEN user","error":"BAD_REQUEST","status":"FAILURE"}
|
|
228
|
+
},
|
|
229
|
+
},
|
|
230
|
+
'options': {
|
|
231
|
+
'defaultType': 'spot',
|
|
232
|
+
'types': {
|
|
233
|
+
'wallet': 'ACCOUNT_TYPE_WALLET',
|
|
234
|
+
'funding': 'ACCOUNT_TYPE_WALLET',
|
|
235
|
+
'spot': 'ACCOUNT_TYPE_SPOT',
|
|
236
|
+
},
|
|
237
|
+
'accounts': {
|
|
238
|
+
'ACCOUNT_TYPE_WALLET': 'wallet',
|
|
239
|
+
'ACCOUNT_TYPE_SPOT': 'spot',
|
|
240
|
+
},
|
|
241
|
+
'fetchTradingFee': {
|
|
242
|
+
'method': 'fetchPrivateTradingFee', # or 'fetchPublicTradingFee'
|
|
243
|
+
},
|
|
244
|
+
},
|
|
245
|
+
})
|
|
246
|
+
|
|
247
|
+
def nonce(self):
|
|
248
|
+
return self.milliseconds() - self.options['timeDifference']
|
|
249
|
+
|
|
250
|
+
def fetch_time(self, params={}):
|
|
251
|
+
"""
|
|
252
|
+
fetches the current integer timestamp in milliseconds from the exchange server
|
|
253
|
+
:see: https://api.latoken.com/doc/v2/#tag/Time/operation/currentTime
|
|
254
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
255
|
+
:returns int: the current integer timestamp in milliseconds from the exchange server
|
|
256
|
+
"""
|
|
257
|
+
response = self.publicGetTime(params)
|
|
258
|
+
#
|
|
259
|
+
# {
|
|
260
|
+
# "serverTime": 1570615577321
|
|
261
|
+
# }
|
|
262
|
+
#
|
|
263
|
+
return self.safe_integer(response, 'serverTime')
|
|
264
|
+
|
|
265
|
+
def fetch_markets(self, params={}) -> List[Market]:
|
|
266
|
+
"""
|
|
267
|
+
retrieves data on all markets for latoken
|
|
268
|
+
:see: https://api.latoken.com/doc/v2/#tag/Pair/operation/getActivePairs
|
|
269
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
270
|
+
:returns dict[]: an array of objects representing market data
|
|
271
|
+
"""
|
|
272
|
+
currencies = self.fetch_currencies_from_cache(params)
|
|
273
|
+
#
|
|
274
|
+
# [
|
|
275
|
+
# {
|
|
276
|
+
# "id":"1a075819-9e0b-48fc-8784-4dab1d186d6d",
|
|
277
|
+
# "status":"CURRENCY_STATUS_ACTIVE",
|
|
278
|
+
# "type":"CURRENCY_TYPE_ALTERNATIVE", # CURRENCY_TYPE_CRYPTO, CURRENCY_TYPE_IEO
|
|
279
|
+
# "name":"MyCryptoBank",
|
|
280
|
+
# "tag":"MCB",
|
|
281
|
+
# "description":"",
|
|
282
|
+
# "logo":"",
|
|
283
|
+
# "decimals":18,
|
|
284
|
+
# "created":1572912000000,
|
|
285
|
+
# "tier":1,
|
|
286
|
+
# "assetClass":"ASSET_CLASS_UNKNOWN",
|
|
287
|
+
# "minTransferAmount":0
|
|
288
|
+
# },
|
|
289
|
+
# {
|
|
290
|
+
# "id":"db02758e-2507-46a5-a805-7bc60355b3eb",
|
|
291
|
+
# "status":"CURRENCY_STATUS_ACTIVE",
|
|
292
|
+
# "type":"CURRENCY_TYPE_FUTURES_CONTRACT",
|
|
293
|
+
# "name":"BTC USDT Futures Contract",
|
|
294
|
+
# "tag":"BTCUSDT",
|
|
295
|
+
# "description":"",
|
|
296
|
+
# "logo":"",
|
|
297
|
+
# "decimals":8,
|
|
298
|
+
# "created":1589459984395,
|
|
299
|
+
# "tier":1,
|
|
300
|
+
# "assetClass":"ASSET_CLASS_UNKNOWN",
|
|
301
|
+
# "minTransferAmount":0
|
|
302
|
+
# },
|
|
303
|
+
# ]
|
|
304
|
+
#
|
|
305
|
+
response = self.publicGetPair(params)
|
|
306
|
+
#
|
|
307
|
+
# [
|
|
308
|
+
# {
|
|
309
|
+
# "id":"dba4289b-6b46-4d94-bf55-49eec9a163ad",
|
|
310
|
+
# "status":"PAIR_STATUS_ACTIVE", # CURRENCY_STATUS_INACTIVE
|
|
311
|
+
# "baseCurrency":"fb9b53d6-bbf6-472f-b6ba-73cc0d606c9b",
|
|
312
|
+
# "quoteCurrency":"620f2019-33c0-423b-8a9d-cde4d7f8ef7f",
|
|
313
|
+
# "priceTick":"0.000000100000000000",
|
|
314
|
+
# "priceDecimals":7,
|
|
315
|
+
# "quantityTick":"0.010000000",
|
|
316
|
+
# "quantityDecimals":2,
|
|
317
|
+
# "costDisplayDecimals":7,
|
|
318
|
+
# "created":1572957210501,
|
|
319
|
+
# "minOrderQuantity":"0",
|
|
320
|
+
# "maxOrderCostUsd":"999999999999999999",
|
|
321
|
+
# "minOrderCostUsd":"0",
|
|
322
|
+
# "externalSymbol":""
|
|
323
|
+
# }
|
|
324
|
+
# ]
|
|
325
|
+
#
|
|
326
|
+
if self.safe_value(self.options, 'adjustForTimeDifference', True):
|
|
327
|
+
self.load_time_difference()
|
|
328
|
+
currenciesById = self.index_by(currencies, 'id')
|
|
329
|
+
result = []
|
|
330
|
+
for i in range(0, len(response)):
|
|
331
|
+
market = response[i]
|
|
332
|
+
id = self.safe_string(market, 'id')
|
|
333
|
+
# the exchange shows them inverted
|
|
334
|
+
baseId = self.safe_string(market, 'baseCurrency')
|
|
335
|
+
quoteId = self.safe_string(market, 'quoteCurrency')
|
|
336
|
+
baseCurrency = self.safe_value(currenciesById, baseId)
|
|
337
|
+
quoteCurrency = self.safe_value(currenciesById, quoteId)
|
|
338
|
+
if baseCurrency is not None and quoteCurrency is not None:
|
|
339
|
+
base = self.safe_currency_code(self.safe_string(baseCurrency, 'tag'))
|
|
340
|
+
quote = self.safe_currency_code(self.safe_string(quoteCurrency, 'tag'))
|
|
341
|
+
lowercaseQuote = quote.lower()
|
|
342
|
+
capitalizedQuote = self.capitalize(lowercaseQuote)
|
|
343
|
+
status = self.safe_string(market, 'status')
|
|
344
|
+
result.append({
|
|
345
|
+
'id': id,
|
|
346
|
+
'symbol': base + '/' + quote,
|
|
347
|
+
'base': base,
|
|
348
|
+
'quote': quote,
|
|
349
|
+
'settle': None,
|
|
350
|
+
'baseId': baseId,
|
|
351
|
+
'quoteId': quoteId,
|
|
352
|
+
'settleId': None,
|
|
353
|
+
'type': 'spot',
|
|
354
|
+
'spot': True,
|
|
355
|
+
'margin': False,
|
|
356
|
+
'swap': False,
|
|
357
|
+
'future': False,
|
|
358
|
+
'option': False,
|
|
359
|
+
'active': (status == 'PAIR_STATUS_ACTIVE'), # assuming True
|
|
360
|
+
'contract': False,
|
|
361
|
+
'linear': None,
|
|
362
|
+
'inverse': None,
|
|
363
|
+
'contractSize': None,
|
|
364
|
+
'expiry': None,
|
|
365
|
+
'expiryDatetime': None,
|
|
366
|
+
'strike': None,
|
|
367
|
+
'optionType': None,
|
|
368
|
+
'precision': {
|
|
369
|
+
'amount': self.safe_number(market, 'quantityTick'),
|
|
370
|
+
'price': self.safe_number(market, 'priceTick'),
|
|
371
|
+
},
|
|
372
|
+
'limits': {
|
|
373
|
+
'leverage': {
|
|
374
|
+
'min': None,
|
|
375
|
+
'max': None,
|
|
376
|
+
},
|
|
377
|
+
'amount': {
|
|
378
|
+
'min': self.safe_number(market, 'minOrderQuantity'),
|
|
379
|
+
'max': None,
|
|
380
|
+
},
|
|
381
|
+
'price': {
|
|
382
|
+
'min': None,
|
|
383
|
+
'max': None,
|
|
384
|
+
},
|
|
385
|
+
'cost': {
|
|
386
|
+
'min': self.safe_number(market, 'minOrderCost' + capitalizedQuote),
|
|
387
|
+
'max': self.safe_number(market, 'maxOrderCost' + capitalizedQuote),
|
|
388
|
+
},
|
|
389
|
+
},
|
|
390
|
+
'created': self.safe_integer(market, 'created'),
|
|
391
|
+
'info': market,
|
|
392
|
+
})
|
|
393
|
+
return result
|
|
394
|
+
|
|
395
|
+
def fetch_currencies_from_cache(self, params={}):
|
|
396
|
+
# self method is now redundant
|
|
397
|
+
# currencies are now fetched before markets
|
|
398
|
+
options = self.safe_value(self.options, 'fetchCurrencies', {})
|
|
399
|
+
timestamp = self.safe_integer(options, 'timestamp')
|
|
400
|
+
expires = self.safe_integer(options, 'expires', 1000)
|
|
401
|
+
now = self.milliseconds()
|
|
402
|
+
if (timestamp is None) or ((now - timestamp) > expires):
|
|
403
|
+
response = self.publicGetCurrency(params)
|
|
404
|
+
self.options['fetchCurrencies'] = self.extend(options, {
|
|
405
|
+
'response': response,
|
|
406
|
+
'timestamp': now,
|
|
407
|
+
})
|
|
408
|
+
return self.safe_value(self.options['fetchCurrencies'], 'response')
|
|
409
|
+
|
|
410
|
+
def fetch_currencies(self, params={}) -> Currencies:
|
|
411
|
+
"""
|
|
412
|
+
fetches all available currencies on an exchange
|
|
413
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
414
|
+
:returns dict: an associative dictionary of currencies
|
|
415
|
+
"""
|
|
416
|
+
response = self.fetch_currencies_from_cache(params)
|
|
417
|
+
#
|
|
418
|
+
# [
|
|
419
|
+
# {
|
|
420
|
+
# "id":"1a075819-9e0b-48fc-8784-4dab1d186d6d",
|
|
421
|
+
# "status":"CURRENCY_STATUS_ACTIVE",
|
|
422
|
+
# "type":"CURRENCY_TYPE_ALTERNATIVE", # CURRENCY_TYPE_CRYPTO, CURRENCY_TYPE_IEO
|
|
423
|
+
# "name":"MyCryptoBank",
|
|
424
|
+
# "tag":"MCB",
|
|
425
|
+
# "description":"",
|
|
426
|
+
# "logo":"",
|
|
427
|
+
# "decimals":18,
|
|
428
|
+
# "created":1572912000000,
|
|
429
|
+
# "tier":1,
|
|
430
|
+
# "assetClass":"ASSET_CLASS_UNKNOWN",
|
|
431
|
+
# "minTransferAmount":0
|
|
432
|
+
# },
|
|
433
|
+
# {
|
|
434
|
+
# "id":"db02758e-2507-46a5-a805-7bc60355b3eb",
|
|
435
|
+
# "status":"CURRENCY_STATUS_ACTIVE",
|
|
436
|
+
# "type":"CURRENCY_TYPE_FUTURES_CONTRACT",
|
|
437
|
+
# "name":"BTC USDT Futures Contract",
|
|
438
|
+
# "tag":"BTCUSDT",
|
|
439
|
+
# "description":"",
|
|
440
|
+
# "logo":"",
|
|
441
|
+
# "decimals":8,
|
|
442
|
+
# "created":1589459984395,
|
|
443
|
+
# "tier":1,
|
|
444
|
+
# "assetClass":"ASSET_CLASS_UNKNOWN",
|
|
445
|
+
# "minTransferAmount":0
|
|
446
|
+
# },
|
|
447
|
+
# ]
|
|
448
|
+
#
|
|
449
|
+
result: dict = {}
|
|
450
|
+
for i in range(0, len(response)):
|
|
451
|
+
currency = response[i]
|
|
452
|
+
id = self.safe_string(currency, 'id')
|
|
453
|
+
tag = self.safe_string(currency, 'tag')
|
|
454
|
+
code = self.safe_currency_code(tag)
|
|
455
|
+
fee = self.safe_number(currency, 'fee')
|
|
456
|
+
currencyType = self.safe_string(currency, 'type')
|
|
457
|
+
type = None
|
|
458
|
+
if currencyType == 'CURRENCY_TYPE_ALTERNATIVE':
|
|
459
|
+
type = 'other'
|
|
460
|
+
else:
|
|
461
|
+
# CURRENCY_TYPE_CRYPTO and CURRENCY_TYPE_IEO are all cryptos
|
|
462
|
+
type = 'crypto'
|
|
463
|
+
status = self.safe_string(currency, 'status')
|
|
464
|
+
active = (status == 'CURRENCY_STATUS_ACTIVE')
|
|
465
|
+
name = self.safe_string(currency, 'name')
|
|
466
|
+
result[code] = {
|
|
467
|
+
'id': id,
|
|
468
|
+
'code': code,
|
|
469
|
+
'info': currency,
|
|
470
|
+
'name': name,
|
|
471
|
+
'type': type,
|
|
472
|
+
'active': active,
|
|
473
|
+
'deposit': None,
|
|
474
|
+
'withdraw': None,
|
|
475
|
+
'fee': fee,
|
|
476
|
+
'precision': self.parse_number(self.parse_precision(self.safe_string(currency, 'decimals'))),
|
|
477
|
+
'limits': {
|
|
478
|
+
'amount': {
|
|
479
|
+
'min': self.safe_number(currency, 'minTransferAmount'),
|
|
480
|
+
'max': None,
|
|
481
|
+
},
|
|
482
|
+
'withdraw': {
|
|
483
|
+
'min': None,
|
|
484
|
+
'max': None,
|
|
485
|
+
},
|
|
486
|
+
},
|
|
487
|
+
'networks': {},
|
|
488
|
+
}
|
|
489
|
+
return result
|
|
490
|
+
|
|
491
|
+
def fetch_balance(self, params={}) -> Balances:
|
|
492
|
+
"""
|
|
493
|
+
query for balance and get the amount of funds available for trading or funds locked in orders
|
|
494
|
+
:see: https://api.latoken.com/doc/v2/#tag/Account/operation/getBalancesByUser
|
|
495
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
496
|
+
:returns dict: a `balance structure <https://docs.ccxt.com/#/?id=balance-structure>`
|
|
497
|
+
"""
|
|
498
|
+
self.load_markets()
|
|
499
|
+
response = self.privateGetAuthAccount(params)
|
|
500
|
+
#
|
|
501
|
+
# [
|
|
502
|
+
# {
|
|
503
|
+
# "id": "e5852e02-8711-431c-9749-a6f5503c6dbe",
|
|
504
|
+
# "status": "ACCOUNT_STATUS_ACTIVE",
|
|
505
|
+
# "type": "ACCOUNT_TYPE_WALLET",
|
|
506
|
+
# "timestamp": "1635920106506",
|
|
507
|
+
# "currency": "0c3a106d-bde3-4c13-a26e-3fd2394529e5",
|
|
508
|
+
# "available": "100.000000",
|
|
509
|
+
# "blocked": "0.000000"
|
|
510
|
+
# },
|
|
511
|
+
# {
|
|
512
|
+
# "id": "369df204-acbc-467e-a25e-b16e3cc09cf6",
|
|
513
|
+
# "status": "ACCOUNT_STATUS_ACTIVE",
|
|
514
|
+
# "type": "ACCOUNT_TYPE_SPOT",
|
|
515
|
+
# "timestamp": "1635920106504",
|
|
516
|
+
# "currency": "0c3a106d-bde3-4c13-a26e-3fd2394529e5",
|
|
517
|
+
# "available": "100.000000",
|
|
518
|
+
# "blocked": "0.000000"
|
|
519
|
+
# }
|
|
520
|
+
# ]
|
|
521
|
+
#
|
|
522
|
+
result: dict = {
|
|
523
|
+
'info': response,
|
|
524
|
+
'timestamp': None,
|
|
525
|
+
'datetime': None,
|
|
526
|
+
}
|
|
527
|
+
maxTimestamp = None
|
|
528
|
+
defaultType = self.safe_string_2(self.options, 'fetchBalance', 'defaultType', 'spot')
|
|
529
|
+
type = self.safe_string(params, 'type', defaultType)
|
|
530
|
+
types = self.safe_value(self.options, 'types', {})
|
|
531
|
+
accountType = self.safe_string(types, type, type)
|
|
532
|
+
balancesByType = self.group_by(response, 'type')
|
|
533
|
+
balances = self.safe_value(balancesByType, accountType, [])
|
|
534
|
+
for i in range(0, len(balances)):
|
|
535
|
+
balance = balances[i]
|
|
536
|
+
currencyId = self.safe_string(balance, 'currency')
|
|
537
|
+
timestamp = self.safe_integer(balance, 'timestamp')
|
|
538
|
+
if timestamp is not None:
|
|
539
|
+
if maxTimestamp is None:
|
|
540
|
+
maxTimestamp = timestamp
|
|
541
|
+
else:
|
|
542
|
+
maxTimestamp = max(maxTimestamp, timestamp)
|
|
543
|
+
code = self.safe_currency_code(currencyId)
|
|
544
|
+
account = self.account()
|
|
545
|
+
account['free'] = self.safe_string(balance, 'available')
|
|
546
|
+
account['used'] = self.safe_string(balance, 'blocked')
|
|
547
|
+
result[code] = account
|
|
548
|
+
result['timestamp'] = maxTimestamp
|
|
549
|
+
result['datetime'] = self.iso8601(maxTimestamp)
|
|
550
|
+
return self.safe_balance(result)
|
|
551
|
+
|
|
552
|
+
def fetch_order_book(self, symbol: str, limit: Int = None, params={}) -> OrderBook:
|
|
553
|
+
"""
|
|
554
|
+
fetches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
|
|
555
|
+
:see: https://api.latoken.com/doc/v2/#tag/Order-Book/operation/getOrderBook
|
|
556
|
+
:param str symbol: unified symbol of the market to fetch the order book for
|
|
557
|
+
:param int [limit]: the maximum amount of order book entries to return
|
|
558
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
559
|
+
:returns dict: A dictionary of `order book structures <https://docs.ccxt.com/#/?id=order-book-structure>` indexed by market symbols
|
|
560
|
+
"""
|
|
561
|
+
self.load_markets()
|
|
562
|
+
market = self.market(symbol)
|
|
563
|
+
request: dict = {
|
|
564
|
+
'currency': market['baseId'],
|
|
565
|
+
'quote': market['quoteId'],
|
|
566
|
+
}
|
|
567
|
+
if limit is not None:
|
|
568
|
+
request['limit'] = limit # max 1000
|
|
569
|
+
response = self.publicGetBookCurrencyQuote(self.extend(request, params))
|
|
570
|
+
#
|
|
571
|
+
# {
|
|
572
|
+
# "ask":[
|
|
573
|
+
# {"price":"4428.76","quantity":"0.08136","cost":"360.3239136","accumulated":"360.3239136"},
|
|
574
|
+
# {"price":"4429.77","quantity":"1.11786","cost":"4951.8626922","accumulated":"5312.1866058"},
|
|
575
|
+
# {"price":"4430.94","quantity":"1.78418","cost":"7905.5945292","accumulated":"13217.781135"},
|
|
576
|
+
# ],
|
|
577
|
+
# "bid":[
|
|
578
|
+
# {"price":"4428.43","quantity":"0.13675","cost":"605.5878025","accumulated":"605.5878025"},
|
|
579
|
+
# {"price":"4428.19","quantity":"0.03619","cost":"160.2561961","accumulated":"765.8439986"},
|
|
580
|
+
# {"price":"4428.15","quantity":"0.02926","cost":"129.567669","accumulated":"895.4116676"},
|
|
581
|
+
# ],
|
|
582
|
+
# "totalAsk":"53.14814",
|
|
583
|
+
# "totalBid":"112216.9029791"
|
|
584
|
+
# }
|
|
585
|
+
#
|
|
586
|
+
return self.parse_order_book(response, symbol, None, 'bid', 'ask', 'price', 'quantity')
|
|
587
|
+
|
|
588
|
+
def parse_ticker(self, ticker: dict, market: Market = None) -> Ticker:
|
|
589
|
+
#
|
|
590
|
+
# {
|
|
591
|
+
# "symbol": "92151d82-df98-4d88-9a4d-284fa9eca49f/0c3a106d-bde3-4c13-a26e-3fd2394529e5",
|
|
592
|
+
# "baseCurrency": "92151d82-df98-4d88-9a4d-284fa9eca49f",
|
|
593
|
+
# "quoteCurrency": "0c3a106d-bde3-4c13-a26e-3fd2394529e5",
|
|
594
|
+
# "volume24h": "165723597.189022176000000000",
|
|
595
|
+
# "volume7d": "934505768.625109571000000000",
|
|
596
|
+
# "change24h": "0.0200",
|
|
597
|
+
# "change7d": "-6.4200",
|
|
598
|
+
# "amount24h": "6438.457663100000000000",
|
|
599
|
+
# "amount7d": "35657.785013800000000000",
|
|
600
|
+
# "lastPrice": "25779.16",
|
|
601
|
+
# "lastQuantity": "0.248403300000000000",
|
|
602
|
+
# "bestBid": "25778.74",
|
|
603
|
+
# "bestBidQuantity": "0.6520232",
|
|
604
|
+
# "bestAsk": "25779.17",
|
|
605
|
+
# "bestAskQuantity": "0.4956043",
|
|
606
|
+
# "updateTimestamp": "1693965231406"
|
|
607
|
+
# }
|
|
608
|
+
#
|
|
609
|
+
marketId = self.safe_string(ticker, 'symbol')
|
|
610
|
+
last = self.safe_string(ticker, 'lastPrice')
|
|
611
|
+
timestamp = self.safe_integer_omit_zero(ticker, 'updateTimestamp') # sometimes latoken provided '0' ts from /ticker endpoint
|
|
612
|
+
return self.safe_ticker({
|
|
613
|
+
'symbol': self.safe_symbol(marketId, market),
|
|
614
|
+
'timestamp': timestamp,
|
|
615
|
+
'datetime': self.iso8601(timestamp),
|
|
616
|
+
'low': None,
|
|
617
|
+
'high': None,
|
|
618
|
+
'bid': self.safe_string(ticker, 'bestBid'),
|
|
619
|
+
'bidVolume': self.safe_string(ticker, 'bestBidQuantity'),
|
|
620
|
+
'ask': self.safe_string(ticker, 'bestAsk'),
|
|
621
|
+
'askVolume': self.safe_string(ticker, 'bestAskQuantity'),
|
|
622
|
+
'vwap': None,
|
|
623
|
+
'open': None,
|
|
624
|
+
'close': last,
|
|
625
|
+
'last': last,
|
|
626
|
+
'previousClose': None,
|
|
627
|
+
'change': None,
|
|
628
|
+
'percentage': self.safe_string(ticker, 'change24h'),
|
|
629
|
+
'average': None,
|
|
630
|
+
'baseVolume': self.safe_string(ticker, 'amount24h'),
|
|
631
|
+
'quoteVolume': self.safe_string(ticker, 'volume24h'),
|
|
632
|
+
'info': ticker,
|
|
633
|
+
}, market)
|
|
634
|
+
|
|
635
|
+
def fetch_ticker(self, symbol: str, params={}) -> Ticker:
|
|
636
|
+
"""
|
|
637
|
+
fetches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
|
|
638
|
+
:see: https://api.latoken.com/doc/v2/#tag/Ticker/operation/getTicker
|
|
639
|
+
:param str symbol: unified symbol of the market to fetch the ticker for
|
|
640
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
641
|
+
:returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
|
|
642
|
+
"""
|
|
643
|
+
self.load_markets()
|
|
644
|
+
market = self.market(symbol)
|
|
645
|
+
request: dict = {
|
|
646
|
+
'base': market['baseId'],
|
|
647
|
+
'quote': market['quoteId'],
|
|
648
|
+
}
|
|
649
|
+
response = self.publicGetTickerBaseQuote(self.extend(request, params))
|
|
650
|
+
#
|
|
651
|
+
# {
|
|
652
|
+
# "symbol": "92151d82-df98-4d88-9a4d-284fa9eca49f/0c3a106d-bde3-4c13-a26e-3fd2394529e5",
|
|
653
|
+
# "baseCurrency": "92151d82-df98-4d88-9a4d-284fa9eca49f",
|
|
654
|
+
# "quoteCurrency": "0c3a106d-bde3-4c13-a26e-3fd2394529e5",
|
|
655
|
+
# "volume24h": "165723597.189022176000000000",
|
|
656
|
+
# "volume7d": "934505768.625109571000000000",
|
|
657
|
+
# "change24h": "0.0200",
|
|
658
|
+
# "change7d": "-6.4200",
|
|
659
|
+
# "amount24h": "6438.457663100000000000",
|
|
660
|
+
# "amount7d": "35657.785013800000000000",
|
|
661
|
+
# "lastPrice": "25779.16",
|
|
662
|
+
# "lastQuantity": "0.248403300000000000",
|
|
663
|
+
# "bestBid": "25778.74",
|
|
664
|
+
# "bestBidQuantity": "0.6520232",
|
|
665
|
+
# "bestAsk": "25779.17",
|
|
666
|
+
# "bestAskQuantity": "0.4956043",
|
|
667
|
+
# "updateTimestamp": "1693965231406"
|
|
668
|
+
# }
|
|
669
|
+
#
|
|
670
|
+
return self.parse_ticker(response, market)
|
|
671
|
+
|
|
672
|
+
def fetch_tickers(self, symbols: Strings = None, params={}) -> Tickers:
|
|
673
|
+
"""
|
|
674
|
+
fetches price tickers for multiple markets, statistical information calculated over the past 24 hours for each market
|
|
675
|
+
:see: https://api.latoken.com/doc/v2/#tag/Ticker/operation/getAllTickers
|
|
676
|
+
:param str[]|None symbols: unified symbols of the markets to fetch the ticker for, all market tickers are returned if not assigned
|
|
677
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
678
|
+
:returns dict: a dictionary of `ticker structures <https://docs.ccxt.com/#/?id=ticker-structure>`
|
|
679
|
+
"""
|
|
680
|
+
self.load_markets()
|
|
681
|
+
response = self.publicGetTicker(params)
|
|
682
|
+
#
|
|
683
|
+
# [
|
|
684
|
+
# {
|
|
685
|
+
# "symbol": "92151d82-df98-4d88-9a4d-284fa9eca49f/0c3a106d-bde3-4c13-a26e-3fd2394529e5",
|
|
686
|
+
# "baseCurrency": "92151d82-df98-4d88-9a4d-284fa9eca49f",
|
|
687
|
+
# "quoteCurrency": "0c3a106d-bde3-4c13-a26e-3fd2394529e5",
|
|
688
|
+
# "volume24h": "165723597.189022176000000000",
|
|
689
|
+
# "volume7d": "934505768.625109571000000000",
|
|
690
|
+
# "change24h": "0.0200",
|
|
691
|
+
# "change7d": "-6.4200",
|
|
692
|
+
# "amount24h": "6438.457663100000000000",
|
|
693
|
+
# "amount7d": "35657.785013800000000000",
|
|
694
|
+
# "lastPrice": "25779.16",
|
|
695
|
+
# "lastQuantity": "0.248403300000000000",
|
|
696
|
+
# "bestBid": "25778.74",
|
|
697
|
+
# "bestBidQuantity": "0.6520232",
|
|
698
|
+
# "bestAsk": "25779.17",
|
|
699
|
+
# "bestAskQuantity": "0.4956043",
|
|
700
|
+
# "updateTimestamp": "1693965231406"
|
|
701
|
+
# }
|
|
702
|
+
# ]
|
|
703
|
+
#
|
|
704
|
+
return self.parse_tickers(response, symbols)
|
|
705
|
+
|
|
706
|
+
def parse_trade(self, trade: dict, market: Market = None) -> Trade:
|
|
707
|
+
#
|
|
708
|
+
# fetchTrades(public)
|
|
709
|
+
#
|
|
710
|
+
# {
|
|
711
|
+
# "id":"c152f814-8eeb-44f0-8f3f-e5c568f2ffcf",
|
|
712
|
+
# "isMakerBuyer":false,
|
|
713
|
+
# "baseCurrency":"620f2019-33c0-423b-8a9d-cde4d7f8ef7f",
|
|
714
|
+
# "quoteCurrency":"0c3a106d-bde3-4c13-a26e-3fd2394529e5",
|
|
715
|
+
# "price":"4435.56",
|
|
716
|
+
# "quantity":"0.32534",
|
|
717
|
+
# "cost":"1443.0650904",
|
|
718
|
+
# "timestamp":1635854642725,
|
|
719
|
+
# "makerBuyer":false
|
|
720
|
+
# }
|
|
721
|
+
#
|
|
722
|
+
# fetchMyTrades(private)
|
|
723
|
+
#
|
|
724
|
+
# {
|
|
725
|
+
# "id":"02e02533-b4bf-4ba9-9271-24e2108dfbf7",
|
|
726
|
+
# "isMakerBuyer":false,
|
|
727
|
+
# "direction":"TRADE_DIRECTION_BUY",
|
|
728
|
+
# "baseCurrency":"620f2019-33c0-423b-8a9d-cde4d7f8ef7f",
|
|
729
|
+
# "quoteCurrency":"0c3a106d-bde3-4c13-a26e-3fd2394529e5",
|
|
730
|
+
# "price":"4564.32",
|
|
731
|
+
# "quantity":"0.01000",
|
|
732
|
+
# "cost":"45.6432",
|
|
733
|
+
# "fee":"0.223651680000000000",
|
|
734
|
+
# "order":"c9cac6a0-484c-4892-88e7-ad51b39f2ce1",
|
|
735
|
+
# "timestamp":1635921580399,
|
|
736
|
+
# "makerBuyer":false
|
|
737
|
+
# }
|
|
738
|
+
#
|
|
739
|
+
type = None
|
|
740
|
+
timestamp = self.safe_integer(trade, 'timestamp')
|
|
741
|
+
priceString = self.safe_string(trade, 'price')
|
|
742
|
+
amountString = self.safe_string(trade, 'quantity')
|
|
743
|
+
costString = self.safe_string(trade, 'cost')
|
|
744
|
+
makerBuyer = self.safe_value(trade, 'makerBuyer')
|
|
745
|
+
side = self.safe_string(trade, 'direction')
|
|
746
|
+
if side is None:
|
|
747
|
+
side = 'sell' if makerBuyer else 'buy'
|
|
748
|
+
else:
|
|
749
|
+
if side == 'TRADE_DIRECTION_BUY':
|
|
750
|
+
side = 'buy'
|
|
751
|
+
elif side == 'TRADE_DIRECTION_SELL':
|
|
752
|
+
side = 'sell'
|
|
753
|
+
isBuy = (side == 'buy')
|
|
754
|
+
takerOrMaker = 'maker' if (makerBuyer and isBuy) else 'taker'
|
|
755
|
+
baseId = self.safe_string(trade, 'baseCurrency')
|
|
756
|
+
quoteId = self.safe_string(trade, 'quoteCurrency')
|
|
757
|
+
base = self.safe_currency_code(baseId)
|
|
758
|
+
quote = self.safe_currency_code(quoteId)
|
|
759
|
+
symbol = base + '/' + quote
|
|
760
|
+
if symbol in self.markets:
|
|
761
|
+
market = self.market(symbol)
|
|
762
|
+
id = self.safe_string(trade, 'id')
|
|
763
|
+
orderId = self.safe_string(trade, 'order')
|
|
764
|
+
feeCost = self.safe_string(trade, 'fee')
|
|
765
|
+
fee = None
|
|
766
|
+
if feeCost is not None:
|
|
767
|
+
fee = {
|
|
768
|
+
'cost': feeCost,
|
|
769
|
+
'currency': quote,
|
|
770
|
+
}
|
|
771
|
+
return self.safe_trade({
|
|
772
|
+
'info': trade,
|
|
773
|
+
'timestamp': timestamp,
|
|
774
|
+
'datetime': self.iso8601(timestamp),
|
|
775
|
+
'symbol': symbol,
|
|
776
|
+
'id': id,
|
|
777
|
+
'order': orderId,
|
|
778
|
+
'type': type,
|
|
779
|
+
'takerOrMaker': takerOrMaker,
|
|
780
|
+
'side': side,
|
|
781
|
+
'price': priceString,
|
|
782
|
+
'amount': amountString,
|
|
783
|
+
'cost': costString,
|
|
784
|
+
'fee': fee,
|
|
785
|
+
}, market)
|
|
786
|
+
|
|
787
|
+
def fetch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
|
|
788
|
+
"""
|
|
789
|
+
get the list of most recent trades for a particular symbol
|
|
790
|
+
:see: https://api.latoken.com/doc/v2/#tag/Trade/operation/getTradesByPair
|
|
791
|
+
:param str symbol: unified symbol of the market to fetch trades for
|
|
792
|
+
:param int [since]: timestamp in ms of the earliest trade to fetch
|
|
793
|
+
:param int [limit]: the maximum amount of trades to fetch
|
|
794
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
795
|
+
:returns Trade[]: a list of `trade structures <https://docs.ccxt.com/#/?id=public-trades>`
|
|
796
|
+
"""
|
|
797
|
+
self.load_markets()
|
|
798
|
+
market = self.market(symbol)
|
|
799
|
+
request: dict = {
|
|
800
|
+
'currency': market['baseId'],
|
|
801
|
+
'quote': market['quoteId'],
|
|
802
|
+
# 'from': str(since), # milliseconds
|
|
803
|
+
# 'limit': limit, # default 100, limit 100
|
|
804
|
+
}
|
|
805
|
+
if limit is not None:
|
|
806
|
+
request['limit'] = min(limit, 100) # default 100, limit 100
|
|
807
|
+
response = self.publicGetTradeHistoryCurrencyQuote(self.extend(request, params))
|
|
808
|
+
#
|
|
809
|
+
# [
|
|
810
|
+
# {"id":"c152f814-8eeb-44f0-8f3f-e5c568f2ffcf","isMakerBuyer":false,"baseCurrency":"620f2019-33c0-423b-8a9d-cde4d7f8ef7f","quoteCurrency":"0c3a106d-bde3-4c13-a26e-3fd2394529e5","price":"4435.56","quantity":"0.32534","cost":"1443.0650904","timestamp":1635854642725,"makerBuyer":false},
|
|
811
|
+
# {"id":"cfecbefb-3d11-43d7-b9d4-fa16211aad8a","isMakerBuyer":false,"baseCurrency":"620f2019-33c0-423b-8a9d-cde4d7f8ef7f","quoteCurrency":"0c3a106d-bde3-4c13-a26e-3fd2394529e5","price":"4435.13","quantity":"0.26540","cost":"1177.083502","timestamp":1635854641114,"makerBuyer":false},
|
|
812
|
+
# {"id":"f43d3ec8-db94-49f3-b534-91dbc2779296","isMakerBuyer":true,"baseCurrency":"620f2019-33c0-423b-8a9d-cde4d7f8ef7f","quoteCurrency":"0c3a106d-bde3-4c13-a26e-3fd2394529e5","price":"4435.00","quantity":"0.41738","cost":"1851.0803","timestamp":1635854640323,"makerBuyer":true},
|
|
813
|
+
# ]
|
|
814
|
+
#
|
|
815
|
+
return self.parse_trades(response, market, since, limit)
|
|
816
|
+
|
|
817
|
+
def fetch_trading_fee(self, symbol: str, params={}) -> TradingFeeInterface:
|
|
818
|
+
"""
|
|
819
|
+
fetch the trading fees for a market
|
|
820
|
+
:see: https://api.latoken.com/doc/v2/#tag/Trade/operation/getFeeByPair
|
|
821
|
+
:see: https://api.latoken.com/doc/v2/#tag/Trade/operation/getAuthFeeByPair
|
|
822
|
+
:param str symbol: unified market symbol
|
|
823
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
824
|
+
:returns dict: a `fee structure <https://docs.ccxt.com/#/?id=fee-structure>`
|
|
825
|
+
"""
|
|
826
|
+
options = self.safe_value(self.options, 'fetchTradingFee', {})
|
|
827
|
+
defaultMethod = self.safe_string(options, 'method', 'fetchPrivateTradingFee')
|
|
828
|
+
method = self.safe_string(params, 'method', defaultMethod)
|
|
829
|
+
params = self.omit(params, 'method')
|
|
830
|
+
if method == 'fetchPrivateTradingFee':
|
|
831
|
+
return self.fetch_private_trading_fee(symbol, params)
|
|
832
|
+
elif method == 'fetchPublicTradingFee':
|
|
833
|
+
return self.fetch_public_trading_fee(symbol, params)
|
|
834
|
+
else:
|
|
835
|
+
raise NotSupported(self.id + ' not support self method')
|
|
836
|
+
|
|
837
|
+
def fetch_public_trading_fee(self, symbol: str, params={}):
|
|
838
|
+
self.load_markets()
|
|
839
|
+
market = self.market(symbol)
|
|
840
|
+
request: dict = {
|
|
841
|
+
'currency': market['baseId'],
|
|
842
|
+
'quote': market['quoteId'],
|
|
843
|
+
}
|
|
844
|
+
response = self.publicGetTradeFeeCurrencyQuote(self.extend(request, params))
|
|
845
|
+
#
|
|
846
|
+
# {
|
|
847
|
+
# "makerFee": "0.004900000000000000",
|
|
848
|
+
# "takerFee": "0.004900000000000000",
|
|
849
|
+
# "type": "FEE_SCHEME_TYPE_PERCENT_QUOTE",
|
|
850
|
+
# "take": "FEE_SCHEME_TAKE_PROPORTION"
|
|
851
|
+
# }
|
|
852
|
+
#
|
|
853
|
+
return {
|
|
854
|
+
'info': response,
|
|
855
|
+
'symbol': market['symbol'],
|
|
856
|
+
'maker': self.safe_number(response, 'makerFee'),
|
|
857
|
+
'taker': self.safe_number(response, 'takerFee'),
|
|
858
|
+
'percentage': None,
|
|
859
|
+
'tierBased': None,
|
|
860
|
+
}
|
|
861
|
+
|
|
862
|
+
def fetch_private_trading_fee(self, symbol: str, params={}):
|
|
863
|
+
self.load_markets()
|
|
864
|
+
market = self.market(symbol)
|
|
865
|
+
request: dict = {
|
|
866
|
+
'currency': market['baseId'],
|
|
867
|
+
'quote': market['quoteId'],
|
|
868
|
+
}
|
|
869
|
+
response = self.privateGetAuthTradeFeeCurrencyQuote(self.extend(request, params))
|
|
870
|
+
#
|
|
871
|
+
# {
|
|
872
|
+
# "makerFee": "0.004900000000000000",
|
|
873
|
+
# "takerFee": "0.004900000000000000",
|
|
874
|
+
# "type": "FEE_SCHEME_TYPE_PERCENT_QUOTE",
|
|
875
|
+
# "take": "FEE_SCHEME_TAKE_PROPORTION"
|
|
876
|
+
# }
|
|
877
|
+
#
|
|
878
|
+
return {
|
|
879
|
+
'info': response,
|
|
880
|
+
'symbol': market['symbol'],
|
|
881
|
+
'maker': self.safe_number(response, 'makerFee'),
|
|
882
|
+
'taker': self.safe_number(response, 'takerFee'),
|
|
883
|
+
'percentage': None,
|
|
884
|
+
'tierBased': None,
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
def fetch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}):
|
|
888
|
+
"""
|
|
889
|
+
fetch all trades made by the user
|
|
890
|
+
:see: https://api.latoken.com/doc/v2/#tag/Trade/operation/getTradesByTrader
|
|
891
|
+
:see: https://api.latoken.com/doc/v2/#tag/Trade/operation/getTradesByAssetAndTrader
|
|
892
|
+
:param str symbol: unified market symbol
|
|
893
|
+
:param int [since]: the earliest time in ms to fetch trades for
|
|
894
|
+
:param int [limit]: the maximum number of trades structures to retrieve
|
|
895
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
896
|
+
:returns Trade[]: a list of `trade structures <https://docs.ccxt.com/#/?id=trade-structure>`
|
|
897
|
+
"""
|
|
898
|
+
self.load_markets()
|
|
899
|
+
request: dict = {
|
|
900
|
+
# 'currency': market['baseId'],
|
|
901
|
+
# 'quote': market['quoteId'],
|
|
902
|
+
# 'from': self.milliseconds(),
|
|
903
|
+
# 'limit': limit, # default '100'
|
|
904
|
+
}
|
|
905
|
+
market = None
|
|
906
|
+
if limit is not None:
|
|
907
|
+
request['limit'] = limit # default 100
|
|
908
|
+
response = None
|
|
909
|
+
if symbol is not None:
|
|
910
|
+
market = self.market(symbol)
|
|
911
|
+
request['currency'] = market['baseId']
|
|
912
|
+
request['quote'] = market['quoteId']
|
|
913
|
+
response = self.privateGetAuthTradePairCurrencyQuote(self.extend(request, params))
|
|
914
|
+
else:
|
|
915
|
+
response = self.privateGetAuthTrade(self.extend(request, params))
|
|
916
|
+
#
|
|
917
|
+
# [
|
|
918
|
+
# {
|
|
919
|
+
# "id":"02e02533-b4bf-4ba9-9271-24e2108dfbf7",
|
|
920
|
+
# "isMakerBuyer":false,
|
|
921
|
+
# "direction":"TRADE_DIRECTION_BUY",
|
|
922
|
+
# "baseCurrency":"620f2019-33c0-423b-8a9d-cde4d7f8ef7f",
|
|
923
|
+
# "quoteCurrency":"0c3a106d-bde3-4c13-a26e-3fd2394529e5",
|
|
924
|
+
# "price":"4564.32",
|
|
925
|
+
# "quantity":"0.01000",
|
|
926
|
+
# "cost":"45.6432",
|
|
927
|
+
# "fee":"0.223651680000000000",
|
|
928
|
+
# "order":"c9cac6a0-484c-4892-88e7-ad51b39f2ce1",
|
|
929
|
+
# "timestamp":1635921580399,
|
|
930
|
+
# "makerBuyer":false
|
|
931
|
+
# }
|
|
932
|
+
# ]
|
|
933
|
+
#
|
|
934
|
+
return self.parse_trades(response, market, since, limit)
|
|
935
|
+
|
|
936
|
+
def parse_order_status(self, status: Str):
|
|
937
|
+
statuses: dict = {
|
|
938
|
+
'ORDER_STATUS_PLACED': 'open',
|
|
939
|
+
'ORDER_STATUS_CLOSED': 'closed',
|
|
940
|
+
'ORDER_STATUS_CANCELLED': 'canceled',
|
|
941
|
+
}
|
|
942
|
+
return self.safe_string(statuses, status, status)
|
|
943
|
+
|
|
944
|
+
def parse_order_type(self, status):
|
|
945
|
+
statuses: dict = {
|
|
946
|
+
'ORDER_TYPE_MARKET': 'market',
|
|
947
|
+
'ORDER_TYPE_LIMIT': 'limit',
|
|
948
|
+
}
|
|
949
|
+
return self.safe_string(statuses, status, status)
|
|
950
|
+
|
|
951
|
+
def parse_time_in_force(self, timeInForce: Str):
|
|
952
|
+
timeInForces: dict = {
|
|
953
|
+
'ORDER_CONDITION_GOOD_TILL_CANCELLED': 'GTC',
|
|
954
|
+
'ORDER_CONDITION_IMMEDIATE_OR_CANCEL': 'IOC',
|
|
955
|
+
'ORDER_CONDITION_FILL_OR_KILL': 'FOK',
|
|
956
|
+
}
|
|
957
|
+
return self.safe_string(timeInForces, timeInForce, timeInForce)
|
|
958
|
+
|
|
959
|
+
def parse_order(self, order: dict, market: Market = None) -> Order:
|
|
960
|
+
#
|
|
961
|
+
# createOrder
|
|
962
|
+
#
|
|
963
|
+
# {
|
|
964
|
+
# "baseCurrency": "f7dac554-8139-4ff6-841f-0e586a5984a0",
|
|
965
|
+
# "quoteCurrency": "a5a7a7a9-e2a3-43f9-8754-29a02f6b709b",
|
|
966
|
+
# "side": "BID",
|
|
967
|
+
# "clientOrderId": "my-wonderful-order-number-71566",
|
|
968
|
+
# "price": "10103.19",
|
|
969
|
+
# "stopPrice": "10103.19",
|
|
970
|
+
# "quantity": "3.21",
|
|
971
|
+
# "timestamp": 1568185507
|
|
972
|
+
# }
|
|
973
|
+
#
|
|
974
|
+
# fetchOrder, fetchOpenOrders, fetchOrders
|
|
975
|
+
#
|
|
976
|
+
# {
|
|
977
|
+
# "id":"a76bd262-3560-4bfb-98ac-1cedd394f4fc",
|
|
978
|
+
# "status":"ORDER_STATUS_PLACED",
|
|
979
|
+
# "side":"ORDER_SIDE_BUY",
|
|
980
|
+
# "condition":"ORDER_CONDITION_GOOD_TILL_CANCELLED",
|
|
981
|
+
# "type":"ORDER_TYPE_LIMIT",
|
|
982
|
+
# "baseCurrency":"620f2019-33c0-423b-8a9d-cde4d7f8ef7f",
|
|
983
|
+
# "quoteCurrency":"0c3a106d-bde3-4c13-a26e-3fd2394529e5",
|
|
984
|
+
# "clientOrderId":"web-macos_chrome_1a6a6659-6f7c-4fac-be0b-d1d7ac06d",
|
|
985
|
+
# "price":"4000.00",
|
|
986
|
+
# "quantity":"0.01",
|
|
987
|
+
# "cost":"40.000000000000000000",
|
|
988
|
+
# "filled":"0",
|
|
989
|
+
# "trader":"7244bb3a-b6b2-446a-ac78-fa4bce5b59a9",
|
|
990
|
+
# "creator":"ORDER_CREATOR_USER",
|
|
991
|
+
# "creatorId":"",
|
|
992
|
+
# "timestamp":1635920767648
|
|
993
|
+
# }
|
|
994
|
+
#
|
|
995
|
+
# cancelOrder
|
|
996
|
+
#
|
|
997
|
+
# {
|
|
998
|
+
# "message":"cancellation request successfully submitted",
|
|
999
|
+
# "status":"SUCCESS",
|
|
1000
|
+
# "id":"a631426d-3543-45ba-941e-75f7825afb0f"
|
|
1001
|
+
# }
|
|
1002
|
+
#
|
|
1003
|
+
id = self.safe_string(order, 'id')
|
|
1004
|
+
timestamp = self.safe_integer(order, 'timestamp')
|
|
1005
|
+
baseId = self.safe_string(order, 'baseCurrency')
|
|
1006
|
+
quoteId = self.safe_string(order, 'quoteCurrency')
|
|
1007
|
+
base = self.safe_currency_code(baseId)
|
|
1008
|
+
quote = self.safe_currency_code(quoteId)
|
|
1009
|
+
symbol = None
|
|
1010
|
+
if (base is not None) and (quote is not None):
|
|
1011
|
+
symbol = base + '/' + quote
|
|
1012
|
+
if symbol in self.markets:
|
|
1013
|
+
market = self.market(symbol)
|
|
1014
|
+
orderSide = self.safe_string(order, 'side')
|
|
1015
|
+
side = None
|
|
1016
|
+
if orderSide is not None:
|
|
1017
|
+
parts = orderSide.split('_')
|
|
1018
|
+
partsLength = len(parts)
|
|
1019
|
+
side = self.safe_string_lower(parts, partsLength - 1)
|
|
1020
|
+
type = self.parse_order_type(self.safe_string(order, 'type'))
|
|
1021
|
+
price = self.safe_string(order, 'price')
|
|
1022
|
+
amount = self.safe_string(order, 'quantity')
|
|
1023
|
+
filled = self.safe_string(order, 'filled')
|
|
1024
|
+
cost = self.safe_string(order, 'cost')
|
|
1025
|
+
status = self.parse_order_status(self.safe_string(order, 'status'))
|
|
1026
|
+
message = self.safe_string(order, 'message')
|
|
1027
|
+
if message is not None:
|
|
1028
|
+
if message.find('cancel') >= 0:
|
|
1029
|
+
status = 'canceled'
|
|
1030
|
+
elif message.find('accept') >= 0:
|
|
1031
|
+
status = 'open'
|
|
1032
|
+
clientOrderId = self.safe_string(order, 'clientOrderId')
|
|
1033
|
+
timeInForce = self.parse_time_in_force(self.safe_string(order, 'condition'))
|
|
1034
|
+
triggerPrice = self.safe_string(order, 'stopPrice')
|
|
1035
|
+
return self.safe_order({
|
|
1036
|
+
'id': id,
|
|
1037
|
+
'clientOrderId': clientOrderId,
|
|
1038
|
+
'info': order,
|
|
1039
|
+
'timestamp': timestamp,
|
|
1040
|
+
'datetime': self.iso8601(timestamp),
|
|
1041
|
+
'lastTradeTimestamp': None,
|
|
1042
|
+
'status': status,
|
|
1043
|
+
'symbol': symbol,
|
|
1044
|
+
'type': type,
|
|
1045
|
+
'timeInForce': timeInForce,
|
|
1046
|
+
'postOnly': None,
|
|
1047
|
+
'side': side,
|
|
1048
|
+
'price': price,
|
|
1049
|
+
'stopPrice': triggerPrice,
|
|
1050
|
+
'triggerPrice': triggerPrice,
|
|
1051
|
+
'cost': cost,
|
|
1052
|
+
'amount': amount,
|
|
1053
|
+
'filled': filled,
|
|
1054
|
+
'average': None,
|
|
1055
|
+
'remaining': None,
|
|
1056
|
+
'fee': None,
|
|
1057
|
+
'trades': None,
|
|
1058
|
+
}, market)
|
|
1059
|
+
|
|
1060
|
+
def fetch_open_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
|
1061
|
+
"""
|
|
1062
|
+
fetch all unfilled currently open orders
|
|
1063
|
+
:see: https://api.latoken.com/doc/v2/#tag/Order/operation/getMyActiveOrdersByPair
|
|
1064
|
+
:see: https://api.latoken.com/doc/v2/#tag/StopOrder/operation/getMyActiveStopOrdersByPair # stop
|
|
1065
|
+
:param str symbol: unified market symbol
|
|
1066
|
+
:param int [since]: the earliest time in ms to fetch open orders for
|
|
1067
|
+
:param int [limit]: the maximum number of open orders structures to retrieve
|
|
1068
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1069
|
+
:param boolean [params.trigger]: True if fetching trigger orders
|
|
1070
|
+
:returns Order[]: a list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
|
|
1071
|
+
"""
|
|
1072
|
+
if symbol is None:
|
|
1073
|
+
raise ArgumentsRequired(self.id + ' fetchOpenOrders() requires a symbol argument')
|
|
1074
|
+
self.load_markets()
|
|
1075
|
+
response = None
|
|
1076
|
+
isTrigger = self.safe_value_2(params, 'trigger', 'stop')
|
|
1077
|
+
params = self.omit(params, 'stop')
|
|
1078
|
+
# privateGetAuthOrderActive doesn't work even though its listed at https://api.latoken.com/doc/v2/#tag/Order/operation/getMyActiveOrders
|
|
1079
|
+
market = self.market(symbol)
|
|
1080
|
+
request: dict = {
|
|
1081
|
+
'currency': market['baseId'],
|
|
1082
|
+
'quote': market['quoteId'],
|
|
1083
|
+
}
|
|
1084
|
+
if isTrigger:
|
|
1085
|
+
response = self.privateGetAuthStopOrderPairCurrencyQuoteActive(self.extend(request, params))
|
|
1086
|
+
else:
|
|
1087
|
+
response = self.privateGetAuthOrderPairCurrencyQuoteActive(self.extend(request, params))
|
|
1088
|
+
#
|
|
1089
|
+
# [
|
|
1090
|
+
# {
|
|
1091
|
+
# "id":"a76bd262-3560-4bfb-98ac-1cedd394f4fc",
|
|
1092
|
+
# "status":"ORDER_STATUS_PLACED",
|
|
1093
|
+
# "side":"ORDER_SIDE_BUY",
|
|
1094
|
+
# "condition":"ORDER_CONDITION_GOOD_TILL_CANCELLED",
|
|
1095
|
+
# "type":"ORDER_TYPE_LIMIT",
|
|
1096
|
+
# "baseCurrency":"620f2019-33c0-423b-8a9d-cde4d7f8ef7f",
|
|
1097
|
+
# "quoteCurrency":"0c3a106d-bde3-4c13-a26e-3fd2394529e5",
|
|
1098
|
+
# "clientOrderId":"web-macos_chrome_1a6a6659-6f7c-4fac-be0b-d1d7ac06d",
|
|
1099
|
+
# "price":"4000.00",
|
|
1100
|
+
# "quantity":"0.01000",
|
|
1101
|
+
# "cost":"40.00",
|
|
1102
|
+
# "filled":"0.00000",
|
|
1103
|
+
# "trader":"7244bb3a-b6b2-446a-ac78-fa4bce5b59a9",
|
|
1104
|
+
# "creator":"USER",
|
|
1105
|
+
# "creatorId":"",
|
|
1106
|
+
# "timestamp":1635920767648
|
|
1107
|
+
# }
|
|
1108
|
+
# ]
|
|
1109
|
+
#
|
|
1110
|
+
return self.parse_orders(response, market, since, limit)
|
|
1111
|
+
|
|
1112
|
+
def fetch_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
|
1113
|
+
"""
|
|
1114
|
+
fetches information on multiple orders made by the user
|
|
1115
|
+
:see: https://api.latoken.com/doc/v2/#tag/Order/operation/getMyOrders
|
|
1116
|
+
:see: https://api.latoken.com/doc/v2/#tag/Order/operation/getMyOrdersByPair
|
|
1117
|
+
:see: https://api.latoken.com/doc/v2/#tag/StopOrder/operation/getMyStopOrders # stop
|
|
1118
|
+
:see: https://api.latoken.com/doc/v2/#tag/StopOrder/operation/getMyStopOrdersByPair # stop
|
|
1119
|
+
:param str symbol: unified market symbol of the market orders were made in
|
|
1120
|
+
:param int [since]: the earliest time in ms to fetch orders for
|
|
1121
|
+
:param int [limit]: the maximum number of order structures to retrieve
|
|
1122
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1123
|
+
:param boolean [params.trigger]: True if fetching trigger orders
|
|
1124
|
+
:returns Order[]: a list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
|
|
1125
|
+
"""
|
|
1126
|
+
self.load_markets()
|
|
1127
|
+
request: dict = {
|
|
1128
|
+
# 'currency': market['baseId'],
|
|
1129
|
+
# 'quote': market['quoteId'],
|
|
1130
|
+
# 'from': self.milliseconds(),
|
|
1131
|
+
# 'limit': limit, # default '100'
|
|
1132
|
+
}
|
|
1133
|
+
market = None
|
|
1134
|
+
isTrigger = self.safe_value_2(params, 'trigger', 'stop')
|
|
1135
|
+
params = self.omit(params, ['stop', 'trigger'])
|
|
1136
|
+
if limit is not None:
|
|
1137
|
+
request['limit'] = limit # default 100
|
|
1138
|
+
response = None
|
|
1139
|
+
if symbol is not None:
|
|
1140
|
+
market = self.market(symbol)
|
|
1141
|
+
request['currency'] = market['baseId']
|
|
1142
|
+
request['quote'] = market['quoteId']
|
|
1143
|
+
if isTrigger:
|
|
1144
|
+
response = self.privateGetAuthStopOrderPairCurrencyQuote(self.extend(request, params))
|
|
1145
|
+
else:
|
|
1146
|
+
response = self.privateGetAuthOrderPairCurrencyQuote(self.extend(request, params))
|
|
1147
|
+
else:
|
|
1148
|
+
if isTrigger:
|
|
1149
|
+
response = self.privateGetAuthStopOrder(self.extend(request, params))
|
|
1150
|
+
else:
|
|
1151
|
+
response = self.privateGetAuthOrder(self.extend(request, params))
|
|
1152
|
+
#
|
|
1153
|
+
# [
|
|
1154
|
+
# {
|
|
1155
|
+
# "id":"a76bd262-3560-4bfb-98ac-1cedd394f4fc",
|
|
1156
|
+
# "status":"ORDER_STATUS_PLACED",
|
|
1157
|
+
# "side":"ORDER_SIDE_BUY",
|
|
1158
|
+
# "condition":"ORDER_CONDITION_GOOD_TILL_CANCELLED",
|
|
1159
|
+
# "type":"ORDER_TYPE_LIMIT",
|
|
1160
|
+
# "baseCurrency":"620f2019-33c0-423b-8a9d-cde4d7f8ef7f",
|
|
1161
|
+
# "quoteCurrency":"0c3a106d-bde3-4c13-a26e-3fd2394529e5",
|
|
1162
|
+
# "clientOrderId":"web-macos_chrome_1a6a6659-6f7c-4fac-be0b-d1d7ac06d",
|
|
1163
|
+
# "price":"4000.00",
|
|
1164
|
+
# "quantity":"0.01000",
|
|
1165
|
+
# "cost":"40.00",
|
|
1166
|
+
# "filled":"0.00000",
|
|
1167
|
+
# "trader":"7244bb3a-b6b2-446a-ac78-fa4bce5b59a9",
|
|
1168
|
+
# "creator":"USER",
|
|
1169
|
+
# "creatorId":"",
|
|
1170
|
+
# "timestamp":1635920767648
|
|
1171
|
+
# }
|
|
1172
|
+
# ]
|
|
1173
|
+
#
|
|
1174
|
+
return self.parse_orders(response, market, since, limit)
|
|
1175
|
+
|
|
1176
|
+
def fetch_order(self, id: str, symbol: Str = None, params={}):
|
|
1177
|
+
"""
|
|
1178
|
+
fetches information on an order made by the user
|
|
1179
|
+
:see: https://api.latoken.com/doc/v2/#tag/Order/operation/getOrderById
|
|
1180
|
+
:see: https://api.latoken.com/doc/v2/#tag/StopOrder/operation/getStopOrderById
|
|
1181
|
+
:param str [symbol]: not used by latoken fetchOrder
|
|
1182
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1183
|
+
:param boolean [params.trigger]: True if fetching a trigger order
|
|
1184
|
+
:returns dict: An `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
|
1185
|
+
"""
|
|
1186
|
+
self.load_markets()
|
|
1187
|
+
request: dict = {
|
|
1188
|
+
'id': id,
|
|
1189
|
+
}
|
|
1190
|
+
isTrigger = self.safe_value_2(params, 'trigger', 'stop')
|
|
1191
|
+
params = self.omit(params, ['stop', 'trigger'])
|
|
1192
|
+
response = None
|
|
1193
|
+
if isTrigger:
|
|
1194
|
+
response = self.privateGetAuthStopOrderGetOrderId(self.extend(request, params))
|
|
1195
|
+
else:
|
|
1196
|
+
response = self.privateGetAuthOrderGetOrderId(self.extend(request, params))
|
|
1197
|
+
#
|
|
1198
|
+
# {
|
|
1199
|
+
# "id":"a76bd262-3560-4bfb-98ac-1cedd394f4fc",
|
|
1200
|
+
# "status":"ORDER_STATUS_PLACED",
|
|
1201
|
+
# "side":"ORDER_SIDE_BUY",
|
|
1202
|
+
# "condition":"ORDER_CONDITION_GOOD_TILL_CANCELLED",
|
|
1203
|
+
# "type":"ORDER_TYPE_LIMIT",
|
|
1204
|
+
# "baseCurrency":"620f2019-33c0-423b-8a9d-cde4d7f8ef7f",
|
|
1205
|
+
# "quoteCurrency":"0c3a106d-bde3-4c13-a26e-3fd2394529e5",
|
|
1206
|
+
# "clientOrderId":"web-macos_chrome_1a6a6659-6f7c-4fac-be0b-d1d7ac06d",
|
|
1207
|
+
# "price":"4000.00",
|
|
1208
|
+
# "quantity":"0.01",
|
|
1209
|
+
# "cost":"40.000000000000000000",
|
|
1210
|
+
# "filled":"0",
|
|
1211
|
+
# "trader":"7244bb3a-b6b2-446a-ac78-fa4bce5b59a9",
|
|
1212
|
+
# "creator":"ORDER_CREATOR_USER",
|
|
1213
|
+
# "creatorId":"",
|
|
1214
|
+
# "timestamp":1635920767648
|
|
1215
|
+
# }
|
|
1216
|
+
#
|
|
1217
|
+
return self.parse_order(response)
|
|
1218
|
+
|
|
1219
|
+
def create_order(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={}):
|
|
1220
|
+
"""
|
|
1221
|
+
create a trade order
|
|
1222
|
+
:see: https://api.latoken.com/doc/v2/#tag/Order/operation/placeOrder
|
|
1223
|
+
:see: https://api.latoken.com/doc/v2/#tag/StopOrder/operation/placeStopOrder # stop
|
|
1224
|
+
:param str symbol: unified symbol of the market to create an order in
|
|
1225
|
+
:param str type: 'market' or 'limit'
|
|
1226
|
+
:param str side: 'buy' or 'sell'
|
|
1227
|
+
:param float amount: how much of currency you want to trade in units of base currency
|
|
1228
|
+
:param float [price]: the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
|
|
1229
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1230
|
+
:param float [params.triggerPrice]: the price at which a trigger order is triggered at
|
|
1231
|
+
*
|
|
1232
|
+
* EXCHANGE SPECIFIC PARAMETERS
|
|
1233
|
+
:param str [params.condition]: "GTC", "IOC", or "FOK"
|
|
1234
|
+
:param str [params.clientOrderId]: [0 .. 50] characters, client's custom order id(free field for your convenience)
|
|
1235
|
+
:returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
|
1236
|
+
"""
|
|
1237
|
+
self.load_markets()
|
|
1238
|
+
market = self.market(symbol)
|
|
1239
|
+
uppercaseType = type.upper()
|
|
1240
|
+
request: dict = {
|
|
1241
|
+
'baseCurrency': market['baseId'],
|
|
1242
|
+
'quoteCurrency': market['quoteId'],
|
|
1243
|
+
'side': side.upper(), # "BUY", "BID", "SELL", "ASK"
|
|
1244
|
+
'condition': 'GTC', # "GTC", "GOOD_TILL_CANCELLED", "IOC", "IMMEDIATE_OR_CANCEL", "FOK", "FILL_OR_KILL"
|
|
1245
|
+
'type': uppercaseType, # "LIMIT", "MARKET"
|
|
1246
|
+
'clientOrderId': self.uuid(), # 50 characters max
|
|
1247
|
+
# 'price': self.price_to_precision(symbol, price),
|
|
1248
|
+
# 'quantity': self.amount_to_precision(symbol, amount),
|
|
1249
|
+
'quantity': self.amount_to_precision(symbol, amount),
|
|
1250
|
+
'timestamp': self.seconds(),
|
|
1251
|
+
}
|
|
1252
|
+
if uppercaseType == 'LIMIT':
|
|
1253
|
+
request['price'] = self.price_to_precision(symbol, price)
|
|
1254
|
+
triggerPrice = self.safe_string_2(params, 'triggerPrice', 'stopPrice')
|
|
1255
|
+
params = self.omit(params, ['triggerPrice', 'stopPrice'])
|
|
1256
|
+
response = None
|
|
1257
|
+
if triggerPrice is not None:
|
|
1258
|
+
request['stopPrice'] = self.price_to_precision(symbol, triggerPrice)
|
|
1259
|
+
response = self.privatePostAuthStopOrderPlace(self.extend(request, params))
|
|
1260
|
+
else:
|
|
1261
|
+
response = self.privatePostAuthOrderPlace(self.extend(request, params))
|
|
1262
|
+
#
|
|
1263
|
+
# {
|
|
1264
|
+
# "baseCurrency": "f7dac554-8139-4ff6-841f-0e586a5984a0",
|
|
1265
|
+
# "quoteCurrency": "a5a7a7a9-e2a3-43f9-8754-29a02f6b709b",
|
|
1266
|
+
# "side": "BID",
|
|
1267
|
+
# "clientOrderId": "my-wonderful-order-number-71566",
|
|
1268
|
+
# "price": "10103.19",
|
|
1269
|
+
# "stopPrice": "10103.19",
|
|
1270
|
+
# "quantity": "3.21",
|
|
1271
|
+
# "timestamp": 1568185507
|
|
1272
|
+
# }
|
|
1273
|
+
#
|
|
1274
|
+
return self.parse_order(response, market)
|
|
1275
|
+
|
|
1276
|
+
def cancel_order(self, id: str, symbol: Str = None, params={}):
|
|
1277
|
+
"""
|
|
1278
|
+
cancels an open order
|
|
1279
|
+
:see: https://api.latoken.com/doc/v2/#tag/Order/operation/cancelOrder
|
|
1280
|
+
:see: https://api.latoken.com/doc/v2/#tag/StopOrder/operation/cancelStopOrder # stop
|
|
1281
|
+
:param str id: order id
|
|
1282
|
+
:param str symbol: not used by latoken cancelOrder()
|
|
1283
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1284
|
+
:param boolean [params.trigger]: True if cancelling a trigger order
|
|
1285
|
+
:returns dict: An `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
|
1286
|
+
"""
|
|
1287
|
+
self.load_markets()
|
|
1288
|
+
request: dict = {
|
|
1289
|
+
'id': id,
|
|
1290
|
+
}
|
|
1291
|
+
isTrigger = self.safe_value_2(params, 'trigger', 'stop')
|
|
1292
|
+
params = self.omit(params, ['stop', 'trigger'])
|
|
1293
|
+
response = None
|
|
1294
|
+
if isTrigger:
|
|
1295
|
+
response = self.privatePostAuthStopOrderCancel(self.extend(request, params))
|
|
1296
|
+
else:
|
|
1297
|
+
response = self.privatePostAuthOrderCancel(self.extend(request, params))
|
|
1298
|
+
#
|
|
1299
|
+
# {
|
|
1300
|
+
# "id": "12345678-1234-1244-1244-123456789012",
|
|
1301
|
+
# "message": "cancellation request successfully submitted",
|
|
1302
|
+
# "status": "SUCCESS",
|
|
1303
|
+
# "error": "",
|
|
1304
|
+
# "errors": {}
|
|
1305
|
+
# }
|
|
1306
|
+
#
|
|
1307
|
+
return self.parse_order(response)
|
|
1308
|
+
|
|
1309
|
+
def cancel_all_orders(self, symbol: Str = None, params={}):
|
|
1310
|
+
"""
|
|
1311
|
+
cancel all open orders in a market
|
|
1312
|
+
:see: https://api.latoken.com/doc/v2/#tag/Order/operation/cancelAllOrders
|
|
1313
|
+
:see: https://api.latoken.com/doc/v2/#tag/Order/operation/cancelAllOrdersByPair
|
|
1314
|
+
:param str symbol: unified market symbol of the market to cancel orders in
|
|
1315
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1316
|
+
:param boolean [params.trigger]: True if cancelling trigger orders
|
|
1317
|
+
:returns dict[]: a list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
|
|
1318
|
+
"""
|
|
1319
|
+
self.load_markets()
|
|
1320
|
+
request: dict = {
|
|
1321
|
+
# 'currency': market['baseId'],
|
|
1322
|
+
# 'quote': market['quoteId'],
|
|
1323
|
+
}
|
|
1324
|
+
market = None
|
|
1325
|
+
isTrigger = self.safe_value_2(params, 'trigger', 'stop')
|
|
1326
|
+
params = self.omit(params, ['stop', 'trigger'])
|
|
1327
|
+
response = None
|
|
1328
|
+
if symbol is not None:
|
|
1329
|
+
market = self.market(symbol)
|
|
1330
|
+
request['currency'] = market['baseId']
|
|
1331
|
+
request['quote'] = market['quoteId']
|
|
1332
|
+
if isTrigger:
|
|
1333
|
+
response = self.privatePostAuthStopOrderCancelAllCurrencyQuote(self.extend(request, params))
|
|
1334
|
+
else:
|
|
1335
|
+
response = self.privatePostAuthOrderCancelAllCurrencyQuote(self.extend(request, params))
|
|
1336
|
+
else:
|
|
1337
|
+
if isTrigger:
|
|
1338
|
+
response = self.privatePostAuthStopOrderCancelAll(self.extend(request, params))
|
|
1339
|
+
else:
|
|
1340
|
+
response = self.privatePostAuthOrderCancelAll(self.extend(request, params))
|
|
1341
|
+
#
|
|
1342
|
+
# {
|
|
1343
|
+
# "message":"cancellation request successfully submitted",
|
|
1344
|
+
# "status":"SUCCESS"
|
|
1345
|
+
# }
|
|
1346
|
+
#
|
|
1347
|
+
return response
|
|
1348
|
+
|
|
1349
|
+
def fetch_transactions(self, code: Str = None, since: Int = None, limit: Int = None, params={}):
|
|
1350
|
+
"""
|
|
1351
|
+
* @deprecated
|
|
1352
|
+
use fetchDepositsWithdrawals instead
|
|
1353
|
+
:see: https://api.latoken.com/doc/v2/#tag/Transaction/operation/getUserTransactions
|
|
1354
|
+
:param str code: unified currency code for the currency of the transactions, default is None
|
|
1355
|
+
:param int [since]: timestamp in ms of the earliest transaction, default is None
|
|
1356
|
+
:param int [limit]: max number of transactions to return, default is None
|
|
1357
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1358
|
+
:returns dict: a list of `transaction structure <https://docs.ccxt.com/#/?id=transaction-structure>`
|
|
1359
|
+
"""
|
|
1360
|
+
self.load_markets()
|
|
1361
|
+
request: dict = {
|
|
1362
|
+
# 'page': '1',
|
|
1363
|
+
# 'size': 100,
|
|
1364
|
+
}
|
|
1365
|
+
response = self.privateGetAuthTransaction(self.extend(request, params))
|
|
1366
|
+
#
|
|
1367
|
+
# {
|
|
1368
|
+
# "hasNext":false,
|
|
1369
|
+
# "content":[
|
|
1370
|
+
# {
|
|
1371
|
+
# "id":"fbf7d0d1-2629-4ad8-9def-7a1dba423362",
|
|
1372
|
+
# "status":"TRANSACTION_STATUS_CONFIRMED",
|
|
1373
|
+
# "type":"TRANSACTION_TYPE_DEPOSIT",
|
|
1374
|
+
# "senderAddress":"",
|
|
1375
|
+
# "recipientAddress":"0x3c46fa2e3f9023bc4897828ed173f8ecb3a554bc",
|
|
1376
|
+
# "amount":"200.000000000000000000",
|
|
1377
|
+
# "transactionFee":"0.000000000000000000",
|
|
1378
|
+
# "timestamp":1635893208404,
|
|
1379
|
+
# "transactionHash":"0x28bad3b74a042df13d64ddfbca855566a51bf7f190b8cd565c236a18d5cd493f#42",
|
|
1380
|
+
# "blockHeight":13540262,
|
|
1381
|
+
# "currency":"0c3a106d-bde3-4c13-a26e-3fd2394529e5",
|
|
1382
|
+
# "memo":null,
|
|
1383
|
+
# "paymentProvider":"a8d6d1cb-f84a-4e9d-aa82-c6a08b356ee1",
|
|
1384
|
+
# "requiresCode":false
|
|
1385
|
+
# }
|
|
1386
|
+
# ],
|
|
1387
|
+
# "first":true,
|
|
1388
|
+
# "hasContent":true,
|
|
1389
|
+
# "pageSize":10
|
|
1390
|
+
# }
|
|
1391
|
+
#
|
|
1392
|
+
currency = None
|
|
1393
|
+
if code is not None:
|
|
1394
|
+
currency = self.currency(code)
|
|
1395
|
+
content = self.safe_list(response, 'content', [])
|
|
1396
|
+
return self.parse_transactions(content, currency, since, limit)
|
|
1397
|
+
|
|
1398
|
+
def parse_transaction(self, transaction: dict, currency: Currency = None) -> Transaction:
|
|
1399
|
+
#
|
|
1400
|
+
# {
|
|
1401
|
+
# "id":"fbf7d0d1-2629-4ad8-9def-7a1dba423362",
|
|
1402
|
+
# "status":"TRANSACTION_STATUS_CONFIRMED",
|
|
1403
|
+
# "type":"TRANSACTION_TYPE_DEPOSIT",
|
|
1404
|
+
# "senderAddress":"",
|
|
1405
|
+
# "recipientAddress":"0x3c46fa2e3f9023bc4897828ed173f8ecb3a554bc",
|
|
1406
|
+
# "amount":"200.000000000000000000",
|
|
1407
|
+
# "transactionFee":"0.000000000000000000",
|
|
1408
|
+
# "timestamp":1635893208404,
|
|
1409
|
+
# "transactionHash":"0x28bad3b74a042df13d64ddfbca855566a51bf7f190b8cd565c236a18d5cd493f#42",
|
|
1410
|
+
# "blockHeight":13540262,
|
|
1411
|
+
# "currency":"0c3a106d-bde3-4c13-a26e-3fd2394529e5",
|
|
1412
|
+
# "memo":null,
|
|
1413
|
+
# "paymentProvider":"a8d6d1cb-f84a-4e9d-aa82-c6a08b356ee1",
|
|
1414
|
+
# "requiresCode":false
|
|
1415
|
+
# }
|
|
1416
|
+
#
|
|
1417
|
+
id = self.safe_string(transaction, 'id')
|
|
1418
|
+
timestamp = self.safe_integer(transaction, 'timestamp')
|
|
1419
|
+
currencyId = self.safe_string(transaction, 'currency')
|
|
1420
|
+
code = self.safe_currency_code(currencyId, currency)
|
|
1421
|
+
status = self.parse_transaction_status(self.safe_string(transaction, 'status'))
|
|
1422
|
+
amount = self.safe_number(transaction, 'amount')
|
|
1423
|
+
addressFrom = self.safe_string(transaction, 'senderAddress')
|
|
1424
|
+
addressTo = self.safe_string(transaction, 'recipientAddress')
|
|
1425
|
+
txid = self.safe_string(transaction, 'transactionHash')
|
|
1426
|
+
tagTo = self.safe_string(transaction, 'memo')
|
|
1427
|
+
fee = {
|
|
1428
|
+
'currency': None,
|
|
1429
|
+
'cost': None,
|
|
1430
|
+
'rate': None,
|
|
1431
|
+
}
|
|
1432
|
+
feeCost = self.safe_number(transaction, 'transactionFee')
|
|
1433
|
+
if feeCost is not None:
|
|
1434
|
+
fee['cost'] = feeCost
|
|
1435
|
+
fee['currency'] = code
|
|
1436
|
+
type = self.parse_transaction_type(self.safe_string(transaction, 'type'))
|
|
1437
|
+
return {
|
|
1438
|
+
'info': transaction,
|
|
1439
|
+
'id': id,
|
|
1440
|
+
'txid': txid,
|
|
1441
|
+
'timestamp': timestamp,
|
|
1442
|
+
'datetime': self.iso8601(timestamp),
|
|
1443
|
+
'network': None,
|
|
1444
|
+
'addressFrom': addressFrom,
|
|
1445
|
+
'addressTo': addressTo,
|
|
1446
|
+
'address': addressTo,
|
|
1447
|
+
'tagFrom': None,
|
|
1448
|
+
'tagTo': tagTo,
|
|
1449
|
+
'tag': tagTo,
|
|
1450
|
+
'type': type,
|
|
1451
|
+
'amount': amount,
|
|
1452
|
+
'currency': code,
|
|
1453
|
+
'status': status,
|
|
1454
|
+
'updated': None,
|
|
1455
|
+
'comment': None,
|
|
1456
|
+
'internal': None,
|
|
1457
|
+
'fee': fee,
|
|
1458
|
+
}
|
|
1459
|
+
|
|
1460
|
+
def parse_transaction_status(self, status: Str):
|
|
1461
|
+
statuses: dict = {
|
|
1462
|
+
'TRANSACTION_STATUS_CONFIRMED': 'ok',
|
|
1463
|
+
'TRANSACTION_STATUS_EXECUTED': 'ok',
|
|
1464
|
+
'TRANSACTION_STATUS_CANCELLED': 'canceled',
|
|
1465
|
+
}
|
|
1466
|
+
return self.safe_string(statuses, status, status)
|
|
1467
|
+
|
|
1468
|
+
def parse_transaction_type(self, type):
|
|
1469
|
+
types: dict = {
|
|
1470
|
+
'TRANSACTION_TYPE_DEPOSIT': 'deposit',
|
|
1471
|
+
'TRANSACTION_TYPE_WITHDRAWAL': 'withdrawal',
|
|
1472
|
+
}
|
|
1473
|
+
return self.safe_string(types, type, type)
|
|
1474
|
+
|
|
1475
|
+
def fetch_transfers(self, code: Str = None, since: Int = None, limit: Int = None, params={}) -> TransferEntries:
|
|
1476
|
+
"""
|
|
1477
|
+
fetch a history of internal transfers made on an account
|
|
1478
|
+
:see: https://api.latoken.com/doc/v2/#tag/Transfer/operation/getUsersTransfers
|
|
1479
|
+
:param str code: unified currency code of the currency transferred
|
|
1480
|
+
:param int [since]: the earliest time in ms to fetch transfers for
|
|
1481
|
+
:param int [limit]: the maximum number of transfers structures to retrieve
|
|
1482
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1483
|
+
:returns dict[]: a list of `transfer structures <https://docs.ccxt.com/#/?id=transfer-structure>`
|
|
1484
|
+
"""
|
|
1485
|
+
self.load_markets()
|
|
1486
|
+
currency = self.currency(code)
|
|
1487
|
+
response = self.privateGetAuthTransfer(params)
|
|
1488
|
+
#
|
|
1489
|
+
# {
|
|
1490
|
+
# "hasNext": True,
|
|
1491
|
+
# "content": [
|
|
1492
|
+
# {
|
|
1493
|
+
# "id": "ebd6312f-cb4f-45d1-9409-4b0b3027f21e",
|
|
1494
|
+
# "status": "TRANSFER_STATUS_COMPLETED",
|
|
1495
|
+
# "type": "TRANSFER_TYPE_WITHDRAW_SPOT",
|
|
1496
|
+
# "fromAccount": "c429c551-adbb-4078-b74b-276bea308a36",
|
|
1497
|
+
# "toAccount": "631c6203-bd62-4734-a04d-9b2a951f43b9",
|
|
1498
|
+
# "transferringFunds": 1259.0321785,
|
|
1499
|
+
# "usdValue": 1259.032179,
|
|
1500
|
+
# "rejectReason": null,
|
|
1501
|
+
# "timestamp": 1633515579530,
|
|
1502
|
+
# "direction": "INTERNAL",
|
|
1503
|
+
# "method": "TRANSFER_METHOD_UNKNOWN",
|
|
1504
|
+
# "recipient": null,
|
|
1505
|
+
# "sender": null,
|
|
1506
|
+
# "currency": "0c3a106d-bde3-4c13-a26e-3fd2394529e5",
|
|
1507
|
+
# "codeRequired": False,
|
|
1508
|
+
# "fromUser": "ce555f3f-585d-46fb-9ae6-487f66738073",
|
|
1509
|
+
# "toUser": "ce555f3f-585d-46fb-9ae6-487f66738073",
|
|
1510
|
+
# "fee": 0
|
|
1511
|
+
# },
|
|
1512
|
+
# ...
|
|
1513
|
+
# ],
|
|
1514
|
+
# "first": True,
|
|
1515
|
+
# "pageSize": 20,
|
|
1516
|
+
# "hasContent": True
|
|
1517
|
+
# }
|
|
1518
|
+
#
|
|
1519
|
+
transfers = self.safe_list(response, 'content', [])
|
|
1520
|
+
return self.parse_transfers(transfers, currency, since, limit)
|
|
1521
|
+
|
|
1522
|
+
def transfer(self, code: str, amount: float, fromAccount: str, toAccount: str, params={}) -> TransferEntry:
|
|
1523
|
+
"""
|
|
1524
|
+
transfer currency internally between wallets on the same account
|
|
1525
|
+
:see: https://api.latoken.com/doc/v2/#tag/Transfer/operation/transferByEmail
|
|
1526
|
+
:see: https://api.latoken.com/doc/v2/#tag/Transfer/operation/transferById
|
|
1527
|
+
:see: https://api.latoken.com/doc/v2/#tag/Transfer/operation/transferByPhone
|
|
1528
|
+
:param str code: unified currency code
|
|
1529
|
+
:param float amount: amount to transfer
|
|
1530
|
+
:param str fromAccount: account to transfer from
|
|
1531
|
+
:param str toAccount: account to transfer to
|
|
1532
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1533
|
+
:returns dict: a `transfer structure <https://docs.ccxt.com/#/?id=transfer-structure>`
|
|
1534
|
+
"""
|
|
1535
|
+
self.load_markets()
|
|
1536
|
+
currency = self.currency(code)
|
|
1537
|
+
request: dict = {
|
|
1538
|
+
'currency': currency['id'],
|
|
1539
|
+
'recipient': toAccount,
|
|
1540
|
+
'value': self.currency_to_precision(code, amount),
|
|
1541
|
+
}
|
|
1542
|
+
response = None
|
|
1543
|
+
if toAccount.find('@') >= 0:
|
|
1544
|
+
response = self.privatePostAuthTransferEmail(self.extend(request, params))
|
|
1545
|
+
elif len(toAccount) == 36:
|
|
1546
|
+
response = self.privatePostAuthTransferId(self.extend(request, params))
|
|
1547
|
+
else:
|
|
1548
|
+
response = self.privatePostAuthTransferPhone(self.extend(request, params))
|
|
1549
|
+
#
|
|
1550
|
+
# {
|
|
1551
|
+
# "id": "e6fc4ace-7750-44e4-b7e9-6af038ac7107",
|
|
1552
|
+
# "status": "TRANSFER_STATUS_COMPLETED",
|
|
1553
|
+
# "type": "TRANSFER_TYPE_DEPOSIT_SPOT",
|
|
1554
|
+
# "fromAccount": "3bf61015-bf32-47a6-b237-c9f70df772ad",
|
|
1555
|
+
# "toAccount": "355eb279-7c7e-4515-814a-575a49dc0325",
|
|
1556
|
+
# "transferringFunds": "500000.000000000000000000",
|
|
1557
|
+
# "usdValue": "0.000000000000000000",
|
|
1558
|
+
# "rejectReason": "",
|
|
1559
|
+
# "timestamp": 1576844438402,
|
|
1560
|
+
# "direction": "INTERNAL",
|
|
1561
|
+
# "method": "TRANSFER_METHOD_UNKNOWN",
|
|
1562
|
+
# "recipient": "",
|
|
1563
|
+
# "sender": "",
|
|
1564
|
+
# "currency": "40af7879-a8cc-4576-a42d-7d2749821b58",
|
|
1565
|
+
# "codeRequired": False,
|
|
1566
|
+
# "fromUser": "cd555555-666d-46fb-9ae6-487f66738073",
|
|
1567
|
+
# "toUser": "cd555555-666d-46fb-9ae6-487f66738073",
|
|
1568
|
+
# "fee": 0
|
|
1569
|
+
# }
|
|
1570
|
+
#
|
|
1571
|
+
return self.parse_transfer(response)
|
|
1572
|
+
|
|
1573
|
+
def parse_transfer(self, transfer: dict, currency: Currency = None) -> TransferEntry:
|
|
1574
|
+
#
|
|
1575
|
+
# {
|
|
1576
|
+
# "id": "e6fc4ace-7750-44e4-b7e9-6af038ac7107",
|
|
1577
|
+
# "status": "TRANSFER_STATUS_COMPLETED",
|
|
1578
|
+
# "type": "TRANSFER_TYPE_DEPOSIT_SPOT",
|
|
1579
|
+
# "fromAccount": "3bf61015-bf32-47a6-b237-c9f70df772ad",
|
|
1580
|
+
# "toAccount": "355eb279-7c7e-4515-814a-575a49dc0325",
|
|
1581
|
+
# "transferringFunds": "500000.000000000000000000",
|
|
1582
|
+
# "usdValue": "0.000000000000000000",
|
|
1583
|
+
# "rejectReason": "",
|
|
1584
|
+
# "timestamp": 1576844438402,
|
|
1585
|
+
# "direction": "INTERNAL",
|
|
1586
|
+
# "method": "TRANSFER_METHOD_UNKNOWN",
|
|
1587
|
+
# "recipient": "",
|
|
1588
|
+
# "sender": "",
|
|
1589
|
+
# "currency": "40af7879-a8cc-4576-a42d-7d2749821b58",
|
|
1590
|
+
# "codeRequired": False,
|
|
1591
|
+
# "fromUser": "cd555555-666d-46fb-9ae6-487f66738073",
|
|
1592
|
+
# "toUser": "cd555555-666d-46fb-9ae6-487f66738073",
|
|
1593
|
+
# "fee": 0
|
|
1594
|
+
# }
|
|
1595
|
+
#
|
|
1596
|
+
timestamp = self.safe_timestamp(transfer, 'timestamp')
|
|
1597
|
+
currencyId = self.safe_string(transfer, 'currency')
|
|
1598
|
+
status = self.safe_string(transfer, 'status')
|
|
1599
|
+
return {
|
|
1600
|
+
'info': transfer,
|
|
1601
|
+
'id': self.safe_string(transfer, 'id'),
|
|
1602
|
+
'timestamp': self.safe_integer(transfer, 'timestamp'),
|
|
1603
|
+
'datetime': self.iso8601(timestamp),
|
|
1604
|
+
'currency': self.safe_currency_code(currencyId, currency),
|
|
1605
|
+
'amount': self.safe_number(transfer, 'transferringFunds'),
|
|
1606
|
+
'fromAccount': self.safe_string(transfer, 'fromAccount'),
|
|
1607
|
+
'toAccount': self.safe_string(transfer, 'toAccount'),
|
|
1608
|
+
'status': self.parse_transfer_status(status),
|
|
1609
|
+
}
|
|
1610
|
+
|
|
1611
|
+
def parse_transfer_status(self, status: Str) -> Str:
|
|
1612
|
+
statuses: dict = {
|
|
1613
|
+
'TRANSFER_STATUS_COMPLETED': 'ok',
|
|
1614
|
+
'TRANSFER_STATUS_PENDING': 'pending',
|
|
1615
|
+
'TRANSFER_STATUS_REJECTED': 'failed',
|
|
1616
|
+
'TRANSFER_STATUS_UNVERIFIED': 'pending',
|
|
1617
|
+
'TRANSFER_STATUS_CANCELLED': 'canceled',
|
|
1618
|
+
}
|
|
1619
|
+
return self.safe_string(statuses, status, status)
|
|
1620
|
+
|
|
1621
|
+
def sign(self, path, api='public', method='GET', params=None, headers=None, body=None):
|
|
1622
|
+
request = '/' + self.version + '/' + self.implode_params(path, params)
|
|
1623
|
+
requestString = request
|
|
1624
|
+
query = self.omit(params, self.extract_params(path))
|
|
1625
|
+
urlencodedQuery = self.urlencode(query)
|
|
1626
|
+
if method == 'GET':
|
|
1627
|
+
if query:
|
|
1628
|
+
requestString += '?' + urlencodedQuery
|
|
1629
|
+
if api == 'private':
|
|
1630
|
+
self.check_required_credentials()
|
|
1631
|
+
auth = method + request + urlencodedQuery
|
|
1632
|
+
signature = self.hmac(self.encode(auth), self.encode(self.secret), hashlib.sha512)
|
|
1633
|
+
headers = {
|
|
1634
|
+
'X-LA-APIKEY': self.apiKey,
|
|
1635
|
+
'X-LA-SIGNATURE': signature,
|
|
1636
|
+
'X-LA-DIGEST': 'HMAC-SHA512', # HMAC-SHA384, HMAC-SHA512, optional
|
|
1637
|
+
}
|
|
1638
|
+
if method == 'POST':
|
|
1639
|
+
headers['Content-Type'] = 'application/json'
|
|
1640
|
+
body = self.json(query)
|
|
1641
|
+
url = self.urls['api']['rest'] + requestString
|
|
1642
|
+
return {'url': url, 'method': method, 'body': body, 'headers': headers}
|
|
1643
|
+
|
|
1644
|
+
def handle_errors(self, code: int, reason: str, url: str, method: str, headers: dict, body: str, response, requestHeaders, requestBody):
|
|
1645
|
+
if not response:
|
|
1646
|
+
return None
|
|
1647
|
+
#
|
|
1648
|
+
# {"result":false,"message":"invalid API key, signature or digest","error":"BAD_REQUEST","status":"FAILURE"}
|
|
1649
|
+
# {"result":false,"message":"request expired or bad <timeAlive>/<timestamp> format","error":"BAD_REQUEST","status":"FAILURE"}
|
|
1650
|
+
# {"message":"Internal Server Error","error":"INTERNAL_ERROR","status":"FAILURE"}
|
|
1651
|
+
# {"result":false,"message":"Internal error","error":"For input string: \"NaN\"","status":"FAILURE"}
|
|
1652
|
+
#
|
|
1653
|
+
message = self.safe_string(response, 'message')
|
|
1654
|
+
feedback = self.id + ' ' + body
|
|
1655
|
+
if message is not None:
|
|
1656
|
+
self.throw_exactly_matched_exception(self.exceptions['exact'], message, feedback)
|
|
1657
|
+
self.throw_broadly_matched_exception(self.exceptions['broad'], message, feedback)
|
|
1658
|
+
error = self.safe_value(response, 'error')
|
|
1659
|
+
errorMessage = self.safe_string(error, 'message')
|
|
1660
|
+
if (error is not None) or (errorMessage is not None):
|
|
1661
|
+
self.throw_exactly_matched_exception(self.exceptions['exact'], error, feedback)
|
|
1662
|
+
self.throw_broadly_matched_exception(self.exceptions['broad'], body, feedback)
|
|
1663
|
+
raise ExchangeError(feedback) # unknown message
|
|
1664
|
+
return None
|