ccxt 4.2.77__tar.gz → 4.3.22__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (550) hide show
  1. {ccxt-4.2.77 → ccxt-4.3.22}/LICENSE.txt +1 -1
  2. {ccxt-4.2.77/ccxt.egg-info → ccxt-4.3.22}/PKG-INFO +17 -15
  3. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/__init__.py +5 -2
  4. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/binance.py +3 -0
  5. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/binancecoinm.py +3 -0
  6. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/binanceus.py +3 -0
  7. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/binanceusdm.py +3 -0
  8. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/bingx.py +5 -1
  9. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/bitget.py +3 -0
  10. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/bitstamp.py +7 -1
  11. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/blofin.py +2 -0
  12. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/bybit.py +6 -1
  13. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/coinbase.py +6 -0
  14. ccxt-4.3.22/ccxt/abstract/coinex.py +236 -0
  15. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/coinmetro.py +1 -0
  16. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/gate.py +1 -0
  17. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/gateio.py +1 -0
  18. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/kucoinfutures.py +2 -0
  19. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/luno.py +2 -0
  20. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/okx.py +4 -0
  21. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/upbit.py +1 -0
  22. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/whitebit.py +22 -1
  23. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/woo.py +1 -0
  24. ccxt-4.3.22/ccxt/abstract/woofipro.py +119 -0
  25. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/ace.py +13 -8
  26. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/alpaca.py +8 -1
  27. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/ascendex.py +41 -27
  28. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/__init__.py +5 -2
  29. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/ace.py +13 -8
  30. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/alpaca.py +8 -1
  31. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/ascendex.py +41 -27
  32. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/base/exchange.py +328 -76
  33. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/base/ws/functions.py +1 -1
  34. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/bigone.py +43 -43
  35. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/binance.py +805 -121
  36. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/bingx.py +290 -60
  37. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/bit2c.py +5 -5
  38. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/bitbank.py +36 -35
  39. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/bitbns.py +7 -7
  40. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/bitfinex.py +36 -10
  41. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/bitfinex2.py +87 -64
  42. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/bitflyer.py +25 -5
  43. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/bitget.py +437 -73
  44. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/bithumb.py +14 -9
  45. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/bitmart.py +38 -40
  46. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/bitmex.py +36 -9
  47. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/bitopro.py +15 -8
  48. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/bitrue.py +28 -19
  49. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/bitso.py +14 -11
  50. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/bitstamp.py +167 -147
  51. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/bitteam.py +17 -13
  52. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/bitvavo.py +12 -7
  53. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/bl3p.py +7 -4
  54. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/blockchaincom.py +6 -6
  55. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/blofin.py +11 -7
  56. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/btcalpha.py +6 -3
  57. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/btcbox.py +5 -2
  58. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/btcmarkets.py +7 -4
  59. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/btcturk.py +13 -9
  60. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/bybit.py +793 -301
  61. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/cex.py +12 -6
  62. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/coinbase.py +880 -153
  63. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/coinbaseinternational.py +13 -9
  64. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/coinbasepro.py +14 -8
  65. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/coincheck.py +11 -8
  66. ccxt-4.3.22/ccxt/async_support/coinex.py +5619 -0
  67. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/coinlist.py +34 -31
  68. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/coinmate.py +13 -10
  69. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/coinmetro.py +41 -40
  70. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/coinone.py +12 -9
  71. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/coinsph.py +14 -8
  72. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/coinspot.py +6 -3
  73. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/cryptocom.py +79 -45
  74. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/currencycom.py +10 -9
  75. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/delta.py +160 -20
  76. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/deribit.py +314 -197
  77. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/digifinex.py +33 -72
  78. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/exmo.py +35 -29
  79. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/gate.py +341 -63
  80. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/gemini.py +46 -26
  81. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/hitbtc.py +58 -27
  82. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/hollaex.py +18 -17
  83. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/htx.py +209 -195
  84. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/huobijp.py +10 -10
  85. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/hyperliquid.py +508 -42
  86. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/idex.py +24 -20
  87. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/independentreserve.py +9 -6
  88. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/indodax.py +11 -8
  89. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/kraken.py +123 -38
  90. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/krakenfutures.py +43 -17
  91. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/kucoin.py +199 -55
  92. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/kucoinfutures.py +347 -44
  93. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/kuna.py +21 -21
  94. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/latoken.py +22 -12
  95. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/lbank.py +23 -19
  96. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/luno.py +15 -8
  97. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/lykke.py +10 -5
  98. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/mercado.py +11 -8
  99. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/mexc.py +188 -34
  100. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/ndax.py +12 -7
  101. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/novadax.py +19 -16
  102. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/oceanex.py +12 -12
  103. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/okcoin.py +50 -23
  104. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/okx.py +1047 -178
  105. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/onetrading.py +14 -11
  106. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/p2b.py +12 -9
  107. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/paymium.py +3 -3
  108. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/phemex.py +81 -35
  109. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/poloniex.py +10 -10
  110. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/poloniexfutures.py +23 -13
  111. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/probit.py +25 -22
  112. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/timex.py +19 -14
  113. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/tokocrypto.py +13 -13
  114. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/tradeogre.py +6 -2
  115. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/upbit.py +9 -7
  116. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/wavesexchange.py +13 -9
  117. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/wazirx.py +8 -5
  118. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/whitebit.py +234 -16
  119. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/woo.py +374 -20
  120. ccxt-4.3.22/ccxt/async_support/woofipro.py +2524 -0
  121. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/yobit.py +9 -6
  122. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/zaif.py +5 -5
  123. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/zonda.py +15 -13
  124. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/base/errors.py +13 -7
  125. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/base/exchange.py +631 -93
  126. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/base/types.py +132 -0
  127. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/bigone.py +43 -43
  128. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/binance.py +805 -121
  129. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/bingx.py +290 -60
  130. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/bit2c.py +5 -5
  131. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/bitbank.py +36 -35
  132. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/bitbns.py +7 -7
  133. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/bitfinex.py +36 -10
  134. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/bitfinex2.py +87 -64
  135. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/bitflyer.py +25 -5
  136. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/bitget.py +437 -73
  137. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/bithumb.py +14 -9
  138. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/bitmart.py +38 -40
  139. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/bitmex.py +36 -9
  140. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/bitopro.py +15 -8
  141. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/bitrue.py +28 -19
  142. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/bitso.py +14 -11
  143. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/bitstamp.py +167 -147
  144. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/bitteam.py +17 -13
  145. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/bitvavo.py +12 -7
  146. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/bl3p.py +7 -4
  147. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/blockchaincom.py +6 -6
  148. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/blofin.py +11 -7
  149. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/btcalpha.py +6 -3
  150. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/btcbox.py +5 -2
  151. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/btcmarkets.py +7 -4
  152. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/btcturk.py +13 -9
  153. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/bybit.py +793 -301
  154. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/cex.py +12 -6
  155. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/coinbase.py +880 -153
  156. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/coinbaseinternational.py +13 -9
  157. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/coinbasepro.py +14 -8
  158. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/coincheck.py +11 -8
  159. ccxt-4.3.22/ccxt/coinex.py +5618 -0
  160. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/coinlist.py +34 -31
  161. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/coinmate.py +13 -10
  162. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/coinmetro.py +41 -40
  163. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/coinone.py +12 -9
  164. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/coinsph.py +14 -8
  165. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/coinspot.py +6 -3
  166. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/cryptocom.py +79 -45
  167. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/currencycom.py +10 -9
  168. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/delta.py +160 -20
  169. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/deribit.py +314 -197
  170. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/digifinex.py +33 -72
  171. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/exmo.py +35 -29
  172. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/gate.py +341 -63
  173. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/gemini.py +46 -26
  174. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/hitbtc.py +58 -27
  175. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/hollaex.py +18 -17
  176. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/htx.py +209 -195
  177. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/huobijp.py +10 -10
  178. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/hyperliquid.py +507 -42
  179. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/idex.py +24 -20
  180. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/independentreserve.py +9 -6
  181. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/indodax.py +11 -8
  182. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/kraken.py +123 -38
  183. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/krakenfutures.py +43 -17
  184. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/kucoin.py +199 -55
  185. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/kucoinfutures.py +347 -44
  186. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/kuna.py +21 -21
  187. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/latoken.py +22 -12
  188. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/lbank.py +23 -19
  189. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/luno.py +15 -8
  190. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/lykke.py +10 -5
  191. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/mercado.py +11 -8
  192. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/mexc.py +188 -34
  193. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/ndax.py +12 -7
  194. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/novadax.py +19 -16
  195. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/oceanex.py +12 -12
  196. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/okcoin.py +50 -23
  197. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/okx.py +1047 -178
  198. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/onetrading.py +14 -11
  199. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/p2b.py +12 -9
  200. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/paymium.py +3 -3
  201. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/phemex.py +81 -35
  202. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/poloniex.py +10 -10
  203. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/poloniexfutures.py +23 -13
  204. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/__init__.py +5 -1
  205. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/alpaca.py +1 -1
  206. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/binance.py +574 -195
  207. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/bitfinex2.py +4 -2
  208. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/bitget.py +275 -280
  209. ccxt-4.3.22/ccxt/pro/bithumb.py +368 -0
  210. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/bitmart.py +3 -3
  211. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/bitmex.py +37 -19
  212. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/bitopro.py +2 -1
  213. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/bitvavo.py +4 -4
  214. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/blockchaincom.py +2 -2
  215. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/bybit.py +212 -18
  216. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/cex.py +25 -11
  217. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/coinbase.py +134 -19
  218. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/coinbaseinternational.py +12 -5
  219. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/cryptocom.py +2 -2
  220. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/gemini.py +4 -3
  221. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/hitbtc.py +3 -3
  222. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/htx.py +16 -8
  223. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/hyperliquid.py +8 -7
  224. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/independentreserve.py +5 -3
  225. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/kraken.py +101 -21
  226. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/krakenfutures.py +105 -40
  227. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/kucoin.py +126 -29
  228. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/kucoinfutures.py +230 -77
  229. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/lbank.py +1 -1
  230. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/mexc.py +21 -1
  231. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/okcoin.py +2 -2
  232. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/okx.py +112 -18
  233. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/onetrading.py +1 -1
  234. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/p2b.py +14 -4
  235. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/phemex.py +6 -1
  236. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/poloniex.py +4 -4
  237. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/poloniexfutures.py +6 -3
  238. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/wazirx.py +2 -1
  239. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/woo.py +208 -27
  240. ccxt-4.3.22/ccxt/pro/woofipro.py +1183 -0
  241. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/probit.py +25 -22
  242. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_datetime.py +6 -0
  243. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_last_price.py +0 -1
  244. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_ledger_entry.py +2 -2
  245. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_market.py +3 -0
  246. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_ohlcv.py +3 -2
  247. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_order_book.py +21 -15
  248. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_shared_methods.py +9 -2
  249. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_status.py +1 -1
  250. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_ticker.py +7 -1
  251. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/test_async.py +120 -49
  252. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/test_sync.py +120 -49
  253. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/timex.py +19 -14
  254. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/tokocrypto.py +13 -13
  255. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/tradeogre.py +6 -2
  256. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/upbit.py +9 -7
  257. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/wavesexchange.py +13 -9
  258. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/wazirx.py +8 -5
  259. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/whitebit.py +234 -16
  260. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/woo.py +374 -20
  261. ccxt-4.3.22/ccxt/woofipro.py +2524 -0
  262. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/yobit.py +9 -6
  263. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/zaif.py +5 -5
  264. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/zonda.py +15 -13
  265. {ccxt-4.2.77 → ccxt-4.3.22/ccxt.egg-info}/PKG-INFO +17 -15
  266. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt.egg-info/SOURCES.txt +5 -2
  267. {ccxt-4.2.77 → ccxt-4.3.22}/package.json +14 -10
  268. ccxt-4.2.77/ccxt/abstract/coinex.py +0 -127
  269. ccxt-4.2.77/ccxt/async_support/coinex.py +0 -5148
  270. ccxt-4.2.77/ccxt/async_support/flowbtc.py +0 -34
  271. ccxt-4.2.77/ccxt/coinex.py +0 -5147
  272. ccxt-4.2.77/ccxt/flowbtc.py +0 -34
  273. {ccxt-4.2.77 → ccxt-4.3.22}/MANIFEST.in +0 -0
  274. {ccxt-4.2.77 → ccxt-4.3.22}/README.rst +0 -0
  275. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/__init__.py +0 -0
  276. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/ace.py +0 -0
  277. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/alpaca.py +0 -0
  278. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/ascendex.py +0 -0
  279. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/bequant.py +0 -0
  280. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/bigone.py +0 -0
  281. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/bit2c.py +0 -0
  282. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/bitbank.py +0 -0
  283. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/bitbay.py +0 -0
  284. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/bitbns.py +0 -0
  285. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/bitcoincom.py +0 -0
  286. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/bitfinex.py +0 -0
  287. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/bitfinex2.py +0 -0
  288. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/bitflyer.py +0 -0
  289. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/bithumb.py +0 -0
  290. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/bitmart.py +0 -0
  291. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/bitmex.py +0 -0
  292. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/bitopro.py +0 -0
  293. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/bitpanda.py +0 -0
  294. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/bitrue.py +0 -0
  295. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/bitso.py +0 -0
  296. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/bitteam.py +0 -0
  297. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/bitvavo.py +0 -0
  298. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/bl3p.py +0 -0
  299. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/blockchaincom.py +0 -0
  300. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/btcalpha.py +0 -0
  301. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/btcbox.py +0 -0
  302. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/btcmarkets.py +0 -0
  303. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/btcturk.py +0 -0
  304. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/cex.py +0 -0
  305. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/coinbaseinternational.py +0 -0
  306. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/coinbasepro.py +0 -0
  307. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/coincheck.py +0 -0
  308. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/coinlist.py +0 -0
  309. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/coinmate.py +0 -0
  310. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/coinone.py +0 -0
  311. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/coinsph.py +0 -0
  312. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/coinspot.py +0 -0
  313. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/cryptocom.py +0 -0
  314. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/currencycom.py +0 -0
  315. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/delta.py +0 -0
  316. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/deribit.py +0 -0
  317. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/digifinex.py +0 -0
  318. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/exmo.py +0 -0
  319. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/fmfwio.py +0 -0
  320. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/gemini.py +0 -0
  321. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/hitbtc.py +0 -0
  322. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/hitbtc3.py +0 -0
  323. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/hollaex.py +0 -0
  324. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/htx.py +0 -0
  325. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/huobi.py +0 -0
  326. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/huobijp.py +0 -0
  327. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/hyperliquid.py +0 -0
  328. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/idex.py +0 -0
  329. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/independentreserve.py +0 -0
  330. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/indodax.py +0 -0
  331. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/kraken.py +0 -0
  332. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/krakenfutures.py +0 -0
  333. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/kucoin.py +0 -0
  334. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/kuna.py +0 -0
  335. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/latoken.py +0 -0
  336. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/lbank.py +0 -0
  337. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/lykke.py +0 -0
  338. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/mercado.py +0 -0
  339. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/mexc.py +0 -0
  340. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/ndax.py +0 -0
  341. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/novadax.py +0 -0
  342. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/oceanex.py +0 -0
  343. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/okcoin.py +0 -0
  344. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/onetrading.py +0 -0
  345. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/p2b.py +0 -0
  346. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/paymium.py +0 -0
  347. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/phemex.py +0 -0
  348. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/poloniex.py +0 -0
  349. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/poloniexfutures.py +0 -0
  350. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/probit.py +0 -0
  351. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/timex.py +0 -0
  352. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/tokocrypto.py +0 -0
  353. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/tradeogre.py +0 -0
  354. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/wavesexchange.py +0 -0
  355. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/wazirx.py +0 -0
  356. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/yobit.py +0 -0
  357. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/zaif.py +0 -0
  358. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/abstract/zonda.py +0 -0
  359. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/base/__init__.py +0 -0
  360. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/base/throttler.py +0 -0
  361. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/base/ws/__init__.py +0 -0
  362. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/base/ws/aiohttp_client.py +0 -0
  363. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/base/ws/cache.py +0 -0
  364. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/base/ws/client.py +0 -0
  365. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/base/ws/fast_client.py +0 -0
  366. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/base/ws/future.py +0 -0
  367. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/base/ws/order_book.py +0 -0
  368. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/base/ws/order_book_side.py +0 -0
  369. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/bequant.py +0 -0
  370. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/binancecoinm.py +0 -0
  371. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/binanceus.py +0 -0
  372. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/binanceusdm.py +0 -0
  373. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/bitbay.py +0 -0
  374. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/bitcoincom.py +0 -0
  375. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/bitpanda.py +0 -0
  376. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/fmfwio.py +0 -0
  377. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/gateio.py +0 -0
  378. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/hitbtc3.py +0 -0
  379. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/async_support/huobi.py +0 -0
  380. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/base/__init__.py +0 -0
  381. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/base/decimal_to_precision.py +0 -0
  382. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/base/precise.py +0 -0
  383. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/bequant.py +0 -0
  384. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/binancecoinm.py +0 -0
  385. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/binanceus.py +0 -0
  386. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/binanceusdm.py +0 -0
  387. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/bitbay.py +0 -0
  388. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/bitcoincom.py +0 -0
  389. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/bitpanda.py +0 -0
  390. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/fmfwio.py +0 -0
  391. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/gateio.py +0 -0
  392. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/hitbtc3.py +0 -0
  393. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/huobi.py +0 -0
  394. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/ascendex.py +1 -1
  395. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/bequant.py +0 -0
  396. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/binancecoinm.py +0 -0
  397. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/binanceus.py +0 -0
  398. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/binanceusdm.py +0 -0
  399. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/bingx.py +0 -0
  400. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/bitcoincom.py +0 -0
  401. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/bitfinex.py +0 -0
  402. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/bitpanda.py +0 -0
  403. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/bitrue.py +0 -0
  404. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/bitstamp.py +1 -1
  405. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/coinbasepro.py +1 -1
  406. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/coincheck.py +0 -0
  407. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/coinex.py +1 -1
  408. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/coinone.py +0 -0
  409. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/currencycom.py +0 -0
  410. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/deribit.py +0 -0
  411. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/exmo.py +0 -0
  412. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/gate.py +1 -1
  413. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/gateio.py +0 -0
  414. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/hollaex.py +1 -1
  415. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/huobi.py +0 -0
  416. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/huobijp.py +0 -0
  417. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/idex.py +0 -0
  418. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/luno.py +0 -0
  419. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/ndax.py +0 -0
  420. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/probit.py +0 -0
  421. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/upbit.py +0 -0
  422. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/pro/whitebit.py +1 -1
  423. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/__init__.py +0 -0
  424. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ecdsa/__init__.py +0 -0
  425. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ecdsa/_version.py +0 -0
  426. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ecdsa/curves.py +0 -0
  427. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ecdsa/der.py +0 -0
  428. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ecdsa/ecdsa.py +0 -0
  429. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ecdsa/ellipticcurve.py +0 -0
  430. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ecdsa/keys.py +0 -0
  431. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ecdsa/numbertheory.py +0 -0
  432. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ecdsa/rfc6979.py +0 -0
  433. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ecdsa/util.py +0 -0
  434. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/__init__.py +0 -0
  435. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/abi/__init__.py +0 -0
  436. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/abi/abi.py +0 -0
  437. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/abi/base.py +0 -0
  438. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/abi/codec.py +0 -0
  439. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/abi/constants.py +0 -0
  440. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/abi/decoding.py +0 -0
  441. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/abi/encoding.py +0 -0
  442. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/abi/exceptions.py +0 -0
  443. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/abi/grammar.py +0 -0
  444. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/abi/packed.py +0 -0
  445. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/abi/py.typed +0 -0
  446. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/abi/registry.py +0 -0
  447. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/abi/tools/__init__.py +0 -0
  448. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/abi/tools/_strategies.py +0 -0
  449. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/abi/utils/__init__.py +0 -0
  450. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/abi/utils/numeric.py +0 -0
  451. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/abi/utils/padding.py +0 -0
  452. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/abi/utils/string.py +0 -0
  453. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/account/__init__.py +0 -0
  454. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/account/encode_typed_data/__init__.py +0 -0
  455. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/account/encode_typed_data/encoding_and_hashing.py +0 -0
  456. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/account/encode_typed_data/helpers.py +0 -0
  457. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/account/messages.py +0 -0
  458. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/account/py.typed +0 -0
  459. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/hexbytes/__init__.py +0 -0
  460. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/hexbytes/_utils.py +0 -0
  461. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/hexbytes/main.py +0 -0
  462. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/hexbytes/py.typed +0 -0
  463. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/typing/__init__.py +0 -0
  464. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/typing/abi.py +0 -0
  465. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/typing/bls.py +0 -0
  466. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/typing/discovery.py +0 -0
  467. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/typing/encoding.py +0 -0
  468. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/typing/enums.py +0 -0
  469. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/typing/ethpm.py +0 -0
  470. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/typing/evm.py +0 -0
  471. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/typing/networks.py +0 -0
  472. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/typing/py.typed +0 -0
  473. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/utils/__init__.py +0 -0
  474. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/utils/abi.py +0 -0
  475. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/utils/address.py +0 -0
  476. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/utils/applicators.py +0 -0
  477. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/utils/conversions.py +0 -0
  478. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/utils/currency.py +0 -0
  479. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/utils/curried/__init__.py +0 -0
  480. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/utils/debug.py +0 -0
  481. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/utils/decorators.py +0 -0
  482. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/utils/encoding.py +0 -0
  483. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/utils/exceptions.py +0 -0
  484. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/utils/functional.py +0 -0
  485. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/utils/hexadecimal.py +0 -0
  486. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/utils/humanize.py +0 -0
  487. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/utils/logging.py +0 -0
  488. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/utils/module_loading.py +0 -0
  489. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/utils/numeric.py +0 -0
  490. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/utils/py.typed +0 -0
  491. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/utils/toolz.py +0 -0
  492. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/utils/types.py +0 -0
  493. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/utils/typing/__init__.py +0 -0
  494. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/utils/typing/misc.py +0 -0
  495. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/ethereum/utils/units.py +0 -0
  496. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/keccak/__init__.py +0 -0
  497. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/keccak/keccak.py +0 -0
  498. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/msgpack/__init__.py +0 -0
  499. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/msgpack/exceptions.py +0 -0
  500. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/msgpack/ext.py +0 -0
  501. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/msgpack/fallback.py +0 -0
  502. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/parsimonious/__init__.py +0 -0
  503. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/parsimonious/exceptions.py +0 -0
  504. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/parsimonious/expressions.py +0 -0
  505. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/parsimonious/grammar.py +0 -0
  506. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/parsimonious/nodes.py +0 -0
  507. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/parsimonious/utils.py +0 -0
  508. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/toolz/__init__.py +0 -0
  509. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/toolz/_signatures.py +0 -0
  510. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/toolz/_version.py +0 -0
  511. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/toolz/compatibility.py +0 -0
  512. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/toolz/curried/__init__.py +0 -0
  513. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/toolz/curried/exceptions.py +0 -0
  514. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/toolz/curried/operator.py +0 -0
  515. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/toolz/dicttoolz.py +0 -0
  516. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/toolz/functoolz.py +0 -0
  517. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/toolz/itertoolz.py +0 -0
  518. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/toolz/recipes.py +0 -0
  519. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/static_dependencies/toolz/utils.py +0 -0
  520. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/__init__.py +0 -0
  521. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/__init__.py +0 -0
  522. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_account.py +0 -0
  523. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_balance.py +0 -0
  524. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_borrow_interest.py +0 -0
  525. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_borrow_rate.py +0 -0
  526. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_calculate_fee.py +0 -0
  527. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_crypto.py +0 -0
  528. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_currency.py +0 -0
  529. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_decimal_to_precision.py +0 -0
  530. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_deep_extend.py +0 -0
  531. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_deposit_withdrawal.py +0 -0
  532. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_exchange_datetime_functions.py +0 -0
  533. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_funding_rate_history.py +0 -0
  534. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_ledger_item.py +0 -0
  535. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_leverage_tier.py +0 -0
  536. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_margin_mode.py +0 -0
  537. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_margin_modification.py +0 -0
  538. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_number.py +0 -0
  539. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_open_interest.py +0 -0
  540. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_order.py +0 -0
  541. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_position.py +0 -0
  542. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_throttle.py +0 -0
  543. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_trade.py +0 -0
  544. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_trading_fee.py +0 -0
  545. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt/test/base/test_transaction.py +0 -0
  546. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt.egg-info/dependency_links.txt +0 -0
  547. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt.egg-info/requires.txt +0 -0
  548. {ccxt-4.2.77 → ccxt-4.3.22}/ccxt.egg-info/top_level.txt +0 -0
  549. {ccxt-4.2.77 → ccxt-4.3.22}/setup.cfg +0 -0
  550. {ccxt-4.2.77 → ccxt-4.3.22}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright © 2022 Igor Kroitor
3
+ Copyright © 2024 Igor Kroitor
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ccxt
3
- Version: 4.2.77
3
+ Version: 4.3.22
4
4
  Summary: A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 100+ exchanges
5
5
  Home-page: https://ccxt.com
6
6
  Author: Igor Kroitor
@@ -13,7 +13,7 @@ Project-URL: Twitter, https://twitter.com/ccxt_official
13
13
  Project-URL: Funding, https://opencollective.com/ccxt
14
14
  Description: # CCXT – CryptoCurrency eXchange Trading Library
15
15
 
16
- [![Build Status](https://travis-ci.com/ccxt/ccxt.svg?branch=master)](https://travis-ci.com/ccxt/ccxt) [![npm](https://img.shields.io/npm/v/ccxt.svg)](https://npmjs.com/package/ccxt) [![PyPI](https://img.shields.io/pypi/v/ccxt.svg)](https://pypi.python.org/pypi/ccxt) [![NPM Downloads](https://img.shields.io/npm/dy/ccxt.svg)](https://www.npmjs.com/package/ccxt) [![Discord](https://img.shields.io/discord/690203284119617602?logo=discord&logoColor=white)](https://discord.gg/ccxt) [![Supported Exchanges](https://img.shields.io/badge/exchanges-103-blue.svg)](https://github.com/ccxt/ccxt/wiki/Exchange-Markets) [![Twitter Follow](https://img.shields.io/twitter/follow/ccxt_official.svg?style=social&label=CCXT)](https://twitter.com/ccxt_official)
16
+ [![Build Status](https://travis-ci.com/ccxt/ccxt.svg?branch=master)](https://travis-ci.com/ccxt/ccxt) [![npm](https://img.shields.io/npm/v/ccxt.svg)](https://npmjs.com/package/ccxt) [![PyPI](https://img.shields.io/pypi/v/ccxt.svg)](https://pypi.python.org/pypi/ccxt) [![NPM Downloads](https://img.shields.io/npm/dy/ccxt.svg)](https://www.npmjs.com/package/ccxt) [![Discord](https://img.shields.io/discord/690203284119617602?logo=discord&logoColor=white)](https://discord.gg/ccxt) [![Supported Exchanges](https://img.shields.io/badge/exchanges-104-blue.svg)](https://github.com/ccxt/ccxt/wiki/Exchange-Markets) [![Twitter Follow](https://img.shields.io/twitter/follow/ccxt_official.svg?style=social&label=CCXT)](https://twitter.com/ccxt_official)
17
17
 
18
18
  A JavaScript / Python / PHP / C# library for cryptocurrency trading and e-commerce with support for many bitcoin/ether/altcoin exchange markets and merchant APIs.
19
19
 
@@ -33,7 +33,6 @@ Description: # CCXT – CryptoCurrency eXchange Trading Library
33
33
 
34
34
 
35
35
  ## Sponsored Promotion
36
- [![bitget](https://github.com/ccxt/ccxt/assets/43336371/71359af3-c78f-4077-a64c-ac0bfe1fa01c)](https://www.bitget.com/events/competition/86c98f96df155e6bb397e866dcd86afc?channelCode=ccxt&vipCode=tg9j)
37
36
 
38
37
  ## See Also
39
38
 
@@ -55,8 +54,9 @@ Description: # CCXT – CryptoCurrency eXchange Trading Library
55
54
  | [![bitmart](https://user-images.githubusercontent.com/1294454/129991357-8f47464b-d0f4-41d6-8a82-34122f0d1398.jpg)](http://www.bitmart.com/?r=rQCFLh) | bitmart | [BitMart](http://www.bitmart.com/?r=rQCFLh) | [![API Version 2](https://img.shields.io/badge/2-lightgray)](https://developer-pro.bitmart.com/) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | [![Sign up with BitMart using CCXT's referral link for a 30% discount!](https://img.shields.io/static/v1?label=Fee&message=%2d30%25&color=orange)](http://www.bitmart.com/?r=rQCFLh) |
56
55
  | [![bitmex](https://github.com/ccxt/ccxt/assets/43336371/cea9cfe5-c57e-4b84-b2ac-77b960b04445)](https://www.bitmex.com/app/register/NZTR1q) | bitmex | [BitMEX](https://www.bitmex.com/app/register/NZTR1q) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://www.bitmex.com/app/apiOverview) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | [![Sign up with BitMEX using CCXT's referral link for a 10% discount!](https://img.shields.io/static/v1?label=Fee&message=%2d10%25&color=orange)](https://www.bitmex.com/app/register/NZTR1q) |
57
56
  | [![bybit](https://user-images.githubusercontent.com/51840849/76547799-daff5b80-649e-11ea-87fb-3be9bac08954.jpg)](https://www.bybit.com/register?affiliate_id=35953) | bybit | [Bybit](https://www.bybit.com/register?affiliate_id=35953) | [![API Version 5](https://img.shields.io/badge/5-lightgray)](https://bybit-exchange.github.io/docs/inverse/) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | |
58
- | [![coinbaseinternational](https://github.com/ccxt/ccxt/assets/43336371/866ae638-6ab5-4ebf-ab2c-cdcce9545625)](https://international.coinbase.com) | coinbaseinternational | [Coinbase International](https://international.coinbase.com) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://docs.cloud.coinbaseinternational.com/intx/docs) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | |
59
- | [![coinex](https://user-images.githubusercontent.com/51840849/87182089-1e05fa00-c2ec-11ea-8da9-cc73b45abbbc.jpg)](https://www.coinex.com/register?refer_code=yw5fz) | coinex | [CoinEx](https://www.coinex.com/register?refer_code=yw5fz) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://viabtc.github.io/coinex_api_en_doc) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | |
57
+ | [![coinbase](https://user-images.githubusercontent.com/1294454/40811661-b6eceae2-653a-11e8-829e-10bfadb078cf.jpg)](https://www.coinbase.com/join/58cbe25a355148797479dbd2) | coinbase | [Coinbase Advanced](https://www.coinbase.com/join/58cbe25a355148797479dbd2) | [![API Version 2](https://img.shields.io/badge/2-lightgray)](https://developers.coinbase.com/api/v2) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | |
58
+ | [![coinbaseinternational](https://github.com/ccxt/ccxt/assets/43336371/866ae638-6ab5-4ebf-ab2c-cdcce9545625)](https://international.coinbase.com) | coinbaseinternational | [Coinbase International](https://international.coinbase.com) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://docs.cloud.coinbase.com/intx/docs) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | |
59
+ | [![coinex](https://user-images.githubusercontent.com/51840849/87182089-1e05fa00-c2ec-11ea-8da9-cc73b45abbbc.jpg)](https://www.coinex.com/register?refer_code=yw5fz) | coinex | [CoinEx](https://www.coinex.com/register?refer_code=yw5fz) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://docs.coinex.com/api/v2) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | |
60
60
  | [![cryptocom](https://user-images.githubusercontent.com/1294454/147792121-38ed5e36-c229-48d6-b49a-48d05fc19ed4.jpeg)](https://crypto.com/exch/kdacthrnxt) | cryptocom | [Crypto.com](https://crypto.com/exch/kdacthrnxt) | [![API Version 2](https://img.shields.io/badge/2-lightgray)](https://exchange-docs.crypto.com/exchange/v1/rest-ws/index.html) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | [![Sign up with Crypto.com using CCXT's referral link for a 15% discount!](https://img.shields.io/static/v1?label=Fee&message=%2d15%25&color=orange)](https://crypto.com/exch/kdacthrnxt) |
61
61
  | [![gate](https://user-images.githubusercontent.com/1294454/31784029-0313c702-b509-11e7-9ccc-bc0da6a0e435.jpg)](https://www.gate.io/signup/2436035) | gate | [Gate.io](https://www.gate.io/signup/2436035) | [![API Version 4](https://img.shields.io/badge/4-lightgray)](https://www.gate.io/docs/developers/apiv4/en/) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | [![Sign up with Gate.io using CCXT's referral link for a 20% discount!](https://img.shields.io/static/v1?label=Fee&message=%2d20%25&color=orange)](https://www.gate.io/signup/2436035) |
62
62
  | [![htx](https://user-images.githubusercontent.com/1294454/76137448-22748a80-604e-11ea-8069-6e389271911d.jpg)](https://www.huobi.com/en-us/v/register/double-invite/?inviter_id=11343840&invite_code=6rmm2223) | htx | [HTX](https://www.huobi.com/en-us/v/register/double-invite/?inviter_id=11343840&invite_code=6rmm2223) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://huobiapi.github.io/docs/spot/v1/en/) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | [![Sign up with HTX using CCXT's referral link for a 15% discount!](https://img.shields.io/static/v1?label=Fee&message=%2d15%25&color=orange)](https://www.huobi.com/en-us/v/register/double-invite/?inviter_id=11343840&invite_code=6rmm2223) |
@@ -65,10 +65,11 @@ Description: # CCXT – CryptoCurrency eXchange Trading Library
65
65
  | [![mexc](https://user-images.githubusercontent.com/1294454/137283979-8b2a818d-8633-461b-bfca-de89e8c446b2.jpg)](https://m.mexc.com/auth/signup?inviteCode=1FQ1G) | mexc | [MEXC Global](https://m.mexc.com/auth/signup?inviteCode=1FQ1G) | [![API Version 3](https://img.shields.io/badge/3-lightgray)](https://mexcdevelop.github.io/apidocs/) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | |
66
66
  | [![okx](https://user-images.githubusercontent.com/1294454/152485636-38b19e4a-bece-4dec-979a-5982859ffc04.jpg)](https://www.okx.com/join/CCXT2023) | okx | [OKX](https://www.okx.com/join/CCXT2023) | [![API Version 5](https://img.shields.io/badge/5-lightgray)](https://www.okx.com/docs-v5/en/) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | [![Sign up with OKX using CCXT's referral link for a 20% discount!](https://img.shields.io/static/v1?label=Fee&message=%2d20%25&color=orange)](https://www.okx.com/join/CCXT2023) |
67
67
  | [![woo](https://user-images.githubusercontent.com/1294454/150730761-1a00e5e0-d28c-480f-9e65-089ce3e6ef3b.jpg)](https://x.woo.org/register?ref=YWOWC96B) | woo | [WOO X](https://x.woo.org/register?ref=YWOWC96B) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://docs.woo.org/) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | [![Sign up with WOO X using CCXT's referral link for a 35% discount!](https://img.shields.io/static/v1?label=Fee&message=%2d35%25&color=orange)](https://x.woo.org/register?ref=YWOWC96B) |
68
+ | [![woofipro](https://github.com/ccxt/ccxt/assets/43336371/b1e7b348-a0fc-4605-8b7f-91176958fd69)](https://dex.woo.org/en/trade?ref=CCXT) | woofipro | [WOOFI PRO](https://dex.woo.org/en/trade?ref=CCXT) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://orderly.network/docs/build-on-evm/building-on-evm) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) | [![Sign up with WOOFI PRO using CCXT's referral link for a 5% discount!](https://img.shields.io/static/v1?label=Fee&message=%2d5%25&color=orange)](https://dex.woo.org/en/trade?ref=CCXT) |
68
69
 
69
- ## Supported Cryptocurrency Exchange Markets
70
+ ## Supported Cryptocurrency Exchanges
70
71
 
71
- The CCXT library currently supports the following 97 cryptocurrency exchange markets and trading APIs:
72
+ The CCXT library currently supports the following 98 cryptocurrency exchange markets and trading APIs:
72
73
 
73
74
  | logo | id | name | ver | certified | pro |
74
75
  |---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------|-------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------:|-----------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------|
@@ -89,7 +90,7 @@ Description: # CCXT – CryptoCurrency eXchange Trading Library
89
90
  | [![bitfinex2](https://user-images.githubusercontent.com/1294454/27766244-e328a50c-5ed2-11e7-947b-041416579bb3.jpg)](https://www.bitfinex.com) | bitfinex2 | [Bitfinex](https://www.bitfinex.com) | [![API Version 2](https://img.shields.io/badge/2-lightgray)](https://docs.bitfinex.com/v2/docs/) | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
90
91
  | [![bitflyer](https://user-images.githubusercontent.com/1294454/28051642-56154182-660e-11e7-9b0d-6042d1e6edd8.jpg)](https://bitflyer.com) | bitflyer | [bitFlyer](https://bitflyer.com) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://lightning.bitflyer.com/docs?lang=en) | | |
91
92
  | [![bitget](https://user-images.githubusercontent.com/1294454/195989417-4253ddb0-afbe-4a1c-9dea-9dbcd121fa5d.jpg)](https://www.bitget.com/expressly?languageType=0&channelCode=ccxt&vipCode=tg9j) | bitget | [Bitget](https://www.bitget.com/expressly?languageType=0&channelCode=ccxt&vipCode=tg9j) | [![API Version 2](https://img.shields.io/badge/2-lightgray)](https://www.bitget.com/api-doc/common/intro) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
92
- | [![bithumb](https://user-images.githubusercontent.com/1294454/30597177-ea800172-9d5e-11e7-804c-b9d4fa9b56b0.jpg)](https://www.bithumb.com) | bithumb | [Bithumb](https://www.bithumb.com) | [![API Version *](https://img.shields.io/badge/*-lightgray)](https://apidocs.bithumb.com) | | |
93
+ | [![bithumb](https://user-images.githubusercontent.com/1294454/30597177-ea800172-9d5e-11e7-804c-b9d4fa9b56b0.jpg)](https://www.bithumb.com) | bithumb | [Bithumb](https://www.bithumb.com) | [![API Version *](https://img.shields.io/badge/*-lightgray)](https://apidocs.bithumb.com) | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
93
94
  | [![bitmart](https://user-images.githubusercontent.com/1294454/129991357-8f47464b-d0f4-41d6-8a82-34122f0d1398.jpg)](http://www.bitmart.com/?r=rQCFLh) | bitmart | [BitMart](http://www.bitmart.com/?r=rQCFLh) | [![API Version 2](https://img.shields.io/badge/2-lightgray)](https://developer-pro.bitmart.com/) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
94
95
  | [![bitmex](https://github.com/ccxt/ccxt/assets/43336371/cea9cfe5-c57e-4b84-b2ac-77b960b04445)](https://www.bitmex.com/app/register/NZTR1q) | bitmex | [BitMEX](https://www.bitmex.com/app/register/NZTR1q) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://www.bitmex.com/app/apiOverview) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
95
96
  | [![bitopro](https://user-images.githubusercontent.com/1294454/158227251-3a92a220-9222-453c-9277-977c6677fe71.jpg)](https://www.bitopro.com) | bitopro | [BitoPro](https://www.bitopro.com) | [![API Version 3](https://img.shields.io/badge/3-lightgray)](https://github.com/bitoex/bitopro-offical-api-docs/blob/master/v3-1/rest-1/rest.md) | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
@@ -107,11 +108,11 @@ Description: # CCXT – CryptoCurrency eXchange Trading Library
107
108
  | [![btcturk](https://user-images.githubusercontent.com/51840849/87153926-efbef500-c2c0-11ea-9842-05b63612c4b9.jpg)](https://www.btcturk.com) | btcturk | [BTCTurk](https://www.btcturk.com) | [![API Version *](https://img.shields.io/badge/*-lightgray)](https://github.com/BTCTrader/broker-api-docs) | | |
108
109
  | [![bybit](https://user-images.githubusercontent.com/51840849/76547799-daff5b80-649e-11ea-87fb-3be9bac08954.jpg)](https://www.bybit.com/register?affiliate_id=35953) | bybit | [Bybit](https://www.bybit.com/register?affiliate_id=35953) | [![API Version 5](https://img.shields.io/badge/5-lightgray)](https://bybit-exchange.github.io/docs/inverse/) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
109
110
  | [![cex](https://user-images.githubusercontent.com/1294454/27766442-8ddc33b0-5ed8-11e7-8b98-f786aef0f3c9.jpg)](https://cex.io/r/0/up105393824/0/) | cex | [CEX.IO](https://cex.io/r/0/up105393824/0/) | [![API Version *](https://img.shields.io/badge/*-lightgray)](https://cex.io/cex-api) | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
110
- | [![coinbase](https://user-images.githubusercontent.com/1294454/40811661-b6eceae2-653a-11e8-829e-10bfadb078cf.jpg)](https://www.coinbase.com/join/58cbe25a355148797479dbd2) | coinbase | [Coinbase](https://www.coinbase.com/join/58cbe25a355148797479dbd2) | [![API Version 2](https://img.shields.io/badge/2-lightgray)](https://developers.coinbase.com/api/v2) | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
111
- | [![coinbaseinternational](https://github.com/ccxt/ccxt/assets/43336371/866ae638-6ab5-4ebf-ab2c-cdcce9545625)](https://international.coinbase.com) | coinbaseinternational | [Coinbase International](https://international.coinbase.com) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://docs.cloud.coinbaseinternational.com/intx/docs) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
112
- | [![coinbasepro](https://user-images.githubusercontent.com/1294454/41764625-63b7ffde-760a-11e8-996d-a6328fa9347a.jpg)](https://pro.coinbase.com/) | coinbasepro | [Coinbase Pro](https://pro.coinbase.com/) | [![API Version *](https://img.shields.io/badge/*-lightgray)](https://docs.pro.coinbase.com) | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
111
+ | [![coinbase](https://user-images.githubusercontent.com/1294454/40811661-b6eceae2-653a-11e8-829e-10bfadb078cf.jpg)](https://www.coinbase.com/join/58cbe25a355148797479dbd2) | coinbase | [Coinbase Advanced](https://www.coinbase.com/join/58cbe25a355148797479dbd2) | [![API Version 2](https://img.shields.io/badge/2-lightgray)](https://developers.coinbase.com/api/v2) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
112
+ | [![coinbaseinternational](https://github.com/ccxt/ccxt/assets/43336371/866ae638-6ab5-4ebf-ab2c-cdcce9545625)](https://international.coinbase.com) | coinbaseinternational | [Coinbase International](https://international.coinbase.com) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://docs.cloud.coinbase.com/intx/docs) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
113
+ | [![coinbasepro](https://user-images.githubusercontent.com/1294454/41764625-63b7ffde-760a-11e8-996d-a6328fa9347a.jpg)](https://pro.coinbase.com/) | coinbasepro | [Coinbase Pro(Deprecated)](https://pro.coinbase.com/) | [![API Version *](https://img.shields.io/badge/*-lightgray)](https://docs.pro.coinbase.com) | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
113
114
  | [![coincheck](https://user-images.githubusercontent.com/51840849/87182088-1d6d6380-c2ec-11ea-9c64-8ab9f9b289f5.jpg)](https://coincheck.com) | coincheck | [coincheck](https://coincheck.com) | [![API Version *](https://img.shields.io/badge/*-lightgray)](https://coincheck.com/documents/exchange/api) | | |
114
- | [![coinex](https://user-images.githubusercontent.com/51840849/87182089-1e05fa00-c2ec-11ea-8da9-cc73b45abbbc.jpg)](https://www.coinex.com/register?refer_code=yw5fz) | coinex | [CoinEx](https://www.coinex.com/register?refer_code=yw5fz) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://viabtc.github.io/coinex_api_en_doc) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
115
+ | [![coinex](https://user-images.githubusercontent.com/51840849/87182089-1e05fa00-c2ec-11ea-8da9-cc73b45abbbc.jpg)](https://www.coinex.com/register?refer_code=yw5fz) | coinex | [CoinEx](https://www.coinex.com/register?refer_code=yw5fz) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://docs.coinex.com/api/v2) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
115
116
  | [![coinlist](https://github-production-user-asset-6210df.s3.amazonaws.com/1294454/281108917-eff2ae1d-ce8a-4b2a-950d-8678b12da965.jpg)](https://coinlist.co) | coinlist | [Coinlist](https://coinlist.co) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://trade-docs.coinlist.co) | | |
116
117
  | [![coinmate](https://user-images.githubusercontent.com/51840849/87460806-1c9f3f00-c616-11ea-8c46-a77018a8f3f4.jpg)](https://coinmate.io?referral=YTFkM1RsOWFObVpmY1ZjMGREQmpTRnBsWjJJNVp3PT0) | coinmate | [CoinMate](https://coinmate.io?referral=YTFkM1RsOWFObVpmY1ZjMGREQmpTRnBsWjJJNVp3PT0) | [![API Version *](https://img.shields.io/badge/*-lightgray)](https://coinmate.docs.apiary.io) | | |
117
118
  | [![coinmetro](https://github.com/ccxt/ccxt/assets/43336371/e86f87ec-6ba3-4410-962b-f7988c5db539)](https://go.coinmetro.com/?ref=crypto24) | coinmetro | [Coinmetro](https://go.coinmetro.com/?ref=crypto24) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://documenter.getpostman.com/view/3653795/SVfWN6KS) | | |
@@ -166,6 +167,7 @@ Description: # CCXT – CryptoCurrency eXchange Trading Library
166
167
  | [![wazirx](https://user-images.githubusercontent.com/1294454/148647666-c109c20b-f8ac-472f-91c3-5f658cb90f49.jpeg)](https://wazirx.com/invite/k7rrnks5) | wazirx | [WazirX](https://wazirx.com/invite/k7rrnks5) | [![API Version 2](https://img.shields.io/badge/2-lightgray)](https://docs.wazirx.com/#public-rest-api-for-wazirx) | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
167
168
  | [![whitebit](https://user-images.githubusercontent.com/1294454/66732963-8eb7dd00-ee66-11e9-849b-10d9282bb9e0.jpg)](https://whitebit.com/referral/d9bdf40e-28f2-4b52-b2f9-cd1415d82963) | whitebit | [WhiteBit](https://whitebit.com/referral/d9bdf40e-28f2-4b52-b2f9-cd1415d82963) | [![API Version 4](https://img.shields.io/badge/4-lightgray)](https://github.com/whitebit-exchange/api-docs) | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
168
169
  | [![woo](https://user-images.githubusercontent.com/1294454/150730761-1a00e5e0-d28c-480f-9e65-089ce3e6ef3b.jpg)](https://x.woo.org/register?ref=YWOWC96B) | woo | [WOO X](https://x.woo.org/register?ref=YWOWC96B) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://docs.woo.org/) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
170
+ | [![woofipro](https://github.com/ccxt/ccxt/assets/43336371/b1e7b348-a0fc-4605-8b7f-91176958fd69)](https://dex.woo.org/en/trade?ref=CCXT) | woofipro | [WOOFI PRO](https://dex.woo.org/en/trade?ref=CCXT) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://orderly.network/docs/build-on-evm/building-on-evm) | [![CCXT Certified](https://img.shields.io/badge/CCXT-Certified-green.svg)](https://github.com/ccxt/ccxt/wiki/Certification) | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
169
171
  | [![yobit](https://user-images.githubusercontent.com/1294454/27766910-cdcbfdae-5eea-11e7-9859-03fea873272d.jpg)](https://www.yobit.net) | yobit | [YoBit](https://www.yobit.net) | [![API Version 3](https://img.shields.io/badge/3-lightgray)](https://www.yobit.net/en/api/) | | |
170
172
  | [![zaif](https://user-images.githubusercontent.com/1294454/27766927-39ca2ada-5eeb-11e7-972f-1b4199518ca6.jpg)](https://zaif.jp) | zaif | [Zaif](https://zaif.jp) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://techbureau-api-document.readthedocs.io/ja/latest/index.html) | | |
171
173
  | [![zonda](https://user-images.githubusercontent.com/1294454/159202310-a0e38007-5e7c-4ba9-a32f-c8263a0291fe.jpg)](https://auth.zondaglobal.com/ref/jHlbB4mIkdS1) | zonda | [Zonda](https://auth.zondaglobal.com/ref/jHlbB4mIkdS1) | [![API Version *](https://img.shields.io/badge/*-lightgray)](https://docs.zondacrypto.exchange/) | | |
@@ -226,13 +228,13 @@ Description: # CCXT – CryptoCurrency eXchange Trading Library
226
228
 
227
229
  All-in-one browser bundle (dependencies included), served from a CDN of your choice:
228
230
 
229
- * jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.2.77/dist/ccxt.browser.js
230
- * unpkg: https://unpkg.com/ccxt@4.2.77/dist/ccxt.browser.js
231
+ * jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.22/dist/ccxt.browser.js
232
+ * unpkg: https://unpkg.com/ccxt@4.3.22/dist/ccxt.browser.js
231
233
 
232
234
  CDNs are not updated in real-time and may have delays. Defaulting to the most recent version without specifying the version number is not recommended. Please, keep in mind that we are not responsible for the correct operation of those CDN servers.
233
235
 
234
236
  ```HTML
235
- <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.2.77/dist/ccxt.browser.js"></script>
237
+ <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.22/dist/ccxt.browser.js"></script>
236
238
  ```
237
239
 
238
240
  Creates a global `ccxt` object:
@@ -22,7 +22,7 @@
22
22
 
23
23
  # ----------------------------------------------------------------------------
24
24
 
25
- __version__ = '4.2.77'
25
+ __version__ = '4.3.22'
26
26
 
27
27
  # ----------------------------------------------------------------------------
28
28
 
@@ -53,6 +53,7 @@ from ccxt.base.errors import BadSymbol # noqa: F4
53
53
  from ccxt.base.errors import OperationRejected # noqa: F401
54
54
  from ccxt.base.errors import NoChange # noqa: F401
55
55
  from ccxt.base.errors import MarginModeAlreadySet # noqa: F401
56
+ from ccxt.base.errors import MarketClosed # noqa: F401
56
57
  from ccxt.base.errors import BadResponse # noqa: F401
57
58
  from ccxt.base.errors import NullResponse # noqa: F401
58
59
  from ccxt.base.errors import InsufficientFunds # noqa: F401
@@ -68,6 +69,7 @@ from ccxt.base.errors import DuplicateOrderId # noqa: F4
68
69
  from ccxt.base.errors import ContractUnavailable # noqa: F401
69
70
  from ccxt.base.errors import NotSupported # noqa: F401
70
71
  from ccxt.base.errors import ProxyError # noqa: F401
72
+ from ccxt.base.errors import ExchangeClosedByUser # noqa: F401
71
73
  from ccxt.base.errors import OperationFailed # noqa: F401
72
74
  from ccxt.base.errors import NetworkError # noqa: F401
73
75
  from ccxt.base.errors import DDoSProtection # noqa: F401
@@ -76,7 +78,6 @@ from ccxt.base.errors import ExchangeNotAvailable # noqa: F4
76
78
  from ccxt.base.errors import OnMaintenance # noqa: F401
77
79
  from ccxt.base.errors import InvalidNonce # noqa: F401
78
80
  from ccxt.base.errors import RequestTimeout # noqa: F401
79
- from ccxt.base.errors import ExchangeClosedByUser # noqa: F401
80
81
  from ccxt.base.errors import error_hierarchy # noqa: F401
81
82
 
82
83
  from ccxt.ace import ace # noqa: F401
@@ -179,6 +180,7 @@ from ccxt.wavesexchange import wavesexchange # noqa: F4
179
180
  from ccxt.wazirx import wazirx # noqa: F401
180
181
  from ccxt.whitebit import whitebit # noqa: F401
181
182
  from ccxt.woo import woo # noqa: F401
183
+ from ccxt.woofipro import woofipro # noqa: F401
182
184
  from ccxt.yobit import yobit # noqa: F401
183
185
  from ccxt.zaif import zaif # noqa: F401
184
186
  from ccxt.zonda import zonda # noqa: F401
@@ -284,6 +286,7 @@ exchanges = [
284
286
  'wazirx',
285
287
  'whitebit',
286
288
  'woo',
289
+ 'woofipro',
287
290
  'yobit',
288
291
  'zaif',
289
292
  'zonda',
@@ -87,6 +87,7 @@ class ImplicitAPI:
87
87
  sapi_get_capital_deposit_subaddress = sapiGetCapitalDepositSubAddress = Entry('capital/deposit/subAddress', 'sapi', 'GET', {'cost': 0.1})
88
88
  sapi_get_capital_deposit_subhisrec = sapiGetCapitalDepositSubHisrec = Entry('capital/deposit/subHisrec', 'sapi', 'GET', {'cost': 0.1})
89
89
  sapi_get_capital_withdraw_history = sapiGetCapitalWithdrawHistory = Entry('capital/withdraw/history', 'sapi', 'GET', {'cost': 1800})
90
+ sapi_get_capital_withdraw_address_list = sapiGetCapitalWithdrawAddressList = Entry('capital/withdraw/address/list', 'sapi', 'GET', {'cost': 10})
90
91
  sapi_get_capital_contract_convertible_coins = sapiGetCapitalContractConvertibleCoins = Entry('capital/contract/convertible-coins', 'sapi', 'GET', {'cost': 4.0002})
91
92
  sapi_get_convert_tradeflow = sapiGetConvertTradeFlow = Entry('convert/tradeFlow', 'sapi', 'GET', {'cost': 20.001})
92
93
  sapi_get_convert_exchangeinfo = sapiGetConvertExchangeInfo = Entry('convert/exchangeInfo', 'sapi', 'GET', {'cost': 50})
@@ -464,6 +465,7 @@ class ImplicitAPI:
464
465
  fapipublic_get_continuousklines = fapiPublicGetContinuousKlines = Entry('continuousKlines', 'fapiPublic', 'GET', {'cost': 1, 'byLimit': [[99, 1], [499, 2], [1000, 5], [10000, 10]]})
465
466
  fapipublic_get_markpriceklines = fapiPublicGetMarkPriceKlines = Entry('markPriceKlines', 'fapiPublic', 'GET', {'cost': 1, 'byLimit': [[99, 1], [499, 2], [1000, 5], [10000, 10]]})
466
467
  fapipublic_get_indexpriceklines = fapiPublicGetIndexPriceKlines = Entry('indexPriceKlines', 'fapiPublic', 'GET', {'cost': 1, 'byLimit': [[99, 1], [499, 2], [1000, 5], [10000, 10]]})
468
+ fapipublic_get_premiumindexklines = fapiPublicGetPremiumIndexKlines = Entry('premiumIndexKlines', 'fapiPublic', 'GET', {'cost': 1, 'byLimit': [[99, 1], [499, 2], [1000, 5], [10000, 10]]})
467
469
  fapipublic_get_fundingrate = fapiPublicGetFundingRate = Entry('fundingRate', 'fapiPublic', 'GET', {'cost': 1})
468
470
  fapipublic_get_fundinginfo = fapiPublicGetFundingInfo = Entry('fundingInfo', 'fapiPublic', 'GET', {'cost': 1})
469
471
  fapipublic_get_premiumindex = fapiPublicGetPremiumIndex = Entry('premiumIndex', 'fapiPublic', 'GET', {'cost': 1})
@@ -608,6 +610,7 @@ class ImplicitAPI:
608
610
  private_get_myallocations = privateGetMyAllocations = Entry('myAllocations', 'private', 'GET', {'cost': 4})
609
611
  private_get_account_commission = privateGetAccountCommission = Entry('account/commission', 'private', 'GET', {'cost': 4})
610
612
  private_post_order_oco = privatePostOrderOco = Entry('order/oco', 'private', 'POST', {'cost': 0.2})
613
+ private_post_orderlist_oco = privatePostOrderListOco = Entry('orderList/oco', 'private', 'POST', {'cost': 0.2})
611
614
  private_post_sor_order = privatePostSorOrder = Entry('sor/order', 'private', 'POST', {'cost': 0.2})
612
615
  private_post_sor_order_test = privatePostSorOrderTest = Entry('sor/order/test', 'private', 'POST', {'cost': 0.2})
613
616
  private_post_order = privatePostOrder = Entry('order', 'private', 'POST', {'cost': 0.2})
@@ -87,6 +87,7 @@ class ImplicitAPI:
87
87
  sapi_get_capital_deposit_subaddress = sapiGetCapitalDepositSubAddress = Entry('capital/deposit/subAddress', 'sapi', 'GET', {'cost': 0.1})
88
88
  sapi_get_capital_deposit_subhisrec = sapiGetCapitalDepositSubHisrec = Entry('capital/deposit/subHisrec', 'sapi', 'GET', {'cost': 0.1})
89
89
  sapi_get_capital_withdraw_history = sapiGetCapitalWithdrawHistory = Entry('capital/withdraw/history', 'sapi', 'GET', {'cost': 1800})
90
+ sapi_get_capital_withdraw_address_list = sapiGetCapitalWithdrawAddressList = Entry('capital/withdraw/address/list', 'sapi', 'GET', {'cost': 10})
90
91
  sapi_get_capital_contract_convertible_coins = sapiGetCapitalContractConvertibleCoins = Entry('capital/contract/convertible-coins', 'sapi', 'GET', {'cost': 4.0002})
91
92
  sapi_get_convert_tradeflow = sapiGetConvertTradeFlow = Entry('convert/tradeFlow', 'sapi', 'GET', {'cost': 20.001})
92
93
  sapi_get_convert_exchangeinfo = sapiGetConvertExchangeInfo = Entry('convert/exchangeInfo', 'sapi', 'GET', {'cost': 50})
@@ -464,6 +465,7 @@ class ImplicitAPI:
464
465
  fapipublic_get_continuousklines = fapiPublicGetContinuousKlines = Entry('continuousKlines', 'fapiPublic', 'GET', {'cost': 1, 'byLimit': [[99, 1], [499, 2], [1000, 5], [10000, 10]]})
465
466
  fapipublic_get_markpriceklines = fapiPublicGetMarkPriceKlines = Entry('markPriceKlines', 'fapiPublic', 'GET', {'cost': 1, 'byLimit': [[99, 1], [499, 2], [1000, 5], [10000, 10]]})
466
467
  fapipublic_get_indexpriceklines = fapiPublicGetIndexPriceKlines = Entry('indexPriceKlines', 'fapiPublic', 'GET', {'cost': 1, 'byLimit': [[99, 1], [499, 2], [1000, 5], [10000, 10]]})
468
+ fapipublic_get_premiumindexklines = fapiPublicGetPremiumIndexKlines = Entry('premiumIndexKlines', 'fapiPublic', 'GET', {'cost': 1, 'byLimit': [[99, 1], [499, 2], [1000, 5], [10000, 10]]})
467
469
  fapipublic_get_fundingrate = fapiPublicGetFundingRate = Entry('fundingRate', 'fapiPublic', 'GET', {'cost': 1})
468
470
  fapipublic_get_fundinginfo = fapiPublicGetFundingInfo = Entry('fundingInfo', 'fapiPublic', 'GET', {'cost': 1})
469
471
  fapipublic_get_premiumindex = fapiPublicGetPremiumIndex = Entry('premiumIndex', 'fapiPublic', 'GET', {'cost': 1})
@@ -608,6 +610,7 @@ class ImplicitAPI:
608
610
  private_get_myallocations = privateGetMyAllocations = Entry('myAllocations', 'private', 'GET', {'cost': 4})
609
611
  private_get_account_commission = privateGetAccountCommission = Entry('account/commission', 'private', 'GET', {'cost': 4})
610
612
  private_post_order_oco = privatePostOrderOco = Entry('order/oco', 'private', 'POST', {'cost': 0.2})
613
+ private_post_orderlist_oco = privatePostOrderListOco = Entry('orderList/oco', 'private', 'POST', {'cost': 0.2})
611
614
  private_post_sor_order = privatePostSorOrder = Entry('sor/order', 'private', 'POST', {'cost': 0.2})
612
615
  private_post_sor_order_test = privatePostSorOrderTest = Entry('sor/order/test', 'private', 'POST', {'cost': 0.2})
613
616
  private_post_order = privatePostOrder = Entry('order', 'private', 'POST', {'cost': 0.2})
@@ -87,6 +87,7 @@ class ImplicitAPI:
87
87
  sapi_get_capital_deposit_subaddress = sapiGetCapitalDepositSubAddress = Entry('capital/deposit/subAddress', 'sapi', 'GET', {'cost': 0.1})
88
88
  sapi_get_capital_deposit_subhisrec = sapiGetCapitalDepositSubHisrec = Entry('capital/deposit/subHisrec', 'sapi', 'GET', {'cost': 0.1})
89
89
  sapi_get_capital_withdraw_history = sapiGetCapitalWithdrawHistory = Entry('capital/withdraw/history', 'sapi', 'GET', {'cost': 1800})
90
+ sapi_get_capital_withdraw_address_list = sapiGetCapitalWithdrawAddressList = Entry('capital/withdraw/address/list', 'sapi', 'GET', {'cost': 10})
90
91
  sapi_get_capital_contract_convertible_coins = sapiGetCapitalContractConvertibleCoins = Entry('capital/contract/convertible-coins', 'sapi', 'GET', {'cost': 4.0002})
91
92
  sapi_get_convert_tradeflow = sapiGetConvertTradeFlow = Entry('convert/tradeFlow', 'sapi', 'GET', {'cost': 20.001})
92
93
  sapi_get_convert_exchangeinfo = sapiGetConvertExchangeInfo = Entry('convert/exchangeInfo', 'sapi', 'GET', {'cost': 50})
@@ -516,6 +517,7 @@ class ImplicitAPI:
516
517
  fapipublic_get_continuousklines = fapiPublicGetContinuousKlines = Entry('continuousKlines', 'fapiPublic', 'GET', {'cost': 1, 'byLimit': [[99, 1], [499, 2], [1000, 5], [10000, 10]]})
517
518
  fapipublic_get_markpriceklines = fapiPublicGetMarkPriceKlines = Entry('markPriceKlines', 'fapiPublic', 'GET', {'cost': 1, 'byLimit': [[99, 1], [499, 2], [1000, 5], [10000, 10]]})
518
519
  fapipublic_get_indexpriceklines = fapiPublicGetIndexPriceKlines = Entry('indexPriceKlines', 'fapiPublic', 'GET', {'cost': 1, 'byLimit': [[99, 1], [499, 2], [1000, 5], [10000, 10]]})
520
+ fapipublic_get_premiumindexklines = fapiPublicGetPremiumIndexKlines = Entry('premiumIndexKlines', 'fapiPublic', 'GET', {'cost': 1, 'byLimit': [[99, 1], [499, 2], [1000, 5], [10000, 10]]})
519
521
  fapipublic_get_fundingrate = fapiPublicGetFundingRate = Entry('fundingRate', 'fapiPublic', 'GET', {'cost': 1})
520
522
  fapipublic_get_fundinginfo = fapiPublicGetFundingInfo = Entry('fundingInfo', 'fapiPublic', 'GET', {'cost': 1})
521
523
  fapipublic_get_premiumindex = fapiPublicGetPremiumIndex = Entry('premiumIndex', 'fapiPublic', 'GET', {'cost': 1})
@@ -660,6 +662,7 @@ class ImplicitAPI:
660
662
  private_get_myallocations = privateGetMyAllocations = Entry('myAllocations', 'private', 'GET', {'cost': 4})
661
663
  private_get_account_commission = privateGetAccountCommission = Entry('account/commission', 'private', 'GET', {'cost': 4})
662
664
  private_post_order_oco = privatePostOrderOco = Entry('order/oco', 'private', 'POST', {'cost': 0.2})
665
+ private_post_orderlist_oco = privatePostOrderListOco = Entry('orderList/oco', 'private', 'POST', {'cost': 0.2})
663
666
  private_post_sor_order = privatePostSorOrder = Entry('sor/order', 'private', 'POST', {'cost': 0.2})
664
667
  private_post_sor_order_test = privatePostSorOrderTest = Entry('sor/order/test', 'private', 'POST', {'cost': 0.2})
665
668
  private_post_order = privatePostOrder = Entry('order', 'private', 'POST', {'cost': 0.2})
@@ -87,6 +87,7 @@ class ImplicitAPI:
87
87
  sapi_get_capital_deposit_subaddress = sapiGetCapitalDepositSubAddress = Entry('capital/deposit/subAddress', 'sapi', 'GET', {'cost': 0.1})
88
88
  sapi_get_capital_deposit_subhisrec = sapiGetCapitalDepositSubHisrec = Entry('capital/deposit/subHisrec', 'sapi', 'GET', {'cost': 0.1})
89
89
  sapi_get_capital_withdraw_history = sapiGetCapitalWithdrawHistory = Entry('capital/withdraw/history', 'sapi', 'GET', {'cost': 1800})
90
+ sapi_get_capital_withdraw_address_list = sapiGetCapitalWithdrawAddressList = Entry('capital/withdraw/address/list', 'sapi', 'GET', {'cost': 10})
90
91
  sapi_get_capital_contract_convertible_coins = sapiGetCapitalContractConvertibleCoins = Entry('capital/contract/convertible-coins', 'sapi', 'GET', {'cost': 4.0002})
91
92
  sapi_get_convert_tradeflow = sapiGetConvertTradeFlow = Entry('convert/tradeFlow', 'sapi', 'GET', {'cost': 20.001})
92
93
  sapi_get_convert_exchangeinfo = sapiGetConvertExchangeInfo = Entry('convert/exchangeInfo', 'sapi', 'GET', {'cost': 50})
@@ -464,6 +465,7 @@ class ImplicitAPI:
464
465
  fapipublic_get_continuousklines = fapiPublicGetContinuousKlines = Entry('continuousKlines', 'fapiPublic', 'GET', {'cost': 1, 'byLimit': [[99, 1], [499, 2], [1000, 5], [10000, 10]]})
465
466
  fapipublic_get_markpriceklines = fapiPublicGetMarkPriceKlines = Entry('markPriceKlines', 'fapiPublic', 'GET', {'cost': 1, 'byLimit': [[99, 1], [499, 2], [1000, 5], [10000, 10]]})
466
467
  fapipublic_get_indexpriceklines = fapiPublicGetIndexPriceKlines = Entry('indexPriceKlines', 'fapiPublic', 'GET', {'cost': 1, 'byLimit': [[99, 1], [499, 2], [1000, 5], [10000, 10]]})
468
+ fapipublic_get_premiumindexklines = fapiPublicGetPremiumIndexKlines = Entry('premiumIndexKlines', 'fapiPublic', 'GET', {'cost': 1, 'byLimit': [[99, 1], [499, 2], [1000, 5], [10000, 10]]})
467
469
  fapipublic_get_fundingrate = fapiPublicGetFundingRate = Entry('fundingRate', 'fapiPublic', 'GET', {'cost': 1})
468
470
  fapipublic_get_fundinginfo = fapiPublicGetFundingInfo = Entry('fundingInfo', 'fapiPublic', 'GET', {'cost': 1})
469
471
  fapipublic_get_premiumindex = fapiPublicGetPremiumIndex = Entry('premiumIndex', 'fapiPublic', 'GET', {'cost': 1})
@@ -608,6 +610,7 @@ class ImplicitAPI:
608
610
  private_get_myallocations = privateGetMyAllocations = Entry('myAllocations', 'private', 'GET', {'cost': 4})
609
611
  private_get_account_commission = privateGetAccountCommission = Entry('account/commission', 'private', 'GET', {'cost': 4})
610
612
  private_post_order_oco = privatePostOrderOco = Entry('order/oco', 'private', 'POST', {'cost': 0.2})
613
+ private_post_orderlist_oco = privatePostOrderListOco = Entry('orderList/oco', 'private', 'POST', {'cost': 0.2})
611
614
  private_post_sor_order = privatePostSorOrder = Entry('sor/order', 'private', 'POST', {'cost': 0.2})
612
615
  private_post_sor_order_test = privatePostSorOrderTest = Entry('sor/order/test', 'private', 'POST', {'cost': 0.2})
613
616
  private_post_order = privatePostOrder = Entry('order', 'private', 'POST', {'cost': 0.2})
@@ -30,8 +30,10 @@ class ImplicitAPI:
30
30
  swap_v1_private_get_positionside_dual = swapV1PrivateGetPositionSideDual = Entry('positionSide/dual', ['swap', 'v1', 'private'], 'GET', {'cost': 1})
31
31
  swap_v1_private_get_market_markpriceklines = swapV1PrivateGetMarketMarkPriceKlines = Entry('market/markPriceKlines', ['swap', 'v1', 'private'], 'GET', {'cost': 1})
32
32
  swap_v1_private_get_trade_batchcancelreplace = swapV1PrivateGetTradeBatchCancelReplace = Entry('trade/batchCancelReplace', ['swap', 'v1', 'private'], 'GET', {'cost': 1})
33
+ swap_v1_private_get_trade_fullorder = swapV1PrivateGetTradeFullOrder = Entry('trade/fullOrder', ['swap', 'v1', 'private'], 'GET', {'cost': 1})
33
34
  swap_v1_private_post_trade_cancelreplace = swapV1PrivatePostTradeCancelReplace = Entry('trade/cancelReplace', ['swap', 'v1', 'private'], 'POST', {'cost': 1})
34
35
  swap_v1_private_post_positionside_dual = swapV1PrivatePostPositionSideDual = Entry('positionSide/dual', ['swap', 'v1', 'private'], 'POST', {'cost': 1})
36
+ swap_v1_private_post_trade_closeposition = swapV1PrivatePostTradeClosePosition = Entry('trade/closePosition', ['swap', 'v1', 'private'], 'POST', {'cost': 1})
35
37
  swap_v2_public_get_server_time = swapV2PublicGetServerTime = Entry('server/time', ['swap', 'v2', 'public'], 'GET', {'cost': 3})
36
38
  swap_v2_public_get_quote_contracts = swapV2PublicGetQuoteContracts = Entry('quote/contracts', ['swap', 'v2', 'public'], 'GET', {'cost': 1})
37
39
  swap_v2_public_get_quote_price = swapV2PublicGetQuotePrice = Entry('quote/price', ['swap', 'v2', 'public'], 'GET', {'cost': 1})
@@ -60,6 +62,7 @@ class ImplicitAPI:
60
62
  swap_v2_private_post_trade_order = swapV2PrivatePostTradeOrder = Entry('trade/order', ['swap', 'v2', 'private'], 'POST', {'cost': 3})
61
63
  swap_v2_private_post_trade_batchorders = swapV2PrivatePostTradeBatchOrders = Entry('trade/batchOrders', ['swap', 'v2', 'private'], 'POST', {'cost': 3})
62
64
  swap_v2_private_post_trade_closeallpositions = swapV2PrivatePostTradeCloseAllPositions = Entry('trade/closeAllPositions', ['swap', 'v2', 'private'], 'POST', {'cost': 3})
65
+ swap_v2_private_post_trade_cancelallafter = swapV2PrivatePostTradeCancelAllAfter = Entry('trade/cancelAllAfter', ['swap', 'v2', 'private'], 'POST', {'cost': 3})
63
66
  swap_v2_private_post_trade_margintype = swapV2PrivatePostTradeMarginType = Entry('trade/marginType', ['swap', 'v2', 'private'], 'POST', {'cost': 3})
64
67
  swap_v2_private_post_trade_leverage = swapV2PrivatePostTradeLeverage = Entry('trade/leverage', ['swap', 'v2', 'private'], 'POST', {'cost': 3})
65
68
  swap_v2_private_post_trade_positionmargin = swapV2PrivatePostTradePositionMargin = Entry('trade/positionMargin', ['swap', 'v2', 'private'], 'POST', {'cost': 3})
@@ -83,19 +86,20 @@ class ImplicitAPI:
83
86
  wallets_v1_private_post_capital_deposit_createsubaddress = walletsV1PrivatePostCapitalDepositCreateSubAddress = Entry('capital/deposit/createSubAddress', ['wallets', 'v1', 'private'], 'POST', {'cost': 1})
84
87
  subaccount_v1_private_get_list = subAccountV1PrivateGetList = Entry('list', ['subAccount', 'v1', 'private'], 'GET', {'cost': 3})
85
88
  subaccount_v1_private_get_assets = subAccountV1PrivateGetAssets = Entry('assets', ['subAccount', 'v1', 'private'], 'GET', {'cost': 3})
86
- subaccount_v1_private_get_apikey_query = subAccountV1PrivateGetApiKeyQuery = Entry('apiKey/query', ['subAccount', 'v1', 'private'], 'GET', {'cost': 1})
87
89
  subaccount_v1_private_post_create = subAccountV1PrivatePostCreate = Entry('create', ['subAccount', 'v1', 'private'], 'POST', {'cost': 3})
88
90
  subaccount_v1_private_post_apikey_create = subAccountV1PrivatePostApiKeyCreate = Entry('apiKey/create', ['subAccount', 'v1', 'private'], 'POST', {'cost': 3})
89
91
  subaccount_v1_private_post_apikey_edit = subAccountV1PrivatePostApiKeyEdit = Entry('apiKey/edit', ['subAccount', 'v1', 'private'], 'POST', {'cost': 3})
90
92
  subaccount_v1_private_post_apikey_del = subAccountV1PrivatePostApiKeyDel = Entry('apiKey/del', ['subAccount', 'v1', 'private'], 'POST', {'cost': 3})
91
93
  subaccount_v1_private_post_updatestatus = subAccountV1PrivatePostUpdateStatus = Entry('updateStatus', ['subAccount', 'v1', 'private'], 'POST', {'cost': 3})
92
94
  account_v1_private_get_uid = accountV1PrivateGetUid = Entry('uid', ['account', 'v1', 'private'], 'GET', {'cost': 1})
95
+ account_v1_private_get_apikey_query = accountV1PrivateGetApiKeyQuery = Entry('apiKey/query', ['account', 'v1', 'private'], 'GET', {'cost': 1})
93
96
  account_v1_private_post_innertransfer_authorizesubaccount = accountV1PrivatePostInnerTransferAuthorizeSubAccount = Entry('innerTransfer/authorizeSubAccount', ['account', 'v1', 'private'], 'POST', {'cost': 3})
94
97
  user_auth_private_post_userdatastream = userAuthPrivatePostUserDataStream = Entry('userDataStream', ['user', 'auth', 'private'], 'POST', {'cost': 1})
95
98
  user_auth_private_put_userdatastream = userAuthPrivatePutUserDataStream = Entry('userDataStream', ['user', 'auth', 'private'], 'PUT', {'cost': 1})
96
99
  copytrading_v1_private_get_swap_trace_currenttrack = copyTradingV1PrivateGetSwapTraceCurrentTrack = Entry('swap/trace/currentTrack', ['copyTrading', 'v1', 'private'], 'GET', {'cost': 1})
97
100
  copytrading_v1_private_post_swap_trace_closetrackorder = copyTradingV1PrivatePostSwapTraceCloseTrackOrder = Entry('swap/trace/closeTrackOrder', ['copyTrading', 'v1', 'private'], 'POST', {'cost': 1})
98
101
  copytrading_v1_private_post_swap_trace_settpsl = copyTradingV1PrivatePostSwapTraceSetTPSL = Entry('swap/trace/setTPSL', ['copyTrading', 'v1', 'private'], 'POST', {'cost': 1})
102
+ copytrading_v1_private_post_spot_trader_sellorder = copyTradingV1PrivatePostSpotTraderSellOrder = Entry('spot/trader/sellOrder', ['copyTrading', 'v1', 'private'], 'POST', {'cost': 1})
99
103
  api_v3_private_get_asset_transfer = apiV3PrivateGetAssetTransfer = Entry('asset/transfer', ['api', 'v3', 'private'], 'GET', {'cost': 1})
100
104
  api_v3_private_get_capital_deposit_hisrec = apiV3PrivateGetCapitalDepositHisrec = Entry('capital/deposit/hisrec', ['api', 'v3', 'private'], 'GET', {'cost': 1})
101
105
  api_v3_private_get_capital_withdraw_history = apiV3PrivateGetCapitalWithdrawHistory = Entry('capital/withdraw/history', ['api', 'v3', 'private'], 'GET', {'cost': 1})
@@ -101,6 +101,9 @@ class ImplicitAPI:
101
101
  private_spot_get_v2_spot_account_subaccount_assets = privateSpotGetV2SpotAccountSubaccountAssets = Entry('v2/spot/account/subaccount-assets', ['private', 'spot'], 'GET', {'cost': 2})
102
102
  private_spot_get_v2_spot_account_bills = privateSpotGetV2SpotAccountBills = Entry('v2/spot/account/bills', ['private', 'spot'], 'GET', {'cost': 2})
103
103
  private_spot_get_v2_spot_account_transferrecords = privateSpotGetV2SpotAccountTransferRecords = Entry('v2/spot/account/transferRecords', ['private', 'spot'], 'GET', {'cost': 1})
104
+ private_spot_get_v2_account_funding_assets = privateSpotGetV2AccountFundingAssets = Entry('v2/account/funding-assets', ['private', 'spot'], 'GET', {'cost': 2})
105
+ private_spot_get_v2_account_bot_assets = privateSpotGetV2AccountBotAssets = Entry('v2/account/bot-assets', ['private', 'spot'], 'GET', {'cost': 2})
106
+ private_spot_get_v2_account_all_account_balance = privateSpotGetV2AccountAllAccountBalance = Entry('v2/account/all-account-balance', ['private', 'spot'], 'GET', {'cost': 20})
104
107
  private_spot_get_v2_spot_wallet_deposit_address = privateSpotGetV2SpotWalletDepositAddress = Entry('v2/spot/wallet/deposit-address', ['private', 'spot'], 'GET', {'cost': 2})
105
108
  private_spot_get_v2_spot_wallet_deposit_records = privateSpotGetV2SpotWalletDepositRecords = Entry('v2/spot/wallet/deposit-records', ['private', 'spot'], 'GET', {'cost': 2})
106
109
  private_spot_get_v2_spot_wallet_withdrawal_records = privateSpotGetV2SpotWalletWithdrawalRecords = Entry('v2/spot/wallet/withdrawal-records', ['private', 'spot'], 'GET', {'cost': 2})
@@ -41,7 +41,7 @@ class ImplicitAPI:
41
41
  private_post_transfer_from_main = privatePostTransferFromMain = Entry('transfer-from-main/', 'private', 'POST', {'cost': 1})
42
42
  private_post_my_trading_pairs = privatePostMyTradingPairs = Entry('my_trading_pairs/', 'private', 'POST', {'cost': 1})
43
43
  private_post_fees_trading = privatePostFeesTrading = Entry('fees/trading/', 'private', 'POST', {'cost': 1})
44
- private_post_fees_trading_pair = privatePostFeesTradingPair = Entry('fees/trading/{pair}', 'private', 'POST', {'cost': 1})
44
+ private_post_fees_trading_market_symbol = privatePostFeesTradingMarketSymbol = Entry('fees/trading/{market_symbol}', 'private', 'POST', {'cost': 1})
45
45
  private_post_fees_withdrawal = privatePostFeesWithdrawal = Entry('fees/withdrawal/', 'private', 'POST', {'cost': 1})
46
46
  private_post_fees_withdrawal_currency = privatePostFeesWithdrawalCurrency = Entry('fees/withdrawal/{currency}/', 'private', 'POST', {'cost': 1})
47
47
  private_post_withdrawal_requests = privatePostWithdrawalRequests = Entry('withdrawal-requests/', 'private', 'POST', {'cost': 1})
@@ -234,3 +234,9 @@ class ImplicitAPI:
234
234
  private_post_blur_address = privatePostBlurAddress = Entry('blur_address/', 'private', 'POST', {'cost': 1})
235
235
  private_post_vext_withdrawal = privatePostVextWithdrawal = Entry('vext_withdrawal/', 'private', 'POST', {'cost': 1})
236
236
  private_post_vext_address = privatePostVextAddress = Entry('vext_address/', 'private', 'POST', {'cost': 1})
237
+ private_post_cspr_withdrawal = privatePostCsprWithdrawal = Entry('cspr_withdrawal/', 'private', 'POST', {'cost': 1})
238
+ private_post_cspr_address = privatePostCsprAddress = Entry('cspr_address/', 'private', 'POST', {'cost': 1})
239
+ private_post_vchf_withdrawal = privatePostVchfWithdrawal = Entry('vchf_withdrawal/', 'private', 'POST', {'cost': 1})
240
+ private_post_vchf_address = privatePostVchfAddress = Entry('vchf_address/', 'private', 'POST', {'cost': 1})
241
+ private_post_veur_withdrawal = privatePostVeurWithdrawal = Entry('veur_withdrawal/', 'private', 'POST', {'cost': 1})
242
+ private_post_veur_address = privatePostVeurAddress = Entry('veur_address/', 'private', 'POST', {'cost': 1})
@@ -24,6 +24,8 @@ class ImplicitAPI:
24
24
  private_get_trade_orders_tpsl_pending = privateGetTradeOrdersTpslPending = Entry('trade/orders-tpsl-pending', 'private', 'GET', {'cost': 1})
25
25
  private_get_trade_orders_history = privateGetTradeOrdersHistory = Entry('trade/orders-history', 'private', 'GET', {'cost': 1})
26
26
  private_get_trade_orders_tpsl_history = privateGetTradeOrdersTpslHistory = Entry('trade/orders-tpsl-history', 'private', 'GET', {'cost': 1})
27
+ private_get_user_query_apikey = privateGetUserQueryApikey = Entry('user/query-apikey', 'private', 'GET', {'cost': 1})
28
+ private_get_affiliate_basic = privateGetAffiliateBasic = Entry('affiliate/basic', 'private', 'GET', {'cost': 1})
27
29
  private_post_trade_order = privatePostTradeOrder = Entry('trade/order', 'private', 'POST', {'cost': 1})
28
30
  private_post_trade_cancel_order = privatePostTradeCancelOrder = Entry('trade/cancel-order', 'private', 'POST', {'cost': 1})
29
31
  private_post_account_set_leverage = privatePostAccountSetLeverage = Entry('account/set-leverage', 'private', 'POST', {'cost': 1})
@@ -128,6 +128,7 @@ class ImplicitAPI:
128
128
  private_get_v5_account_fee_rate = privateGetV5AccountFeeRate = Entry('v5/account/fee-rate', 'private', 'GET', {'cost': 10})
129
129
  private_get_v5_account_info = privateGetV5AccountInfo = Entry('v5/account/info', 'private', 'GET', {'cost': 5})
130
130
  private_get_v5_account_transaction_log = privateGetV5AccountTransactionLog = Entry('v5/account/transaction-log', 'private', 'GET', {'cost': 1})
131
+ private_get_v5_account_contract_transaction_log = privateGetV5AccountContractTransactionLog = Entry('v5/account/contract-transaction-log', 'private', 'GET', {'cost': 1})
131
132
  private_get_v5_account_smp_group = privateGetV5AccountSmpGroup = Entry('v5/account/smp-group', 'private', 'GET', {'cost': 1})
132
133
  private_get_v5_account_mmp_state = privateGetV5AccountMmpState = Entry('v5/account/mmp-state', 'private', 'GET', {'cost': 5})
133
134
  private_get_v5_asset_exchange_order_record = privateGetV5AssetExchangeOrderRecord = Entry('v5/asset/exchange/order-record', 'private', 'GET', {'cost': 5})
@@ -149,12 +150,14 @@ class ImplicitAPI:
149
150
  private_get_v5_asset_coin_query_info = privateGetV5AssetCoinQueryInfo = Entry('v5/asset/coin/query-info', 'private', 'GET', {'cost': 28})
150
151
  private_get_v5_asset_withdraw_query_record = privateGetV5AssetWithdrawQueryRecord = Entry('v5/asset/withdraw/query-record', 'private', 'GET', {'cost': 10})
151
152
  private_get_v5_asset_withdraw_withdrawable_amount = privateGetV5AssetWithdrawWithdrawableAmount = Entry('v5/asset/withdraw/withdrawable-amount', 'private', 'GET', {'cost': 5})
153
+ private_get_v5_asset_withdraw_vasp_list = privateGetV5AssetWithdrawVaspList = Entry('v5/asset/withdraw/vasp/list', 'private', 'GET', {'cost': 5})
152
154
  private_get_v5_user_query_sub_members = privateGetV5UserQuerySubMembers = Entry('v5/user/query-sub-members', 'private', 'GET', {'cost': 5})
153
155
  private_get_v5_user_query_api = privateGetV5UserQueryApi = Entry('v5/user/query-api', 'private', 'GET', {'cost': 5})
154
156
  private_get_v5_user_sub_apikeys = privateGetV5UserSubApikeys = Entry('v5/user/sub-apikeys', 'private', 'GET', {'cost': 5})
155
157
  private_get_v5_user_get_member_type = privateGetV5UserGetMemberType = Entry('v5/user/get-member-type', 'private', 'GET', {'cost': 5})
156
158
  private_get_v5_user_aff_customer_info = privateGetV5UserAffCustomerInfo = Entry('v5/user/aff-customer-info', 'private', 'GET', {'cost': 5})
157
159
  private_get_v5_user_del_submember = privateGetV5UserDelSubmember = Entry('v5/user/del-submember', 'private', 'GET', {'cost': 5})
160
+ private_get_v5_user_submembers = privateGetV5UserSubmembers = Entry('v5/user/submembers', 'private', 'GET', {'cost': 5})
158
161
  private_get_v5_spot_lever_token_order_record = privateGetV5SpotLeverTokenOrderRecord = Entry('v5/spot-lever-token/order-record', 'private', 'GET', {'cost': 1})
159
162
  private_get_v5_spot_margin_trade_state = privateGetV5SpotMarginTradeState = Entry('v5/spot-margin-trade/state', 'private', 'GET', {'cost': 5})
160
163
  private_get_v5_spot_cross_margin_trade_loan_info = privateGetV5SpotCrossMarginTradeLoanInfo = Entry('v5/spot-cross-margin-trade/loan-info', 'private', 'GET', {'cost': 1})
@@ -172,6 +175,7 @@ class ImplicitAPI:
172
175
  private_get_v5_broker_earning_record = privateGetV5BrokerEarningRecord = Entry('v5/broker/earning-record', 'private', 'GET', {'cost': 5})
173
176
  private_get_v5_broker_earnings_info = privateGetV5BrokerEarningsInfo = Entry('v5/broker/earnings-info', 'private', 'GET', {'cost': 5})
174
177
  private_get_v5_broker_account_info = privateGetV5BrokerAccountInfo = Entry('v5/broker/account-info', 'private', 'GET', {'cost': 5})
178
+ private_get_v5_broker_asset_query_sub_member_deposit_record = privateGetV5BrokerAssetQuerySubMemberDepositRecord = Entry('v5/broker/asset/query-sub-member-deposit-record', 'private', 'GET', {'cost': 10})
175
179
  private_post_option_usdc_openapi_private_v1_place_order = privatePostOptionUsdcOpenapiPrivateV1PlaceOrder = Entry('option/usdc/openapi/private/v1/place-order', 'private', 'POST', {'cost': 2.5})
176
180
  private_post_option_usdc_openapi_private_v1_replace_order = privatePostOptionUsdcOpenapiPrivateV1ReplaceOrder = Entry('option/usdc/openapi/private/v1/replace-order', 'private', 'POST', {'cost': 2.5})
177
181
  private_post_option_usdc_openapi_private_v1_cancel_order = privatePostOptionUsdcOpenapiPrivateV1CancelOrder = Entry('option/usdc/openapi/private/v1/cancel-order', 'private', 'POST', {'cost': 2.5})
@@ -265,7 +269,7 @@ class ImplicitAPI:
265
269
  private_post_v5_account_set_hedging_mode = privatePostV5AccountSetHedgingMode = Entry('v5/account/set-hedging-mode', 'private', 'POST', {'cost': 5})
266
270
  private_post_v5_account_mmp_modify = privatePostV5AccountMmpModify = Entry('v5/account/mmp-modify', 'private', 'POST', {'cost': 5})
267
271
  private_post_v5_account_mmp_reset = privatePostV5AccountMmpReset = Entry('v5/account/mmp-reset', 'private', 'POST', {'cost': 5})
268
- private_post_v5_asset_transfer_inter_transfer = privatePostV5AssetTransferInterTransfer = Entry('v5/asset/transfer/inter-transfer', 'private', 'POST', {'cost': 150})
272
+ private_post_v5_asset_transfer_inter_transfer = privatePostV5AssetTransferInterTransfer = Entry('v5/asset/transfer/inter-transfer', 'private', 'POST', {'cost': 50})
269
273
  private_post_v5_asset_transfer_save_transfer_sub_member = privatePostV5AssetTransferSaveTransferSubMember = Entry('v5/asset/transfer/save-transfer-sub-member', 'private', 'POST', {'cost': 150})
270
274
  private_post_v5_asset_transfer_universal_transfer = privatePostV5AssetTransferUniversalTransfer = Entry('v5/asset/transfer/universal-transfer', 'private', 'POST', {'cost': 10})
271
275
  private_post_v5_asset_deposit_deposit_to_account = privatePostV5AssetDepositDepositToAccount = Entry('v5/asset/deposit/deposit-to-account', 'private', 'POST', {'cost': 5})
@@ -291,3 +295,4 @@ class ImplicitAPI:
291
295
  private_post_v5_lending_redeem_cancel = privatePostV5LendingRedeemCancel = Entry('v5/lending/redeem-cancel', 'private', 'POST', {'cost': 5})
292
296
  private_post_v5_account_set_collateral_switch = privatePostV5AccountSetCollateralSwitch = Entry('v5/account/set-collateral-switch', 'private', 'POST', {'cost': 5})
293
297
  private_post_v5_account_set_collateral_switch_batch = privatePostV5AccountSetCollateralSwitchBatch = Entry('v5/account/set-collateral-switch-batch', 'private', 'POST', {'cost': 5})
298
+ private_post_v5_account_demo_apply_money = privatePostV5AccountDemoApplyMoney = Entry('v5/account/demo-apply-money', 'private', 'POST', {'cost': 5})
@@ -48,6 +48,11 @@ class ImplicitAPI:
48
48
  v2_private_delete_accounts_id = v2PrivateDeleteAccountsId = Entry('accounts/{id}', ['v2', 'private'], 'DELETE', {'cost': 10.6})
49
49
  v2_private_delete_accounts_account_id_transactions_transaction_id = v2PrivateDeleteAccountsAccountIdTransactionsTransactionId = Entry('accounts/{account_id}/transactions/{transaction_id}', ['v2', 'private'], 'DELETE', {'cost': 10.6})
50
50
  v3_public_get_brokerage_time = v3PublicGetBrokerageTime = Entry('brokerage/time', ['v3', 'public'], 'GET', {'cost': 3})
51
+ v3_public_get_brokerage_market_product_book = v3PublicGetBrokerageMarketProductBook = Entry('brokerage/market/product_book', ['v3', 'public'], 'GET', {'cost': 3})
52
+ v3_public_get_brokerage_market_products = v3PublicGetBrokerageMarketProducts = Entry('brokerage/market/products', ['v3', 'public'], 'GET', {'cost': 3})
53
+ v3_public_get_brokerage_market_products_product_id = v3PublicGetBrokerageMarketProductsProductId = Entry('brokerage/market/products/{product_id}', ['v3', 'public'], 'GET', {'cost': 3})
54
+ v3_public_get_brokerage_market_products_product_id_candles = v3PublicGetBrokerageMarketProductsProductIdCandles = Entry('brokerage/market/products/{product_id}/candles', ['v3', 'public'], 'GET', {'cost': 3})
55
+ v3_public_get_brokerage_market_products_product_id_ticker = v3PublicGetBrokerageMarketProductsProductIdTicker = Entry('brokerage/market/products/{product_id}/ticker', ['v3', 'public'], 'GET', {'cost': 3})
51
56
  v3_private_get_brokerage_accounts = v3PrivateGetBrokerageAccounts = Entry('brokerage/accounts', ['v3', 'private'], 'GET', {'cost': 1})
52
57
  v3_private_get_brokerage_accounts_account_uuid = v3PrivateGetBrokerageAccountsAccountUuid = Entry('brokerage/accounts/{account_uuid}', ['v3', 'private'], 'GET', {'cost': 1})
53
58
  v3_private_get_brokerage_orders_historical_batch = v3PrivateGetBrokerageOrdersHistoricalBatch = Entry('brokerage/orders/historical/batch', ['v3', 'private'], 'GET', {'cost': 1})
@@ -83,6 +88,7 @@ class ImplicitAPI:
83
88
  v3_private_post_brokerage_convert_trade_trade_id = v3PrivatePostBrokerageConvertTradeTradeId = Entry('brokerage/convert/trade/{trade_id}', ['v3', 'private'], 'POST', {'cost': 1})
84
89
  v3_private_post_brokerage_cfm_sweeps_schedule = v3PrivatePostBrokerageCfmSweepsSchedule = Entry('brokerage/cfm/sweeps/schedule', ['v3', 'private'], 'POST', {'cost': 1})
85
90
  v3_private_post_brokerage_intx_allocate = v3PrivatePostBrokerageIntxAllocate = Entry('brokerage/intx/allocate', ['v3', 'private'], 'POST', {'cost': 1})
91
+ v3_private_post_brokerage_orders_close_position = v3PrivatePostBrokerageOrdersClosePosition = Entry('brokerage/orders/close_position', ['v3', 'private'], 'POST', {'cost': 1})
86
92
  v3_private_put_brokerage_portfolios_portfolio_uuid = v3PrivatePutBrokeragePortfoliosPortfolioUuid = Entry('brokerage/portfolios/{portfolio_uuid}', ['v3', 'private'], 'PUT', {'cost': 1})
87
93
  v3_private_delete_brokerage_portfolios_portfolio_uuid = v3PrivateDeleteBrokeragePortfoliosPortfolioUuid = Entry('brokerage/portfolios/{portfolio_uuid}', ['v3', 'private'], 'DELETE', {'cost': 1})
88
94
  v3_private_delete_brokerage_cfm_sweeps = v3PrivateDeleteBrokerageCfmSweeps = Entry('brokerage/cfm/sweeps', ['v3', 'private'], 'DELETE', {'cost': 1})