ccxt 4.4.86__tar.gz → 4.4.87__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 (668) hide show
  1. {ccxt-4.4.86/ccxt.egg-info → ccxt-4.4.87}/PKG-INFO +18 -6
  2. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/__init__.py +5 -1
  3. ccxt-4.4.87/ccxt/abstract/okxus.py +349 -0
  4. ccxt-4.4.87/ccxt/abstract/woofipro.py +119 -0
  5. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/__init__.py +5 -1
  6. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/base/exchange.py +5 -5
  7. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/bitteam.py +31 -0
  8. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/coinmetro.py +3 -0
  9. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/gate.py +91 -73
  10. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/htx.py +10 -8
  11. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/hyperliquid.py +32 -16
  12. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/kraken.py +5 -8
  13. ccxt-4.4.86/ccxt/async_support/woofipro.py → ccxt-4.4.87/ccxt/async_support/modetrade.py +28 -30
  14. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/okx.py +90 -3
  15. ccxt-4.4.87/ccxt/async_support/okxus.py +54 -0
  16. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/paradex.py +4 -1
  17. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/phemex.py +4 -6
  18. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/poloniex.py +172 -159
  19. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/probit.py +18 -47
  20. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/timex.py +5 -10
  21. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/vertex.py +3 -4
  22. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/whitebit.py +41 -11
  23. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/woo.py +101 -75
  24. ccxt-4.4.87/ccxt/async_support/woofipro.py +2734 -0
  25. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/xt.py +31 -41
  26. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/base/exchange.py +12 -9
  27. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/bitteam.py +31 -0
  28. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/coinmetro.py +3 -0
  29. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/gate.py +91 -73
  30. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/htx.py +10 -8
  31. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/hyperliquid.py +32 -16
  32. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/kraken.py +5 -8
  33. ccxt-4.4.86/ccxt/woofipro.py → ccxt-4.4.87/ccxt/modetrade.py +28 -30
  34. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/okx.py +90 -3
  35. ccxt-4.4.87/ccxt/okxus.py +54 -0
  36. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/paradex.py +4 -1
  37. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/phemex.py +4 -6
  38. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/poloniex.py +172 -159
  39. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/__init__.py +61 -1
  40. ccxt-4.4.87/ccxt/pro/modetrade.py +1271 -0
  41. ccxt-4.4.87/ccxt/pro/okxus.py +38 -0
  42. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/probit.py +18 -47
  43. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/test/tests_async.py +17 -1
  44. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/test/tests_sync.py +17 -1
  45. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/timex.py +5 -10
  46. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/vertex.py +3 -4
  47. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/whitebit.py +41 -11
  48. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/woo.py +100 -75
  49. ccxt-4.4.87/ccxt/woofipro.py +2733 -0
  50. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/xt.py +31 -41
  51. {ccxt-4.4.86 → ccxt-4.4.87/ccxt.egg-info}/PKG-INFO +18 -6
  52. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt.egg-info/SOURCES.txt +8 -0
  53. {ccxt-4.4.86 → ccxt-4.4.87}/package.json +1 -1
  54. {ccxt-4.4.86 → ccxt-4.4.87}/LICENSE.txt +0 -0
  55. {ccxt-4.4.86 → ccxt-4.4.87}/MANIFEST.in +0 -0
  56. {ccxt-4.4.86 → ccxt-4.4.87}/README.rst +0 -0
  57. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/__init__.py +0 -0
  58. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/alpaca.py +0 -0
  59. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/apex.py +0 -0
  60. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/ascendex.py +0 -0
  61. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/bequant.py +0 -0
  62. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/bigone.py +0 -0
  63. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/binance.py +0 -0
  64. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/binancecoinm.py +0 -0
  65. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/binanceus.py +0 -0
  66. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/binanceusdm.py +0 -0
  67. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/bingx.py +0 -0
  68. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/bit2c.py +0 -0
  69. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/bitbank.py +0 -0
  70. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/bitbns.py +0 -0
  71. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/bitfinex.py +0 -0
  72. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/bitflyer.py +0 -0
  73. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/bitget.py +0 -0
  74. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/bithumb.py +0 -0
  75. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/bitmart.py +0 -0
  76. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/bitmex.py +0 -0
  77. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/bitopro.py +0 -0
  78. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/bitrue.py +0 -0
  79. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/bitso.py +0 -0
  80. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/bitstamp.py +0 -0
  81. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/bitteam.py +0 -0
  82. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/bittrade.py +0 -0
  83. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/bitvavo.py +0 -0
  84. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/blockchaincom.py +0 -0
  85. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/blofin.py +0 -0
  86. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/btcalpha.py +0 -0
  87. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/btcbox.py +0 -0
  88. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/btcmarkets.py +0 -0
  89. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/btcturk.py +0 -0
  90. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/bybit.py +0 -0
  91. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/cex.py +0 -0
  92. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/coinbase.py +0 -0
  93. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/coinbaseadvanced.py +0 -0
  94. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/coinbaseexchange.py +0 -0
  95. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/coinbaseinternational.py +0 -0
  96. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/coincatch.py +0 -0
  97. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/coincheck.py +0 -0
  98. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/coinex.py +0 -0
  99. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/coinlist.py +0 -0
  100. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/coinmate.py +0 -0
  101. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/coinmetro.py +0 -0
  102. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/coinone.py +0 -0
  103. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/coinsph.py +0 -0
  104. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/coinspot.py +0 -0
  105. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/cryptocom.py +0 -0
  106. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/cryptomus.py +0 -0
  107. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/defx.py +0 -0
  108. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/delta.py +0 -0
  109. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/deribit.py +0 -0
  110. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/derive.py +0 -0
  111. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/digifinex.py +0 -0
  112. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/ellipx.py +0 -0
  113. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/exmo.py +0 -0
  114. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/fmfwio.py +0 -0
  115. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/gate.py +0 -0
  116. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/gateio.py +0 -0
  117. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/gemini.py +0 -0
  118. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/hashkey.py +0 -0
  119. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/hitbtc.py +0 -0
  120. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/hollaex.py +0 -0
  121. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/htx.py +0 -0
  122. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/huobi.py +0 -0
  123. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/hyperliquid.py +0 -0
  124. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/independentreserve.py +0 -0
  125. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/indodax.py +0 -0
  126. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/kraken.py +0 -0
  127. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/krakenfutures.py +0 -0
  128. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/kucoin.py +0 -0
  129. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/kucoinfutures.py +0 -0
  130. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/latoken.py +0 -0
  131. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/lbank.py +0 -0
  132. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/luno.py +0 -0
  133. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/mercado.py +0 -0
  134. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/mexc.py +0 -0
  135. ccxt-4.4.86/ccxt/abstract/woofipro.py → ccxt-4.4.87/ccxt/abstract/modetrade.py +0 -0
  136. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/myokx.py +0 -0
  137. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/ndax.py +0 -0
  138. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/novadax.py +0 -0
  139. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/oceanex.py +0 -0
  140. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/okcoin.py +0 -0
  141. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/okx.py +0 -0
  142. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/onetrading.py +0 -0
  143. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/oxfun.py +0 -0
  144. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/p2b.py +0 -0
  145. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/paradex.py +0 -0
  146. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/paymium.py +0 -0
  147. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/phemex.py +0 -0
  148. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/poloniex.py +0 -0
  149. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/probit.py +0 -0
  150. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/timex.py +0 -0
  151. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/tokocrypto.py +0 -0
  152. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/tradeogre.py +0 -0
  153. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/upbit.py +0 -0
  154. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/vertex.py +0 -0
  155. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/wavesexchange.py +0 -0
  156. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/whitebit.py +0 -0
  157. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/woo.py +0 -0
  158. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/xt.py +0 -0
  159. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/yobit.py +0 -0
  160. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/zaif.py +0 -0
  161. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/abstract/zonda.py +0 -0
  162. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/alpaca.py +0 -0
  163. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/apex.py +0 -0
  164. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/ascendex.py +0 -0
  165. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/alpaca.py +0 -0
  166. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/apex.py +0 -0
  167. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/ascendex.py +0 -0
  168. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/base/__init__.py +0 -0
  169. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/base/throttler.py +0 -0
  170. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/base/ws/__init__.py +0 -0
  171. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/base/ws/aiohttp_client.py +0 -0
  172. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/base/ws/cache.py +0 -0
  173. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/base/ws/client.py +0 -0
  174. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/base/ws/functions.py +0 -0
  175. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/base/ws/future.py +0 -0
  176. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/base/ws/order_book.py +0 -0
  177. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/base/ws/order_book_side.py +0 -0
  178. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/bequant.py +0 -0
  179. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/bigone.py +0 -0
  180. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/binance.py +1 -1
  181. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/binancecoinm.py +0 -0
  182. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/binanceus.py +0 -0
  183. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/binanceusdm.py +0 -0
  184. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/bingx.py +0 -0
  185. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/bit2c.py +0 -0
  186. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/bitbank.py +0 -0
  187. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/bitbns.py +0 -0
  188. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/bitcoincom.py +0 -0
  189. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/bitfinex.py +0 -0
  190. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/bitfinex1.py +0 -0
  191. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/bitflyer.py +0 -0
  192. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/bitget.py +0 -0
  193. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/bithumb.py +0 -0
  194. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/bitmart.py +0 -0
  195. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/bitmex.py +0 -0
  196. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/bitopro.py +0 -0
  197. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/bitpanda.py +0 -0
  198. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/bitrue.py +0 -0
  199. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/bitso.py +0 -0
  200. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/bitstamp.py +0 -0
  201. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/bittrade.py +0 -0
  202. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/bitvavo.py +0 -0
  203. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/blockchaincom.py +0 -0
  204. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/blofin.py +0 -0
  205. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/btcalpha.py +0 -0
  206. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/btcbox.py +0 -0
  207. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/btcmarkets.py +0 -0
  208. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/btcturk.py +0 -0
  209. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/bybit.py +0 -0
  210. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/cex.py +0 -0
  211. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/coinbase.py +0 -0
  212. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/coinbaseadvanced.py +0 -0
  213. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/coinbaseexchange.py +0 -0
  214. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/coinbaseinternational.py +0 -0
  215. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/coincatch.py +0 -0
  216. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/coincheck.py +0 -0
  217. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/coinex.py +0 -0
  218. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/coinlist.py +0 -0
  219. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/coinmate.py +0 -0
  220. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/coinone.py +0 -0
  221. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/coinsph.py +0 -0
  222. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/coinspot.py +0 -0
  223. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/cryptocom.py +0 -0
  224. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/cryptomus.py +0 -0
  225. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/defx.py +0 -0
  226. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/delta.py +0 -0
  227. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/deribit.py +0 -0
  228. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/derive.py +0 -0
  229. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/digifinex.py +0 -0
  230. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/ellipx.py +0 -0
  231. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/exmo.py +0 -0
  232. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/fmfwio.py +0 -0
  233. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/gateio.py +0 -0
  234. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/gemini.py +0 -0
  235. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/hashkey.py +0 -0
  236. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/hitbtc.py +0 -0
  237. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/hollaex.py +0 -0
  238. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/huobi.py +0 -0
  239. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/independentreserve.py +0 -0
  240. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/indodax.py +0 -0
  241. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/krakenfutures.py +0 -0
  242. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/kucoin.py +0 -0
  243. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/kucoinfutures.py +0 -0
  244. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/latoken.py +0 -0
  245. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/lbank.py +0 -0
  246. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/luno.py +0 -0
  247. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/mercado.py +0 -0
  248. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/mexc.py +0 -0
  249. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/myokx.py +0 -0
  250. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/ndax.py +0 -0
  251. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/novadax.py +0 -0
  252. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/oceanex.py +0 -0
  253. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/okcoin.py +0 -0
  254. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/onetrading.py +0 -0
  255. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/oxfun.py +0 -0
  256. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/p2b.py +0 -0
  257. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/paymium.py +0 -0
  258. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/poloniexfutures.py +0 -0
  259. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/tokocrypto.py +0 -0
  260. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/tradeogre.py +0 -0
  261. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/upbit.py +0 -0
  262. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/wavesexchange.py +0 -0
  263. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/yobit.py +0 -0
  264. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/zaif.py +0 -0
  265. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/async_support/zonda.py +0 -0
  266. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/base/__init__.py +0 -0
  267. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/base/decimal_to_precision.py +0 -0
  268. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/base/errors.py +0 -0
  269. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/base/precise.py +0 -0
  270. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/base/types.py +0 -0
  271. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/bequant.py +0 -0
  272. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/bigone.py +0 -0
  273. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/binance.py +1 -1
  274. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/binancecoinm.py +0 -0
  275. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/binanceus.py +0 -0
  276. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/binanceusdm.py +0 -0
  277. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/bingx.py +0 -0
  278. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/bit2c.py +0 -0
  279. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/bitbank.py +0 -0
  280. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/bitbns.py +0 -0
  281. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/bitcoincom.py +0 -0
  282. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/bitfinex.py +0 -0
  283. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/bitfinex1.py +0 -0
  284. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/bitflyer.py +0 -0
  285. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/bitget.py +0 -0
  286. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/bithumb.py +0 -0
  287. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/bitmart.py +0 -0
  288. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/bitmex.py +0 -0
  289. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/bitopro.py +0 -0
  290. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/bitpanda.py +0 -0
  291. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/bitrue.py +0 -0
  292. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/bitso.py +0 -0
  293. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/bitstamp.py +0 -0
  294. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/bittrade.py +0 -0
  295. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/bitvavo.py +0 -0
  296. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/blockchaincom.py +0 -0
  297. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/blofin.py +0 -0
  298. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/btcalpha.py +0 -0
  299. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/btcbox.py +0 -0
  300. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/btcmarkets.py +0 -0
  301. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/btcturk.py +0 -0
  302. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/bybit.py +0 -0
  303. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/cex.py +0 -0
  304. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/coinbase.py +0 -0
  305. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/coinbaseadvanced.py +0 -0
  306. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/coinbaseexchange.py +0 -0
  307. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/coinbaseinternational.py +0 -0
  308. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/coincatch.py +0 -0
  309. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/coincheck.py +0 -0
  310. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/coinex.py +0 -0
  311. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/coinlist.py +0 -0
  312. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/coinmate.py +0 -0
  313. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/coinone.py +0 -0
  314. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/coinsph.py +0 -0
  315. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/coinspot.py +0 -0
  316. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/cryptocom.py +0 -0
  317. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/cryptomus.py +0 -0
  318. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/defx.py +0 -0
  319. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/delta.py +0 -0
  320. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/deribit.py +0 -0
  321. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/derive.py +0 -0
  322. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/digifinex.py +0 -0
  323. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/ellipx.py +0 -0
  324. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/exmo.py +0 -0
  325. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/fmfwio.py +0 -0
  326. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/gateio.py +0 -0
  327. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/gemini.py +0 -0
  328. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/hashkey.py +0 -0
  329. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/hitbtc.py +0 -0
  330. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/hollaex.py +0 -0
  331. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/huobi.py +0 -0
  332. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/independentreserve.py +0 -0
  333. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/indodax.py +0 -0
  334. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/krakenfutures.py +0 -0
  335. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/kucoin.py +0 -0
  336. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/kucoinfutures.py +0 -0
  337. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/latoken.py +0 -0
  338. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/lbank.py +0 -0
  339. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/luno.py +0 -0
  340. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/mercado.py +0 -0
  341. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/mexc.py +0 -0
  342. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/myokx.py +0 -0
  343. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/ndax.py +0 -0
  344. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/novadax.py +0 -0
  345. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/oceanex.py +0 -0
  346. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/okcoin.py +0 -0
  347. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/onetrading.py +0 -0
  348. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/oxfun.py +0 -0
  349. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/p2b.py +0 -0
  350. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/paymium.py +0 -0
  351. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/poloniexfutures.py +0 -0
  352. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/alpaca.py +0 -0
  353. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/apex.py +0 -0
  354. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/ascendex.py +0 -0
  355. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/bequant.py +0 -0
  356. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/binance.py +0 -0
  357. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/binancecoinm.py +0 -0
  358. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/binanceus.py +0 -0
  359. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/binanceusdm.py +0 -0
  360. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/bingx.py +0 -0
  361. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/bitcoincom.py +0 -0
  362. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/bitfinex.py +0 -0
  363. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/bitfinex1.py +0 -0
  364. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/bitget.py +0 -0
  365. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/bithumb.py +0 -0
  366. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/bitmart.py +0 -0
  367. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/bitmex.py +0 -0
  368. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/bitopro.py +0 -0
  369. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/bitpanda.py +0 -0
  370. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/bitrue.py +0 -0
  371. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/bitstamp.py +0 -0
  372. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/bittrade.py +0 -0
  373. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/bitvavo.py +0 -0
  374. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/blockchaincom.py +0 -0
  375. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/blofin.py +0 -0
  376. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/bybit.py +0 -0
  377. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/cex.py +0 -0
  378. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/coinbase.py +0 -0
  379. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/coinbaseadvanced.py +0 -0
  380. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/coinbaseexchange.py +0 -0
  381. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/coinbaseinternational.py +0 -0
  382. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/coincatch.py +0 -0
  383. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/coincheck.py +0 -0
  384. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/coinex.py +0 -0
  385. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/coinone.py +0 -0
  386. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/cryptocom.py +0 -0
  387. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/defx.py +0 -0
  388. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/deribit.py +0 -0
  389. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/derive.py +0 -0
  390. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/exmo.py +0 -0
  391. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/gate.py +0 -0
  392. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/gateio.py +0 -0
  393. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/gemini.py +0 -0
  394. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/hashkey.py +0 -0
  395. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/hitbtc.py +0 -0
  396. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/hollaex.py +0 -0
  397. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/htx.py +0 -0
  398. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/huobi.py +0 -0
  399. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/hyperliquid.py +0 -0
  400. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/independentreserve.py +0 -0
  401. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/kraken.py +0 -0
  402. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/krakenfutures.py +0 -0
  403. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/kucoin.py +0 -0
  404. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/kucoinfutures.py +0 -0
  405. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/lbank.py +0 -0
  406. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/luno.py +0 -0
  407. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/mexc.py +0 -0
  408. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/myokx.py +0 -0
  409. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/ndax.py +0 -0
  410. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/okcoin.py +0 -0
  411. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/okx.py +0 -0
  412. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/onetrading.py +0 -0
  413. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/oxfun.py +0 -0
  414. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/p2b.py +0 -0
  415. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/paradex.py +0 -0
  416. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/phemex.py +0 -0
  417. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/poloniex.py +0 -0
  418. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/poloniexfutures.py +0 -0
  419. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/probit.py +0 -0
  420. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/tradeogre.py +0 -0
  421. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/upbit.py +0 -0
  422. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/vertex.py +0 -0
  423. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/wazirx.py +0 -0
  424. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/whitebit.py +0 -0
  425. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/woo.py +0 -0
  426. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/woofipro.py +0 -0
  427. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/pro/xt.py +0 -0
  428. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/__init__.py +0 -0
  429. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ecdsa/__init__.py +0 -0
  430. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ecdsa/_version.py +0 -0
  431. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ecdsa/curves.py +0 -0
  432. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ecdsa/der.py +0 -0
  433. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ecdsa/ecdsa.py +0 -0
  434. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ecdsa/ellipticcurve.py +0 -0
  435. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ecdsa/keys.py +0 -0
  436. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ecdsa/numbertheory.py +0 -0
  437. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ecdsa/rfc6979.py +0 -0
  438. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ecdsa/util.py +0 -0
  439. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/__init__.py +0 -0
  440. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/abi/__init__.py +0 -0
  441. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/abi/abi.py +0 -0
  442. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/abi/base.py +0 -0
  443. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/abi/codec.py +0 -0
  444. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/abi/constants.py +0 -0
  445. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/abi/decoding.py +0 -0
  446. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/abi/encoding.py +0 -0
  447. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/abi/exceptions.py +0 -0
  448. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/abi/grammar.py +0 -0
  449. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/abi/packed.py +0 -0
  450. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/abi/py.typed +0 -0
  451. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/abi/registry.py +0 -0
  452. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/abi/tools/__init__.py +0 -0
  453. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/abi/tools/_strategies.py +0 -0
  454. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/abi/utils/__init__.py +0 -0
  455. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/abi/utils/numeric.py +0 -0
  456. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/abi/utils/padding.py +0 -0
  457. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/abi/utils/string.py +0 -0
  458. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/account/__init__.py +0 -0
  459. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/account/encode_typed_data/__init__.py +0 -0
  460. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/account/encode_typed_data/encoding_and_hashing.py +0 -0
  461. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/account/encode_typed_data/helpers.py +0 -0
  462. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/account/messages.py +0 -0
  463. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/account/py.typed +0 -0
  464. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/hexbytes/__init__.py +0 -0
  465. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/hexbytes/_utils.py +0 -0
  466. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/hexbytes/main.py +0 -0
  467. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/hexbytes/py.typed +0 -0
  468. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/typing/__init__.py +0 -0
  469. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/typing/abi.py +0 -0
  470. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/typing/bls.py +0 -0
  471. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/typing/discovery.py +0 -0
  472. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/typing/encoding.py +0 -0
  473. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/typing/enums.py +0 -0
  474. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/typing/ethpm.py +0 -0
  475. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/typing/evm.py +0 -0
  476. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/typing/networks.py +0 -0
  477. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/typing/py.typed +0 -0
  478. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/utils/__init__.py +0 -0
  479. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/utils/abi.py +0 -0
  480. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/utils/address.py +0 -0
  481. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/utils/applicators.py +0 -0
  482. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/utils/conversions.py +0 -0
  483. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/utils/currency.py +0 -0
  484. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/utils/curried/__init__.py +0 -0
  485. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/utils/debug.py +0 -0
  486. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/utils/decorators.py +0 -0
  487. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/utils/encoding.py +0 -0
  488. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/utils/exceptions.py +0 -0
  489. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/utils/functional.py +0 -0
  490. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/utils/hexadecimal.py +0 -0
  491. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/utils/humanize.py +0 -0
  492. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/utils/logging.py +0 -0
  493. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/utils/module_loading.py +0 -0
  494. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/utils/numeric.py +0 -0
  495. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/utils/py.typed +0 -0
  496. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/utils/toolz.py +0 -0
  497. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/utils/types.py +0 -0
  498. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/utils/typing/__init__.py +0 -0
  499. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/utils/typing/misc.py +0 -0
  500. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/ethereum/utils/units.py +0 -0
  501. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/keccak/__init__.py +0 -0
  502. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/keccak/keccak.py +0 -0
  503. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/__init__.py +0 -0
  504. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/__pyinstaller/__init__.py +0 -0
  505. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/__pyinstaller/hook-lark.py +0 -0
  506. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/ast_utils.py +0 -0
  507. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/common.py +0 -0
  508. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/exceptions.py +0 -0
  509. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/grammar.py +0 -0
  510. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/grammars/__init__.py +0 -0
  511. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/indenter.py +0 -0
  512. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/lark.py +0 -0
  513. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/lexer.py +0 -0
  514. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/load_grammar.py +0 -0
  515. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/parse_tree_builder.py +0 -0
  516. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/parser_frontends.py +0 -0
  517. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/parsers/__init__.py +0 -0
  518. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/parsers/cyk.py +0 -0
  519. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/parsers/earley.py +0 -0
  520. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/parsers/earley_common.py +0 -0
  521. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/parsers/earley_forest.py +0 -0
  522. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/parsers/grammar_analysis.py +0 -0
  523. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/parsers/lalr_analysis.py +0 -0
  524. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/parsers/lalr_interactive_parser.py +0 -0
  525. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/parsers/lalr_parser.py +0 -0
  526. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/parsers/lalr_parser_state.py +0 -0
  527. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/parsers/xearley.py +0 -0
  528. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/py.typed +0 -0
  529. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/reconstruct.py +0 -0
  530. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/tools/__init__.py +0 -0
  531. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/tools/nearley.py +0 -0
  532. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/tools/serialize.py +0 -0
  533. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/tools/standalone.py +0 -0
  534. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/tree.py +0 -0
  535. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/tree_matcher.py +0 -0
  536. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/tree_templates.py +0 -0
  537. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/utils.py +0 -0
  538. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/lark/visitors.py +0 -0
  539. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/marshmallow/__init__.py +0 -0
  540. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/marshmallow/base.py +0 -0
  541. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/marshmallow/class_registry.py +0 -0
  542. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/marshmallow/decorators.py +0 -0
  543. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/marshmallow/error_store.py +0 -0
  544. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/marshmallow/exceptions.py +0 -0
  545. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/marshmallow/fields.py +0 -0
  546. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/marshmallow/orderedset.py +0 -0
  547. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/marshmallow/py.typed +0 -0
  548. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/marshmallow/schema.py +0 -0
  549. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/marshmallow/types.py +0 -0
  550. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/marshmallow/utils.py +0 -0
  551. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/marshmallow/validate.py +0 -0
  552. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/marshmallow/warnings.py +0 -0
  553. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/marshmallow_dataclass/__init__.py +0 -0
  554. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/marshmallow_dataclass/collection_field.py +0 -0
  555. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/marshmallow_dataclass/lazy_class_attribute.py +0 -0
  556. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/marshmallow_dataclass/mypy.py +0 -0
  557. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/marshmallow_dataclass/py.typed +0 -0
  558. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/marshmallow_dataclass/typing.py +0 -0
  559. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/marshmallow_dataclass/union_field.py +0 -0
  560. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/marshmallow_oneofschema/__init__.py +0 -0
  561. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/marshmallow_oneofschema/one_of_schema.py +0 -0
  562. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/marshmallow_oneofschema/py.typed +0 -0
  563. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/msgpack/__init__.py +0 -0
  564. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/msgpack/exceptions.py +0 -0
  565. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/msgpack/ext.py +0 -0
  566. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/msgpack/fallback.py +0 -0
  567. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/parsimonious/__init__.py +0 -0
  568. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/parsimonious/exceptions.py +0 -0
  569. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/parsimonious/expressions.py +0 -0
  570. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/parsimonious/grammar.py +0 -0
  571. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/parsimonious/nodes.py +0 -0
  572. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/parsimonious/utils.py +0 -0
  573. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/__init__.py +0 -0
  574. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/cairo/__init__.py +0 -0
  575. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/cairo/data_types.py +0 -0
  576. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/cairo/deprecated_parse/__init__.py +0 -0
  577. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/cairo/deprecated_parse/cairo_types.py +0 -0
  578. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser.py +0 -0
  579. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser_transformer.py +0 -0
  580. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/cairo/felt.py +0 -0
  581. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/cairo/type_parser.py +0 -0
  582. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/cairo/v1/__init__.py +0 -0
  583. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/cairo/v1/type_parser.py +0 -0
  584. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/cairo/v2/__init__.py +0 -0
  585. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/cairo/v2/type_parser.py +0 -0
  586. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/ccxt_utils.py +0 -0
  587. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/common.py +0 -0
  588. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/constants.py +0 -0
  589. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/hash/__init__.py +0 -0
  590. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/hash/address.py +0 -0
  591. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/hash/compiled_class_hash_objects.py +0 -0
  592. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/hash/selector.py +0 -0
  593. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/hash/storage.py +0 -0
  594. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/hash/utils.py +0 -0
  595. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/models/__init__.py +0 -0
  596. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/models/typed_data.py +0 -0
  597. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/serialization/__init__.py +0 -0
  598. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/serialization/_calldata_reader.py +0 -0
  599. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/serialization/_context.py +0 -0
  600. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/serialization/data_serializers/__init__.py +0 -0
  601. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/serialization/data_serializers/_common.py +0 -0
  602. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/serialization/data_serializers/array_serializer.py +0 -0
  603. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/serialization/data_serializers/bool_serializer.py +0 -0
  604. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/serialization/data_serializers/byte_array_serializer.py +0 -0
  605. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/serialization/data_serializers/cairo_data_serializer.py +0 -0
  606. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/serialization/data_serializers/enum_serializer.py +0 -0
  607. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/serialization/data_serializers/felt_serializer.py +0 -0
  608. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/serialization/data_serializers/named_tuple_serializer.py +0 -0
  609. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/serialization/data_serializers/option_serializer.py +0 -0
  610. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/serialization/data_serializers/output_serializer.py +0 -0
  611. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/serialization/data_serializers/payload_serializer.py +0 -0
  612. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/serialization/data_serializers/struct_serializer.py +0 -0
  613. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/serialization/data_serializers/tuple_serializer.py +0 -0
  614. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/serialization/data_serializers/uint256_serializer.py +0 -0
  615. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/serialization/data_serializers/uint_serializer.py +0 -0
  616. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/serialization/data_serializers/unit_serializer.py +0 -0
  617. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/serialization/errors.py +0 -0
  618. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/serialization/factory.py +0 -0
  619. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/serialization/function_serialization_adapter.py +0 -0
  620. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/serialization/tuple_dataclass.py +0 -0
  621. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/utils/__init__.py +0 -0
  622. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/utils/constructor_args_translator.py +0 -0
  623. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/utils/iterable.py +0 -0
  624. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/utils/schema.py +0 -0
  625. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starknet/utils/typed_data.py +0 -0
  626. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starkware/__init__.py +0 -0
  627. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starkware/crypto/__init__.py +0 -0
  628. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starkware/crypto/fast_pedersen_hash.py +0 -0
  629. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starkware/crypto/math_utils.py +0 -0
  630. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starkware/crypto/signature.py +0 -0
  631. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/starkware/crypto/utils.py +0 -0
  632. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/sympy/__init__.py +0 -0
  633. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/sympy/core/__init__.py +0 -0
  634. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/sympy/core/intfunc.py +0 -0
  635. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/sympy/external/__init__.py +0 -0
  636. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/sympy/external/gmpy.py +0 -0
  637. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/sympy/external/importtools.py +0 -0
  638. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/sympy/external/ntheory.py +0 -0
  639. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/sympy/external/pythonmpq.py +0 -0
  640. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/toolz/__init__.py +0 -0
  641. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/toolz/_signatures.py +0 -0
  642. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/toolz/_version.py +0 -0
  643. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/toolz/compatibility.py +0 -0
  644. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/toolz/curried/__init__.py +0 -0
  645. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/toolz/curried/exceptions.py +0 -0
  646. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/toolz/curried/operator.py +0 -0
  647. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/toolz/dicttoolz.py +0 -0
  648. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/toolz/functoolz.py +0 -0
  649. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/toolz/itertoolz.py +0 -0
  650. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/toolz/recipes.py +0 -0
  651. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/toolz/utils.py +0 -0
  652. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/typing_inspect/__init__.py +0 -0
  653. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/static_dependencies/typing_inspect/typing_inspect.py +0 -0
  654. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/test/__init__.py +0 -0
  655. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/test/tests_helpers.py +0 -0
  656. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/test/tests_init.py +0 -0
  657. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/tokocrypto.py +0 -0
  658. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/tradeogre.py +0 -0
  659. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/upbit.py +0 -0
  660. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/wavesexchange.py +0 -0
  661. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/yobit.py +0 -0
  662. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/zaif.py +0 -0
  663. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt/zonda.py +0 -0
  664. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt.egg-info/dependency_links.txt +0 -0
  665. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt.egg-info/requires.txt +0 -0
  666. {ccxt-4.4.86 → ccxt-4.4.87}/ccxt.egg-info/top_level.txt +0 -0
  667. {ccxt-4.4.86 → ccxt-4.4.87}/setup.cfg +0 -0
  668. {ccxt-4.4.86 → ccxt-4.4.87}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ccxt
3
- Version: 4.4.86
3
+ Version: 4.4.87
4
4
  Summary: A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 100+ exchanges
5
5
  Home-page: https://ccxt.com
6
6
  Author: Igor Kroitor
@@ -38,7 +38,7 @@ License-File: LICENSE.txt
38
38
 
39
39
  # CCXT – CryptoCurrency eXchange Trading Library
40
40
 
41
- [![NPM Downloads](https://img.shields.io/npm/dy/ccxt.svg)](https://www.npmjs.com/package/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) [![NuGet version](https://img.shields.io/nuget/v/ccxt)](https://www.nuget.org/packages/ccxt) [![GoDoc](https://pkg.go.dev/badge/github.com/ccxt/ccxt/go/v4?utm_source=godoc)](https://godoc.org/github.com/ccxt/ccxt/go/v4) [![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) [![Follow CCXT at x.com](https://img.shields.io/twitter/follow/ccxt_official.svg?style=social&label=CCXT)](https://x.com/ccxt_official)
41
+ [![NPM Downloads](https://img.shields.io/npm/dy/ccxt.svg)](https://www.npmjs.com/package/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) [![NuGet version](https://img.shields.io/nuget/v/ccxt)](https://www.nuget.org/packages/ccxt) [![GoDoc](https://pkg.go.dev/badge/github.com/ccxt/ccxt/go/v4?utm_source=godoc)](https://godoc.org/github.com/ccxt/ccxt/go/v4) [![Discord](https://img.shields.io/discord/690203284119617602?logo=discord&logoColor=white)](https://discord.gg/ccxt) [![Supported Exchanges](https://img.shields.io/badge/exchanges-106-blue.svg)](https://github.com/ccxt/ccxt/wiki/Exchange-Markets) [![Follow CCXT at x.com](https://img.shields.io/twitter/follow/ccxt_official.svg?style=social&label=CCXT)](https://x.com/ccxt_official)
42
42
 
43
43
  A `JavaScript` / `Python` / `PHP` / `C#` / `Go` library for cryptocurrency trading and e-commerce with support for many bitcoin/ether/altcoin exchange markets and merchant APIs.
44
44
 
@@ -56,6 +56,15 @@ Current feature list:
56
56
  - an out of the box unified API that is extremely easy to integrate
57
57
  - works in Node 10.4+, Python 3, PHP 8.1+, netstandard2.0/2.1, Go 1.20+ and web browsers
58
58
 
59
+ ## Disclaimer
60
+
61
+ CCXT is not a service nor a server. CCXT is a software. **CCXT is a free open source non-custodian API broker software under MIT license**.
62
+
63
+ - **Non-custodian** means CCXT is not an intermediary in trading, it does not hold traders' money at any point in time, traders install CCXT and use CCXT to talk to exchanges directly.
64
+ - **MIT license** means CCXT can be used for any purpose, but use at your own risk without any warranties.
65
+ - **API broker** means CCXT is funded with rebates from exchanges' API broker programs and it is an official API broker with many exchanges. Broker rebates from trading fees range from 30% to 65%. All rebates and related fees are handled by the exchanges solely in accordance with exchanges' respective terms and conditions established by each partner exchange.
66
+ - **Free software** means CCXT is free to use and has no hidden fees, with CCXT traders pay the same trading fees they would pay to the exchanges directly.
67
+ - **Open source** means anyone is allowed to use it, to look inside the code and to change everything, including other brokers.
59
68
 
60
69
  ## See Also
61
70
 
@@ -86,12 +95,13 @@ Current feature list:
86
95
  | [![kucoin](https://user-images.githubusercontent.com/51840849/87295558-132aaf80-c50e-11ea-9801-a2fb0c57c799.jpg)](https://www.kucoin.com/ucenter/signup?rcode=E5wkqe) | kucoin | [KuCoin](https://www.kucoin.com/ucenter/signup?rcode=E5wkqe) | [![API Version 2](https://img.shields.io/badge/2-lightgray)](https://docs.kucoin.com) | ![CEX – Centralized EXchange](https://img.shields.io/badge/CEX-green.svg "CEX – Centralized EXchange") | [![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) | |
87
96
  | [![kucoinfutures](https://user-images.githubusercontent.com/1294454/147508995-9e35030a-d046-43a1-a006-6fabd981b554.jpg)](https://futures.kucoin.com/?rcode=E5wkqe) | kucoinfutures | [KuCoin Futures](https://futures.kucoin.com/?rcode=E5wkqe) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://docs.kucoin.com/futures) | ![CEX – Centralized EXchange](https://img.shields.io/badge/CEX-green.svg "CEX – Centralized EXchange") | [![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) | |
88
97
  | [![mexc](https://user-images.githubusercontent.com/1294454/137283979-8b2a818d-8633-461b-bfca-de89e8c446b2.jpg)](https://www.mexc.com/register?inviteCode=mexc-1FQ1GNu1) | mexc | [MEXC Global](https://www.mexc.com/register?inviteCode=mexc-1FQ1GNu1) | [![API Version 3](https://img.shields.io/badge/3-lightgray)](https://mexcdevelop.github.io/apidocs/) | ![CEX – Centralized EXchange](https://img.shields.io/badge/CEX-green.svg "CEX – Centralized EXchange") | [![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) | |
98
+ | [![modetrade](https://github.com/user-attachments/assets/cec2b7f1-3b2b-4502-971b-447ee1937d6b)](https://trade.mode.network?ref=MODETRADE) | modetrade | [Mode Trade](https://trade.mode.network?ref=MODETRADE) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](undefined) | ![DEX - Distributed EXchange](https://img.shields.io/badge/DEX-blue.svg "DEX - Distributed EXchange") | [![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 Mode Trade using CCXT's referral link for a 20% discount!](https://img.shields.io/static/v1?label=Fee&message=%2d20%25&color=orange)](https://trade.mode.network?ref=MODETRADE) |
89
99
  | [![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/) | ![CEX – Centralized EXchange](https://img.shields.io/badge/CEX-green.svg "CEX – Centralized EXchange") | [![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) |
90
100
  | [![woo](https://user-images.githubusercontent.com/1294454/150730761-1a00e5e0-d28c-480f-9e65-089ce3e6ef3b.jpg)](https://woox.io/register?ref=DIJT0CNL) | woo | [WOO X](https://woox.io/register?ref=DIJT0CNL) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://docs.woox.io/) | ![CEX – Centralized EXchange](https://img.shields.io/badge/CEX-green.svg "CEX – Centralized EXchange") | [![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://woox.io/register?ref=DIJT0CNL) |
91
101
  | [![woofipro](https://github.com/user-attachments/assets/9ba21b8a-a9c7-4770-b7f1-ce3bcbde68c1)](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) | ![DEX - Distributed EXchange](https://img.shields.io/badge/DEX-blue.svg "DEX - Distributed EXchange") | [![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) |
92
102
 
93
103
  ## Supported Cryptocurrency Exchanges
94
- <!--- init list -->The CCXT library currently supports the following 101 cryptocurrency exchange markets and trading APIs:
104
+ <!--- init list -->The CCXT library currently supports the following 103 cryptocurrency exchange markets and trading APIs:
95
105
 
96
106
  |logo |id |name |ver |type |certified |pro |
97
107
  |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------|----------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------:|--------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------|
@@ -169,12 +179,14 @@ Current feature list:
169
179
  | [![luno](https://user-images.githubusercontent.com/1294454/27766607-8c1a69d8-5ede-11e7-930c-540b5eb9be24.jpg)](https://www.luno.com/invite/44893A) | luno | [luno](https://www.luno.com/invite/44893A) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://www.luno.com/en/api) | ![CEX – Centralized EXchange](https://img.shields.io/badge/CEX-green.svg "CEX – Centralized EXchange") | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
170
180
  | [![mercado](https://user-images.githubusercontent.com/1294454/27837060-e7c58714-60ea-11e7-9192-f05e86adb83f.jpg)](https://www.mercadobitcoin.com.br) | mercado | [Mercado Bitcoin](https://www.mercadobitcoin.com.br) | [![API Version 3](https://img.shields.io/badge/3-lightgray)](https://www.mercadobitcoin.com.br/api-doc) | ![CEX – Centralized EXchange](https://img.shields.io/badge/CEX-green.svg "CEX – Centralized EXchange") | | |
171
181
  | [![mexc](https://user-images.githubusercontent.com/1294454/137283979-8b2a818d-8633-461b-bfca-de89e8c446b2.jpg)](https://www.mexc.com/register?inviteCode=mexc-1FQ1GNu1) | mexc | [MEXC Global](https://www.mexc.com/register?inviteCode=mexc-1FQ1GNu1) | [![API Version 3](https://img.shields.io/badge/3-lightgray)](https://mexcdevelop.github.io/apidocs/) | ![CEX – Centralized EXchange](https://img.shields.io/badge/CEX-green.svg "CEX – Centralized EXchange") | [![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) |
182
+ | [![modetrade](https://github.com/user-attachments/assets/cec2b7f1-3b2b-4502-971b-447ee1937d6b)](https://trade.mode.network?ref=MODETRADE) | modetrade | [Mode Trade](https://trade.mode.network?ref=MODETRADE) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](undefined) | ![DEX - Distributed EXchange](https://img.shields.io/badge/DEX-blue.svg "DEX - Distributed EXchange") | [![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) |
172
183
  | [![myokx](https://user-images.githubusercontent.com/1294454/152485636-38b19e4a-bece-4dec-979a-5982859ffc04.jpg)](https://www.my.okx.com/join/CCXT2023) | myokx | [MyOKX (EEA)](https://www.my.okx.com/join/CCXT2023) | [![API Version 5](https://img.shields.io/badge/5-lightgray)](https://my.okx.com/docs-v5/en/#overview) | ![CEX – Centralized EXchange](https://img.shields.io/badge/CEX-green.svg "CEX – Centralized EXchange") | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
173
184
  | [![ndax](https://user-images.githubusercontent.com/1294454/108623144-67a3ef00-744e-11eb-8140-75c6b851e945.jpg)](https://one.ndax.io/bfQiSL) | ndax | [NDAX](https://one.ndax.io/bfQiSL) | [![API Version *](https://img.shields.io/badge/*-lightgray)](https://apidoc.ndax.io/) | ![CEX – Centralized EXchange](https://img.shields.io/badge/CEX-green.svg "CEX – Centralized EXchange") | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
174
185
  | [![novadax](https://user-images.githubusercontent.com/1294454/92337550-2b085500-f0b3-11ea-98e7-5794fb07dd3b.jpg)](https://www.novadax.com.br/?s=ccxt) | novadax | [NovaDAX](https://www.novadax.com.br/?s=ccxt) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://doc.novadax.com/pt-BR/) | ![CEX – Centralized EXchange](https://img.shields.io/badge/CEX-green.svg "CEX – Centralized EXchange") | | |
175
186
  | [![oceanex](https://user-images.githubusercontent.com/1294454/58385970-794e2d80-8001-11e9-889c-0567cd79b78e.jpg)](https://oceanex.pro/signup?referral=VE24QX) | oceanex | [OceanEx](https://oceanex.pro/signup?referral=VE24QX) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://api.oceanex.pro/doc/v1) | ![CEX – Centralized EXchange](https://img.shields.io/badge/CEX-green.svg "CEX – Centralized EXchange") | | |
176
187
  | [![okcoin](https://user-images.githubusercontent.com/51840849/87295551-102fbf00-c50e-11ea-90a9-462eebba5829.jpg)](https://www.okcoin.com/account/register?flag=activity&channelId=600001513) | okcoin | [OKCoin](https://www.okcoin.com/account/register?flag=activity&channelId=600001513) | [![API Version 5](https://img.shields.io/badge/5-lightgray)](https://www.okcoin.com/docs/en/) | ![CEX – Centralized EXchange](https://img.shields.io/badge/CEX-green.svg "CEX – Centralized EXchange") | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
177
188
  | [![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/) | ![CEX – Centralized EXchange](https://img.shields.io/badge/CEX-green.svg "CEX – Centralized EXchange") | [![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) |
189
+ | [![okxus](https://user-images.githubusercontent.com/1294454/152485636-38b19e4a-bece-4dec-979a-5982859ffc04.jpg)](https://www.app.okx.com/join/CCXT2023) | okxus | [OKX (US)](https://www.app.okx.com/join/CCXT2023) | [![API Version 5](https://img.shields.io/badge/5-lightgray)](https://app.okx.com/docs-v5/en/#overview) | ![CEX – Centralized EXchange](https://img.shields.io/badge/CEX-green.svg "CEX – Centralized EXchange") | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
178
190
  | [![onetrading](https://github.com/ccxt/ccxt/assets/43336371/bdbc26fd-02f2-4ca7-9f1e-17333690bb1c)](https://onetrading.com/) | onetrading | [One Trading](https://onetrading.com/) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://docs.onetrading.com) | ![CEX – Centralized EXchange](https://img.shields.io/badge/CEX-green.svg "CEX – Centralized EXchange") | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
179
191
  | [![oxfun](https://github.com/ccxt/ccxt/assets/43336371/6a196124-c1ee-4fae-8573-962071b61a85)](https://ox.fun/register?shareAccountId=5ZUD4a7G) | oxfun | [OXFUN](https://ox.fun/register?shareAccountId=5ZUD4a7G) | [![API Version 3](https://img.shields.io/badge/3-lightgray)](https://docs.ox.fun/) | ![CEX – Centralized EXchange](https://img.shields.io/badge/CEX-green.svg "CEX – Centralized EXchange") | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
180
192
  | [![p2b](https://github.com/ccxt/ccxt/assets/43336371/8da13a80-1f0a-49be-bb90-ff8b25164755)](https://p2pb2b.com?referral=ee784c53) | p2b | [p2b](https://p2pb2b.com?referral=ee784c53) | [![API Version 2](https://img.shields.io/badge/2-lightgray)](https://github.com/P2B-team/p2b-api-docs/blob/master/api-doc.md) | ![CEX – Centralized EXchange](https://img.shields.io/badge/CEX-green.svg "CEX – Centralized EXchange") | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
@@ -257,13 +269,13 @@ console.log(version, Object.keys(exchanges));
257
269
 
258
270
  All-in-one browser bundle (dependencies included), served from a CDN of your choice:
259
271
 
260
- * jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.86/dist/ccxt.browser.min.js
261
- * unpkg: https://unpkg.com/ccxt@4.4.86/dist/ccxt.browser.min.js
272
+ * jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.87/dist/ccxt.browser.min.js
273
+ * unpkg: https://unpkg.com/ccxt@4.4.87/dist/ccxt.browser.min.js
262
274
 
263
275
  CDNs are not updated in real-time and may have delays. Defaulting to the most recent version without specifying the version number is not recommended. Please, keep in mind that we are not responsible for the correct operation of those CDN servers.
264
276
 
265
277
  ```HTML
266
- <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.86/dist/ccxt.browser.min.js"></script>
278
+ <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.87/dist/ccxt.browser.min.js"></script>
267
279
  ```
268
280
 
269
281
  Creates a global `ccxt` object:
@@ -22,7 +22,7 @@
22
22
 
23
23
  # ----------------------------------------------------------------------------
24
24
 
25
- __version__ = '4.4.86'
25
+ __version__ = '4.4.87'
26
26
 
27
27
  # ----------------------------------------------------------------------------
28
28
 
@@ -160,12 +160,14 @@ from ccxt.lbank import lbank # noqa: F4
160
160
  from ccxt.luno import luno # noqa: F401
161
161
  from ccxt.mercado import mercado # noqa: F401
162
162
  from ccxt.mexc import mexc # noqa: F401
163
+ from ccxt.modetrade import modetrade # noqa: F401
163
164
  from ccxt.myokx import myokx # noqa: F401
164
165
  from ccxt.ndax import ndax # noqa: F401
165
166
  from ccxt.novadax import novadax # noqa: F401
166
167
  from ccxt.oceanex import oceanex # noqa: F401
167
168
  from ccxt.okcoin import okcoin # noqa: F401
168
169
  from ccxt.okx import okx # noqa: F401
170
+ from ccxt.okxus import okxus # noqa: F401
169
171
  from ccxt.onetrading import onetrading # noqa: F401
170
172
  from ccxt.oxfun import oxfun # noqa: F401
171
173
  from ccxt.p2b import p2b # noqa: F401
@@ -266,12 +268,14 @@ exchanges = [
266
268
  'luno',
267
269
  'mercado',
268
270
  'mexc',
271
+ 'modetrade',
269
272
  'myokx',
270
273
  'ndax',
271
274
  'novadax',
272
275
  'oceanex',
273
276
  'okcoin',
274
277
  'okx',
278
+ 'okxus',
275
279
  'onetrading',
276
280
  'oxfun',
277
281
  'p2b',
@@ -0,0 +1,349 @@
1
+ from ccxt.base.types import Entry
2
+
3
+
4
+ class ImplicitAPI:
5
+ public_get_market_books_full = publicGetMarketBooksFull = Entry('market/books-full', 'public', 'GET', {'cost': 2})
6
+ public_get_market_tickers = publicGetMarketTickers = Entry('market/tickers', 'public', 'GET', {'cost': 1})
7
+ public_get_market_ticker = publicGetMarketTicker = Entry('market/ticker', 'public', 'GET', {'cost': 1})
8
+ public_get_market_index_tickers = publicGetMarketIndexTickers = Entry('market/index-tickers', 'public', 'GET', {'cost': 1})
9
+ public_get_market_books = publicGetMarketBooks = Entry('market/books', 'public', 'GET', {'cost': 0.5})
10
+ public_get_market_books_lite = publicGetMarketBooksLite = Entry('market/books-lite', 'public', 'GET', {'cost': 1.6666666666666667})
11
+ public_get_market_candles = publicGetMarketCandles = Entry('market/candles', 'public', 'GET', {'cost': 0.5})
12
+ public_get_market_history_candles = publicGetMarketHistoryCandles = Entry('market/history-candles', 'public', 'GET', {'cost': 1})
13
+ public_get_market_index_candles = publicGetMarketIndexCandles = Entry('market/index-candles', 'public', 'GET', {'cost': 1})
14
+ public_get_market_history_index_candles = publicGetMarketHistoryIndexCandles = Entry('market/history-index-candles', 'public', 'GET', {'cost': 2})
15
+ public_get_market_mark_price_candles = publicGetMarketMarkPriceCandles = Entry('market/mark-price-candles', 'public', 'GET', {'cost': 1})
16
+ public_get_market_history_mark_price_candles = publicGetMarketHistoryMarkPriceCandles = Entry('market/history-mark-price-candles', 'public', 'GET', {'cost': 2})
17
+ public_get_market_trades = publicGetMarketTrades = Entry('market/trades', 'public', 'GET', {'cost': 0.2})
18
+ public_get_market_history_trades = publicGetMarketHistoryTrades = Entry('market/history-trades', 'public', 'GET', {'cost': 2})
19
+ public_get_market_option_instrument_family_trades = publicGetMarketOptionInstrumentFamilyTrades = Entry('market/option/instrument-family-trades', 'public', 'GET', {'cost': 1})
20
+ public_get_market_platform_24_volume = publicGetMarketPlatform24Volume = Entry('market/platform-24-volume', 'public', 'GET', {'cost': 10})
21
+ public_get_market_open_oracle = publicGetMarketOpenOracle = Entry('market/open-oracle', 'public', 'GET', {'cost': 50})
22
+ public_get_market_exchange_rate = publicGetMarketExchangeRate = Entry('market/exchange-rate', 'public', 'GET', {'cost': 20})
23
+ public_get_market_index_components = publicGetMarketIndexComponents = Entry('market/index-components', 'public', 'GET', {'cost': 1})
24
+ public_get_public_economic_calendar = publicGetPublicEconomicCalendar = Entry('public/economic-calendar', 'public', 'GET', {'cost': 50})
25
+ public_get_market_block_tickers = publicGetMarketBlockTickers = Entry('market/block-tickers', 'public', 'GET', {'cost': 1})
26
+ public_get_market_block_ticker = publicGetMarketBlockTicker = Entry('market/block-ticker', 'public', 'GET', {'cost': 1})
27
+ public_get_public_block_trades = publicGetPublicBlockTrades = Entry('public/block-trades', 'public', 'GET', {'cost': 1})
28
+ public_get_public_instruments = publicGetPublicInstruments = Entry('public/instruments', 'public', 'GET', {'cost': 1})
29
+ public_get_public_delivery_exercise_history = publicGetPublicDeliveryExerciseHistory = Entry('public/delivery-exercise-history', 'public', 'GET', {'cost': 0.5})
30
+ public_get_public_open_interest = publicGetPublicOpenInterest = Entry('public/open-interest', 'public', 'GET', {'cost': 1})
31
+ public_get_public_funding_rate = publicGetPublicFundingRate = Entry('public/funding-rate', 'public', 'GET', {'cost': 1})
32
+ public_get_public_funding_rate_history = publicGetPublicFundingRateHistory = Entry('public/funding-rate-history', 'public', 'GET', {'cost': 1})
33
+ public_get_public_price_limit = publicGetPublicPriceLimit = Entry('public/price-limit', 'public', 'GET', {'cost': 1})
34
+ public_get_public_opt_summary = publicGetPublicOptSummary = Entry('public/opt-summary', 'public', 'GET', {'cost': 1})
35
+ public_get_public_estimated_price = publicGetPublicEstimatedPrice = Entry('public/estimated-price', 'public', 'GET', {'cost': 2})
36
+ public_get_public_discount_rate_interest_free_quota = publicGetPublicDiscountRateInterestFreeQuota = Entry('public/discount-rate-interest-free-quota', 'public', 'GET', {'cost': 10})
37
+ public_get_public_time = publicGetPublicTime = Entry('public/time', 'public', 'GET', {'cost': 2})
38
+ public_get_public_mark_price = publicGetPublicMarkPrice = Entry('public/mark-price', 'public', 'GET', {'cost': 2})
39
+ public_get_public_position_tiers = publicGetPublicPositionTiers = Entry('public/position-tiers', 'public', 'GET', {'cost': 2})
40
+ public_get_public_interest_rate_loan_quota = publicGetPublicInterestRateLoanQuota = Entry('public/interest-rate-loan-quota', 'public', 'GET', {'cost': 10})
41
+ public_get_public_vip_interest_rate_loan_quota = publicGetPublicVipInterestRateLoanQuota = Entry('public/vip-interest-rate-loan-quota', 'public', 'GET', {'cost': 10})
42
+ public_get_public_underlying = publicGetPublicUnderlying = Entry('public/underlying', 'public', 'GET', {'cost': 1})
43
+ public_get_public_insurance_fund = publicGetPublicInsuranceFund = Entry('public/insurance-fund', 'public', 'GET', {'cost': 2})
44
+ public_get_public_convert_contract_coin = publicGetPublicConvertContractCoin = Entry('public/convert-contract-coin', 'public', 'GET', {'cost': 2})
45
+ public_get_public_option_trades = publicGetPublicOptionTrades = Entry('public/option-trades', 'public', 'GET', {'cost': 1})
46
+ public_get_public_instrument_tick_bands = publicGetPublicInstrumentTickBands = Entry('public/instrument-tick-bands', 'public', 'GET', {'cost': 4})
47
+ public_get_rubik_stat_trading_data_support_coin = publicGetRubikStatTradingDataSupportCoin = Entry('rubik/stat/trading-data/support-coin', 'public', 'GET', {'cost': 4})
48
+ public_get_rubik_stat_taker_volume = publicGetRubikStatTakerVolume = Entry('rubik/stat/taker-volume', 'public', 'GET', {'cost': 4})
49
+ public_get_rubik_stat_margin_loan_ratio = publicGetRubikStatMarginLoanRatio = Entry('rubik/stat/margin/loan-ratio', 'public', 'GET', {'cost': 4})
50
+ public_get_rubik_stat_contracts_long_short_account_ratio = publicGetRubikStatContractsLongShortAccountRatio = Entry('rubik/stat/contracts/long-short-account-ratio', 'public', 'GET', {'cost': 4})
51
+ public_get_rubik_stat_contracts_long_short_account_ratio_contract = publicGetRubikStatContractsLongShortAccountRatioContract = Entry('rubik/stat/contracts/long-short-account-ratio-contract', 'public', 'GET', {'cost': 4})
52
+ public_get_rubik_stat_contracts_open_interest_volume = publicGetRubikStatContractsOpenInterestVolume = Entry('rubik/stat/contracts/open-interest-volume', 'public', 'GET', {'cost': 4})
53
+ public_get_rubik_stat_option_open_interest_volume = publicGetRubikStatOptionOpenInterestVolume = Entry('rubik/stat/option/open-interest-volume', 'public', 'GET', {'cost': 4})
54
+ public_get_rubik_stat_option_open_interest_volume_ratio = publicGetRubikStatOptionOpenInterestVolumeRatio = Entry('rubik/stat/option/open-interest-volume-ratio', 'public', 'GET', {'cost': 4})
55
+ public_get_rubik_stat_option_open_interest_volume_expiry = publicGetRubikStatOptionOpenInterestVolumeExpiry = Entry('rubik/stat/option/open-interest-volume-expiry', 'public', 'GET', {'cost': 4})
56
+ public_get_rubik_stat_option_open_interest_volume_strike = publicGetRubikStatOptionOpenInterestVolumeStrike = Entry('rubik/stat/option/open-interest-volume-strike', 'public', 'GET', {'cost': 4})
57
+ public_get_rubik_stat_option_taker_block_volume = publicGetRubikStatOptionTakerBlockVolume = Entry('rubik/stat/option/taker-block-volume', 'public', 'GET', {'cost': 4})
58
+ public_get_system_status = publicGetSystemStatus = Entry('system/status', 'public', 'GET', {'cost': 50})
59
+ public_get_sprd_spreads = publicGetSprdSpreads = Entry('sprd/spreads', 'public', 'GET', {'cost': 1})
60
+ public_get_sprd_books = publicGetSprdBooks = Entry('sprd/books', 'public', 'GET', {'cost': 0.5})
61
+ public_get_sprd_ticker = publicGetSprdTicker = Entry('sprd/ticker', 'public', 'GET', {'cost': 1})
62
+ public_get_sprd_public_trades = publicGetSprdPublicTrades = Entry('sprd/public-trades', 'public', 'GET', {'cost': 0.2})
63
+ public_get_market_sprd_ticker = publicGetMarketSprdTicker = Entry('market/sprd-ticker', 'public', 'GET', {'cost': 2})
64
+ public_get_market_sprd_candles = publicGetMarketSprdCandles = Entry('market/sprd-candles', 'public', 'GET', {'cost': 2})
65
+ public_get_market_sprd_history_candles = publicGetMarketSprdHistoryCandles = Entry('market/sprd-history-candles', 'public', 'GET', {'cost': 2})
66
+ public_get_tradingbot_grid_ai_param = publicGetTradingBotGridAiParam = Entry('tradingBot/grid/ai-param', 'public', 'GET', {'cost': 1})
67
+ public_get_tradingbot_grid_min_investment = publicGetTradingBotGridMinInvestment = Entry('tradingBot/grid/min-investment', 'public', 'GET', {'cost': 1})
68
+ public_get_tradingbot_public_rsi_back_testing = publicGetTradingBotPublicRsiBackTesting = Entry('tradingBot/public/rsi-back-testing', 'public', 'GET', {'cost': 1})
69
+ public_get_asset_exchange_list = publicGetAssetExchangeList = Entry('asset/exchange-list', 'public', 'GET', {'cost': 1.6666666666666667})
70
+ public_get_finance_staking_defi_eth_apy_history = publicGetFinanceStakingDefiEthApyHistory = Entry('finance/staking-defi/eth/apy-history', 'public', 'GET', {'cost': 1.6666666666666667})
71
+ public_get_finance_staking_defi_sol_apy_history = publicGetFinanceStakingDefiSolApyHistory = Entry('finance/staking-defi/sol/apy-history', 'public', 'GET', {'cost': 1.6666666666666667})
72
+ public_get_finance_savings_lending_rate_summary = publicGetFinanceSavingsLendingRateSummary = Entry('finance/savings/lending-rate-summary', 'public', 'GET', {'cost': 1.6666666666666667})
73
+ public_get_finance_savings_lending_rate_history = publicGetFinanceSavingsLendingRateHistory = Entry('finance/savings/lending-rate-history', 'public', 'GET', {'cost': 1.6666666666666667})
74
+ public_get_finance_fixed_loan_lending_offers = publicGetFinanceFixedLoanLendingOffers = Entry('finance/fixed-loan/lending-offers', 'public', 'GET', {'cost': 3.3333333333333335})
75
+ public_get_finance_fixed_loan_lending_apy_history = publicGetFinanceFixedLoanLendingApyHistory = Entry('finance/fixed-loan/lending-apy-history', 'public', 'GET', {'cost': 3.3333333333333335})
76
+ public_get_finance_fixed_loan_pending_lending_volume = publicGetFinanceFixedLoanPendingLendingVolume = Entry('finance/fixed-loan/pending-lending-volume', 'public', 'GET', {'cost': 3.3333333333333335})
77
+ public_get_finance_sfp_dcd_products = publicGetFinanceSfpDcdProducts = Entry('finance/sfp/dcd/products', 'public', 'GET', {'cost': 0.6666666666666666})
78
+ public_get_copytrading_public_lead_traders = publicGetCopytradingPublicLeadTraders = Entry('copytrading/public-lead-traders', 'public', 'GET', {'cost': 4})
79
+ public_get_copytrading_public_weekly_pnl = publicGetCopytradingPublicWeeklyPnl = Entry('copytrading/public-weekly-pnl', 'public', 'GET', {'cost': 4})
80
+ public_get_copytrading_public_stats = publicGetCopytradingPublicStats = Entry('copytrading/public-stats', 'public', 'GET', {'cost': 4})
81
+ public_get_copytrading_public_preference_currency = publicGetCopytradingPublicPreferenceCurrency = Entry('copytrading/public-preference-currency', 'public', 'GET', {'cost': 4})
82
+ public_get_copytrading_public_current_subpositions = publicGetCopytradingPublicCurrentSubpositions = Entry('copytrading/public-current-subpositions', 'public', 'GET', {'cost': 4})
83
+ public_get_copytrading_public_subpositions_history = publicGetCopytradingPublicSubpositionsHistory = Entry('copytrading/public-subpositions-history', 'public', 'GET', {'cost': 4})
84
+ public_get_support_announcements_types = publicGetSupportAnnouncementsTypes = Entry('support/announcements-types', 'public', 'GET', {'cost': 20})
85
+ private_get_rfq_counterparties = privateGetRfqCounterparties = Entry('rfq/counterparties', 'private', 'GET', {'cost': 4})
86
+ private_get_rfq_maker_instrument_settings = privateGetRfqMakerInstrumentSettings = Entry('rfq/maker-instrument-settings', 'private', 'GET', {'cost': 4})
87
+ private_get_rfq_mmp_config = privateGetRfqMmpConfig = Entry('rfq/mmp-config', 'private', 'GET', {'cost': 4})
88
+ private_get_rfq_rfqs = privateGetRfqRfqs = Entry('rfq/rfqs', 'private', 'GET', {'cost': 10})
89
+ private_get_rfq_quotes = privateGetRfqQuotes = Entry('rfq/quotes', 'private', 'GET', {'cost': 10})
90
+ private_get_rfq_trades = privateGetRfqTrades = Entry('rfq/trades', 'private', 'GET', {'cost': 4})
91
+ private_get_rfq_public_trades = privateGetRfqPublicTrades = Entry('rfq/public-trades', 'private', 'GET', {'cost': 4})
92
+ private_get_sprd_order = privateGetSprdOrder = Entry('sprd/order', 'private', 'GET', {'cost': 0.3333333333333333})
93
+ private_get_sprd_orders_pending = privateGetSprdOrdersPending = Entry('sprd/orders-pending', 'private', 'GET', {'cost': 0.3333333333333333})
94
+ private_get_sprd_orders_history = privateGetSprdOrdersHistory = Entry('sprd/orders-history', 'private', 'GET', {'cost': 0.5})
95
+ private_get_sprd_orders_history_archive = privateGetSprdOrdersHistoryArchive = Entry('sprd/orders-history-archive', 'private', 'GET', {'cost': 0.5})
96
+ private_get_sprd_trades = privateGetSprdTrades = Entry('sprd/trades', 'private', 'GET', {'cost': 0.3333333333333333})
97
+ private_get_trade_order = privateGetTradeOrder = Entry('trade/order', 'private', 'GET', {'cost': 0.3333333333333333})
98
+ private_get_trade_orders_pending = privateGetTradeOrdersPending = Entry('trade/orders-pending', 'private', 'GET', {'cost': 0.3333333333333333})
99
+ private_get_trade_orders_history = privateGetTradeOrdersHistory = Entry('trade/orders-history', 'private', 'GET', {'cost': 0.5})
100
+ private_get_trade_orders_history_archive = privateGetTradeOrdersHistoryArchive = Entry('trade/orders-history-archive', 'private', 'GET', {'cost': 1})
101
+ private_get_trade_fills = privateGetTradeFills = Entry('trade/fills', 'private', 'GET', {'cost': 0.3333333333333333})
102
+ private_get_trade_fills_history = privateGetTradeFillsHistory = Entry('trade/fills-history', 'private', 'GET', {'cost': 2.2})
103
+ private_get_trade_fills_archive = privateGetTradeFillsArchive = Entry('trade/fills-archive', 'private', 'GET', {'cost': 2})
104
+ private_get_trade_order_algo = privateGetTradeOrderAlgo = Entry('trade/order-algo', 'private', 'GET', {'cost': 1})
105
+ private_get_trade_orders_algo_pending = privateGetTradeOrdersAlgoPending = Entry('trade/orders-algo-pending', 'private', 'GET', {'cost': 1})
106
+ private_get_trade_orders_algo_history = privateGetTradeOrdersAlgoHistory = Entry('trade/orders-algo-history', 'private', 'GET', {'cost': 1})
107
+ private_get_trade_easy_convert_currency_list = privateGetTradeEasyConvertCurrencyList = Entry('trade/easy-convert-currency-list', 'private', 'GET', {'cost': 20})
108
+ private_get_trade_easy_convert_history = privateGetTradeEasyConvertHistory = Entry('trade/easy-convert-history', 'private', 'GET', {'cost': 20})
109
+ private_get_trade_one_click_repay_currency_list = privateGetTradeOneClickRepayCurrencyList = Entry('trade/one-click-repay-currency-list', 'private', 'GET', {'cost': 20})
110
+ private_get_trade_one_click_repay_currency_list_v2 = privateGetTradeOneClickRepayCurrencyListV2 = Entry('trade/one-click-repay-currency-list-v2', 'private', 'GET', {'cost': 20})
111
+ private_get_trade_one_click_repay_history = privateGetTradeOneClickRepayHistory = Entry('trade/one-click-repay-history', 'private', 'GET', {'cost': 20})
112
+ private_get_trade_one_click_repay_history_v2 = privateGetTradeOneClickRepayHistoryV2 = Entry('trade/one-click-repay-history-v2', 'private', 'GET', {'cost': 20})
113
+ private_get_trade_account_rate_limit = privateGetTradeAccountRateLimit = Entry('trade/account-rate-limit', 'private', 'GET', {'cost': 1})
114
+ private_get_asset_currencies = privateGetAssetCurrencies = Entry('asset/currencies', 'private', 'GET', {'cost': 1.6666666666666667})
115
+ private_get_asset_balances = privateGetAssetBalances = Entry('asset/balances', 'private', 'GET', {'cost': 1.6666666666666667})
116
+ private_get_asset_non_tradable_assets = privateGetAssetNonTradableAssets = Entry('asset/non-tradable-assets', 'private', 'GET', {'cost': 1.6666666666666667})
117
+ private_get_asset_asset_valuation = privateGetAssetAssetValuation = Entry('asset/asset-valuation', 'private', 'GET', {'cost': 10})
118
+ private_get_asset_transfer_state = privateGetAssetTransferState = Entry('asset/transfer-state', 'private', 'GET', {'cost': 10})
119
+ private_get_asset_bills = privateGetAssetBills = Entry('asset/bills', 'private', 'GET', {'cost': 1.6666666666666667})
120
+ private_get_asset_deposit_lightning = privateGetAssetDepositLightning = Entry('asset/deposit-lightning', 'private', 'GET', {'cost': 5})
121
+ private_get_asset_deposit_address = privateGetAssetDepositAddress = Entry('asset/deposit-address', 'private', 'GET', {'cost': 1.6666666666666667})
122
+ private_get_asset_deposit_history = privateGetAssetDepositHistory = Entry('asset/deposit-history', 'private', 'GET', {'cost': 1.6666666666666667})
123
+ private_get_asset_withdrawal_history = privateGetAssetWithdrawalHistory = Entry('asset/withdrawal-history', 'private', 'GET', {'cost': 1.6666666666666667})
124
+ private_get_asset_deposit_withdraw_status = privateGetAssetDepositWithdrawStatus = Entry('asset/deposit-withdraw-status', 'private', 'GET', {'cost': 20})
125
+ private_get_asset_convert_currencies = privateGetAssetConvertCurrencies = Entry('asset/convert/currencies', 'private', 'GET', {'cost': 1.6666666666666667})
126
+ private_get_asset_convert_currency_pair = privateGetAssetConvertCurrencyPair = Entry('asset/convert/currency-pair', 'private', 'GET', {'cost': 1.6666666666666667})
127
+ private_get_asset_convert_history = privateGetAssetConvertHistory = Entry('asset/convert/history', 'private', 'GET', {'cost': 1.6666666666666667})
128
+ private_get_asset_monthly_statement = privateGetAssetMonthlyStatement = Entry('asset/monthly-statement', 'private', 'GET', {'cost': 2})
129
+ private_get_account_instruments = privateGetAccountInstruments = Entry('account/instruments', 'private', 'GET', {'cost': 1})
130
+ private_get_account_balance = privateGetAccountBalance = Entry('account/balance', 'private', 'GET', {'cost': 2})
131
+ private_get_account_positions = privateGetAccountPositions = Entry('account/positions', 'private', 'GET', {'cost': 2})
132
+ private_get_account_positions_history = privateGetAccountPositionsHistory = Entry('account/positions-history', 'private', 'GET', {'cost': 100})
133
+ private_get_account_account_position_risk = privateGetAccountAccountPositionRisk = Entry('account/account-position-risk', 'private', 'GET', {'cost': 2})
134
+ private_get_account_bills = privateGetAccountBills = Entry('account/bills', 'private', 'GET', {'cost': 1.6666666666666667})
135
+ private_get_account_bills_archive = privateGetAccountBillsArchive = Entry('account/bills-archive', 'private', 'GET', {'cost': 1.6666666666666667})
136
+ private_get_account_bills_history_archive = privateGetAccountBillsHistoryArchive = Entry('account/bills-history-archive', 'private', 'GET', {'cost': 2})
137
+ private_get_account_config = privateGetAccountConfig = Entry('account/config', 'private', 'GET', {'cost': 4})
138
+ private_get_account_max_size = privateGetAccountMaxSize = Entry('account/max-size', 'private', 'GET', {'cost': 1})
139
+ private_get_account_max_avail_size = privateGetAccountMaxAvailSize = Entry('account/max-avail-size', 'private', 'GET', {'cost': 1})
140
+ private_get_account_leverage_info = privateGetAccountLeverageInfo = Entry('account/leverage-info', 'private', 'GET', {'cost': 1})
141
+ private_get_account_adjust_leverage_info = privateGetAccountAdjustLeverageInfo = Entry('account/adjust-leverage-info', 'private', 'GET', {'cost': 4})
142
+ private_get_account_max_loan = privateGetAccountMaxLoan = Entry('account/max-loan', 'private', 'GET', {'cost': 1})
143
+ private_get_account_trade_fee = privateGetAccountTradeFee = Entry('account/trade-fee', 'private', 'GET', {'cost': 4})
144
+ private_get_account_interest_accrued = privateGetAccountInterestAccrued = Entry('account/interest-accrued', 'private', 'GET', {'cost': 4})
145
+ private_get_account_interest_rate = privateGetAccountInterestRate = Entry('account/interest-rate', 'private', 'GET', {'cost': 4})
146
+ private_get_account_max_withdrawal = privateGetAccountMaxWithdrawal = Entry('account/max-withdrawal', 'private', 'GET', {'cost': 1})
147
+ private_get_account_risk_state = privateGetAccountRiskState = Entry('account/risk-state', 'private', 'GET', {'cost': 2})
148
+ private_get_account_quick_margin_borrow_repay_history = privateGetAccountQuickMarginBorrowRepayHistory = Entry('account/quick-margin-borrow-repay-history', 'private', 'GET', {'cost': 4})
149
+ private_get_account_borrow_repay_history = privateGetAccountBorrowRepayHistory = Entry('account/borrow-repay-history', 'private', 'GET', {'cost': 4})
150
+ private_get_account_vip_interest_accrued = privateGetAccountVipInterestAccrued = Entry('account/vip-interest-accrued', 'private', 'GET', {'cost': 4})
151
+ private_get_account_vip_interest_deducted = privateGetAccountVipInterestDeducted = Entry('account/vip-interest-deducted', 'private', 'GET', {'cost': 4})
152
+ private_get_account_vip_loan_order_list = privateGetAccountVipLoanOrderList = Entry('account/vip-loan-order-list', 'private', 'GET', {'cost': 4})
153
+ private_get_account_vip_loan_order_detail = privateGetAccountVipLoanOrderDetail = Entry('account/vip-loan-order-detail', 'private', 'GET', {'cost': 4})
154
+ private_get_account_interest_limits = privateGetAccountInterestLimits = Entry('account/interest-limits', 'private', 'GET', {'cost': 4})
155
+ private_get_account_greeks = privateGetAccountGreeks = Entry('account/greeks', 'private', 'GET', {'cost': 2})
156
+ private_get_account_position_tiers = privateGetAccountPositionTiers = Entry('account/position-tiers', 'private', 'GET', {'cost': 2})
157
+ private_get_account_mmp_config = privateGetAccountMmpConfig = Entry('account/mmp-config', 'private', 'GET', {'cost': 4})
158
+ private_get_account_fixed_loan_borrowing_limit = privateGetAccountFixedLoanBorrowingLimit = Entry('account/fixed-loan/borrowing-limit', 'private', 'GET', {'cost': 4})
159
+ private_get_account_fixed_loan_borrowing_quote = privateGetAccountFixedLoanBorrowingQuote = Entry('account/fixed-loan/borrowing-quote', 'private', 'GET', {'cost': 5})
160
+ private_get_account_fixed_loan_borrowing_orders_list = privateGetAccountFixedLoanBorrowingOrdersList = Entry('account/fixed-loan/borrowing-orders-list', 'private', 'GET', {'cost': 5})
161
+ private_get_account_spot_manual_borrow_repay = privateGetAccountSpotManualBorrowRepay = Entry('account/spot-manual-borrow-repay', 'private', 'GET', {'cost': 10})
162
+ private_get_account_set_auto_repay = privateGetAccountSetAutoRepay = Entry('account/set-auto-repay', 'private', 'GET', {'cost': 4})
163
+ private_get_account_spot_borrow_repay_history = privateGetAccountSpotBorrowRepayHistory = Entry('account/spot-borrow-repay-history', 'private', 'GET', {'cost': 4})
164
+ private_get_account_move_positions_history = privateGetAccountMovePositionsHistory = Entry('account/move-positions-history', 'private', 'GET', {'cost': 10})
165
+ private_get_users_subaccount_list = privateGetUsersSubaccountList = Entry('users/subaccount/list', 'private', 'GET', {'cost': 10})
166
+ private_get_account_subaccount_balances = privateGetAccountSubaccountBalances = Entry('account/subaccount/balances', 'private', 'GET', {'cost': 3.3333333333333335})
167
+ private_get_asset_subaccount_balances = privateGetAssetSubaccountBalances = Entry('asset/subaccount/balances', 'private', 'GET', {'cost': 3.3333333333333335})
168
+ private_get_account_subaccount_max_withdrawal = privateGetAccountSubaccountMaxWithdrawal = Entry('account/subaccount/max-withdrawal', 'private', 'GET', {'cost': 1})
169
+ private_get_asset_subaccount_bills = privateGetAssetSubaccountBills = Entry('asset/subaccount/bills', 'private', 'GET', {'cost': 1.6666666666666667})
170
+ private_get_asset_subaccount_managed_subaccount_bills = privateGetAssetSubaccountManagedSubaccountBills = Entry('asset/subaccount/managed-subaccount-bills', 'private', 'GET', {'cost': 1.6666666666666667})
171
+ private_get_users_entrust_subaccount_list = privateGetUsersEntrustSubaccountList = Entry('users/entrust-subaccount-list', 'private', 'GET', {'cost': 10})
172
+ private_get_account_subaccount_interest_limits = privateGetAccountSubaccountInterestLimits = Entry('account/subaccount/interest-limits', 'private', 'GET', {'cost': 4})
173
+ private_get_users_subaccount_apikey = privateGetUsersSubaccountApikey = Entry('users/subaccount/apikey', 'private', 'GET', {'cost': 10})
174
+ private_get_tradingbot_grid_orders_algo_pending = privateGetTradingBotGridOrdersAlgoPending = Entry('tradingBot/grid/orders-algo-pending', 'private', 'GET', {'cost': 1})
175
+ private_get_tradingbot_grid_orders_algo_history = privateGetTradingBotGridOrdersAlgoHistory = Entry('tradingBot/grid/orders-algo-history', 'private', 'GET', {'cost': 1})
176
+ private_get_tradingbot_grid_orders_algo_details = privateGetTradingBotGridOrdersAlgoDetails = Entry('tradingBot/grid/orders-algo-details', 'private', 'GET', {'cost': 1})
177
+ private_get_tradingbot_grid_sub_orders = privateGetTradingBotGridSubOrders = Entry('tradingBot/grid/sub-orders', 'private', 'GET', {'cost': 1})
178
+ private_get_tradingbot_grid_positions = privateGetTradingBotGridPositions = Entry('tradingBot/grid/positions', 'private', 'GET', {'cost': 1})
179
+ private_get_tradingbot_grid_ai_param = privateGetTradingBotGridAiParam = Entry('tradingBot/grid/ai-param', 'private', 'GET', {'cost': 1})
180
+ private_get_tradingbot_signal_signals = privateGetTradingBotSignalSignals = Entry('tradingBot/signal/signals', 'private', 'GET', {'cost': 1})
181
+ private_get_tradingbot_signal_orders_algo_details = privateGetTradingBotSignalOrdersAlgoDetails = Entry('tradingBot/signal/orders-algo-details', 'private', 'GET', {'cost': 1})
182
+ private_get_tradingbot_signal_orders_algo_history = privateGetTradingBotSignalOrdersAlgoHistory = Entry('tradingBot/signal/orders-algo-history', 'private', 'GET', {'cost': 1})
183
+ private_get_tradingbot_signal_positions = privateGetTradingBotSignalPositions = Entry('tradingBot/signal/positions', 'private', 'GET', {'cost': 1})
184
+ private_get_tradingbot_signal_positions_history = privateGetTradingBotSignalPositionsHistory = Entry('tradingBot/signal/positions-history', 'private', 'GET', {'cost': 1})
185
+ private_get_tradingbot_signal_sub_orders = privateGetTradingBotSignalSubOrders = Entry('tradingBot/signal/sub-orders', 'private', 'GET', {'cost': 1})
186
+ private_get_tradingbot_signal_event_history = privateGetTradingBotSignalEventHistory = Entry('tradingBot/signal/event-history', 'private', 'GET', {'cost': 1})
187
+ private_get_tradingbot_recurring_orders_algo_pending = privateGetTradingBotRecurringOrdersAlgoPending = Entry('tradingBot/recurring/orders-algo-pending', 'private', 'GET', {'cost': 1})
188
+ private_get_tradingbot_recurring_orders_algo_history = privateGetTradingBotRecurringOrdersAlgoHistory = Entry('tradingBot/recurring/orders-algo-history', 'private', 'GET', {'cost': 1})
189
+ private_get_tradingbot_recurring_orders_algo_details = privateGetTradingBotRecurringOrdersAlgoDetails = Entry('tradingBot/recurring/orders-algo-details', 'private', 'GET', {'cost': 1})
190
+ private_get_tradingbot_recurring_sub_orders = privateGetTradingBotRecurringSubOrders = Entry('tradingBot/recurring/sub-orders', 'private', 'GET', {'cost': 1})
191
+ private_get_finance_savings_balance = privateGetFinanceSavingsBalance = Entry('finance/savings/balance', 'private', 'GET', {'cost': 1.6666666666666667})
192
+ private_get_finance_savings_lending_history = privateGetFinanceSavingsLendingHistory = Entry('finance/savings/lending-history', 'private', 'GET', {'cost': 1.6666666666666667})
193
+ private_get_finance_staking_defi_offers = privateGetFinanceStakingDefiOffers = Entry('finance/staking-defi/offers', 'private', 'GET', {'cost': 3.3333333333333335})
194
+ private_get_finance_staking_defi_orders_active = privateGetFinanceStakingDefiOrdersActive = Entry('finance/staking-defi/orders-active', 'private', 'GET', {'cost': 3.3333333333333335})
195
+ private_get_finance_staking_defi_orders_history = privateGetFinanceStakingDefiOrdersHistory = Entry('finance/staking-defi/orders-history', 'private', 'GET', {'cost': 3.3333333333333335})
196
+ private_get_finance_staking_defi_eth_balance = privateGetFinanceStakingDefiEthBalance = Entry('finance/staking-defi/eth/balance', 'private', 'GET', {'cost': 1.6666666666666667})
197
+ private_get_finance_staking_defi_eth_purchase_redeem_history = privateGetFinanceStakingDefiEthPurchaseRedeemHistory = Entry('finance/staking-defi/eth/purchase-redeem-history', 'private', 'GET', {'cost': 1.6666666666666667})
198
+ private_get_finance_staking_defi_eth_product_info = privateGetFinanceStakingDefiEthProductInfo = Entry('finance/staking-defi/eth/product-info', 'private', 'GET', {'cost': 3})
199
+ private_get_finance_staking_defi_sol_balance = privateGetFinanceStakingDefiSolBalance = Entry('finance/staking-defi/sol/balance', 'private', 'GET', {'cost': 1.6666666666666667})
200
+ private_get_finance_staking_defi_sol_purchase_redeem_history = privateGetFinanceStakingDefiSolPurchaseRedeemHistory = Entry('finance/staking-defi/sol/purchase-redeem-history', 'private', 'GET', {'cost': 1.6666666666666667})
201
+ private_get_copytrading_current_subpositions = privateGetCopytradingCurrentSubpositions = Entry('copytrading/current-subpositions', 'private', 'GET', {'cost': 1})
202
+ private_get_copytrading_subpositions_history = privateGetCopytradingSubpositionsHistory = Entry('copytrading/subpositions-history', 'private', 'GET', {'cost': 1})
203
+ private_get_copytrading_instruments = privateGetCopytradingInstruments = Entry('copytrading/instruments', 'private', 'GET', {'cost': 4})
204
+ private_get_copytrading_profit_sharing_details = privateGetCopytradingProfitSharingDetails = Entry('copytrading/profit-sharing-details', 'private', 'GET', {'cost': 4})
205
+ private_get_copytrading_total_profit_sharing = privateGetCopytradingTotalProfitSharing = Entry('copytrading/total-profit-sharing', 'private', 'GET', {'cost': 4})
206
+ private_get_copytrading_unrealized_profit_sharing_details = privateGetCopytradingUnrealizedProfitSharingDetails = Entry('copytrading/unrealized-profit-sharing-details', 'private', 'GET', {'cost': 4})
207
+ private_get_copytrading_copy_settings = privateGetCopytradingCopySettings = Entry('copytrading/copy-settings', 'private', 'GET', {'cost': 4})
208
+ private_get_copytrading_batch_leverage_info = privateGetCopytradingBatchLeverageInfo = Entry('copytrading/batch-leverage-info', 'private', 'GET', {'cost': 4})
209
+ private_get_copytrading_current_lead_traders = privateGetCopytradingCurrentLeadTraders = Entry('copytrading/current-lead-traders', 'private', 'GET', {'cost': 4})
210
+ private_get_copytrading_lead_traders_history = privateGetCopytradingLeadTradersHistory = Entry('copytrading/lead-traders-history', 'private', 'GET', {'cost': 4})
211
+ private_get_broker_nd_info = privateGetBrokerNdInfo = Entry('broker/nd/info', 'private', 'GET', {'cost': 10})
212
+ private_get_broker_nd_subaccount_info = privateGetBrokerNdSubaccountInfo = Entry('broker/nd/subaccount-info', 'private', 'GET', {'cost': 10})
213
+ private_get_broker_nd_subaccount_apikey = privateGetBrokerNdSubaccountApikey = Entry('broker/nd/subaccount/apikey', 'private', 'GET', {'cost': 10})
214
+ private_get_asset_broker_nd_subaccount_deposit_address = privateGetAssetBrokerNdSubaccountDepositAddress = Entry('asset/broker/nd/subaccount-deposit-address', 'private', 'GET', {'cost': 1.6666666666666667})
215
+ private_get_asset_broker_nd_subaccount_deposit_history = privateGetAssetBrokerNdSubaccountDepositHistory = Entry('asset/broker/nd/subaccount-deposit-history', 'private', 'GET', {'cost': 4})
216
+ private_get_asset_broker_nd_subaccount_withdrawal_history = privateGetAssetBrokerNdSubaccountWithdrawalHistory = Entry('asset/broker/nd/subaccount-withdrawal-history', 'private', 'GET', {'cost': 4})
217
+ private_get_broker_nd_rebate_daily = privateGetBrokerNdRebateDaily = Entry('broker/nd/rebate-daily', 'private', 'GET', {'cost': 100})
218
+ private_get_broker_nd_rebate_per_orders = privateGetBrokerNdRebatePerOrders = Entry('broker/nd/rebate-per-orders', 'private', 'GET', {'cost': 300})
219
+ private_get_finance_sfp_dcd_order = privateGetFinanceSfpDcdOrder = Entry('finance/sfp/dcd/order', 'private', 'GET', {'cost': 2})
220
+ private_get_finance_sfp_dcd_orders = privateGetFinanceSfpDcdOrders = Entry('finance/sfp/dcd/orders', 'private', 'GET', {'cost': 2})
221
+ private_get_broker_fd_rebate_per_orders = privateGetBrokerFdRebatePerOrders = Entry('broker/fd/rebate-per-orders', 'private', 'GET', {'cost': 300})
222
+ private_get_broker_fd_if_rebate = privateGetBrokerFdIfRebate = Entry('broker/fd/if-rebate', 'private', 'GET', {'cost': 5})
223
+ private_get_affiliate_invitee_detail = privateGetAffiliateInviteeDetail = Entry('affiliate/invitee/detail', 'private', 'GET', {'cost': 1})
224
+ private_get_users_partner_if_rebate = privateGetUsersPartnerIfRebate = Entry('users/partner/if-rebate', 'private', 'GET', {'cost': 1})
225
+ private_get_support_announcements = privateGetSupportAnnouncements = Entry('support/announcements', 'private', 'GET', {'cost': 4})
226
+ private_post_rfq_create_rfq = privatePostRfqCreateRfq = Entry('rfq/create-rfq', 'private', 'POST', {'cost': 4})
227
+ private_post_rfq_cancel_rfq = privatePostRfqCancelRfq = Entry('rfq/cancel-rfq', 'private', 'POST', {'cost': 4})
228
+ private_post_rfq_cancel_batch_rfqs = privatePostRfqCancelBatchRfqs = Entry('rfq/cancel-batch-rfqs', 'private', 'POST', {'cost': 10})
229
+ private_post_rfq_cancel_all_rfqs = privatePostRfqCancelAllRfqs = Entry('rfq/cancel-all-rfqs', 'private', 'POST', {'cost': 10})
230
+ private_post_rfq_execute_quote = privatePostRfqExecuteQuote = Entry('rfq/execute-quote', 'private', 'POST', {'cost': 15})
231
+ private_post_rfq_maker_instrument_settings = privatePostRfqMakerInstrumentSettings = Entry('rfq/maker-instrument-settings', 'private', 'POST', {'cost': 4})
232
+ private_post_rfq_mmp_reset = privatePostRfqMmpReset = Entry('rfq/mmp-reset', 'private', 'POST', {'cost': 4})
233
+ private_post_rfq_mmp_config = privatePostRfqMmpConfig = Entry('rfq/mmp-config', 'private', 'POST', {'cost': 100})
234
+ private_post_rfq_create_quote = privatePostRfqCreateQuote = Entry('rfq/create-quote', 'private', 'POST', {'cost': 0.4})
235
+ private_post_rfq_cancel_quote = privatePostRfqCancelQuote = Entry('rfq/cancel-quote', 'private', 'POST', {'cost': 0.4})
236
+ private_post_rfq_cancel_batch_quotes = privatePostRfqCancelBatchQuotes = Entry('rfq/cancel-batch-quotes', 'private', 'POST', {'cost': 10})
237
+ private_post_rfq_cancel_all_quotes = privatePostRfqCancelAllQuotes = Entry('rfq/cancel-all-quotes', 'private', 'POST', {'cost': 10})
238
+ private_post_sprd_order = privatePostSprdOrder = Entry('sprd/order', 'private', 'POST', {'cost': 1})
239
+ private_post_sprd_cancel_order = privatePostSprdCancelOrder = Entry('sprd/cancel-order', 'private', 'POST', {'cost': 1})
240
+ private_post_sprd_mass_cancel = privatePostSprdMassCancel = Entry('sprd/mass-cancel', 'private', 'POST', {'cost': 1})
241
+ private_post_sprd_amend_order = privatePostSprdAmendOrder = Entry('sprd/amend-order', 'private', 'POST', {'cost': 1})
242
+ private_post_sprd_cancel_all_after = privatePostSprdCancelAllAfter = Entry('sprd/cancel-all-after', 'private', 'POST', {'cost': 10})
243
+ private_post_trade_order = privatePostTradeOrder = Entry('trade/order', 'private', 'POST', {'cost': 0.3333333333333333})
244
+ private_post_trade_batch_orders = privatePostTradeBatchOrders = Entry('trade/batch-orders', 'private', 'POST', {'cost': 0.06666666666666667})
245
+ private_post_trade_cancel_order = privatePostTradeCancelOrder = Entry('trade/cancel-order', 'private', 'POST', {'cost': 0.3333333333333333})
246
+ private_post_trade_cancel_batch_orders = privatePostTradeCancelBatchOrders = Entry('trade/cancel-batch-orders', 'private', 'POST', {'cost': 0.06666666666666667})
247
+ private_post_trade_amend_order = privatePostTradeAmendOrder = Entry('trade/amend-order', 'private', 'POST', {'cost': 0.3333333333333333})
248
+ private_post_trade_amend_batch_orders = privatePostTradeAmendBatchOrders = Entry('trade/amend-batch-orders', 'private', 'POST', {'cost': 0.006666666666666667})
249
+ private_post_trade_close_position = privatePostTradeClosePosition = Entry('trade/close-position', 'private', 'POST', {'cost': 1})
250
+ private_post_trade_fills_archive = privatePostTradeFillsArchive = Entry('trade/fills-archive', 'private', 'POST', {'cost': 172800})
251
+ private_post_trade_order_algo = privatePostTradeOrderAlgo = Entry('trade/order-algo', 'private', 'POST', {'cost': 1})
252
+ private_post_trade_cancel_algos = privatePostTradeCancelAlgos = Entry('trade/cancel-algos', 'private', 'POST', {'cost': 1})
253
+ private_post_trade_amend_algos = privatePostTradeAmendAlgos = Entry('trade/amend-algos', 'private', 'POST', {'cost': 1})
254
+ private_post_trade_cancel_advance_algos = privatePostTradeCancelAdvanceAlgos = Entry('trade/cancel-advance-algos', 'private', 'POST', {'cost': 1})
255
+ private_post_trade_easy_convert = privatePostTradeEasyConvert = Entry('trade/easy-convert', 'private', 'POST', {'cost': 20})
256
+ private_post_trade_one_click_repay = privatePostTradeOneClickRepay = Entry('trade/one-click-repay', 'private', 'POST', {'cost': 20})
257
+ private_post_trade_one_click_repay_v2 = privatePostTradeOneClickRepayV2 = Entry('trade/one-click-repay-v2', 'private', 'POST', {'cost': 20})
258
+ private_post_trade_mass_cancel = privatePostTradeMassCancel = Entry('trade/mass-cancel', 'private', 'POST', {'cost': 4})
259
+ private_post_trade_cancel_all_after = privatePostTradeCancelAllAfter = Entry('trade/cancel-all-after', 'private', 'POST', {'cost': 10})
260
+ private_post_asset_transfer = privatePostAssetTransfer = Entry('asset/transfer', 'private', 'POST', {'cost': 10})
261
+ private_post_asset_withdrawal = privatePostAssetWithdrawal = Entry('asset/withdrawal', 'private', 'POST', {'cost': 1.6666666666666667})
262
+ private_post_asset_withdrawal_lightning = privatePostAssetWithdrawalLightning = Entry('asset/withdrawal-lightning', 'private', 'POST', {'cost': 5})
263
+ private_post_asset_cancel_withdrawal = privatePostAssetCancelWithdrawal = Entry('asset/cancel-withdrawal', 'private', 'POST', {'cost': 1.6666666666666667})
264
+ private_post_asset_convert_dust_assets = privatePostAssetConvertDustAssets = Entry('asset/convert-dust-assets', 'private', 'POST', {'cost': 10})
265
+ private_post_asset_convert_estimate_quote = privatePostAssetConvertEstimateQuote = Entry('asset/convert/estimate-quote', 'private', 'POST', {'cost': 1})
266
+ private_post_asset_convert_trade = privatePostAssetConvertTrade = Entry('asset/convert/trade', 'private', 'POST', {'cost': 1})
267
+ private_post_asset_monthly_statement = privatePostAssetMonthlyStatement = Entry('asset/monthly-statement', 'private', 'POST', {'cost': 1})
268
+ private_post_account_set_position_mode = privatePostAccountSetPositionMode = Entry('account/set-position-mode', 'private', 'POST', {'cost': 4})
269
+ private_post_account_set_leverage = privatePostAccountSetLeverage = Entry('account/set-leverage', 'private', 'POST', {'cost': 1})
270
+ private_post_account_position_margin_balance = privatePostAccountPositionMarginBalance = Entry('account/position/margin-balance', 'private', 'POST', {'cost': 1})
271
+ private_post_account_set_greeks = privatePostAccountSetGreeks = Entry('account/set-greeks', 'private', 'POST', {'cost': 4})
272
+ private_post_account_set_isolated_mode = privatePostAccountSetIsolatedMode = Entry('account/set-isolated-mode', 'private', 'POST', {'cost': 4})
273
+ private_post_account_quick_margin_borrow_repay = privatePostAccountQuickMarginBorrowRepay = Entry('account/quick-margin-borrow-repay', 'private', 'POST', {'cost': 4})
274
+ private_post_account_borrow_repay = privatePostAccountBorrowRepay = Entry('account/borrow-repay', 'private', 'POST', {'cost': 1.6666666666666667})
275
+ private_post_account_simulated_margin = privatePostAccountSimulatedMargin = Entry('account/simulated_margin', 'private', 'POST', {'cost': 10})
276
+ private_post_account_position_builder = privatePostAccountPositionBuilder = Entry('account/position-builder', 'private', 'POST', {'cost': 10})
277
+ private_post_account_set_riskoffset_type = privatePostAccountSetRiskOffsetType = Entry('account/set-riskOffset-type', 'private', 'POST', {'cost': 2})
278
+ private_post_account_activate_option = privatePostAccountActivateOption = Entry('account/activate-option', 'private', 'POST', {'cost': 4})
279
+ private_post_account_set_auto_loan = privatePostAccountSetAutoLoan = Entry('account/set-auto-loan', 'private', 'POST', {'cost': 4})
280
+ private_post_account_set_account_level = privatePostAccountSetAccountLevel = Entry('account/set-account-level', 'private', 'POST', {'cost': 4})
281
+ private_post_account_mmp_reset = privatePostAccountMmpReset = Entry('account/mmp-reset', 'private', 'POST', {'cost': 4})
282
+ private_post_account_mmp_config = privatePostAccountMmpConfig = Entry('account/mmp-config', 'private', 'POST', {'cost': 100})
283
+ private_post_account_fixed_loan_borrowing_order = privatePostAccountFixedLoanBorrowingOrder = Entry('account/fixed-loan/borrowing-order', 'private', 'POST', {'cost': 5})
284
+ private_post_account_fixed_loan_amend_borrowing_order = privatePostAccountFixedLoanAmendBorrowingOrder = Entry('account/fixed-loan/amend-borrowing-order', 'private', 'POST', {'cost': 5})
285
+ private_post_account_fixed_loan_manual_reborrow = privatePostAccountFixedLoanManualReborrow = Entry('account/fixed-loan/manual-reborrow', 'private', 'POST', {'cost': 5})
286
+ private_post_account_fixed_loan_repay_borrowing_order = privatePostAccountFixedLoanRepayBorrowingOrder = Entry('account/fixed-loan/repay-borrowing-order', 'private', 'POST', {'cost': 5})
287
+ private_post_account_bills_history_archive = privatePostAccountBillsHistoryArchive = Entry('account/bills-history-archive', 'private', 'POST', {'cost': 72000})
288
+ private_post_account_move_positions = privatePostAccountMovePositions = Entry('account/move-positions', 'private', 'POST', {'cost': 10})
289
+ private_post_users_subaccount_modify_apikey = privatePostUsersSubaccountModifyApikey = Entry('users/subaccount/modify-apikey', 'private', 'POST', {'cost': 10})
290
+ private_post_asset_subaccount_transfer = privatePostAssetSubaccountTransfer = Entry('asset/subaccount/transfer', 'private', 'POST', {'cost': 10})
291
+ private_post_users_subaccount_set_transfer_out = privatePostUsersSubaccountSetTransferOut = Entry('users/subaccount/set-transfer-out', 'private', 'POST', {'cost': 10})
292
+ private_post_account_subaccount_set_loan_allocation = privatePostAccountSubaccountSetLoanAllocation = Entry('account/subaccount/set-loan-allocation', 'private', 'POST', {'cost': 4})
293
+ private_post_users_subaccount_create_subaccount = privatePostUsersSubaccountCreateSubaccount = Entry('users/subaccount/create-subaccount', 'private', 'POST', {'cost': 10})
294
+ private_post_users_subaccount_subaccount_apikey = privatePostUsersSubaccountSubaccountApikey = Entry('users/subaccount/subaccount-apikey', 'private', 'POST', {'cost': 10})
295
+ private_post_users_subaccount_delete_apikey = privatePostUsersSubaccountDeleteApikey = Entry('users/subaccount/delete-apikey', 'private', 'POST', {'cost': 10})
296
+ private_post_tradingbot_grid_order_algo = privatePostTradingBotGridOrderAlgo = Entry('tradingBot/grid/order-algo', 'private', 'POST', {'cost': 1})
297
+ private_post_tradingbot_grid_amend_order_algo = privatePostTradingBotGridAmendOrderAlgo = Entry('tradingBot/grid/amend-order-algo', 'private', 'POST', {'cost': 1})
298
+ private_post_tradingbot_grid_stop_order_algo = privatePostTradingBotGridStopOrderAlgo = Entry('tradingBot/grid/stop-order-algo', 'private', 'POST', {'cost': 1})
299
+ private_post_tradingbot_grid_close_position = privatePostTradingBotGridClosePosition = Entry('tradingBot/grid/close-position', 'private', 'POST', {'cost': 1})
300
+ private_post_tradingbot_grid_cancel_close_order = privatePostTradingBotGridCancelCloseOrder = Entry('tradingBot/grid/cancel-close-order', 'private', 'POST', {'cost': 1})
301
+ private_post_tradingbot_grid_order_instant_trigger = privatePostTradingBotGridOrderInstantTrigger = Entry('tradingBot/grid/order-instant-trigger', 'private', 'POST', {'cost': 1})
302
+ private_post_tradingbot_grid_withdraw_income = privatePostTradingBotGridWithdrawIncome = Entry('tradingBot/grid/withdraw-income', 'private', 'POST', {'cost': 1})
303
+ private_post_tradingbot_grid_compute_margin_balance = privatePostTradingBotGridComputeMarginBalance = Entry('tradingBot/grid/compute-margin-balance', 'private', 'POST', {'cost': 1})
304
+ private_post_tradingbot_grid_margin_balance = privatePostTradingBotGridMarginBalance = Entry('tradingBot/grid/margin-balance', 'private', 'POST', {'cost': 1})
305
+ private_post_tradingbot_grid_min_investment = privatePostTradingBotGridMinInvestment = Entry('tradingBot/grid/min-investment', 'private', 'POST', {'cost': 1})
306
+ private_post_tradingbot_grid_adjust_investment = privatePostTradingBotGridAdjustInvestment = Entry('tradingBot/grid/adjust-investment', 'private', 'POST', {'cost': 1})
307
+ private_post_tradingbot_signal_create_signal = privatePostTradingBotSignalCreateSignal = Entry('tradingBot/signal/create-signal', 'private', 'POST', {'cost': 1})
308
+ private_post_tradingbot_signal_order_algo = privatePostTradingBotSignalOrderAlgo = Entry('tradingBot/signal/order-algo', 'private', 'POST', {'cost': 1})
309
+ private_post_tradingbot_signal_stop_order_algo = privatePostTradingBotSignalStopOrderAlgo = Entry('tradingBot/signal/stop-order-algo', 'private', 'POST', {'cost': 1})
310
+ private_post_tradingbot_signal_margin_balance = privatePostTradingBotSignalMarginBalance = Entry('tradingBot/signal/margin-balance', 'private', 'POST', {'cost': 1})
311
+ private_post_tradingbot_signal_amendtpsl = privatePostTradingBotSignalAmendTPSL = Entry('tradingBot/signal/amendTPSL', 'private', 'POST', {'cost': 1})
312
+ private_post_tradingbot_signal_set_instruments = privatePostTradingBotSignalSetInstruments = Entry('tradingBot/signal/set-instruments', 'private', 'POST', {'cost': 1})
313
+ private_post_tradingbot_signal_close_position = privatePostTradingBotSignalClosePosition = Entry('tradingBot/signal/close-position', 'private', 'POST', {'cost': 1})
314
+ private_post_tradingbot_signal_sub_order = privatePostTradingBotSignalSubOrder = Entry('tradingBot/signal/sub-order', 'private', 'POST', {'cost': 1})
315
+ private_post_tradingbot_signal_cancel_sub_order = privatePostTradingBotSignalCancelSubOrder = Entry('tradingBot/signal/cancel-sub-order', 'private', 'POST', {'cost': 1})
316
+ private_post_tradingbot_recurring_order_algo = privatePostTradingBotRecurringOrderAlgo = Entry('tradingBot/recurring/order-algo', 'private', 'POST', {'cost': 1})
317
+ private_post_tradingbot_recurring_amend_order_algo = privatePostTradingBotRecurringAmendOrderAlgo = Entry('tradingBot/recurring/amend-order-algo', 'private', 'POST', {'cost': 1})
318
+ private_post_tradingbot_recurring_stop_order_algo = privatePostTradingBotRecurringStopOrderAlgo = Entry('tradingBot/recurring/stop-order-algo', 'private', 'POST', {'cost': 1})
319
+ private_post_finance_savings_purchase_redempt = privatePostFinanceSavingsPurchaseRedempt = Entry('finance/savings/purchase-redempt', 'private', 'POST', {'cost': 1.6666666666666667})
320
+ private_post_finance_savings_set_lending_rate = privatePostFinanceSavingsSetLendingRate = Entry('finance/savings/set-lending-rate', 'private', 'POST', {'cost': 1.6666666666666667})
321
+ private_post_finance_staking_defi_purchase = privatePostFinanceStakingDefiPurchase = Entry('finance/staking-defi/purchase', 'private', 'POST', {'cost': 3})
322
+ private_post_finance_staking_defi_redeem = privatePostFinanceStakingDefiRedeem = Entry('finance/staking-defi/redeem', 'private', 'POST', {'cost': 3})
323
+ private_post_finance_staking_defi_cancel = privatePostFinanceStakingDefiCancel = Entry('finance/staking-defi/cancel', 'private', 'POST', {'cost': 3})
324
+ private_post_finance_staking_defi_eth_purchase = privatePostFinanceStakingDefiEthPurchase = Entry('finance/staking-defi/eth/purchase', 'private', 'POST', {'cost': 5})
325
+ private_post_finance_staking_defi_eth_redeem = privatePostFinanceStakingDefiEthRedeem = Entry('finance/staking-defi/eth/redeem', 'private', 'POST', {'cost': 5})
326
+ private_post_finance_staking_defi_sol_purchase = privatePostFinanceStakingDefiSolPurchase = Entry('finance/staking-defi/sol/purchase', 'private', 'POST', {'cost': 5})
327
+ private_post_finance_staking_defi_sol_redeem = privatePostFinanceStakingDefiSolRedeem = Entry('finance/staking-defi/sol/redeem', 'private', 'POST', {'cost': 5})
328
+ private_post_copytrading_algo_order = privatePostCopytradingAlgoOrder = Entry('copytrading/algo-order', 'private', 'POST', {'cost': 1})
329
+ private_post_copytrading_close_subposition = privatePostCopytradingCloseSubposition = Entry('copytrading/close-subposition', 'private', 'POST', {'cost': 1})
330
+ private_post_copytrading_set_instruments = privatePostCopytradingSetInstruments = Entry('copytrading/set-instruments', 'private', 'POST', {'cost': 4})
331
+ private_post_copytrading_first_copy_settings = privatePostCopytradingFirstCopySettings = Entry('copytrading/first-copy-settings', 'private', 'POST', {'cost': 4})
332
+ private_post_copytrading_amend_copy_settings = privatePostCopytradingAmendCopySettings = Entry('copytrading/amend-copy-settings', 'private', 'POST', {'cost': 4})
333
+ private_post_copytrading_stop_copy_trading = privatePostCopytradingStopCopyTrading = Entry('copytrading/stop-copy-trading', 'private', 'POST', {'cost': 4})
334
+ private_post_copytrading_batch_set_leverage = privatePostCopytradingBatchSetLeverage = Entry('copytrading/batch-set-leverage', 'private', 'POST', {'cost': 4})
335
+ private_post_broker_nd_create_subaccount = privatePostBrokerNdCreateSubaccount = Entry('broker/nd/create-subaccount', 'private', 'POST', {'cost': 0.25})
336
+ private_post_broker_nd_delete_subaccount = privatePostBrokerNdDeleteSubaccount = Entry('broker/nd/delete-subaccount', 'private', 'POST', {'cost': 1})
337
+ private_post_broker_nd_subaccount_apikey = privatePostBrokerNdSubaccountApikey = Entry('broker/nd/subaccount/apikey', 'private', 'POST', {'cost': 0.25})
338
+ private_post_broker_nd_subaccount_modify_apikey = privatePostBrokerNdSubaccountModifyApikey = Entry('broker/nd/subaccount/modify-apikey', 'private', 'POST', {'cost': 1})
339
+ private_post_broker_nd_subaccount_delete_apikey = privatePostBrokerNdSubaccountDeleteApikey = Entry('broker/nd/subaccount/delete-apikey', 'private', 'POST', {'cost': 1})
340
+ private_post_broker_nd_set_subaccount_level = privatePostBrokerNdSetSubaccountLevel = Entry('broker/nd/set-subaccount-level', 'private', 'POST', {'cost': 4})
341
+ private_post_broker_nd_set_subaccount_fee_rate = privatePostBrokerNdSetSubaccountFeeRate = Entry('broker/nd/set-subaccount-fee-rate', 'private', 'POST', {'cost': 4})
342
+ private_post_broker_nd_set_subaccount_assets = privatePostBrokerNdSetSubaccountAssets = Entry('broker/nd/set-subaccount-assets', 'private', 'POST', {'cost': 0.25})
343
+ private_post_asset_broker_nd_subaccount_deposit_address = privatePostAssetBrokerNdSubaccountDepositAddress = Entry('asset/broker/nd/subaccount-deposit-address', 'private', 'POST', {'cost': 1})
344
+ private_post_asset_broker_nd_modify_subaccount_deposit_address = privatePostAssetBrokerNdModifySubaccountDepositAddress = Entry('asset/broker/nd/modify-subaccount-deposit-address', 'private', 'POST', {'cost': 1.6666666666666667})
345
+ private_post_broker_nd_rebate_per_orders = privatePostBrokerNdRebatePerOrders = Entry('broker/nd/rebate-per-orders', 'private', 'POST', {'cost': 36000})
346
+ private_post_finance_sfp_dcd_quote = privatePostFinanceSfpDcdQuote = Entry('finance/sfp/dcd/quote', 'private', 'POST', {'cost': 10})
347
+ private_post_finance_sfp_dcd_order = privatePostFinanceSfpDcdOrder = Entry('finance/sfp/dcd/order', 'private', 'POST', {'cost': 10})
348
+ private_post_broker_nd_report_subaccount_ip = privatePostBrokerNdReportSubaccountIp = Entry('broker/nd/report-subaccount-ip', 'private', 'POST', {'cost': 0.25})
349
+ private_post_broker_fd_rebate_per_orders = privatePostBrokerFdRebatePerOrders = Entry('broker/fd/rebate-per-orders', 'private', 'POST', {'cost': 36000})