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/coinbaseexchange.py
ADDED
|
@@ -0,0 +1,1734 @@
|
|
|
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.coinbaseexchange import ImplicitAPI
|
|
8
|
+
import hashlib
|
|
9
|
+
from ccxt.base.types import Account, Balances, Currencies, Currency, Int, Market, Num, Order, OrderBook, OrderSide, OrderType, Str, Strings, Ticker, Tickers, Trade, TradingFees, Transaction
|
|
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 ArgumentsRequired
|
|
15
|
+
from ccxt.base.errors import InsufficientFunds
|
|
16
|
+
from ccxt.base.errors import InvalidAddress
|
|
17
|
+
from ccxt.base.errors import InvalidOrder
|
|
18
|
+
from ccxt.base.errors import OrderNotFound
|
|
19
|
+
from ccxt.base.errors import RateLimitExceeded
|
|
20
|
+
from ccxt.base.errors import OnMaintenance
|
|
21
|
+
from ccxt.base.decimal_to_precision import TICK_SIZE
|
|
22
|
+
from ccxt.base.precise import Precise
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class coinbaseexchange(Exchange, ImplicitAPI):
|
|
26
|
+
|
|
27
|
+
def describe(self):
|
|
28
|
+
return self.deep_extend(super(coinbaseexchange, self).describe(), {
|
|
29
|
+
'id': 'coinbaseexchange',
|
|
30
|
+
'name': 'Coinbase Exchange',
|
|
31
|
+
'countries': ['US'],
|
|
32
|
+
'rateLimit': 100,
|
|
33
|
+
'userAgent': self.userAgents['chrome'],
|
|
34
|
+
'pro': True,
|
|
35
|
+
'has': {
|
|
36
|
+
'CORS': True,
|
|
37
|
+
'spot': True,
|
|
38
|
+
'margin': False,
|
|
39
|
+
'swap': False,
|
|
40
|
+
'future': False,
|
|
41
|
+
'option': False,
|
|
42
|
+
'cancelAllOrders': True,
|
|
43
|
+
'cancelOrder': True,
|
|
44
|
+
'createDepositAddress': True,
|
|
45
|
+
'createOrder': True,
|
|
46
|
+
'createStopLimitOrder': True,
|
|
47
|
+
'createStopMarketOrder': True,
|
|
48
|
+
'createStopOrder': True,
|
|
49
|
+
'fetchAccounts': True,
|
|
50
|
+
'fetchBalance': True,
|
|
51
|
+
'fetchClosedOrders': True,
|
|
52
|
+
'fetchCurrencies': True,
|
|
53
|
+
'fetchDepositAddress': False, # the exchange does not have self method, only createDepositAddress, see https://github.com/ccxt/ccxt/pull/7405
|
|
54
|
+
'fetchDeposits': True,
|
|
55
|
+
'fetchDepositsWithdrawals': True,
|
|
56
|
+
'fetchFundingRate': False,
|
|
57
|
+
'fetchLedger': True,
|
|
58
|
+
'fetchMarginMode': False,
|
|
59
|
+
'fetchMarkets': True,
|
|
60
|
+
'fetchMyTrades': True,
|
|
61
|
+
'fetchOHLCV': True,
|
|
62
|
+
'fetchOpenOrders': True,
|
|
63
|
+
'fetchOrder': True,
|
|
64
|
+
'fetchOrderBook': True,
|
|
65
|
+
'fetchOrders': True,
|
|
66
|
+
'fetchOrderTrades': True,
|
|
67
|
+
'fetchPosition': False,
|
|
68
|
+
'fetchPositionHistory': False,
|
|
69
|
+
'fetchPositionMode': False,
|
|
70
|
+
'fetchPositions': False,
|
|
71
|
+
'fetchPositionsForSymbol': False,
|
|
72
|
+
'fetchPositionsHistory': False,
|
|
73
|
+
'fetchPositionsRisk': False,
|
|
74
|
+
'fetchTicker': True,
|
|
75
|
+
'fetchTickers': True,
|
|
76
|
+
'fetchTime': True,
|
|
77
|
+
'fetchTrades': True,
|
|
78
|
+
'fetchTradingFee': False,
|
|
79
|
+
'fetchTradingFees': True,
|
|
80
|
+
'fetchTransactions': 'emulated',
|
|
81
|
+
'fetchWithdrawals': True,
|
|
82
|
+
'withdraw': True,
|
|
83
|
+
},
|
|
84
|
+
'timeframes': {
|
|
85
|
+
'1m': 60,
|
|
86
|
+
'5m': 300,
|
|
87
|
+
'15m': 900,
|
|
88
|
+
'1h': 3600,
|
|
89
|
+
'6h': 21600,
|
|
90
|
+
'1d': 86400,
|
|
91
|
+
},
|
|
92
|
+
'hostname': 'exchange.coinbase.com',
|
|
93
|
+
'urls': {
|
|
94
|
+
'test': {
|
|
95
|
+
'public': 'https://api-public.sandbox.exchange.coinbase.com',
|
|
96
|
+
'private': 'https://api-public.sandbox.exchange.coinbase.com',
|
|
97
|
+
},
|
|
98
|
+
'logo': 'https://github.com/ccxt/ccxt/assets/43336371/34a65553-88aa-4a38-a714-064bd228b97e',
|
|
99
|
+
'api': {
|
|
100
|
+
'public': 'https://api.{hostname}',
|
|
101
|
+
'private': 'https://api.{hostname}',
|
|
102
|
+
},
|
|
103
|
+
'www': 'https://coinbase.com/',
|
|
104
|
+
'doc': 'https://docs.cloud.coinbase.com/exchange/docs/',
|
|
105
|
+
'fees': [
|
|
106
|
+
'https://docs.pro.coinbase.com/#fees',
|
|
107
|
+
'https://support.pro.coinbase.com/customer/en/portal/articles/2945310-fees',
|
|
108
|
+
],
|
|
109
|
+
},
|
|
110
|
+
'requiredCredentials': {
|
|
111
|
+
'apiKey': True,
|
|
112
|
+
'secret': True,
|
|
113
|
+
'password': True,
|
|
114
|
+
},
|
|
115
|
+
'api': {
|
|
116
|
+
'public': {
|
|
117
|
+
'get': [
|
|
118
|
+
'currencies',
|
|
119
|
+
'products',
|
|
120
|
+
'products/{id}',
|
|
121
|
+
'products/{id}/book',
|
|
122
|
+
'products/{id}/candles',
|
|
123
|
+
'products/{id}/stats',
|
|
124
|
+
'products/{id}/ticker',
|
|
125
|
+
'products/{id}/trades',
|
|
126
|
+
'time',
|
|
127
|
+
'products/spark-lines', # experimental
|
|
128
|
+
],
|
|
129
|
+
},
|
|
130
|
+
'private': {
|
|
131
|
+
'get': [
|
|
132
|
+
'address-book',
|
|
133
|
+
'accounts',
|
|
134
|
+
'accounts/{id}',
|
|
135
|
+
'accounts/{id}/holds',
|
|
136
|
+
'accounts/{id}/ledger',
|
|
137
|
+
'accounts/{id}/transfers',
|
|
138
|
+
'coinbase-accounts',
|
|
139
|
+
'fills',
|
|
140
|
+
'funding',
|
|
141
|
+
'fees',
|
|
142
|
+
'margin/profile_information',
|
|
143
|
+
'margin/buying_power',
|
|
144
|
+
'margin/withdrawal_power',
|
|
145
|
+
'margin/withdrawal_power_all',
|
|
146
|
+
'margin/exit_plan',
|
|
147
|
+
'margin/liquidation_history',
|
|
148
|
+
'margin/position_refresh_amounts',
|
|
149
|
+
'margin/status',
|
|
150
|
+
'oracle',
|
|
151
|
+
'orders',
|
|
152
|
+
'orders/{id}',
|
|
153
|
+
'orders/client:{client_oid}',
|
|
154
|
+
'otc/orders',
|
|
155
|
+
'payment-methods',
|
|
156
|
+
'position',
|
|
157
|
+
'profiles',
|
|
158
|
+
'profiles/{id}',
|
|
159
|
+
'reports/{report_id}',
|
|
160
|
+
'transfers',
|
|
161
|
+
'transfers/{transfer_id}',
|
|
162
|
+
'users/self/exchange-limits',
|
|
163
|
+
'users/self/hold-balances',
|
|
164
|
+
'users/self/trailing-volume',
|
|
165
|
+
'withdrawals/fee-estimate',
|
|
166
|
+
'conversions/{conversion_id}',
|
|
167
|
+
'conversions/fees',
|
|
168
|
+
],
|
|
169
|
+
'post': [
|
|
170
|
+
'conversions',
|
|
171
|
+
'deposits/coinbase-account',
|
|
172
|
+
'deposits/payment-method',
|
|
173
|
+
'coinbase-accounts/{id}/addresses',
|
|
174
|
+
'funding/repay',
|
|
175
|
+
'orders',
|
|
176
|
+
'position/close',
|
|
177
|
+
'profiles/margin-transfer',
|
|
178
|
+
'profiles/transfer',
|
|
179
|
+
'reports',
|
|
180
|
+
'withdrawals/coinbase',
|
|
181
|
+
'withdrawals/coinbase-account',
|
|
182
|
+
'withdrawals/crypto',
|
|
183
|
+
'withdrawals/payment-method',
|
|
184
|
+
],
|
|
185
|
+
'delete': [
|
|
186
|
+
'orders',
|
|
187
|
+
'orders/client:{client_oid}',
|
|
188
|
+
'orders/{id}',
|
|
189
|
+
],
|
|
190
|
+
},
|
|
191
|
+
},
|
|
192
|
+
'commonCurrencies': {
|
|
193
|
+
'CGLD': 'CELO',
|
|
194
|
+
},
|
|
195
|
+
'precisionMode': TICK_SIZE,
|
|
196
|
+
'fees': {
|
|
197
|
+
'trading': {
|
|
198
|
+
'tierBased': True, # complicated tier system per coin
|
|
199
|
+
'percentage': True,
|
|
200
|
+
'maker': self.parse_number('0.004'), # highest fee of all tiers
|
|
201
|
+
'taker': self.parse_number('0.006'), # highest fee of all tiers
|
|
202
|
+
},
|
|
203
|
+
'funding': {
|
|
204
|
+
'tierBased': False,
|
|
205
|
+
'percentage': False,
|
|
206
|
+
'withdraw': {
|
|
207
|
+
'BCH': 0,
|
|
208
|
+
'BTC': 0,
|
|
209
|
+
'LTC': 0,
|
|
210
|
+
'ETH': 0,
|
|
211
|
+
'EUR': 0.15,
|
|
212
|
+
'USD': 25,
|
|
213
|
+
},
|
|
214
|
+
'deposit': {
|
|
215
|
+
'BCH': 0,
|
|
216
|
+
'BTC': 0,
|
|
217
|
+
'LTC': 0,
|
|
218
|
+
'ETH': 0,
|
|
219
|
+
'EUR': 0.15,
|
|
220
|
+
'USD': 10,
|
|
221
|
+
},
|
|
222
|
+
},
|
|
223
|
+
},
|
|
224
|
+
'exceptions': {
|
|
225
|
+
'exact': {
|
|
226
|
+
'Insufficient funds': InsufficientFunds,
|
|
227
|
+
'NotFound': OrderNotFound,
|
|
228
|
+
'Invalid API Key': AuthenticationError,
|
|
229
|
+
'invalid signature': AuthenticationError,
|
|
230
|
+
'Invalid Passphrase': AuthenticationError,
|
|
231
|
+
'Invalid order id': InvalidOrder,
|
|
232
|
+
'Private rate limit exceeded': RateLimitExceeded,
|
|
233
|
+
'Trading pair not available': PermissionDenied,
|
|
234
|
+
'Product not found': InvalidOrder,
|
|
235
|
+
},
|
|
236
|
+
'broad': {
|
|
237
|
+
'Order already done': OrderNotFound,
|
|
238
|
+
'order not found': OrderNotFound,
|
|
239
|
+
'price too small': InvalidOrder,
|
|
240
|
+
'price too precise': InvalidOrder,
|
|
241
|
+
'under maintenance': OnMaintenance,
|
|
242
|
+
'size is too small': InvalidOrder,
|
|
243
|
+
'Cancel only mode': OnMaintenance, # https://github.com/ccxt/ccxt/issues/7690
|
|
244
|
+
},
|
|
245
|
+
},
|
|
246
|
+
})
|
|
247
|
+
|
|
248
|
+
def fetch_currencies(self, params={}) -> Currencies:
|
|
249
|
+
"""
|
|
250
|
+
fetches all available currencies on an exchange
|
|
251
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_getcurrencies
|
|
252
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
253
|
+
:returns dict: an associative dictionary of currencies
|
|
254
|
+
"""
|
|
255
|
+
response = self.publicGetCurrencies(params)
|
|
256
|
+
#
|
|
257
|
+
# [
|
|
258
|
+
# {
|
|
259
|
+
# "id": "XTZ",
|
|
260
|
+
# "name": "Tezos",
|
|
261
|
+
# "min_size": "0.000001",
|
|
262
|
+
# "status": "online",
|
|
263
|
+
# "message": '',
|
|
264
|
+
# "max_precision": "0.000001",
|
|
265
|
+
# "convertible_to": [],
|
|
266
|
+
# "details": {
|
|
267
|
+
# "type": "crypto",
|
|
268
|
+
# "symbol": "Τ",
|
|
269
|
+
# "network_confirmations": 60,
|
|
270
|
+
# "sort_order": 53,
|
|
271
|
+
# "crypto_address_link": "https://tzstats.com/{{address}}",
|
|
272
|
+
# "crypto_transaction_link": "https://tzstats.com/{{txId}}",
|
|
273
|
+
# "push_payment_methods": ["crypto"],
|
|
274
|
+
# "group_types": [],
|
|
275
|
+
# "display_name": '',
|
|
276
|
+
# "processing_time_seconds": 0,
|
|
277
|
+
# "min_withdrawal_amount": 1
|
|
278
|
+
# }
|
|
279
|
+
# }
|
|
280
|
+
# ]
|
|
281
|
+
#
|
|
282
|
+
result: dict = {}
|
|
283
|
+
for i in range(0, len(response)):
|
|
284
|
+
currency = response[i]
|
|
285
|
+
id = self.safe_string(currency, 'id')
|
|
286
|
+
name = self.safe_string(currency, 'name')
|
|
287
|
+
code = self.safe_currency_code(id)
|
|
288
|
+
details = self.safe_value(currency, 'details', {})
|
|
289
|
+
status = self.safe_string(currency, 'status')
|
|
290
|
+
active = (status == 'online')
|
|
291
|
+
result[code] = {
|
|
292
|
+
'id': id,
|
|
293
|
+
'code': code,
|
|
294
|
+
'info': currency,
|
|
295
|
+
'type': self.safe_string(details, 'type'),
|
|
296
|
+
'name': name,
|
|
297
|
+
'active': active,
|
|
298
|
+
'deposit': None,
|
|
299
|
+
'withdraw': None,
|
|
300
|
+
'fee': None,
|
|
301
|
+
'precision': self.safe_number(currency, 'max_precision'),
|
|
302
|
+
'limits': {
|
|
303
|
+
'amount': {
|
|
304
|
+
'min': self.safe_number(details, 'min_size'),
|
|
305
|
+
'max': None,
|
|
306
|
+
},
|
|
307
|
+
'withdraw': {
|
|
308
|
+
'min': self.safe_number(details, 'min_withdrawal_amount'),
|
|
309
|
+
'max': None,
|
|
310
|
+
},
|
|
311
|
+
},
|
|
312
|
+
'networks': {},
|
|
313
|
+
}
|
|
314
|
+
return result
|
|
315
|
+
|
|
316
|
+
def fetch_markets(self, params={}) -> List[Market]:
|
|
317
|
+
"""
|
|
318
|
+
retrieves data on all markets for coinbaseexchange
|
|
319
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_getproducts
|
|
320
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
321
|
+
:returns dict[]: an array of objects representing market data
|
|
322
|
+
"""
|
|
323
|
+
response = self.publicGetProducts(params)
|
|
324
|
+
#
|
|
325
|
+
# [
|
|
326
|
+
# {
|
|
327
|
+
# "id": "BTCAUCTION-USD",
|
|
328
|
+
# "base_currency": "BTC",
|
|
329
|
+
# "quote_currency": "USD",
|
|
330
|
+
# "base_min_size": "0.000016",
|
|
331
|
+
# "base_max_size": "1500",
|
|
332
|
+
# "quote_increment": "0.01",
|
|
333
|
+
# "base_increment": "0.00000001",
|
|
334
|
+
# "display_name": "BTCAUCTION/USD",
|
|
335
|
+
# "min_market_funds": "1",
|
|
336
|
+
# "max_market_funds": "20000000",
|
|
337
|
+
# "margin_enabled": False,
|
|
338
|
+
# "fx_stablecoin": False,
|
|
339
|
+
# "max_slippage_percentage": "0.02000000",
|
|
340
|
+
# "post_only": False,
|
|
341
|
+
# "limit_only": False,
|
|
342
|
+
# "cancel_only": True,
|
|
343
|
+
# "trading_disabled": False,
|
|
344
|
+
# "status": "online",
|
|
345
|
+
# "status_message": '',
|
|
346
|
+
# "auction_mode": False
|
|
347
|
+
# },
|
|
348
|
+
# {
|
|
349
|
+
# "id": "BTC-USD",
|
|
350
|
+
# "base_currency": "BTC",
|
|
351
|
+
# "quote_currency": "USD",
|
|
352
|
+
# "base_min_size": "0.000016",
|
|
353
|
+
# "base_max_size": "1500",
|
|
354
|
+
# "quote_increment": "0.01",
|
|
355
|
+
# "base_increment": "0.00000001",
|
|
356
|
+
# "display_name": "BTC/USD",
|
|
357
|
+
# "min_market_funds": "1",
|
|
358
|
+
# "max_market_funds": "20000000",
|
|
359
|
+
# "margin_enabled": False,
|
|
360
|
+
# "fx_stablecoin": False,
|
|
361
|
+
# "max_slippage_percentage": "0.02000000",
|
|
362
|
+
# "post_only": False,
|
|
363
|
+
# "limit_only": False,
|
|
364
|
+
# "cancel_only": False,
|
|
365
|
+
# "trading_disabled": False,
|
|
366
|
+
# "status": "online",
|
|
367
|
+
# "status_message": '',
|
|
368
|
+
# "auction_mode": False
|
|
369
|
+
# }
|
|
370
|
+
# ]
|
|
371
|
+
#
|
|
372
|
+
result = []
|
|
373
|
+
for i in range(0, len(response)):
|
|
374
|
+
market = response[i]
|
|
375
|
+
id = self.safe_string(market, 'id')
|
|
376
|
+
baseId, quoteId = id.split('-')
|
|
377
|
+
# BTCAUCTION-USD vs BTC-USD conflict workaround, see the output sample above
|
|
378
|
+
# baseId = self.safe_string(market, 'base_currency')
|
|
379
|
+
# quoteId = self.safe_string(market, 'quote_currency')
|
|
380
|
+
base = self.safe_currency_code(baseId)
|
|
381
|
+
quote = self.safe_currency_code(quoteId)
|
|
382
|
+
status = self.safe_string(market, 'status')
|
|
383
|
+
result.append(self.extend(self.fees['trading'], {
|
|
384
|
+
'id': id,
|
|
385
|
+
'symbol': base + '/' + quote,
|
|
386
|
+
'base': base,
|
|
387
|
+
'quote': quote,
|
|
388
|
+
'settle': None,
|
|
389
|
+
'baseId': baseId,
|
|
390
|
+
'quoteId': quoteId,
|
|
391
|
+
'settleId': None,
|
|
392
|
+
'type': 'spot',
|
|
393
|
+
'spot': True,
|
|
394
|
+
'margin': self.safe_value(market, 'margin_enabled'),
|
|
395
|
+
'swap': False,
|
|
396
|
+
'future': False,
|
|
397
|
+
'option': False,
|
|
398
|
+
'active': (status == 'online'),
|
|
399
|
+
'contract': False,
|
|
400
|
+
'linear': None,
|
|
401
|
+
'inverse': None,
|
|
402
|
+
'contractSize': None,
|
|
403
|
+
'expiry': None,
|
|
404
|
+
'expiryDatetime': None,
|
|
405
|
+
'strike': None,
|
|
406
|
+
'optionType': None,
|
|
407
|
+
'precision': {
|
|
408
|
+
'amount': self.safe_number(market, 'base_increment'),
|
|
409
|
+
'price': self.safe_number(market, 'quote_increment'),
|
|
410
|
+
},
|
|
411
|
+
'limits': {
|
|
412
|
+
'leverage': {
|
|
413
|
+
'min': None,
|
|
414
|
+
'max': None,
|
|
415
|
+
},
|
|
416
|
+
'amount': {
|
|
417
|
+
'min': None,
|
|
418
|
+
'max': None,
|
|
419
|
+
},
|
|
420
|
+
'price': {
|
|
421
|
+
'min': None,
|
|
422
|
+
'max': None,
|
|
423
|
+
},
|
|
424
|
+
'cost': {
|
|
425
|
+
'min': self.safe_number(market, 'min_market_funds'),
|
|
426
|
+
'max': None,
|
|
427
|
+
},
|
|
428
|
+
},
|
|
429
|
+
'created': None,
|
|
430
|
+
'info': market,
|
|
431
|
+
}))
|
|
432
|
+
return result
|
|
433
|
+
|
|
434
|
+
def fetch_accounts(self, params={}) -> List[Account]:
|
|
435
|
+
"""
|
|
436
|
+
fetch all the accounts associated with a profile
|
|
437
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_getaccounts
|
|
438
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
439
|
+
:returns dict: a dictionary of `account structures <https://docs.ccxt.com/#/?id=account-structure>` indexed by the account type
|
|
440
|
+
"""
|
|
441
|
+
self.load_markets()
|
|
442
|
+
response = self.privateGetAccounts(params)
|
|
443
|
+
#
|
|
444
|
+
# [
|
|
445
|
+
# {
|
|
446
|
+
# "id": "4aac9c60-cbda-4396-9da4-4aa71e95fba0",
|
|
447
|
+
# "currency": "BTC",
|
|
448
|
+
# "balance": "0.0000000000000000",
|
|
449
|
+
# "available": "0",
|
|
450
|
+
# "hold": "0.0000000000000000",
|
|
451
|
+
# "profile_id": "b709263e-f42a-4c7d-949a-a95c83d065da"
|
|
452
|
+
# },
|
|
453
|
+
# {
|
|
454
|
+
# "id": "f75fa69a-1ad1-4a80-bd61-ee7faa6135a3",
|
|
455
|
+
# "currency": "USDC",
|
|
456
|
+
# "balance": "0.0000000000000000",
|
|
457
|
+
# "available": "0",
|
|
458
|
+
# "hold": "0.0000000000000000",
|
|
459
|
+
# "profile_id": "b709263e-f42a-4c7d-949a-a95c83d065da"
|
|
460
|
+
# },
|
|
461
|
+
# ]
|
|
462
|
+
#
|
|
463
|
+
return self.parse_accounts(response, params)
|
|
464
|
+
|
|
465
|
+
def parse_account(self, account):
|
|
466
|
+
#
|
|
467
|
+
# {
|
|
468
|
+
# "id": "4aac9c60-cbda-4396-9da4-4aa71e95fba0",
|
|
469
|
+
# "currency": "BTC",
|
|
470
|
+
# "balance": "0.0000000000000000",
|
|
471
|
+
# "available": "0",
|
|
472
|
+
# "hold": "0.0000000000000000",
|
|
473
|
+
# "profile_id": "b709263e-f42a-4c7d-949a-a95c83d065da"
|
|
474
|
+
# }
|
|
475
|
+
#
|
|
476
|
+
currencyId = self.safe_string(account, 'currency')
|
|
477
|
+
return {
|
|
478
|
+
'id': self.safe_string(account, 'id'),
|
|
479
|
+
'type': None,
|
|
480
|
+
'code': self.safe_currency_code(currencyId),
|
|
481
|
+
'info': account,
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
def parse_balance(self, response) -> Balances:
|
|
485
|
+
result: dict = {'info': response}
|
|
486
|
+
for i in range(0, len(response)):
|
|
487
|
+
balance = response[i]
|
|
488
|
+
currencyId = self.safe_string(balance, 'currency')
|
|
489
|
+
code = self.safe_currency_code(currencyId)
|
|
490
|
+
account = self.account()
|
|
491
|
+
account['free'] = self.safe_string(balance, 'available')
|
|
492
|
+
account['used'] = self.safe_string(balance, 'hold')
|
|
493
|
+
account['total'] = self.safe_string(balance, 'balance')
|
|
494
|
+
result[code] = account
|
|
495
|
+
return self.safe_balance(result)
|
|
496
|
+
|
|
497
|
+
def fetch_balance(self, params={}) -> Balances:
|
|
498
|
+
"""
|
|
499
|
+
query for balance and get the amount of funds available for trading or funds locked in orders
|
|
500
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_getaccounts
|
|
501
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
502
|
+
:returns dict: a `balance structure <https://docs.ccxt.com/#/?id=balance-structure>`
|
|
503
|
+
"""
|
|
504
|
+
self.load_markets()
|
|
505
|
+
response = self.privateGetAccounts(params)
|
|
506
|
+
return self.parse_balance(response)
|
|
507
|
+
|
|
508
|
+
def fetch_order_book(self, symbol: str, limit: Int = None, params={}) -> OrderBook:
|
|
509
|
+
"""
|
|
510
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_getproductbook
|
|
511
|
+
fetches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
|
|
512
|
+
:param str symbol: unified symbol of the market to fetch the order book for
|
|
513
|
+
:param int [limit]: the maximum amount of order book entries to return
|
|
514
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
515
|
+
:returns dict: A dictionary of `order book structures <https://docs.ccxt.com/#/?id=order-book-structure>` indexed by market symbols
|
|
516
|
+
"""
|
|
517
|
+
self.load_markets()
|
|
518
|
+
# level 1 - only the best bid and ask
|
|
519
|
+
# level 2 - top 50 bids and asks(aggregated)
|
|
520
|
+
# level 3 - full order book(non aggregated)
|
|
521
|
+
request: dict = {
|
|
522
|
+
'id': self.market_id(symbol),
|
|
523
|
+
'level': 2, # 1 best bidask, 2 aggregated, 3 full
|
|
524
|
+
}
|
|
525
|
+
response = self.publicGetProductsIdBook(self.extend(request, params))
|
|
526
|
+
#
|
|
527
|
+
# {
|
|
528
|
+
# "sequence":1924393896,
|
|
529
|
+
# "bids":[
|
|
530
|
+
# ["0.01825","24.34811287",2],
|
|
531
|
+
# ["0.01824","72.5463",3],
|
|
532
|
+
# ["0.01823","424.54298049",6],
|
|
533
|
+
# ],
|
|
534
|
+
# "asks":[
|
|
535
|
+
# ["0.01826","171.10414904",4],
|
|
536
|
+
# ["0.01827","22.60427028",1],
|
|
537
|
+
# ["0.01828","397.46018784",7],
|
|
538
|
+
# ]
|
|
539
|
+
# }
|
|
540
|
+
#
|
|
541
|
+
orderbook = self.parse_order_book(response, symbol)
|
|
542
|
+
orderbook['nonce'] = self.safe_integer(response, 'sequence')
|
|
543
|
+
return orderbook
|
|
544
|
+
|
|
545
|
+
def parse_ticker(self, ticker: dict, market: Market = None) -> Ticker:
|
|
546
|
+
#
|
|
547
|
+
# fetchTickers
|
|
548
|
+
#
|
|
549
|
+
# [
|
|
550
|
+
# 1639472400, # timestamp
|
|
551
|
+
# 4.26, # low
|
|
552
|
+
# 4.38, # high
|
|
553
|
+
# 4.35, # open
|
|
554
|
+
# 4.27 # close
|
|
555
|
+
# ]
|
|
556
|
+
#
|
|
557
|
+
# fetchTicker
|
|
558
|
+
#
|
|
559
|
+
# publicGetProductsIdTicker
|
|
560
|
+
#
|
|
561
|
+
# {
|
|
562
|
+
# "trade_id":843439,
|
|
563
|
+
# "price":"0.997999",
|
|
564
|
+
# "size":"80.29769",
|
|
565
|
+
# "time":"2020-01-28T02:13:33.012523Z",
|
|
566
|
+
# "bid":"0.997094",
|
|
567
|
+
# "ask":"0.998",
|
|
568
|
+
# "volume":"1903188.03750000"
|
|
569
|
+
# }
|
|
570
|
+
#
|
|
571
|
+
# publicGetProductsIdStats
|
|
572
|
+
#
|
|
573
|
+
# {
|
|
574
|
+
# "open": "34.19000000",
|
|
575
|
+
# "high": "95.70000000",
|
|
576
|
+
# "low": "7.06000000",
|
|
577
|
+
# "volume": "2.41000000"
|
|
578
|
+
# }
|
|
579
|
+
#
|
|
580
|
+
timestamp = None
|
|
581
|
+
bid = None
|
|
582
|
+
ask = None
|
|
583
|
+
last = None
|
|
584
|
+
high = None
|
|
585
|
+
low = None
|
|
586
|
+
open = None
|
|
587
|
+
volume = None
|
|
588
|
+
symbol = None if (market is None) else market['symbol']
|
|
589
|
+
if isinstance(ticker, list):
|
|
590
|
+
last = self.safe_string(ticker, 4)
|
|
591
|
+
timestamp = self.milliseconds()
|
|
592
|
+
else:
|
|
593
|
+
timestamp = self.parse8601(self.safe_value(ticker, 'time'))
|
|
594
|
+
bid = self.safe_string(ticker, 'bid')
|
|
595
|
+
ask = self.safe_string(ticker, 'ask')
|
|
596
|
+
high = self.safe_string(ticker, 'high')
|
|
597
|
+
low = self.safe_string(ticker, 'low')
|
|
598
|
+
open = self.safe_string(ticker, 'open')
|
|
599
|
+
last = self.safe_string_2(ticker, 'price', 'last')
|
|
600
|
+
volume = self.safe_string(ticker, 'volume')
|
|
601
|
+
return self.safe_ticker({
|
|
602
|
+
'symbol': symbol,
|
|
603
|
+
'timestamp': timestamp,
|
|
604
|
+
'datetime': self.iso8601(timestamp),
|
|
605
|
+
'high': high,
|
|
606
|
+
'low': low,
|
|
607
|
+
'bid': bid,
|
|
608
|
+
'bidVolume': None,
|
|
609
|
+
'ask': ask,
|
|
610
|
+
'askVolume': None,
|
|
611
|
+
'vwap': None,
|
|
612
|
+
'open': open,
|
|
613
|
+
'close': last,
|
|
614
|
+
'last': last,
|
|
615
|
+
'previousClose': None,
|
|
616
|
+
'change': None,
|
|
617
|
+
'percentage': None,
|
|
618
|
+
'average': None,
|
|
619
|
+
'baseVolume': volume,
|
|
620
|
+
'quoteVolume': None,
|
|
621
|
+
'info': ticker,
|
|
622
|
+
}, market)
|
|
623
|
+
|
|
624
|
+
def fetch_tickers(self, symbols: Strings = None, params={}) -> Tickers:
|
|
625
|
+
"""
|
|
626
|
+
fetches price tickers for multiple markets, statistical information calculated over the past 24 hours for each market
|
|
627
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_getproduct
|
|
628
|
+
:param str[]|None symbols: unified symbols of the markets to fetch the ticker for, all market tickers are returned if not assigned
|
|
629
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
630
|
+
:returns dict: a dictionary of `ticker structures <https://docs.ccxt.com/#/?id=ticker-structure>`
|
|
631
|
+
"""
|
|
632
|
+
self.load_markets()
|
|
633
|
+
symbols = self.market_symbols(symbols)
|
|
634
|
+
request: dict = {}
|
|
635
|
+
response = self.publicGetProductsSparkLines(self.extend(request, params))
|
|
636
|
+
#
|
|
637
|
+
# {
|
|
638
|
+
# YYY-USD: [
|
|
639
|
+
# [
|
|
640
|
+
# 1639472400, # timestamp
|
|
641
|
+
# 4.26, # low
|
|
642
|
+
# 4.38, # high
|
|
643
|
+
# 4.35, # open
|
|
644
|
+
# 4.27 # close
|
|
645
|
+
# ],
|
|
646
|
+
# [
|
|
647
|
+
# 1639468800,
|
|
648
|
+
# 4.31,
|
|
649
|
+
# 4.45,
|
|
650
|
+
# 4.35,
|
|
651
|
+
# 4.35
|
|
652
|
+
# ],
|
|
653
|
+
# ]
|
|
654
|
+
# }
|
|
655
|
+
#
|
|
656
|
+
result: dict = {}
|
|
657
|
+
marketIds = list(response.keys())
|
|
658
|
+
delimiter = '-'
|
|
659
|
+
for i in range(0, len(marketIds)):
|
|
660
|
+
marketId = marketIds[i]
|
|
661
|
+
entry = self.safe_value(response, marketId, [])
|
|
662
|
+
first = self.safe_value(entry, 0, [])
|
|
663
|
+
market = self.safe_market(marketId, None, delimiter)
|
|
664
|
+
symbol = market['symbol']
|
|
665
|
+
result[symbol] = self.parse_ticker(first, market)
|
|
666
|
+
return self.filter_by_array_tickers(result, 'symbol', symbols)
|
|
667
|
+
|
|
668
|
+
def fetch_ticker(self, symbol: str, params={}) -> Ticker:
|
|
669
|
+
"""
|
|
670
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_getproductticker
|
|
671
|
+
fetches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
|
|
672
|
+
:param str symbol: unified symbol of the market to fetch the ticker for
|
|
673
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
674
|
+
:returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
|
|
675
|
+
"""
|
|
676
|
+
self.load_markets()
|
|
677
|
+
market = self.market(symbol)
|
|
678
|
+
request: dict = {
|
|
679
|
+
'id': market['id'],
|
|
680
|
+
}
|
|
681
|
+
# publicGetProductsIdTicker or publicGetProductsIdStats
|
|
682
|
+
method = self.safe_string(self.options, 'fetchTickerMethod', 'publicGetProductsIdTicker')
|
|
683
|
+
response = getattr(self, method)(self.extend(request, params))
|
|
684
|
+
#
|
|
685
|
+
# publicGetProductsIdTicker
|
|
686
|
+
#
|
|
687
|
+
# {
|
|
688
|
+
# "trade_id":843439,
|
|
689
|
+
# "price":"0.997999",
|
|
690
|
+
# "size":"80.29769",
|
|
691
|
+
# "time":"2020-01-28T02:13:33.012523Z",
|
|
692
|
+
# "bid":"0.997094",
|
|
693
|
+
# "ask":"0.998",
|
|
694
|
+
# "volume":"1903188.03750000"
|
|
695
|
+
# }
|
|
696
|
+
#
|
|
697
|
+
# publicGetProductsIdStats
|
|
698
|
+
#
|
|
699
|
+
# {
|
|
700
|
+
# "open": "34.19000000",
|
|
701
|
+
# "high": "95.70000000",
|
|
702
|
+
# "low": "7.06000000",
|
|
703
|
+
# "volume": "2.41000000"
|
|
704
|
+
# }
|
|
705
|
+
#
|
|
706
|
+
return self.parse_ticker(response, market)
|
|
707
|
+
|
|
708
|
+
def parse_trade(self, trade: dict, market: Market = None) -> Trade:
|
|
709
|
+
#
|
|
710
|
+
# {
|
|
711
|
+
# "type": "match",
|
|
712
|
+
# "trade_id": 82047307,
|
|
713
|
+
# "maker_order_id": "0f358725-2134-435e-be11-753912a326e0",
|
|
714
|
+
# "taker_order_id": "252b7002-87a3-425c-ac73-f5b9e23f3caf",
|
|
715
|
+
# "order_id": "d50ec984-77a8-460a-b958-66f114b0de9b",
|
|
716
|
+
# "side": "sell",
|
|
717
|
+
# "size": "0.00513192",
|
|
718
|
+
# "price": "9314.78",
|
|
719
|
+
# "product_id": "BTC-USD",
|
|
720
|
+
# "profile_id": "6244401d-c078-40d9-b305-7ad3551bc3b0",
|
|
721
|
+
# "sequence": 12038915443,
|
|
722
|
+
# "time": "2020-01-31T20:03:41.158814Z"
|
|
723
|
+
# "created_at": "2014-11-07T22:19:28.578544Z",
|
|
724
|
+
# "liquidity": "T",
|
|
725
|
+
# "fee": "0.00025",
|
|
726
|
+
# "settled": True,
|
|
727
|
+
# "usd_volume": "0.0924556000000000",
|
|
728
|
+
# "user_id": "595eb864313c2b02ddf2937d"
|
|
729
|
+
# }
|
|
730
|
+
#
|
|
731
|
+
timestamp = self.parse8601(self.safe_string_2(trade, 'time', 'created_at'))
|
|
732
|
+
marketId = self.safe_string(trade, 'product_id')
|
|
733
|
+
market = self.safe_market(marketId, market, '-')
|
|
734
|
+
feeRate = None
|
|
735
|
+
takerOrMaker = None
|
|
736
|
+
cost = None
|
|
737
|
+
feeCurrencyId = self.safe_string_lower(market, 'quoteId')
|
|
738
|
+
if feeCurrencyId is not None:
|
|
739
|
+
costField = feeCurrencyId + '_value'
|
|
740
|
+
cost = self.safe_string(trade, costField)
|
|
741
|
+
liquidity = self.safe_string(trade, 'liquidity')
|
|
742
|
+
if liquidity is not None:
|
|
743
|
+
takerOrMaker = 'taker' if (liquidity == 'T') else 'maker'
|
|
744
|
+
feeRate = self.safe_string(market, takerOrMaker)
|
|
745
|
+
feeCost = self.safe_string_2(trade, 'fill_fees', 'fee')
|
|
746
|
+
fee = {
|
|
747
|
+
'cost': feeCost,
|
|
748
|
+
'currency': market['quote'],
|
|
749
|
+
'rate': feeRate,
|
|
750
|
+
}
|
|
751
|
+
id = self.safe_string(trade, 'trade_id')
|
|
752
|
+
side = 'sell' if (trade['side'] == 'buy') else 'buy'
|
|
753
|
+
orderId = self.safe_string(trade, 'order_id')
|
|
754
|
+
# Coinbase Pro returns inverted side to fetchMyTrades vs fetchTrades
|
|
755
|
+
makerOrderId = self.safe_string(trade, 'maker_order_id')
|
|
756
|
+
takerOrderId = self.safe_string(trade, 'taker_order_id')
|
|
757
|
+
if (orderId is not None) or ((makerOrderId is not None) and (takerOrderId is not None)):
|
|
758
|
+
side = 'buy' if (trade['side'] == 'buy') else 'sell'
|
|
759
|
+
price = self.safe_string(trade, 'price')
|
|
760
|
+
amount = self.safe_string(trade, 'size')
|
|
761
|
+
return self.safe_trade({
|
|
762
|
+
'id': id,
|
|
763
|
+
'order': orderId,
|
|
764
|
+
'info': trade,
|
|
765
|
+
'timestamp': timestamp,
|
|
766
|
+
'datetime': self.iso8601(timestamp),
|
|
767
|
+
'symbol': market['symbol'],
|
|
768
|
+
'type': None,
|
|
769
|
+
'takerOrMaker': takerOrMaker,
|
|
770
|
+
'side': side,
|
|
771
|
+
'price': price,
|
|
772
|
+
'amount': amount,
|
|
773
|
+
'fee': fee,
|
|
774
|
+
'cost': cost,
|
|
775
|
+
}, market)
|
|
776
|
+
|
|
777
|
+
def fetch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}):
|
|
778
|
+
"""
|
|
779
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_getfills
|
|
780
|
+
fetch all trades made by the user
|
|
781
|
+
:param str symbol: unified market symbol
|
|
782
|
+
:param int [since]: the earliest time in ms to fetch trades for
|
|
783
|
+
:param int [limit]: the maximum number of trades structures to retrieve
|
|
784
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
785
|
+
:param int [params.until]: the latest time in ms to fetch trades for
|
|
786
|
+
:param boolean [params.paginate]: default False, when True will automatically paginate by calling self endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
787
|
+
:returns Trade[]: a list of `trade structures <https://docs.ccxt.com/#/?id=trade-structure>`
|
|
788
|
+
"""
|
|
789
|
+
if symbol is None:
|
|
790
|
+
raise ArgumentsRequired(self.id + ' fetchMyTrades() requires a symbol argument')
|
|
791
|
+
paginate = False
|
|
792
|
+
paginate, params = self.handle_option_and_params(params, 'fetchMyTrades', 'paginate')
|
|
793
|
+
if paginate:
|
|
794
|
+
return self.fetch_paginated_call_dynamic('fetchMyTrades', symbol, since, limit, params, 100)
|
|
795
|
+
self.load_markets()
|
|
796
|
+
market = self.market(symbol)
|
|
797
|
+
request: dict = {
|
|
798
|
+
'product_id': market['id'],
|
|
799
|
+
}
|
|
800
|
+
if limit is not None:
|
|
801
|
+
request['limit'] = limit
|
|
802
|
+
if since is not None:
|
|
803
|
+
request['start_date'] = self.iso8601(since)
|
|
804
|
+
until = self.safe_value_2(params, 'until', 'end_date')
|
|
805
|
+
if until is not None:
|
|
806
|
+
params = self.omit(params, ['until'])
|
|
807
|
+
request['end_date'] = self.iso8601(until)
|
|
808
|
+
response = self.privateGetFills(self.extend(request, params))
|
|
809
|
+
return self.parse_trades(response, market, since, limit)
|
|
810
|
+
|
|
811
|
+
def fetch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
|
|
812
|
+
"""
|
|
813
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_getproducttrades
|
|
814
|
+
get the list of most recent trades for a particular symbol
|
|
815
|
+
:param str symbol: unified symbol of the market to fetch trades for
|
|
816
|
+
:param int [since]: timestamp in ms of the earliest trade to fetch
|
|
817
|
+
:param int [limit]: the maximum amount of trades to fetch
|
|
818
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
819
|
+
:returns Trade[]: a list of `trade structures <https://docs.ccxt.com/#/?id=public-trades>`
|
|
820
|
+
"""
|
|
821
|
+
self.load_markets()
|
|
822
|
+
market = self.market(symbol)
|
|
823
|
+
request: dict = {
|
|
824
|
+
'id': market['id'], # fixes issue #2
|
|
825
|
+
}
|
|
826
|
+
if limit is not None:
|
|
827
|
+
request['limit'] = limit # default 100
|
|
828
|
+
response = self.publicGetProductsIdTrades(self.extend(request, params))
|
|
829
|
+
#
|
|
830
|
+
# [
|
|
831
|
+
# {
|
|
832
|
+
# "trade_id": "15035219",
|
|
833
|
+
# "side": "sell",
|
|
834
|
+
# "size": "0.27426731",
|
|
835
|
+
# "price": "25820.42000000",
|
|
836
|
+
# "time": "2023-09-10T13:47:41.447577Z"
|
|
837
|
+
# },
|
|
838
|
+
# ]
|
|
839
|
+
#
|
|
840
|
+
return self.parse_trades(response, market, since, limit)
|
|
841
|
+
|
|
842
|
+
def fetch_trading_fees(self, params={}) -> TradingFees:
|
|
843
|
+
"""
|
|
844
|
+
fetch the trading fees for multiple markets
|
|
845
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_getfees
|
|
846
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
847
|
+
:returns dict: a dictionary of `fee structures <https://docs.ccxt.com/#/?id=fee-structure>` indexed by market symbols
|
|
848
|
+
"""
|
|
849
|
+
self.load_markets()
|
|
850
|
+
response = self.privateGetFees(params)
|
|
851
|
+
#
|
|
852
|
+
# {
|
|
853
|
+
# "maker_fee_rate": "0.0050",
|
|
854
|
+
# "taker_fee_rate": "0.0050",
|
|
855
|
+
# "usd_volume": "43806.92"
|
|
856
|
+
# }
|
|
857
|
+
#
|
|
858
|
+
maker = self.safe_number(response, 'maker_fee_rate')
|
|
859
|
+
taker = self.safe_number(response, 'taker_fee_rate')
|
|
860
|
+
result: dict = {}
|
|
861
|
+
for i in range(0, len(self.symbols)):
|
|
862
|
+
symbol = self.symbols[i]
|
|
863
|
+
result[symbol] = {
|
|
864
|
+
'info': response,
|
|
865
|
+
'symbol': symbol,
|
|
866
|
+
'maker': maker,
|
|
867
|
+
'taker': taker,
|
|
868
|
+
'percentage': True,
|
|
869
|
+
'tierBased': True,
|
|
870
|
+
}
|
|
871
|
+
return result
|
|
872
|
+
|
|
873
|
+
def parse_ohlcv(self, ohlcv, market: Market = None) -> list:
|
|
874
|
+
#
|
|
875
|
+
# [
|
|
876
|
+
# 1591514160,
|
|
877
|
+
# 0.02507,
|
|
878
|
+
# 0.02507,
|
|
879
|
+
# 0.02507,
|
|
880
|
+
# 0.02507,
|
|
881
|
+
# 0.02816506
|
|
882
|
+
# ]
|
|
883
|
+
#
|
|
884
|
+
return [
|
|
885
|
+
self.safe_timestamp(ohlcv, 0),
|
|
886
|
+
self.safe_number(ohlcv, 3),
|
|
887
|
+
self.safe_number(ohlcv, 2),
|
|
888
|
+
self.safe_number(ohlcv, 1),
|
|
889
|
+
self.safe_number(ohlcv, 4),
|
|
890
|
+
self.safe_number(ohlcv, 5),
|
|
891
|
+
]
|
|
892
|
+
|
|
893
|
+
def fetch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}) -> List[list]:
|
|
894
|
+
"""
|
|
895
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_getproductcandles
|
|
896
|
+
fetches historical candlestick data containing the open, high, low, and close price, and the volume of a market
|
|
897
|
+
:param str symbol: unified symbol of the market to fetch OHLCV data for
|
|
898
|
+
:param str timeframe: the length of time each candle represents
|
|
899
|
+
:param int [since]: timestamp in ms of the earliest candle to fetch
|
|
900
|
+
:param int [limit]: the maximum amount of candles to fetch
|
|
901
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
902
|
+
:param int [params.until]: the latest time in ms to fetch trades for
|
|
903
|
+
:param boolean [params.paginate]: default False, when True will automatically paginate by calling self endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
904
|
+
:returns int[][]: A list of candles ordered, open, high, low, close, volume
|
|
905
|
+
"""
|
|
906
|
+
self.load_markets()
|
|
907
|
+
paginate = False
|
|
908
|
+
paginate, params = self.handle_option_and_params(params, 'fetchOHLCV', 'paginate', False)
|
|
909
|
+
if paginate:
|
|
910
|
+
return self.fetch_paginated_call_deterministic('fetchOHLCV', symbol, since, limit, timeframe, params, 300)
|
|
911
|
+
market = self.market(symbol)
|
|
912
|
+
parsedTimeframe = self.safe_integer(self.timeframes, timeframe)
|
|
913
|
+
request: dict = {
|
|
914
|
+
'id': market['id'],
|
|
915
|
+
}
|
|
916
|
+
if parsedTimeframe is not None:
|
|
917
|
+
request['granularity'] = parsedTimeframe
|
|
918
|
+
else:
|
|
919
|
+
request['granularity'] = timeframe
|
|
920
|
+
until = self.safe_value_2(params, 'until', 'end')
|
|
921
|
+
params = self.omit(params, ['until'])
|
|
922
|
+
if since is not None:
|
|
923
|
+
request['start'] = self.iso8601(since)
|
|
924
|
+
if limit is None:
|
|
925
|
+
# https://docs.pro.coinbase.com/#get-historic-rates
|
|
926
|
+
limit = 300 # max = 300
|
|
927
|
+
else:
|
|
928
|
+
limit = min(300, limit)
|
|
929
|
+
if until is None:
|
|
930
|
+
parsedTimeframeMilliseconds = parsedTimeframe * 1000
|
|
931
|
+
if self.is_round_number(since % parsedTimeframeMilliseconds):
|
|
932
|
+
request['end'] = self.iso8601(self.sum((limit - 1) * parsedTimeframeMilliseconds, since))
|
|
933
|
+
else:
|
|
934
|
+
request['end'] = self.iso8601(self.sum(limit * parsedTimeframeMilliseconds, since))
|
|
935
|
+
else:
|
|
936
|
+
request['end'] = self.iso8601(until)
|
|
937
|
+
response = self.publicGetProductsIdCandles(self.extend(request, params))
|
|
938
|
+
#
|
|
939
|
+
# [
|
|
940
|
+
# [1591514160,0.02507,0.02507,0.02507,0.02507,0.02816506],
|
|
941
|
+
# [1591514100,0.02507,0.02507,0.02507,0.02507,1.63830323],
|
|
942
|
+
# [1591514040,0.02505,0.02507,0.02505,0.02507,0.19918178]
|
|
943
|
+
# ]
|
|
944
|
+
#
|
|
945
|
+
return self.parse_ohlcvs(response, market, timeframe, since, limit)
|
|
946
|
+
|
|
947
|
+
def fetch_time(self, params={}):
|
|
948
|
+
"""
|
|
949
|
+
fetches the current integer timestamp in milliseconds from the exchange server
|
|
950
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
951
|
+
:returns int: the current integer timestamp in milliseconds from the exchange server
|
|
952
|
+
"""
|
|
953
|
+
response = self.publicGetTime(params)
|
|
954
|
+
#
|
|
955
|
+
# {
|
|
956
|
+
# "iso":"2020-05-12T08:00:51.504Z",
|
|
957
|
+
# "epoch":1589270451.504
|
|
958
|
+
# }
|
|
959
|
+
#
|
|
960
|
+
return self.safe_timestamp(response, 'epoch')
|
|
961
|
+
|
|
962
|
+
def parse_order_status(self, status: Str):
|
|
963
|
+
statuses: dict = {
|
|
964
|
+
'pending': 'open',
|
|
965
|
+
'active': 'open',
|
|
966
|
+
'open': 'open',
|
|
967
|
+
'done': 'closed',
|
|
968
|
+
'canceled': 'canceled',
|
|
969
|
+
'canceling': 'open',
|
|
970
|
+
}
|
|
971
|
+
return self.safe_string(statuses, status, status)
|
|
972
|
+
|
|
973
|
+
def parse_order(self, order: dict, market: Market = None) -> Order:
|
|
974
|
+
#
|
|
975
|
+
# createOrder
|
|
976
|
+
#
|
|
977
|
+
# {
|
|
978
|
+
# "id": "d0c5340b-6d6c-49d9-b567-48c4bfca13d2",
|
|
979
|
+
# "price": "0.10000000",
|
|
980
|
+
# "size": "0.01000000",
|
|
981
|
+
# "product_id": "BTC-USD",
|
|
982
|
+
# "side": "buy",
|
|
983
|
+
# "stp": "dc",
|
|
984
|
+
# "type": "limit",
|
|
985
|
+
# "time_in_force": "GTC",
|
|
986
|
+
# "post_only": False,
|
|
987
|
+
# "created_at": "2016-12-08T20:02:28.53864Z",
|
|
988
|
+
# "fill_fees": "0.0000000000000000",
|
|
989
|
+
# "filled_size": "0.00000000",
|
|
990
|
+
# "executed_value": "0.0000000000000000",
|
|
991
|
+
# "status": "pending",
|
|
992
|
+
# "settled": False
|
|
993
|
+
# }
|
|
994
|
+
#
|
|
995
|
+
timestamp = self.parse8601(self.safe_string(order, 'created_at'))
|
|
996
|
+
marketId = self.safe_string(order, 'product_id')
|
|
997
|
+
market = self.safe_market(marketId, market, '-')
|
|
998
|
+
status = self.parse_order_status(self.safe_string(order, 'status'))
|
|
999
|
+
doneReason = self.safe_string(order, 'done_reason')
|
|
1000
|
+
if (status == 'closed') and (doneReason == 'canceled'):
|
|
1001
|
+
status = 'canceled'
|
|
1002
|
+
price = self.safe_string(order, 'price')
|
|
1003
|
+
filled = self.safe_string(order, 'filled_size')
|
|
1004
|
+
amount = self.safe_string(order, 'size', filled)
|
|
1005
|
+
cost = self.safe_string(order, 'executed_value')
|
|
1006
|
+
feeCost = self.safe_number(order, 'fill_fees')
|
|
1007
|
+
fee = None
|
|
1008
|
+
if feeCost is not None:
|
|
1009
|
+
fee = {
|
|
1010
|
+
'cost': feeCost,
|
|
1011
|
+
'currency': market['quote'],
|
|
1012
|
+
'rate': None,
|
|
1013
|
+
}
|
|
1014
|
+
id = self.safe_string(order, 'id')
|
|
1015
|
+
type = self.safe_string(order, 'type')
|
|
1016
|
+
side = self.safe_string(order, 'side')
|
|
1017
|
+
timeInForce = self.safe_string(order, 'time_in_force')
|
|
1018
|
+
postOnly = self.safe_value(order, 'post_only')
|
|
1019
|
+
stopPrice = self.safe_number(order, 'stop_price')
|
|
1020
|
+
clientOrderId = self.safe_string(order, 'client_oid')
|
|
1021
|
+
return self.safe_order({
|
|
1022
|
+
'id': id,
|
|
1023
|
+
'clientOrderId': clientOrderId,
|
|
1024
|
+
'info': order,
|
|
1025
|
+
'timestamp': timestamp,
|
|
1026
|
+
'datetime': self.iso8601(timestamp),
|
|
1027
|
+
'lastTradeTimestamp': None,
|
|
1028
|
+
'status': status,
|
|
1029
|
+
'symbol': market['symbol'],
|
|
1030
|
+
'type': type,
|
|
1031
|
+
'timeInForce': timeInForce,
|
|
1032
|
+
'postOnly': postOnly,
|
|
1033
|
+
'side': side,
|
|
1034
|
+
'price': price,
|
|
1035
|
+
'stopPrice': stopPrice,
|
|
1036
|
+
'triggerPrice': stopPrice,
|
|
1037
|
+
'cost': cost,
|
|
1038
|
+
'amount': amount,
|
|
1039
|
+
'filled': filled,
|
|
1040
|
+
'remaining': None,
|
|
1041
|
+
'fee': fee,
|
|
1042
|
+
'average': None,
|
|
1043
|
+
'trades': None,
|
|
1044
|
+
}, market)
|
|
1045
|
+
|
|
1046
|
+
def fetch_order(self, id: str, symbol: Str = None, params={}):
|
|
1047
|
+
"""
|
|
1048
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_getorder
|
|
1049
|
+
fetches information on an order made by the user
|
|
1050
|
+
:param str symbol: not used by coinbaseexchange fetchOrder
|
|
1051
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1052
|
+
:returns dict: An `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
|
1053
|
+
"""
|
|
1054
|
+
self.load_markets()
|
|
1055
|
+
request: dict = {}
|
|
1056
|
+
clientOrderId = self.safe_string_2(params, 'clientOrderId', 'client_oid')
|
|
1057
|
+
method = None
|
|
1058
|
+
if clientOrderId is None:
|
|
1059
|
+
method = 'privateGetOrdersId'
|
|
1060
|
+
request['id'] = id
|
|
1061
|
+
else:
|
|
1062
|
+
method = 'privateGetOrdersClientClientOid'
|
|
1063
|
+
request['client_oid'] = clientOrderId
|
|
1064
|
+
params = self.omit(params, ['clientOrderId', 'client_oid'])
|
|
1065
|
+
response = getattr(self, method)(self.extend(request, params))
|
|
1066
|
+
return self.parse_order(response)
|
|
1067
|
+
|
|
1068
|
+
def fetch_order_trades(self, id: str, symbol: Str = None, since: Int = None, limit: Int = None, params={}):
|
|
1069
|
+
"""
|
|
1070
|
+
fetch all the trades made from a single order
|
|
1071
|
+
:param str id: order id
|
|
1072
|
+
:param str symbol: unified market symbol
|
|
1073
|
+
:param int [since]: the earliest time in ms to fetch trades for
|
|
1074
|
+
:param int [limit]: the maximum number of trades to retrieve
|
|
1075
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1076
|
+
:returns dict[]: a list of `trade structures <https://docs.ccxt.com/#/?id=trade-structure>`
|
|
1077
|
+
"""
|
|
1078
|
+
self.load_markets()
|
|
1079
|
+
market = None
|
|
1080
|
+
if symbol is not None:
|
|
1081
|
+
market = self.market(symbol)
|
|
1082
|
+
request: dict = {
|
|
1083
|
+
'order_id': id,
|
|
1084
|
+
}
|
|
1085
|
+
response = self.privateGetFills(self.extend(request, params))
|
|
1086
|
+
return self.parse_trades(response, market, since, limit)
|
|
1087
|
+
|
|
1088
|
+
def fetch_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
|
1089
|
+
"""
|
|
1090
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_getorders
|
|
1091
|
+
fetches information on multiple orders made by the user
|
|
1092
|
+
:param str symbol: unified market symbol of the market orders were made in
|
|
1093
|
+
:param int [since]: the earliest time in ms to fetch orders for
|
|
1094
|
+
:param int [limit]: the maximum number of order structures to retrieve
|
|
1095
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1096
|
+
:param int [params.until]: the latest time in ms to fetch open orders for
|
|
1097
|
+
:returns Order[]: a list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
|
|
1098
|
+
"""
|
|
1099
|
+
request: dict = {
|
|
1100
|
+
'status': 'all',
|
|
1101
|
+
}
|
|
1102
|
+
return self.fetch_open_orders(symbol, since, limit, self.extend(request, params))
|
|
1103
|
+
|
|
1104
|
+
def fetch_open_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
|
1105
|
+
"""
|
|
1106
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_getorders
|
|
1107
|
+
fetch all unfilled currently open orders
|
|
1108
|
+
:param str symbol: unified market symbol
|
|
1109
|
+
:param int [since]: the earliest time in ms to fetch open orders for
|
|
1110
|
+
:param int [limit]: the maximum number of open orders structures to retrieve
|
|
1111
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1112
|
+
:param int [params.until]: the latest time in ms to fetch open orders for
|
|
1113
|
+
:param boolean [params.paginate]: default False, when True will automatically paginate by calling self endpoint multiple times. See in the docs all the [availble parameters](https://github.com/ccxt/ccxt/wiki/Manual#pagination-params)
|
|
1114
|
+
:returns Order[]: a list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
|
|
1115
|
+
"""
|
|
1116
|
+
self.load_markets()
|
|
1117
|
+
paginate = False
|
|
1118
|
+
paginate, params = self.handle_option_and_params(params, 'fetchOpenOrders', 'paginate')
|
|
1119
|
+
if paginate:
|
|
1120
|
+
return self.fetch_paginated_call_dynamic('fetchOpenOrders', symbol, since, limit, params, 100)
|
|
1121
|
+
request: dict = {}
|
|
1122
|
+
market = None
|
|
1123
|
+
if symbol is not None:
|
|
1124
|
+
market = self.market(symbol)
|
|
1125
|
+
request['product_id'] = market['id']
|
|
1126
|
+
if limit is not None:
|
|
1127
|
+
request['limit'] = limit # default 100
|
|
1128
|
+
if since is not None:
|
|
1129
|
+
request['start_date'] = self.iso8601(since)
|
|
1130
|
+
until = self.safe_value_2(params, 'until', 'end_date')
|
|
1131
|
+
if until is not None:
|
|
1132
|
+
params = self.omit(params, ['until'])
|
|
1133
|
+
request['end_date'] = self.iso8601(until)
|
|
1134
|
+
response = self.privateGetOrders(self.extend(request, params))
|
|
1135
|
+
return self.parse_orders(response, market, since, limit)
|
|
1136
|
+
|
|
1137
|
+
def fetch_closed_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
|
1138
|
+
"""
|
|
1139
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_getorders
|
|
1140
|
+
fetches information on multiple closed orders made by the user
|
|
1141
|
+
:param str symbol: unified market symbol of the market orders were made in
|
|
1142
|
+
:param int [since]: the earliest time in ms to fetch orders for
|
|
1143
|
+
:param int [limit]: the maximum number of order structures to retrieve
|
|
1144
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1145
|
+
:param int [params.until]: the latest time in ms to fetch open orders for
|
|
1146
|
+
:returns Order[]: a list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
|
|
1147
|
+
"""
|
|
1148
|
+
request: dict = {
|
|
1149
|
+
'status': 'done',
|
|
1150
|
+
}
|
|
1151
|
+
return self.fetch_open_orders(symbol, since, limit, self.extend(request, params))
|
|
1152
|
+
|
|
1153
|
+
def create_order(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={}):
|
|
1154
|
+
"""
|
|
1155
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_postorders
|
|
1156
|
+
create a trade order
|
|
1157
|
+
:param str symbol: unified symbol of the market to create an order in
|
|
1158
|
+
:param str type: 'market' or 'limit'
|
|
1159
|
+
:param str side: 'buy' or 'sell'
|
|
1160
|
+
:param float amount: how much of currency you want to trade in units of base currency
|
|
1161
|
+
:param float [price]: the price at which the order is to be fullfilled, in units of the quote currency, ignored in market orders
|
|
1162
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1163
|
+
:returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
|
1164
|
+
"""
|
|
1165
|
+
self.load_markets()
|
|
1166
|
+
market = self.market(symbol)
|
|
1167
|
+
request: dict = {
|
|
1168
|
+
# common params --------------------------------------------------
|
|
1169
|
+
# 'client_oid': clientOrderId,
|
|
1170
|
+
'type': type,
|
|
1171
|
+
'side': side,
|
|
1172
|
+
'product_id': market['id'],
|
|
1173
|
+
# 'size': self.amount_to_precision(symbol, amount),
|
|
1174
|
+
# 'stp': 'dc', # self-trade prevention, dc = decrease and cancel, co = cancel oldest, cn = cancel newest, cb = cancel both
|
|
1175
|
+
# 'stop': 'loss', # "loss" = stop loss below price, "entry" = take profit above price
|
|
1176
|
+
# 'stop_price': self.price_to_precision(symbol, price),
|
|
1177
|
+
# limit order params ---------------------------------------------
|
|
1178
|
+
# 'price': self.price_to_precision(symbol, price),
|
|
1179
|
+
# 'size': self.amount_to_precision(symbol, amount),
|
|
1180
|
+
# 'time_in_force': 'GTC', # GTC, GTT, IOC, or FOK
|
|
1181
|
+
# 'cancel_after' [optional]* min, hour, day, requires time_in_force to be GTT
|
|
1182
|
+
# 'post_only': False, # invalid when time_in_force is IOC or FOK
|
|
1183
|
+
# market order params --------------------------------------------
|
|
1184
|
+
# 'size': self.amount_to_precision(symbol, amount),
|
|
1185
|
+
# 'funds': self.cost_to_precision(symbol, amount),
|
|
1186
|
+
}
|
|
1187
|
+
clientOrderId = self.safe_string_2(params, 'clientOrderId', 'client_oid')
|
|
1188
|
+
if clientOrderId is not None:
|
|
1189
|
+
request['client_oid'] = clientOrderId
|
|
1190
|
+
stopPrice = self.safe_number_n(params, ['stopPrice', 'stop_price', 'triggerPrice'])
|
|
1191
|
+
if stopPrice is not None:
|
|
1192
|
+
request['stop_price'] = self.price_to_precision(symbol, stopPrice)
|
|
1193
|
+
timeInForce = self.safe_string_2(params, 'timeInForce', 'time_in_force')
|
|
1194
|
+
if timeInForce is not None:
|
|
1195
|
+
request['time_in_force'] = timeInForce
|
|
1196
|
+
postOnly = self.safe_value_2(params, 'postOnly', 'post_only', False)
|
|
1197
|
+
if postOnly:
|
|
1198
|
+
request['post_only'] = True
|
|
1199
|
+
params = self.omit(params, ['timeInForce', 'time_in_force', 'stopPrice', 'stop_price', 'clientOrderId', 'client_oid', 'postOnly', 'post_only', 'triggerPrice'])
|
|
1200
|
+
if type == 'limit':
|
|
1201
|
+
request['price'] = self.price_to_precision(symbol, price)
|
|
1202
|
+
request['size'] = self.amount_to_precision(symbol, amount)
|
|
1203
|
+
elif type == 'market':
|
|
1204
|
+
cost = self.safe_number_2(params, 'cost', 'funds')
|
|
1205
|
+
if cost is None:
|
|
1206
|
+
if price is not None:
|
|
1207
|
+
cost = amount * price
|
|
1208
|
+
else:
|
|
1209
|
+
params = self.omit(params, ['cost', 'funds'])
|
|
1210
|
+
if cost is not None:
|
|
1211
|
+
request['funds'] = self.cost_to_precision(symbol, cost)
|
|
1212
|
+
else:
|
|
1213
|
+
request['size'] = self.amount_to_precision(symbol, amount)
|
|
1214
|
+
response = self.privatePostOrders(self.extend(request, params))
|
|
1215
|
+
#
|
|
1216
|
+
# {
|
|
1217
|
+
# "id": "d0c5340b-6d6c-49d9-b567-48c4bfca13d2",
|
|
1218
|
+
# "price": "0.10000000",
|
|
1219
|
+
# "size": "0.01000000",
|
|
1220
|
+
# "product_id": "BTC-USD",
|
|
1221
|
+
# "side": "buy",
|
|
1222
|
+
# "stp": "dc",
|
|
1223
|
+
# "type": "limit",
|
|
1224
|
+
# "time_in_force": "GTC",
|
|
1225
|
+
# "post_only": False,
|
|
1226
|
+
# "created_at": "2016-12-08T20:02:28.53864Z",
|
|
1227
|
+
# "fill_fees": "0.0000000000000000",
|
|
1228
|
+
# "filled_size": "0.00000000",
|
|
1229
|
+
# "executed_value": "0.0000000000000000",
|
|
1230
|
+
# "status": "pending",
|
|
1231
|
+
# "settled": False
|
|
1232
|
+
# }
|
|
1233
|
+
#
|
|
1234
|
+
return self.parse_order(response, market)
|
|
1235
|
+
|
|
1236
|
+
def cancel_order(self, id: str, symbol: Str = None, params={}):
|
|
1237
|
+
"""
|
|
1238
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_deleteorder
|
|
1239
|
+
cancels an open order
|
|
1240
|
+
:param str id: order id
|
|
1241
|
+
:param str symbol: unified symbol of the market the order was made in
|
|
1242
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1243
|
+
:returns dict: An `order structure <https://docs.ccxt.com/#/?id=order-structure>`
|
|
1244
|
+
"""
|
|
1245
|
+
self.load_markets()
|
|
1246
|
+
request: dict = {
|
|
1247
|
+
# 'product_id': market['id'], # the request will be more performant if you include it
|
|
1248
|
+
}
|
|
1249
|
+
clientOrderId = self.safe_string_2(params, 'clientOrderId', 'client_oid')
|
|
1250
|
+
method = None
|
|
1251
|
+
if clientOrderId is None:
|
|
1252
|
+
method = 'privateDeleteOrdersId'
|
|
1253
|
+
request['id'] = id
|
|
1254
|
+
else:
|
|
1255
|
+
method = 'privateDeleteOrdersClientClientOid'
|
|
1256
|
+
request['client_oid'] = clientOrderId
|
|
1257
|
+
params = self.omit(params, ['clientOrderId', 'client_oid'])
|
|
1258
|
+
market = None
|
|
1259
|
+
if symbol is not None:
|
|
1260
|
+
market = self.market(symbol)
|
|
1261
|
+
request['product_id'] = market['symbol'] # the request will be more performant if you include it
|
|
1262
|
+
return getattr(self, method)(self.extend(request, params))
|
|
1263
|
+
|
|
1264
|
+
def cancel_all_orders(self, symbol: Str = None, params={}):
|
|
1265
|
+
"""
|
|
1266
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_deleteorders
|
|
1267
|
+
cancel all open orders
|
|
1268
|
+
:param str symbol: unified market symbol, only orders in the market of self symbol are cancelled when symbol is not None
|
|
1269
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1270
|
+
:returns dict[]: a list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
|
|
1271
|
+
"""
|
|
1272
|
+
self.load_markets()
|
|
1273
|
+
request: dict = {}
|
|
1274
|
+
market = None
|
|
1275
|
+
if symbol is not None:
|
|
1276
|
+
market = self.market(symbol)
|
|
1277
|
+
request['product_id'] = market['symbol'] # the request will be more performant if you include it
|
|
1278
|
+
return self.privateDeleteOrders(self.extend(request, params))
|
|
1279
|
+
|
|
1280
|
+
def fetch_payment_methods(self, params={}):
|
|
1281
|
+
return self.privateGetPaymentMethods(params)
|
|
1282
|
+
|
|
1283
|
+
def withdraw(self, code: str, amount: float, address: str, tag=None, params={}):
|
|
1284
|
+
"""
|
|
1285
|
+
make a withdrawal
|
|
1286
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_postwithdrawpaymentmethod
|
|
1287
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_postwithdrawcoinbaseaccount
|
|
1288
|
+
:param str code: unified currency code
|
|
1289
|
+
:param float amount: the amount to withdraw
|
|
1290
|
+
:param str address: the address to withdraw to
|
|
1291
|
+
:param str tag:
|
|
1292
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1293
|
+
:returns dict: a `transaction structure <https://docs.ccxt.com/#/?id=transaction-structure>`
|
|
1294
|
+
"""
|
|
1295
|
+
tag, params = self.handle_withdraw_tag_and_params(tag, params)
|
|
1296
|
+
self.check_address(address)
|
|
1297
|
+
self.load_markets()
|
|
1298
|
+
currency = self.currency(code)
|
|
1299
|
+
request: dict = {
|
|
1300
|
+
'currency': currency['id'],
|
|
1301
|
+
'amount': amount,
|
|
1302
|
+
}
|
|
1303
|
+
method = 'privatePostWithdrawals'
|
|
1304
|
+
if 'payment_method_id' in params:
|
|
1305
|
+
method += 'PaymentMethod'
|
|
1306
|
+
elif 'coinbase_account_id' in params:
|
|
1307
|
+
method += 'CoinbaseAccount'
|
|
1308
|
+
else:
|
|
1309
|
+
method += 'Crypto'
|
|
1310
|
+
request['crypto_address'] = address
|
|
1311
|
+
if tag is not None:
|
|
1312
|
+
request['destination_tag'] = tag
|
|
1313
|
+
response = getattr(self, method)(self.extend(request, params))
|
|
1314
|
+
if not response:
|
|
1315
|
+
raise ExchangeError(self.id + ' withdraw() error: ' + self.json(response))
|
|
1316
|
+
return self.parse_transaction(response, currency)
|
|
1317
|
+
|
|
1318
|
+
def parse_ledger_entry_type(self, type):
|
|
1319
|
+
types: dict = {
|
|
1320
|
+
'transfer': 'transfer', # Funds moved between portfolios
|
|
1321
|
+
'match': 'trade', # Funds moved result of a trade
|
|
1322
|
+
'fee': 'fee', # Fee result of a trade
|
|
1323
|
+
'rebate': 'rebate', # Fee rebate
|
|
1324
|
+
'conversion': 'trade', # Funds converted between fiat currency and a stablecoin
|
|
1325
|
+
}
|
|
1326
|
+
return self.safe_string(types, type, type)
|
|
1327
|
+
|
|
1328
|
+
def parse_ledger_entry(self, item: dict, currency: Currency = None):
|
|
1329
|
+
# {
|
|
1330
|
+
# "id": "12087495079",
|
|
1331
|
+
# "amount": "-0.0100000000000000",
|
|
1332
|
+
# "balance": "0.0645419900000000",
|
|
1333
|
+
# "created_at": "2021-10-28T17:14:32.593168Z",
|
|
1334
|
+
# "type": "transfer",
|
|
1335
|
+
# "details": {
|
|
1336
|
+
# "from": "2f74edf7-1440-4586-86dc-ae58c5693691",
|
|
1337
|
+
# "profile_transfer_id": "3ef093ad-2482-40d1-8ede-2f89cff5099e",
|
|
1338
|
+
# "to": "dda99503-4980-4b60-9549-0b770ee51336"
|
|
1339
|
+
# }
|
|
1340
|
+
# },
|
|
1341
|
+
# {
|
|
1342
|
+
# "id": "11740725774",
|
|
1343
|
+
# "amount": "-1.7565669701255000",
|
|
1344
|
+
# "balance": "0.0016490047745000",
|
|
1345
|
+
# "created_at": "2021-10-22T03:47:34.764122Z",
|
|
1346
|
+
# "type": "fee",
|
|
1347
|
+
# "details": {
|
|
1348
|
+
# "order_id": "ad06abf4-95ab-432a-a1d8-059ef572e296",
|
|
1349
|
+
# "product_id": "ETH-DAI",
|
|
1350
|
+
# "trade_id": "1740617"
|
|
1351
|
+
# }
|
|
1352
|
+
# }
|
|
1353
|
+
id = self.safe_string(item, 'id')
|
|
1354
|
+
amountString = self.safe_string(item, 'amount')
|
|
1355
|
+
direction = None
|
|
1356
|
+
afterString = self.safe_string(item, 'balance')
|
|
1357
|
+
beforeString = Precise.string_sub(afterString, amountString)
|
|
1358
|
+
if Precise.string_lt(amountString, '0'):
|
|
1359
|
+
direction = 'out'
|
|
1360
|
+
amountString = Precise.string_abs(amountString)
|
|
1361
|
+
else:
|
|
1362
|
+
direction = 'in'
|
|
1363
|
+
amount = self.parse_number(amountString)
|
|
1364
|
+
after = self.parse_number(afterString)
|
|
1365
|
+
before = self.parse_number(beforeString)
|
|
1366
|
+
timestamp = self.parse8601(self.safe_value(item, 'created_at'))
|
|
1367
|
+
type = self.parse_ledger_entry_type(self.safe_string(item, 'type'))
|
|
1368
|
+
code = self.safe_currency_code(None, currency)
|
|
1369
|
+
details = self.safe_value(item, 'details', {})
|
|
1370
|
+
account = None
|
|
1371
|
+
referenceAccount = None
|
|
1372
|
+
referenceId = None
|
|
1373
|
+
if type == 'transfer':
|
|
1374
|
+
account = self.safe_string(details, 'from')
|
|
1375
|
+
referenceAccount = self.safe_string(details, 'to')
|
|
1376
|
+
referenceId = self.safe_string(details, 'profile_transfer_id')
|
|
1377
|
+
else:
|
|
1378
|
+
referenceId = self.safe_string(details, 'order_id')
|
|
1379
|
+
status = 'ok'
|
|
1380
|
+
return {
|
|
1381
|
+
'id': id,
|
|
1382
|
+
'currency': code,
|
|
1383
|
+
'account': account,
|
|
1384
|
+
'referenceAccount': referenceAccount,
|
|
1385
|
+
'referenceId': referenceId,
|
|
1386
|
+
'status': status,
|
|
1387
|
+
'amount': amount,
|
|
1388
|
+
'before': before,
|
|
1389
|
+
'after': after,
|
|
1390
|
+
'fee': None,
|
|
1391
|
+
'direction': direction,
|
|
1392
|
+
'timestamp': timestamp,
|
|
1393
|
+
'datetime': self.iso8601(timestamp),
|
|
1394
|
+
'type': type,
|
|
1395
|
+
'info': item,
|
|
1396
|
+
}
|
|
1397
|
+
|
|
1398
|
+
def fetch_ledger(self, code: Str = None, since: Int = None, limit: Int = None, params={}):
|
|
1399
|
+
"""
|
|
1400
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_getaccountledger
|
|
1401
|
+
fetch the history of changes, actions done by the user or operations that altered balance of the user
|
|
1402
|
+
:param str code: unified currency code, default is None
|
|
1403
|
+
:param int [since]: timestamp in ms of the earliest ledger entry, default is None
|
|
1404
|
+
:param int [limit]: max number of ledger entrys to return, default is None
|
|
1405
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1406
|
+
:param int [params.until]: the latest time in ms to fetch trades for
|
|
1407
|
+
:returns dict: a `ledger structure <https://docs.ccxt.com/#/?id=ledger-structure>`
|
|
1408
|
+
"""
|
|
1409
|
+
# https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_getaccountledger
|
|
1410
|
+
if code is None:
|
|
1411
|
+
raise ArgumentsRequired(self.id + ' fetchLedger() requires a code param')
|
|
1412
|
+
self.load_markets()
|
|
1413
|
+
self.load_accounts()
|
|
1414
|
+
currency = self.currency(code)
|
|
1415
|
+
accountsByCurrencyCode = self.index_by(self.accounts, 'code')
|
|
1416
|
+
account = self.safe_value(accountsByCurrencyCode, code)
|
|
1417
|
+
if account is None:
|
|
1418
|
+
raise ExchangeError(self.id + ' fetchLedger() could not find account id for ' + code)
|
|
1419
|
+
request: dict = {
|
|
1420
|
+
'id': account['id'],
|
|
1421
|
+
# 'start_date': self.iso8601(since),
|
|
1422
|
+
# 'end_date': self.iso8601(self.milliseconds()),
|
|
1423
|
+
# 'before': 'cursor', # sets start cursor to before date
|
|
1424
|
+
# 'after': 'cursor', # sets end cursor to after date
|
|
1425
|
+
# 'limit': limit, # default 100
|
|
1426
|
+
# 'profile_id': 'string'
|
|
1427
|
+
}
|
|
1428
|
+
if since is not None:
|
|
1429
|
+
request['start_date'] = self.iso8601(since)
|
|
1430
|
+
if limit is not None:
|
|
1431
|
+
request['limit'] = limit # default 100
|
|
1432
|
+
until = self.safe_value_2(params, 'until', 'end_date')
|
|
1433
|
+
if until is not None:
|
|
1434
|
+
params = self.omit(params, ['until'])
|
|
1435
|
+
request['end_date'] = self.iso8601(until)
|
|
1436
|
+
response = self.privateGetAccountsIdLedger(self.extend(request, params))
|
|
1437
|
+
for i in range(0, len(response)):
|
|
1438
|
+
response[i]['currency'] = code
|
|
1439
|
+
return self.parse_ledger(response, currency, since, limit)
|
|
1440
|
+
|
|
1441
|
+
def fetch_deposits_withdrawals(self, code: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Transaction]:
|
|
1442
|
+
"""
|
|
1443
|
+
fetch history of deposits and withdrawals
|
|
1444
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_gettransfers
|
|
1445
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_getaccounttransfers
|
|
1446
|
+
:param str [code]: unified currency code for the currency of the deposit/withdrawals, default is None
|
|
1447
|
+
:param int [since]: timestamp in ms of the earliest deposit/withdrawal, default is None
|
|
1448
|
+
:param int [limit]: max number of deposit/withdrawals to return, default is None
|
|
1449
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1450
|
+
:param str [params.id]: account id, when defined, the endpoint used is '/accounts/{account_id}/transfers/' instead of '/transfers/'
|
|
1451
|
+
:returns dict: a list of `transaction structure <https://docs.ccxt.com/#/?id=transaction-structure>`
|
|
1452
|
+
"""
|
|
1453
|
+
self.load_markets()
|
|
1454
|
+
self.load_accounts()
|
|
1455
|
+
currency = None
|
|
1456
|
+
id = self.safe_string(params, 'id') # account id
|
|
1457
|
+
if id is None:
|
|
1458
|
+
if code is not None:
|
|
1459
|
+
currency = self.currency(code)
|
|
1460
|
+
accountsByCurrencyCode = self.index_by(self.accounts, 'code')
|
|
1461
|
+
account = self.safe_value(accountsByCurrencyCode, code)
|
|
1462
|
+
if account is None:
|
|
1463
|
+
raise ExchangeError(self.id + ' fetchDepositsWithdrawals() could not find account id for ' + code)
|
|
1464
|
+
id = account['id']
|
|
1465
|
+
request: dict = {}
|
|
1466
|
+
if id is not None:
|
|
1467
|
+
request['id'] = id
|
|
1468
|
+
if limit is not None:
|
|
1469
|
+
request['limit'] = limit
|
|
1470
|
+
response = None
|
|
1471
|
+
if id is None:
|
|
1472
|
+
response = self.privateGetTransfers(self.extend(request, params))
|
|
1473
|
+
#
|
|
1474
|
+
# [
|
|
1475
|
+
# {
|
|
1476
|
+
# "id": "bee6fd7c-afb2-4e47-8298-671d09997d16",
|
|
1477
|
+
# "type": "deposit",
|
|
1478
|
+
# "created_at": "2022-12-21 00:48:45.477503+00",
|
|
1479
|
+
# "completed_at": null,
|
|
1480
|
+
# "account_id": "sal3802-36bd-46be-a7b8-alsjf383sldak",
|
|
1481
|
+
# "user_id": "6382048209f92as392039dlks2",
|
|
1482
|
+
# "amount": "0.01000000",
|
|
1483
|
+
# "details": {
|
|
1484
|
+
# "network": "litecoin",
|
|
1485
|
+
# "crypto_address": "MKemtnCFUYKsNWaf5EMYMpwSszcXWFDtTY",
|
|
1486
|
+
# "coinbase_account_id": "fl2b6925-f6ba-403n-jj03-40fl435n430f",
|
|
1487
|
+
# "coinbase_transaction_id": "63a25bb13cb5cf0001d2cf17", # withdrawals only
|
|
1488
|
+
# "crypto_transaction_hash": "752f35570736341e2a253f7041a34cf1e196fc56128c900fd03d99da899d94c1",
|
|
1489
|
+
# "tx_service_transaction_id": "1873249104",
|
|
1490
|
+
# "coinbase_payment_method_id": ""
|
|
1491
|
+
# },
|
|
1492
|
+
# "canceled_at": null,
|
|
1493
|
+
# "processed_at": null,
|
|
1494
|
+
# "user_nonce": null,
|
|
1495
|
+
# "idem": "5e3201b0-e390-5k3k-a913-c32932049242",
|
|
1496
|
+
# "profile_id": "k3k302a8-c4dk-4f49-9d39-3203923wpk39",
|
|
1497
|
+
# "currency": "LTC"
|
|
1498
|
+
# }
|
|
1499
|
+
# ]
|
|
1500
|
+
#
|
|
1501
|
+
for i in range(0, len(response)):
|
|
1502
|
+
account_id = self.safe_string(response[i], 'account_id')
|
|
1503
|
+
account = self.safe_value(self.accountsById, account_id)
|
|
1504
|
+
codeInner = self.safe_string(account, 'code')
|
|
1505
|
+
response[i]['currency'] = codeInner
|
|
1506
|
+
else:
|
|
1507
|
+
response = self.privateGetAccountsIdTransfers(self.extend(request, params))
|
|
1508
|
+
#
|
|
1509
|
+
# [
|
|
1510
|
+
# {
|
|
1511
|
+
# "id": "bee6fd7c-afb2-4e47-8298-671d09997d16",
|
|
1512
|
+
# "type": "deposit",
|
|
1513
|
+
# "created_at": "2022-12-21 00:48:45.477503+00",
|
|
1514
|
+
# "completed_at": null,
|
|
1515
|
+
# "amount": "0.01000000",
|
|
1516
|
+
# "details": {
|
|
1517
|
+
# "network": "litecoin",
|
|
1518
|
+
# "crypto_address": "MKemtnCFUYKsNWaf5EMYMpwSszcXWFDtTY",
|
|
1519
|
+
# "coinbase_account_id": "fl2b6925-f6ba-403n-jj03-40fl435n430f",
|
|
1520
|
+
# "coinbase_transaction_id": "63a25bb13cb5cf0001d2cf17", # withdrawals only
|
|
1521
|
+
# "crypto_transaction_hash": "752f35570736341e2a253f7041a34cf1e196fc56128c900fd03d99da899d94c1",
|
|
1522
|
+
# "tx_service_transaction_id": "1873249104",
|
|
1523
|
+
# "coinbase_payment_method_id": ""
|
|
1524
|
+
# },
|
|
1525
|
+
# "canceled_at": null,
|
|
1526
|
+
# "processed_at": null,
|
|
1527
|
+
# "user_nonce": null,
|
|
1528
|
+
# "idem": "5e3201b0-e390-5k3k-a913-c32932049242",
|
|
1529
|
+
# "profile_id": "k3k302a8-c4dk-4f49-9d39-3203923wpk39",
|
|
1530
|
+
# "currency": "LTC"
|
|
1531
|
+
# }
|
|
1532
|
+
# ]
|
|
1533
|
+
#
|
|
1534
|
+
for i in range(0, len(response)):
|
|
1535
|
+
response[i]['currency'] = code
|
|
1536
|
+
return self.parse_transactions(response, currency, since, limit)
|
|
1537
|
+
|
|
1538
|
+
def fetch_deposits(self, code: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Transaction]:
|
|
1539
|
+
"""
|
|
1540
|
+
fetch all deposits made to an account
|
|
1541
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_gettransfers
|
|
1542
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_getaccounttransfers
|
|
1543
|
+
:param str code: unified currency code
|
|
1544
|
+
:param int [since]: the earliest time in ms to fetch deposits for
|
|
1545
|
+
:param int [limit]: the maximum number of deposits structures to retrieve
|
|
1546
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1547
|
+
:returns dict[]: a list of `transaction structures <https://docs.ccxt.com/#/?id=transaction-structure>`
|
|
1548
|
+
"""
|
|
1549
|
+
return self.fetch_deposits_withdrawals(code, since, limit, self.extend({'type': 'deposit'}, params))
|
|
1550
|
+
|
|
1551
|
+
def fetch_withdrawals(self, code: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Transaction]:
|
|
1552
|
+
"""
|
|
1553
|
+
fetch all withdrawals made from an account
|
|
1554
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_gettransfers
|
|
1555
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_getaccounttransfers
|
|
1556
|
+
:param str code: unified currency code
|
|
1557
|
+
:param int [since]: the earliest time in ms to fetch withdrawals for
|
|
1558
|
+
:param int [limit]: the maximum number of withdrawals structures to retrieve
|
|
1559
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1560
|
+
:returns dict[]: a list of `transaction structures <https://docs.ccxt.com/#/?id=transaction-structure>`
|
|
1561
|
+
"""
|
|
1562
|
+
return self.fetch_deposits_withdrawals(code, since, limit, self.extend({'type': 'withdraw'}, params))
|
|
1563
|
+
|
|
1564
|
+
def parse_transaction_status(self, transaction):
|
|
1565
|
+
canceled = self.safe_value(transaction, 'canceled_at')
|
|
1566
|
+
if canceled:
|
|
1567
|
+
return 'canceled'
|
|
1568
|
+
processed = self.safe_value(transaction, 'processed_at')
|
|
1569
|
+
completed = self.safe_value(transaction, 'completed_at')
|
|
1570
|
+
if completed:
|
|
1571
|
+
return 'ok'
|
|
1572
|
+
elif processed and not completed:
|
|
1573
|
+
return 'failed'
|
|
1574
|
+
else:
|
|
1575
|
+
return 'pending'
|
|
1576
|
+
|
|
1577
|
+
def parse_transaction(self, transaction: dict, currency: Currency = None) -> Transaction:
|
|
1578
|
+
#
|
|
1579
|
+
# privateGetTransfers
|
|
1580
|
+
#
|
|
1581
|
+
# [
|
|
1582
|
+
# {
|
|
1583
|
+
# "id": "bee6fd7c-afb2-4e47-8298-671d09997d16",
|
|
1584
|
+
# "type": "deposit",
|
|
1585
|
+
# "created_at": "2022-12-21 00:48:45.477503+00",
|
|
1586
|
+
# "completed_at": null,
|
|
1587
|
+
# "account_id": "sal3802-36bd-46be-a7b8-alsjf383sldak", # only from privateGetTransfers
|
|
1588
|
+
# "user_id": "6382048209f92as392039dlks2", # only from privateGetTransfers
|
|
1589
|
+
# "amount": "0.01000000",
|
|
1590
|
+
# "details": {
|
|
1591
|
+
# "network": "litecoin",
|
|
1592
|
+
# "crypto_address": "MKemtnCFUYKsNWaf5EMYMpwSszcXWFDtTY",
|
|
1593
|
+
# "coinbase_account_id": "fl2b6925-f6ba-403n-jj03-40fl435n430f",
|
|
1594
|
+
# "coinbase_transaction_id": "63a25bb13cb5cf0001d2cf17", # withdrawals only
|
|
1595
|
+
# "crypto_transaction_hash": "752f35570736341e2a253f7041a34cf1e196fc56128c900fd03d99da899d94c1",
|
|
1596
|
+
# "tx_service_transaction_id": "1873249104",
|
|
1597
|
+
# "coinbase_payment_method_id": ""
|
|
1598
|
+
# },
|
|
1599
|
+
# "canceled_at": null,
|
|
1600
|
+
# "processed_at": null,
|
|
1601
|
+
# "user_nonce": null,
|
|
1602
|
+
# "idem": "5e3201b0-e390-5k3k-a913-c32932049242",
|
|
1603
|
+
# "profile_id": "k3k302a8-c4dk-4f49-9d39-3203923wpk39",
|
|
1604
|
+
# "currency": "LTC"
|
|
1605
|
+
# }
|
|
1606
|
+
# ]
|
|
1607
|
+
#
|
|
1608
|
+
details = self.safe_value(transaction, 'details', {})
|
|
1609
|
+
timestamp = self.parse8601(self.safe_string(transaction, 'created_at'))
|
|
1610
|
+
currencyId = self.safe_string(transaction, 'currency')
|
|
1611
|
+
code = self.safe_currency_code(currencyId, currency)
|
|
1612
|
+
amount = self.safe_number(transaction, 'amount')
|
|
1613
|
+
type = self.safe_string(transaction, 'type')
|
|
1614
|
+
address = self.safe_string(details, 'crypto_address')
|
|
1615
|
+
address = self.safe_string(transaction, 'crypto_address', address)
|
|
1616
|
+
fee = {
|
|
1617
|
+
'currency': None,
|
|
1618
|
+
'cost': None,
|
|
1619
|
+
'rate': None,
|
|
1620
|
+
}
|
|
1621
|
+
if type == 'withdraw':
|
|
1622
|
+
type = 'withdrawal'
|
|
1623
|
+
address = self.safe_string(details, 'sent_to_address', address)
|
|
1624
|
+
feeCost = self.safe_number(details, 'fee')
|
|
1625
|
+
if feeCost is not None:
|
|
1626
|
+
if amount is not None:
|
|
1627
|
+
amount -= feeCost
|
|
1628
|
+
fee['cost'] = feeCost
|
|
1629
|
+
fee['currency'] = code
|
|
1630
|
+
networkId = self.safe_string(details, 'network')
|
|
1631
|
+
return {
|
|
1632
|
+
'info': transaction,
|
|
1633
|
+
'id': self.safe_string(transaction, 'id'),
|
|
1634
|
+
'txid': self.safe_string(details, 'crypto_transaction_hash'),
|
|
1635
|
+
'type': type,
|
|
1636
|
+
'currency': code,
|
|
1637
|
+
'network': self.network_id_to_code(networkId),
|
|
1638
|
+
'amount': amount,
|
|
1639
|
+
'status': self.parse_transaction_status(transaction),
|
|
1640
|
+
'timestamp': timestamp,
|
|
1641
|
+
'datetime': self.iso8601(timestamp),
|
|
1642
|
+
'address': address,
|
|
1643
|
+
'addressFrom': None,
|
|
1644
|
+
'addressTo': self.safe_string(details, 'crypto_address'),
|
|
1645
|
+
'tag': self.safe_string(details, 'destination_tag'),
|
|
1646
|
+
'tagFrom': None,
|
|
1647
|
+
'tagTo': None,
|
|
1648
|
+
'updated': self.parse8601(self.safe_string(transaction, 'processed_at')),
|
|
1649
|
+
'comment': None,
|
|
1650
|
+
'internal': False,
|
|
1651
|
+
'fee': fee,
|
|
1652
|
+
}
|
|
1653
|
+
|
|
1654
|
+
def create_deposit_address(self, code: str, params={}):
|
|
1655
|
+
"""
|
|
1656
|
+
create a currency deposit address
|
|
1657
|
+
:see: https://docs.cloud.coinbase.com/exchange/reference/exchangerestapi_postcoinbaseaccountaddresses
|
|
1658
|
+
:param str code: unified currency code of the currency for the deposit address
|
|
1659
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
|
1660
|
+
:returns dict: an `address structure <https://docs.ccxt.com/#/?id=address-structure>`
|
|
1661
|
+
"""
|
|
1662
|
+
self.load_markets()
|
|
1663
|
+
currency = self.currency(code)
|
|
1664
|
+
accounts = self.safe_value(self.options, 'coinbaseAccounts')
|
|
1665
|
+
if accounts is None:
|
|
1666
|
+
accounts = self.privateGetCoinbaseAccounts()
|
|
1667
|
+
self.options['coinbaseAccounts'] = accounts # cache it
|
|
1668
|
+
self.options['coinbaseAccountsByCurrencyId'] = self.index_by(accounts, 'currency')
|
|
1669
|
+
currencyId = currency['id']
|
|
1670
|
+
account = self.safe_value(self.options['coinbaseAccountsByCurrencyId'], currencyId)
|
|
1671
|
+
if account is None:
|
|
1672
|
+
# eslint-disable-next-line quotes
|
|
1673
|
+
raise InvalidAddress(self.id + " createDepositAddress() could not find currency code " + code + " with id = " + currencyId + " in self.options['coinbaseAccountsByCurrencyId']")
|
|
1674
|
+
request: dict = {
|
|
1675
|
+
'id': account['id'],
|
|
1676
|
+
}
|
|
1677
|
+
response = self.privatePostCoinbaseAccountsIdAddresses(self.extend(request, params))
|
|
1678
|
+
address = self.safe_string(response, 'address')
|
|
1679
|
+
tag = self.safe_string(response, 'destination_tag')
|
|
1680
|
+
return {
|
|
1681
|
+
'currency': code,
|
|
1682
|
+
'address': self.check_address(address),
|
|
1683
|
+
'tag': tag,
|
|
1684
|
+
'info': response,
|
|
1685
|
+
}
|
|
1686
|
+
|
|
1687
|
+
def sign(self, path, api='public', method='GET', params={}, headers=None, body=None):
|
|
1688
|
+
request = '/' + self.implode_params(path, params)
|
|
1689
|
+
query = self.omit(params, self.extract_params(path))
|
|
1690
|
+
if method == 'GET':
|
|
1691
|
+
if query:
|
|
1692
|
+
request += '?' + self.urlencode(query)
|
|
1693
|
+
url = self.implode_hostname(self.urls['api'][api]) + request
|
|
1694
|
+
if api == 'private':
|
|
1695
|
+
self.check_required_credentials()
|
|
1696
|
+
nonce = str(self.nonce())
|
|
1697
|
+
payload = ''
|
|
1698
|
+
if method != 'GET':
|
|
1699
|
+
if query:
|
|
1700
|
+
body = self.json(query)
|
|
1701
|
+
payload = body
|
|
1702
|
+
what = nonce + method + request + payload
|
|
1703
|
+
secret = None
|
|
1704
|
+
try:
|
|
1705
|
+
secret = self.base64_to_binary(self.secret)
|
|
1706
|
+
except Exception as e:
|
|
1707
|
+
raise AuthenticationError(self.id + ' sign() invalid base64 secret')
|
|
1708
|
+
signature = self.hmac(self.encode(what), secret, hashlib.sha256, 'base64')
|
|
1709
|
+
headers = {
|
|
1710
|
+
'CB-ACCESS-KEY': self.apiKey,
|
|
1711
|
+
'CB-ACCESS-SIGN': signature,
|
|
1712
|
+
'CB-ACCESS-TIMESTAMP': nonce,
|
|
1713
|
+
'CB-ACCESS-PASSPHRASE': self.password,
|
|
1714
|
+
'Content-Type': 'application/json',
|
|
1715
|
+
}
|
|
1716
|
+
return {'url': url, 'method': method, 'body': body, 'headers': headers}
|
|
1717
|
+
|
|
1718
|
+
def handle_errors(self, code: int, reason: str, url: str, method: str, headers: dict, body: str, response, requestHeaders, requestBody):
|
|
1719
|
+
if (code == 400) or (code == 404):
|
|
1720
|
+
if body[0] == '{':
|
|
1721
|
+
message = self.safe_string(response, 'message')
|
|
1722
|
+
feedback = self.id + ' ' + message
|
|
1723
|
+
self.throw_exactly_matched_exception(self.exceptions['exact'], message, feedback)
|
|
1724
|
+
self.throw_broadly_matched_exception(self.exceptions['broad'], message, feedback)
|
|
1725
|
+
raise ExchangeError(feedback) # unknown message
|
|
1726
|
+
raise ExchangeError(self.id + ' ' + body)
|
|
1727
|
+
return None
|
|
1728
|
+
|
|
1729
|
+
def request(self, path, api='public', method='GET', params={}, headers=None, body=None, config={}):
|
|
1730
|
+
response = self.fetch2(path, api, method, params, headers, body, config)
|
|
1731
|
+
if not isinstance(response, str):
|
|
1732
|
+
if 'message' in response:
|
|
1733
|
+
raise ExchangeError(self.id + ' ' + self.json(response))
|
|
1734
|
+
return response
|