ccxt-ir 4.3.46.0.1__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 (631) hide show
  1. ccxt_ir-4.3.46.0.1/LICENSE.txt +21 -0
  2. ccxt_ir-4.3.46.0.1/MANIFEST.in +5 -0
  3. ccxt_ir-4.3.46.0.1/PKG-INFO +655 -0
  4. ccxt_ir-4.3.46.0.1/README.rst +702 -0
  5. ccxt_ir-4.3.46.0.1/ccxt/__init__.py +358 -0
  6. ccxt_ir-4.3.46.0.1/ccxt/abantether.py +316 -0
  7. ccxt_ir-4.3.46.0.1/ccxt/abstract/__init__.py +0 -0
  8. ccxt_ir-4.3.46.0.1/ccxt/abstract/abantether.py +5 -0
  9. ccxt_ir-4.3.46.0.1/ccxt/abstract/ace.py +15 -0
  10. ccxt_ir-4.3.46.0.1/ccxt/abstract/afratether.py +6 -0
  11. ccxt_ir-4.3.46.0.1/ccxt/abstract/alpaca.py +70 -0
  12. ccxt_ir-4.3.46.0.1/ccxt/abstract/arzinja.py +5 -0
  13. ccxt_ir-4.3.46.0.1/ccxt/abstract/arzplus.py +7 -0
  14. ccxt_ir-4.3.46.0.1/ccxt/abstract/ascendex.py +77 -0
  15. ccxt_ir-4.3.46.0.1/ccxt/abstract/bequant.py +115 -0
  16. ccxt_ir-4.3.46.0.1/ccxt/abstract/bigone.py +45 -0
  17. ccxt_ir-4.3.46.0.1/ccxt/abstract/binance.py +712 -0
  18. ccxt_ir-4.3.46.0.1/ccxt/abstract/binancecoinm.py +712 -0
  19. ccxt_ir-4.3.46.0.1/ccxt/abstract/binanceus.py +764 -0
  20. ccxt_ir-4.3.46.0.1/ccxt/abstract/binanceusdm.py +712 -0
  21. ccxt_ir-4.3.46.0.1/ccxt/abstract/bingx.py +113 -0
  22. ccxt_ir-4.3.46.0.1/ccxt/abstract/bit2c.py +27 -0
  23. ccxt_ir-4.3.46.0.1/ccxt/abstract/bitbank.py +27 -0
  24. ccxt_ir-4.3.46.0.1/ccxt/abstract/bitbay.py +53 -0
  25. ccxt_ir-4.3.46.0.1/ccxt/abstract/bitbns.py +40 -0
  26. ccxt_ir-4.3.46.0.1/ccxt/abstract/bitcoincom.py +115 -0
  27. ccxt_ir-4.3.46.0.1/ccxt/abstract/bitfinex.py +69 -0
  28. ccxt_ir-4.3.46.0.1/ccxt/abstract/bitfinex2.py +139 -0
  29. ccxt_ir-4.3.46.0.1/ccxt/abstract/bitflyer.py +38 -0
  30. ccxt_ir-4.3.46.0.1/ccxt/abstract/bitget.py +508 -0
  31. ccxt_ir-4.3.46.0.1/ccxt/abstract/bithumb.py +32 -0
  32. ccxt_ir-4.3.46.0.1/ccxt/abstract/bitimen.py +7 -0
  33. ccxt_ir-4.3.46.0.1/ccxt/abstract/bitir.py +7 -0
  34. ccxt_ir-4.3.46.0.1/ccxt/abstract/bitmart.py +99 -0
  35. ccxt_ir-4.3.46.0.1/ccxt/abstract/bitmex.py +97 -0
  36. ccxt_ir-4.3.46.0.1/ccxt/abstract/bitopro.py +29 -0
  37. ccxt_ir-4.3.46.0.1/ccxt/abstract/bitpanda.py +35 -0
  38. ccxt_ir-4.3.46.0.1/ccxt/abstract/bitpin.py +7 -0
  39. ccxt_ir-4.3.46.0.1/ccxt/abstract/bitrue.py +72 -0
  40. ccxt_ir-4.3.46.0.1/ccxt/abstract/bitso.py +43 -0
  41. ccxt_ir-4.3.46.0.1/ccxt/abstract/bitstamp.py +258 -0
  42. ccxt_ir-4.3.46.0.1/ccxt/abstract/bitteam.py +29 -0
  43. ccxt_ir-4.3.46.0.1/ccxt/abstract/bitvavo.py +27 -0
  44. ccxt_ir-4.3.46.0.1/ccxt/abstract/bl3p.py +19 -0
  45. ccxt_ir-4.3.46.0.1/ccxt/abstract/blockchaincom.py +28 -0
  46. ccxt_ir-4.3.46.0.1/ccxt/abstract/blofin.py +37 -0
  47. ccxt_ir-4.3.46.0.1/ccxt/abstract/btcalpha.py +18 -0
  48. ccxt_ir-4.3.46.0.1/ccxt/abstract/btcbox.py +13 -0
  49. ccxt_ir-4.3.46.0.1/ccxt/abstract/btcmarkets.py +39 -0
  50. ccxt_ir-4.3.46.0.1/ccxt/abstract/btcturk.py +20 -0
  51. ccxt_ir-4.3.46.0.1/ccxt/abstract/bybit.py +298 -0
  52. ccxt_ir-4.3.46.0.1/ccxt/abstract/cex.py +33 -0
  53. ccxt_ir-4.3.46.0.1/ccxt/abstract/coinbase.py +94 -0
  54. ccxt_ir-4.3.46.0.1/ccxt/abstract/coinbaseadvanced.py +94 -0
  55. ccxt_ir-4.3.46.0.1/ccxt/abstract/coinbaseexchange.py +67 -0
  56. ccxt_ir-4.3.46.0.1/ccxt/abstract/coinbaseinternational.py +39 -0
  57. ccxt_ir-4.3.46.0.1/ccxt/abstract/coincheck.py +33 -0
  58. ccxt_ir-4.3.46.0.1/ccxt/abstract/coinex.py +237 -0
  59. ccxt_ir-4.3.46.0.1/ccxt/abstract/coinlist.py +54 -0
  60. ccxt_ir-4.3.46.0.1/ccxt/abstract/coinmate.py +62 -0
  61. ccxt_ir-4.3.46.0.1/ccxt/abstract/coinmetro.py +34 -0
  62. ccxt_ir-4.3.46.0.1/ccxt/abstract/coinone.py +67 -0
  63. ccxt_ir-4.3.46.0.1/ccxt/abstract/coinsph.py +54 -0
  64. ccxt_ir-4.3.46.0.1/ccxt/abstract/coinspot.py +28 -0
  65. ccxt_ir-4.3.46.0.1/ccxt/abstract/cryptocom.py +107 -0
  66. ccxt_ir-4.3.46.0.1/ccxt/abstract/currencycom.py +68 -0
  67. ccxt_ir-4.3.46.0.1/ccxt/abstract/delta.py +50 -0
  68. ccxt_ir-4.3.46.0.1/ccxt/abstract/deribit.py +125 -0
  69. ccxt_ir-4.3.46.0.1/ccxt/abstract/digifinex.py +91 -0
  70. ccxt_ir-4.3.46.0.1/ccxt/abstract/eterex.py +5 -0
  71. ccxt_ir-4.3.46.0.1/ccxt/abstract/excoino.py +7 -0
  72. ccxt_ir-4.3.46.0.1/ccxt/abstract/exir.py +8 -0
  73. ccxt_ir-4.3.46.0.1/ccxt/abstract/exmo.py +55 -0
  74. ccxt_ir-4.3.46.0.1/ccxt/abstract/exnovin.py +6 -0
  75. ccxt_ir-4.3.46.0.1/ccxt/abstract/farhadexchange.py +5 -0
  76. ccxt_ir-4.3.46.0.1/ccxt/abstract/fmfwio.py +115 -0
  77. ccxt_ir-4.3.46.0.1/ccxt/abstract/gate.py +265 -0
  78. ccxt_ir-4.3.46.0.1/ccxt/abstract/gateio.py +265 -0
  79. ccxt_ir-4.3.46.0.1/ccxt/abstract/gemini.py +58 -0
  80. ccxt_ir-4.3.46.0.1/ccxt/abstract/hitbtc.py +115 -0
  81. ccxt_ir-4.3.46.0.1/ccxt/abstract/hitbtc3.py +115 -0
  82. ccxt_ir-4.3.46.0.1/ccxt/abstract/hitobit.py +8 -0
  83. ccxt_ir-4.3.46.0.1/ccxt/abstract/hollaex.py +33 -0
  84. ccxt_ir-4.3.46.0.1/ccxt/abstract/htx.py +548 -0
  85. ccxt_ir-4.3.46.0.1/ccxt/abstract/huobi.py +548 -0
  86. ccxt_ir-4.3.46.0.1/ccxt/abstract/huobijp.py +114 -0
  87. ccxt_ir-4.3.46.0.1/ccxt/abstract/hyperliquid.py +6 -0
  88. ccxt_ir-4.3.46.0.1/ccxt/abstract/idex.py +26 -0
  89. ccxt_ir-4.3.46.0.1/ccxt/abstract/independentreserve.py +37 -0
  90. ccxt_ir-4.3.46.0.1/ccxt/abstract/indodax.py +26 -0
  91. ccxt_ir-4.3.46.0.1/ccxt/abstract/jibitex.py +7 -0
  92. ccxt_ir-4.3.46.0.1/ccxt/abstract/kraken.py +57 -0
  93. ccxt_ir-4.3.46.0.1/ccxt/abstract/krakenfutures.py +38 -0
  94. ccxt_ir-4.3.46.0.1/ccxt/abstract/kucoin.py +214 -0
  95. ccxt_ir-4.3.46.0.1/ccxt/abstract/kucoinfutures.py +233 -0
  96. ccxt_ir-4.3.46.0.1/ccxt/abstract/kuna.py +182 -0
  97. ccxt_ir-4.3.46.0.1/ccxt/abstract/latoken.py +56 -0
  98. ccxt_ir-4.3.46.0.1/ccxt/abstract/lbank.py +61 -0
  99. ccxt_ir-4.3.46.0.1/ccxt/abstract/luno.py +37 -0
  100. ccxt_ir-4.3.46.0.1/ccxt/abstract/lykke.py +29 -0
  101. ccxt_ir-4.3.46.0.1/ccxt/abstract/mercado.py +25 -0
  102. ccxt_ir-4.3.46.0.1/ccxt/abstract/mexc.py +178 -0
  103. ccxt_ir-4.3.46.0.1/ccxt/abstract/ndax.py +97 -0
  104. ccxt_ir-4.3.46.0.1/ccxt/abstract/nobitex.py +7 -0
  105. ccxt_ir-4.3.46.0.1/ccxt/abstract/novadax.py +29 -0
  106. ccxt_ir-4.3.46.0.1/ccxt/abstract/oceanex.py +22 -0
  107. ccxt_ir-4.3.46.0.1/ccxt/abstract/okcoin.py +74 -0
  108. ccxt_ir-4.3.46.0.1/ccxt/abstract/okexchange.py +8 -0
  109. ccxt_ir-4.3.46.0.1/ccxt/abstract/okx.py +324 -0
  110. ccxt_ir-4.3.46.0.1/ccxt/abstract/ompfinex.py +7 -0
  111. ccxt_ir-4.3.46.0.1/ccxt/abstract/onetrading.py +35 -0
  112. ccxt_ir-4.3.46.0.1/ccxt/abstract/oxfun.py +34 -0
  113. ccxt_ir-4.3.46.0.1/ccxt/abstract/p2b.py +22 -0
  114. ccxt_ir-4.3.46.0.1/ccxt/abstract/paymium.py +28 -0
  115. ccxt_ir-4.3.46.0.1/ccxt/abstract/phemex.py +115 -0
  116. ccxt_ir-4.3.46.0.1/ccxt/abstract/poloniex.py +69 -0
  117. ccxt_ir-4.3.46.0.1/ccxt/abstract/poloniexfutures.py +48 -0
  118. ccxt_ir-4.3.46.0.1/ccxt/abstract/probit.py +23 -0
  119. ccxt_ir-4.3.46.0.1/ccxt/abstract/ramzinex.py +7 -0
  120. ccxt_ir-4.3.46.0.1/ccxt/abstract/sarmayex.py +5 -0
  121. ccxt_ir-4.3.46.0.1/ccxt/abstract/sarrafex.py +7 -0
  122. ccxt_ir-4.3.46.0.1/ccxt/abstract/tabdeal.py +7 -0
  123. ccxt_ir-4.3.46.0.1/ccxt/abstract/tetherland.py +5 -0
  124. ccxt_ir-4.3.46.0.1/ccxt/abstract/timex.py +62 -0
  125. ccxt_ir-4.3.46.0.1/ccxt/abstract/tokocrypto.py +37 -0
  126. ccxt_ir-4.3.46.0.1/ccxt/abstract/tradeogre.py +16 -0
  127. ccxt_ir-4.3.46.0.1/ccxt/abstract/twox.py +5 -0
  128. ccxt_ir-4.3.46.0.1/ccxt/abstract/ubitex.py +7 -0
  129. ccxt_ir-4.3.46.0.1/ccxt/abstract/upbit.py +38 -0
  130. ccxt_ir-4.3.46.0.1/ccxt/abstract/wallex.py +8 -0
  131. ccxt_ir-4.3.46.0.1/ccxt/abstract/wavesexchange.py +154 -0
  132. ccxt_ir-4.3.46.0.1/ccxt/abstract/wazirx.py +30 -0
  133. ccxt_ir-4.3.46.0.1/ccxt/abstract/whitebit.py +98 -0
  134. ccxt_ir-4.3.46.0.1/ccxt/abstract/woo.py +83 -0
  135. ccxt_ir-4.3.46.0.1/ccxt/abstract/woofipro.py +119 -0
  136. ccxt_ir-4.3.46.0.1/ccxt/abstract/xt.py +152 -0
  137. ccxt_ir-4.3.46.0.1/ccxt/abstract/yobit.py +16 -0
  138. ccxt_ir-4.3.46.0.1/ccxt/abstract/zaif.py +38 -0
  139. ccxt_ir-4.3.46.0.1/ccxt/abstract/zonda.py +53 -0
  140. ccxt_ir-4.3.46.0.1/ccxt/ace.py +1012 -0
  141. ccxt_ir-4.3.46.0.1/ccxt/afratether.py +293 -0
  142. ccxt_ir-4.3.46.0.1/ccxt/alpaca.py +1083 -0
  143. ccxt_ir-4.3.46.0.1/ccxt/arzinja.py +285 -0
  144. ccxt_ir-4.3.46.0.1/ccxt/arzplus.py +412 -0
  145. ccxt_ir-4.3.46.0.1/ccxt/ascendex.py +3330 -0
  146. ccxt_ir-4.3.46.0.1/ccxt/async_support/__init__.py +337 -0
  147. ccxt_ir-4.3.46.0.1/ccxt/async_support/abantether.py +316 -0
  148. ccxt_ir-4.3.46.0.1/ccxt/async_support/ace.py +1012 -0
  149. ccxt_ir-4.3.46.0.1/ccxt/async_support/afratether.py +293 -0
  150. ccxt_ir-4.3.46.0.1/ccxt/async_support/alpaca.py +1083 -0
  151. ccxt_ir-4.3.46.0.1/ccxt/async_support/arzinja.py +285 -0
  152. ccxt_ir-4.3.46.0.1/ccxt/async_support/arzplus.py +412 -0
  153. ccxt_ir-4.3.46.0.1/ccxt/async_support/ascendex.py +3330 -0
  154. ccxt_ir-4.3.46.0.1/ccxt/async_support/base/__init__.py +1 -0
  155. ccxt_ir-4.3.46.0.1/ccxt/async_support/base/exchange.py +1966 -0
  156. ccxt_ir-4.3.46.0.1/ccxt/async_support/base/throttler.py +50 -0
  157. ccxt_ir-4.3.46.0.1/ccxt/async_support/base/ws/__init__.py +38 -0
  158. ccxt_ir-4.3.46.0.1/ccxt/async_support/base/ws/aiohttp_client.py +125 -0
  159. ccxt_ir-4.3.46.0.1/ccxt/async_support/base/ws/cache.py +212 -0
  160. ccxt_ir-4.3.46.0.1/ccxt/async_support/base/ws/client.py +193 -0
  161. ccxt_ir-4.3.46.0.1/ccxt/async_support/base/ws/fast_client.py +96 -0
  162. ccxt_ir-4.3.46.0.1/ccxt/async_support/base/ws/functions.py +59 -0
  163. ccxt_ir-4.3.46.0.1/ccxt/async_support/base/ws/future.py +58 -0
  164. ccxt_ir-4.3.46.0.1/ccxt/async_support/base/ws/order_book.py +78 -0
  165. ccxt_ir-4.3.46.0.1/ccxt/async_support/base/ws/order_book_side.py +174 -0
  166. ccxt_ir-4.3.46.0.1/ccxt/async_support/bequant.py +33 -0
  167. ccxt_ir-4.3.46.0.1/ccxt/async_support/bigone.py +2113 -0
  168. ccxt_ir-4.3.46.0.1/ccxt/async_support/binance.py +12234 -0
  169. ccxt_ir-4.3.46.0.1/ccxt/async_support/binancecoinm.py +45 -0
  170. ccxt_ir-4.3.46.0.1/ccxt/async_support/binanceus.py +211 -0
  171. ccxt_ir-4.3.46.0.1/ccxt/async_support/binanceusdm.py +58 -0
  172. ccxt_ir-4.3.46.0.1/ccxt/async_support/bingx.py +4325 -0
  173. ccxt_ir-4.3.46.0.1/ccxt/async_support/bit2c.py +866 -0
  174. ccxt_ir-4.3.46.0.1/ccxt/async_support/bitbank.py +1001 -0
  175. ccxt_ir-4.3.46.0.1/ccxt/async_support/bitbay.py +17 -0
  176. ccxt_ir-4.3.46.0.1/ccxt/async_support/bitbns.py +1154 -0
  177. ccxt_ir-4.3.46.0.1/ccxt/async_support/bitcoincom.py +17 -0
  178. ccxt_ir-4.3.46.0.1/ccxt/async_support/bitfinex.py +1617 -0
  179. ccxt_ir-4.3.46.0.1/ccxt/async_support/bitfinex2.py +3552 -0
  180. ccxt_ir-4.3.46.0.1/ccxt/async_support/bitflyer.py +995 -0
  181. ccxt_ir-4.3.46.0.1/ccxt/async_support/bitget.py +8273 -0
  182. ccxt_ir-4.3.46.0.1/ccxt/async_support/bithumb.py +1061 -0
  183. ccxt_ir-4.3.46.0.1/ccxt/async_support/bitimen.py +401 -0
  184. ccxt_ir-4.3.46.0.1/ccxt/async_support/bitir.py +490 -0
  185. ccxt_ir-4.3.46.0.1/ccxt/async_support/bitmart.py +4415 -0
  186. ccxt_ir-4.3.46.0.1/ccxt/async_support/bitmex.py +2756 -0
  187. ccxt_ir-4.3.46.0.1/ccxt/async_support/bitopro.py +1630 -0
  188. ccxt_ir-4.3.46.0.1/ccxt/async_support/bitpanda.py +16 -0
  189. ccxt_ir-4.3.46.0.1/ccxt/async_support/bitpin.py +454 -0
  190. ccxt_ir-4.3.46.0.1/ccxt/async_support/bitrue.py +3027 -0
  191. ccxt_ir-4.3.46.0.1/ccxt/async_support/bitso.py +1670 -0
  192. ccxt_ir-4.3.46.0.1/ccxt/async_support/bitstamp.py +2203 -0
  193. ccxt_ir-4.3.46.0.1/ccxt/async_support/bitteam.py +2239 -0
  194. ccxt_ir-4.3.46.0.1/ccxt/async_support/bitvavo.py +1968 -0
  195. ccxt_ir-4.3.46.0.1/ccxt/async_support/bl3p.py +485 -0
  196. ccxt_ir-4.3.46.0.1/ccxt/async_support/blockchaincom.py +1104 -0
  197. ccxt_ir-4.3.46.0.1/ccxt/async_support/blofin.py +2066 -0
  198. ccxt_ir-4.3.46.0.1/ccxt/async_support/btcalpha.py +891 -0
  199. ccxt_ir-4.3.46.0.1/ccxt/async_support/btcbox.py +544 -0
  200. ccxt_ir-4.3.46.0.1/ccxt/async_support/btcmarkets.py +1221 -0
  201. ccxt_ir-4.3.46.0.1/ccxt/async_support/btcturk.py +911 -0
  202. ccxt_ir-4.3.46.0.1/ccxt/async_support/bybit.py +8159 -0
  203. ccxt_ir-4.3.46.0.1/ccxt/async_support/cex.py +1605 -0
  204. ccxt_ir-4.3.46.0.1/ccxt/async_support/coinbase.py +4475 -0
  205. ccxt_ir-4.3.46.0.1/ccxt/async_support/coinbaseadvanced.py +17 -0
  206. ccxt_ir-4.3.46.0.1/ccxt/async_support/coinbaseexchange.py +1734 -0
  207. ccxt_ir-4.3.46.0.1/ccxt/async_support/coinbaseinternational.py +1899 -0
  208. ccxt_ir-4.3.46.0.1/ccxt/async_support/coincheck.py +815 -0
  209. ccxt_ir-4.3.46.0.1/ccxt/async_support/coinex.py +5526 -0
  210. ccxt_ir-4.3.46.0.1/ccxt/async_support/coinlist.py +2243 -0
  211. ccxt_ir-4.3.46.0.1/ccxt/async_support/coinmate.py +1067 -0
  212. ccxt_ir-4.3.46.0.1/ccxt/async_support/coinmetro.py +1797 -0
  213. ccxt_ir-4.3.46.0.1/ccxt/async_support/coinone.py +1127 -0
  214. ccxt_ir-4.3.46.0.1/ccxt/async_support/coinsph.py +1850 -0
  215. ccxt_ir-4.3.46.0.1/ccxt/async_support/coinspot.py +534 -0
  216. ccxt_ir-4.3.46.0.1/ccxt/async_support/cryptocom.py +2822 -0
  217. ccxt_ir-4.3.46.0.1/ccxt/async_support/currencycom.py +1950 -0
  218. ccxt_ir-4.3.46.0.1/ccxt/async_support/delta.py +3376 -0
  219. ccxt_ir-4.3.46.0.1/ccxt/async_support/deribit.py +3437 -0
  220. ccxt_ir-4.3.46.0.1/ccxt/async_support/digifinex.py +3960 -0
  221. ccxt_ir-4.3.46.0.1/ccxt/async_support/eterex.py +286 -0
  222. ccxt_ir-4.3.46.0.1/ccxt/async_support/excoino.py +399 -0
  223. ccxt_ir-4.3.46.0.1/ccxt/async_support/exir.py +375 -0
  224. ccxt_ir-4.3.46.0.1/ccxt/async_support/exmo.py +2462 -0
  225. ccxt_ir-4.3.46.0.1/ccxt/async_support/exnovin.py +360 -0
  226. ccxt_ir-4.3.46.0.1/ccxt/async_support/farhadexchange.py +266 -0
  227. ccxt_ir-4.3.46.0.1/ccxt/async_support/fmfwio.py +34 -0
  228. ccxt_ir-4.3.46.0.1/ccxt/async_support/gate.py +6976 -0
  229. ccxt_ir-4.3.46.0.1/ccxt/async_support/gateio.py +16 -0
  230. ccxt_ir-4.3.46.0.1/ccxt/async_support/gemini.py +1825 -0
  231. ccxt_ir-4.3.46.0.1/ccxt/async_support/hitbtc.py +3423 -0
  232. ccxt_ir-4.3.46.0.1/ccxt/async_support/hitbtc3.py +16 -0
  233. ccxt_ir-4.3.46.0.1/ccxt/async_support/hitobit.py +391 -0
  234. ccxt_ir-4.3.46.0.1/ccxt/async_support/hollaex.py +1813 -0
  235. ccxt_ir-4.3.46.0.1/ccxt/async_support/htx.py +8506 -0
  236. ccxt_ir-4.3.46.0.1/ccxt/async_support/huobi.py +16 -0
  237. ccxt_ir-4.3.46.0.1/ccxt/async_support/huobijp.py +1801 -0
  238. ccxt_ir-4.3.46.0.1/ccxt/async_support/hyperliquid.py +2431 -0
  239. ccxt_ir-4.3.46.0.1/ccxt/async_support/idex.py +1766 -0
  240. ccxt_ir-4.3.46.0.1/ccxt/async_support/independentreserve.py +784 -0
  241. ccxt_ir-4.3.46.0.1/ccxt/async_support/indodax.py +1247 -0
  242. ccxt_ir-4.3.46.0.1/ccxt/async_support/jibitex.py +395 -0
  243. ccxt_ir-4.3.46.0.1/ccxt/async_support/kraken.py +2894 -0
  244. ccxt_ir-4.3.46.0.1/ccxt/async_support/krakenfutures.py +2601 -0
  245. ccxt_ir-4.3.46.0.1/ccxt/async_support/kucoin.py +4602 -0
  246. ccxt_ir-4.3.46.0.1/ccxt/async_support/kucoinfutures.py +2698 -0
  247. ccxt_ir-4.3.46.0.1/ccxt/async_support/kuna.py +1841 -0
  248. ccxt_ir-4.3.46.0.1/ccxt/async_support/latoken.py +1664 -0
  249. ccxt_ir-4.3.46.0.1/ccxt/async_support/lbank.py +2683 -0
  250. ccxt_ir-4.3.46.0.1/ccxt/async_support/luno.py +1067 -0
  251. ccxt_ir-4.3.46.0.1/ccxt/async_support/lykke.py +1270 -0
  252. ccxt_ir-4.3.46.0.1/ccxt/async_support/mercado.py +842 -0
  253. ccxt_ir-4.3.46.0.1/ccxt/async_support/mexc.py +5369 -0
  254. ccxt_ir-4.3.46.0.1/ccxt/async_support/ndax.py +2354 -0
  255. ccxt_ir-4.3.46.0.1/ccxt/async_support/nobitex.py +419 -0
  256. ccxt_ir-4.3.46.0.1/ccxt/async_support/novadax.py +1484 -0
  257. ccxt_ir-4.3.46.0.1/ccxt/async_support/oceanex.py +903 -0
  258. ccxt_ir-4.3.46.0.1/ccxt/async_support/okcoin.py +2936 -0
  259. ccxt_ir-4.3.46.0.1/ccxt/async_support/okexchange.py +349 -0
  260. ccxt_ir-4.3.46.0.1/ccxt/async_support/okx.py +7827 -0
  261. ccxt_ir-4.3.46.0.1/ccxt/async_support/ompfinex.py +472 -0
  262. ccxt_ir-4.3.46.0.1/ccxt/async_support/onetrading.py +1911 -0
  263. ccxt_ir-4.3.46.0.1/ccxt/async_support/oxfun.py +2773 -0
  264. ccxt_ir-4.3.46.0.1/ccxt/async_support/p2b.py +1194 -0
  265. ccxt_ir-4.3.46.0.1/ccxt/async_support/paymium.py +564 -0
  266. ccxt_ir-4.3.46.0.1/ccxt/async_support/phemex.py +4473 -0
  267. ccxt_ir-4.3.46.0.1/ccxt/async_support/poloniex.py +2232 -0
  268. ccxt_ir-4.3.46.0.1/ccxt/async_support/poloniexfutures.py +1717 -0
  269. ccxt_ir-4.3.46.0.1/ccxt/async_support/probit.py +1734 -0
  270. ccxt_ir-4.3.46.0.1/ccxt/async_support/ramzinex.py +476 -0
  271. ccxt_ir-4.3.46.0.1/ccxt/async_support/sarmayex.py +357 -0
  272. ccxt_ir-4.3.46.0.1/ccxt/async_support/sarrafex.py +478 -0
  273. ccxt_ir-4.3.46.0.1/ccxt/async_support/tabdeal.py +364 -0
  274. ccxt_ir-4.3.46.0.1/ccxt/async_support/tetherland.py +349 -0
  275. ccxt_ir-4.3.46.0.1/ccxt/async_support/timex.py +1593 -0
  276. ccxt_ir-4.3.46.0.1/ccxt/async_support/tokocrypto.py +2405 -0
  277. ccxt_ir-4.3.46.0.1/ccxt/async_support/tradeogre.py +608 -0
  278. ccxt_ir-4.3.46.0.1/ccxt/async_support/twox.py +326 -0
  279. ccxt_ir-4.3.46.0.1/ccxt/async_support/ubitex.py +409 -0
  280. ccxt_ir-4.3.46.0.1/ccxt/async_support/upbit.py +1833 -0
  281. ccxt_ir-4.3.46.0.1/ccxt/async_support/wallex.py +445 -0
  282. ccxt_ir-4.3.46.0.1/ccxt/async_support/wavesexchange.py +2473 -0
  283. ccxt_ir-4.3.46.0.1/ccxt/async_support/wazirx.py +1224 -0
  284. ccxt_ir-4.3.46.0.1/ccxt/async_support/whitebit.py +2469 -0
  285. ccxt_ir-4.3.46.0.1/ccxt/async_support/woo.py +3114 -0
  286. ccxt_ir-4.3.46.0.1/ccxt/async_support/woofipro.py +2533 -0
  287. ccxt_ir-4.3.46.0.1/ccxt/async_support/xt.py +4454 -0
  288. ccxt_ir-4.3.46.0.1/ccxt/async_support/yobit.py +1283 -0
  289. ccxt_ir-4.3.46.0.1/ccxt/async_support/zaif.py +725 -0
  290. ccxt_ir-4.3.46.0.1/ccxt/async_support/zonda.py +1828 -0
  291. ccxt_ir-4.3.46.0.1/ccxt/base/__init__.py +27 -0
  292. ccxt_ir-4.3.46.0.1/ccxt/base/decimal_to_precision.py +174 -0
  293. ccxt_ir-4.3.46.0.1/ccxt/base/errors.py +242 -0
  294. ccxt_ir-4.3.46.0.1/ccxt/base/exchange.py +5941 -0
  295. ccxt_ir-4.3.46.0.1/ccxt/base/precise.py +287 -0
  296. ccxt_ir-4.3.46.0.1/ccxt/base/types.py +502 -0
  297. ccxt_ir-4.3.46.0.1/ccxt/bequant.py +33 -0
  298. ccxt_ir-4.3.46.0.1/ccxt/bigone.py +2112 -0
  299. ccxt_ir-4.3.46.0.1/ccxt/binance.py +12233 -0
  300. ccxt_ir-4.3.46.0.1/ccxt/binancecoinm.py +45 -0
  301. ccxt_ir-4.3.46.0.1/ccxt/binanceus.py +211 -0
  302. ccxt_ir-4.3.46.0.1/ccxt/binanceusdm.py +58 -0
  303. ccxt_ir-4.3.46.0.1/ccxt/bingx.py +4324 -0
  304. ccxt_ir-4.3.46.0.1/ccxt/bit2c.py +866 -0
  305. ccxt_ir-4.3.46.0.1/ccxt/bitbank.py +1001 -0
  306. ccxt_ir-4.3.46.0.1/ccxt/bitbay.py +17 -0
  307. ccxt_ir-4.3.46.0.1/ccxt/bitbns.py +1154 -0
  308. ccxt_ir-4.3.46.0.1/ccxt/bitcoincom.py +17 -0
  309. ccxt_ir-4.3.46.0.1/ccxt/bitfinex.py +1617 -0
  310. ccxt_ir-4.3.46.0.1/ccxt/bitfinex2.py +3552 -0
  311. ccxt_ir-4.3.46.0.1/ccxt/bitflyer.py +995 -0
  312. ccxt_ir-4.3.46.0.1/ccxt/bitget.py +8272 -0
  313. ccxt_ir-4.3.46.0.1/ccxt/bithumb.py +1061 -0
  314. ccxt_ir-4.3.46.0.1/ccxt/bitimen.py +401 -0
  315. ccxt_ir-4.3.46.0.1/ccxt/bitir.py +490 -0
  316. ccxt_ir-4.3.46.0.1/ccxt/bitmart.py +4415 -0
  317. ccxt_ir-4.3.46.0.1/ccxt/bitmex.py +2756 -0
  318. ccxt_ir-4.3.46.0.1/ccxt/bitopro.py +1630 -0
  319. ccxt_ir-4.3.46.0.1/ccxt/bitpanda.py +16 -0
  320. ccxt_ir-4.3.46.0.1/ccxt/bitpin.py +454 -0
  321. ccxt_ir-4.3.46.0.1/ccxt/bitrue.py +3026 -0
  322. ccxt_ir-4.3.46.0.1/ccxt/bitso.py +1670 -0
  323. ccxt_ir-4.3.46.0.1/ccxt/bitstamp.py +2203 -0
  324. ccxt_ir-4.3.46.0.1/ccxt/bitteam.py +2239 -0
  325. ccxt_ir-4.3.46.0.1/ccxt/bitvavo.py +1968 -0
  326. ccxt_ir-4.3.46.0.1/ccxt/bl3p.py +485 -0
  327. ccxt_ir-4.3.46.0.1/ccxt/blockchaincom.py +1104 -0
  328. ccxt_ir-4.3.46.0.1/ccxt/blofin.py +2066 -0
  329. ccxt_ir-4.3.46.0.1/ccxt/btcalpha.py +891 -0
  330. ccxt_ir-4.3.46.0.1/ccxt/btcbox.py +544 -0
  331. ccxt_ir-4.3.46.0.1/ccxt/btcmarkets.py +1221 -0
  332. ccxt_ir-4.3.46.0.1/ccxt/btcturk.py +911 -0
  333. ccxt_ir-4.3.46.0.1/ccxt/bybit.py +8158 -0
  334. ccxt_ir-4.3.46.0.1/ccxt/cex.py +1605 -0
  335. ccxt_ir-4.3.46.0.1/ccxt/coinbase.py +4474 -0
  336. ccxt_ir-4.3.46.0.1/ccxt/coinbaseadvanced.py +17 -0
  337. ccxt_ir-4.3.46.0.1/ccxt/coinbaseexchange.py +1734 -0
  338. ccxt_ir-4.3.46.0.1/ccxt/coinbaseinternational.py +1899 -0
  339. ccxt_ir-4.3.46.0.1/ccxt/coincheck.py +815 -0
  340. ccxt_ir-4.3.46.0.1/ccxt/coinex.py +5525 -0
  341. ccxt_ir-4.3.46.0.1/ccxt/coinlist.py +2243 -0
  342. ccxt_ir-4.3.46.0.1/ccxt/coinmate.py +1067 -0
  343. ccxt_ir-4.3.46.0.1/ccxt/coinmetro.py +1797 -0
  344. ccxt_ir-4.3.46.0.1/ccxt/coinone.py +1127 -0
  345. ccxt_ir-4.3.46.0.1/ccxt/coinsph.py +1850 -0
  346. ccxt_ir-4.3.46.0.1/ccxt/coinspot.py +534 -0
  347. ccxt_ir-4.3.46.0.1/ccxt/cryptocom.py +2822 -0
  348. ccxt_ir-4.3.46.0.1/ccxt/currencycom.py +1950 -0
  349. ccxt_ir-4.3.46.0.1/ccxt/delta.py +3376 -0
  350. ccxt_ir-4.3.46.0.1/ccxt/deribit.py +3437 -0
  351. ccxt_ir-4.3.46.0.1/ccxt/digifinex.py +3959 -0
  352. ccxt_ir-4.3.46.0.1/ccxt/eterex.py +286 -0
  353. ccxt_ir-4.3.46.0.1/ccxt/excoino.py +399 -0
  354. ccxt_ir-4.3.46.0.1/ccxt/exir.py +375 -0
  355. ccxt_ir-4.3.46.0.1/ccxt/exmo.py +2462 -0
  356. ccxt_ir-4.3.46.0.1/ccxt/exnovin.py +360 -0
  357. ccxt_ir-4.3.46.0.1/ccxt/farhadexchange.py +266 -0
  358. ccxt_ir-4.3.46.0.1/ccxt/fmfwio.py +34 -0
  359. ccxt_ir-4.3.46.0.1/ccxt/gate.py +6975 -0
  360. ccxt_ir-4.3.46.0.1/ccxt/gateio.py +16 -0
  361. ccxt_ir-4.3.46.0.1/ccxt/gemini.py +1824 -0
  362. ccxt_ir-4.3.46.0.1/ccxt/hitbtc.py +3423 -0
  363. ccxt_ir-4.3.46.0.1/ccxt/hitbtc3.py +16 -0
  364. ccxt_ir-4.3.46.0.1/ccxt/hitobit.py +391 -0
  365. ccxt_ir-4.3.46.0.1/ccxt/hollaex.py +1813 -0
  366. ccxt_ir-4.3.46.0.1/ccxt/htx.py +8505 -0
  367. ccxt_ir-4.3.46.0.1/ccxt/huobi.py +16 -0
  368. ccxt_ir-4.3.46.0.1/ccxt/huobijp.py +1801 -0
  369. ccxt_ir-4.3.46.0.1/ccxt/hyperliquid.py +2430 -0
  370. ccxt_ir-4.3.46.0.1/ccxt/idex.py +1766 -0
  371. ccxt_ir-4.3.46.0.1/ccxt/independentreserve.py +784 -0
  372. ccxt_ir-4.3.46.0.1/ccxt/indodax.py +1247 -0
  373. ccxt_ir-4.3.46.0.1/ccxt/jibitex.py +395 -0
  374. ccxt_ir-4.3.46.0.1/ccxt/kraken.py +2894 -0
  375. ccxt_ir-4.3.46.0.1/ccxt/krakenfutures.py +2601 -0
  376. ccxt_ir-4.3.46.0.1/ccxt/kucoin.py +4601 -0
  377. ccxt_ir-4.3.46.0.1/ccxt/kucoinfutures.py +2698 -0
  378. ccxt_ir-4.3.46.0.1/ccxt/kuna.py +1841 -0
  379. ccxt_ir-4.3.46.0.1/ccxt/latoken.py +1664 -0
  380. ccxt_ir-4.3.46.0.1/ccxt/lbank.py +2682 -0
  381. ccxt_ir-4.3.46.0.1/ccxt/luno.py +1067 -0
  382. ccxt_ir-4.3.46.0.1/ccxt/lykke.py +1270 -0
  383. ccxt_ir-4.3.46.0.1/ccxt/mercado.py +842 -0
  384. ccxt_ir-4.3.46.0.1/ccxt/mexc.py +5369 -0
  385. ccxt_ir-4.3.46.0.1/ccxt/ndax.py +2354 -0
  386. ccxt_ir-4.3.46.0.1/ccxt/nobitex.py +419 -0
  387. ccxt_ir-4.3.46.0.1/ccxt/novadax.py +1484 -0
  388. ccxt_ir-4.3.46.0.1/ccxt/oceanex.py +903 -0
  389. ccxt_ir-4.3.46.0.1/ccxt/okcoin.py +2936 -0
  390. ccxt_ir-4.3.46.0.1/ccxt/okexchange.py +349 -0
  391. ccxt_ir-4.3.46.0.1/ccxt/okx.py +7826 -0
  392. ccxt_ir-4.3.46.0.1/ccxt/ompfinex.py +472 -0
  393. ccxt_ir-4.3.46.0.1/ccxt/onetrading.py +1911 -0
  394. ccxt_ir-4.3.46.0.1/ccxt/oxfun.py +2772 -0
  395. ccxt_ir-4.3.46.0.1/ccxt/p2b.py +1194 -0
  396. ccxt_ir-4.3.46.0.1/ccxt/paymium.py +564 -0
  397. ccxt_ir-4.3.46.0.1/ccxt/phemex.py +4473 -0
  398. ccxt_ir-4.3.46.0.1/ccxt/poloniex.py +2232 -0
  399. ccxt_ir-4.3.46.0.1/ccxt/poloniexfutures.py +1717 -0
  400. ccxt_ir-4.3.46.0.1/ccxt/pro/__init__.py +149 -0
  401. ccxt_ir-4.3.46.0.1/ccxt/pro/alpaca.py +685 -0
  402. ccxt_ir-4.3.46.0.1/ccxt/pro/ascendex.py +916 -0
  403. ccxt_ir-4.3.46.0.1/ccxt/pro/bequant.py +38 -0
  404. ccxt_ir-4.3.46.0.1/ccxt/pro/binance.py +3488 -0
  405. ccxt_ir-4.3.46.0.1/ccxt/pro/binancecoinm.py +28 -0
  406. ccxt_ir-4.3.46.0.1/ccxt/pro/binanceus.py +48 -0
  407. ccxt_ir-4.3.46.0.1/ccxt/pro/binanceusdm.py +31 -0
  408. ccxt_ir-4.3.46.0.1/ccxt/pro/bingx.py +1264 -0
  409. ccxt_ir-4.3.46.0.1/ccxt/pro/bitcoincom.py +34 -0
  410. ccxt_ir-4.3.46.0.1/ccxt/pro/bitfinex.py +621 -0
  411. ccxt_ir-4.3.46.0.1/ccxt/pro/bitfinex2.py +1083 -0
  412. ccxt_ir-4.3.46.0.1/ccxt/pro/bitget.py +1692 -0
  413. ccxt_ir-4.3.46.0.1/ccxt/pro/bithumb.py +368 -0
  414. ccxt_ir-4.3.46.0.1/ccxt/pro/bitmart.py +1449 -0
  415. ccxt_ir-4.3.46.0.1/ccxt/pro/bitmex.py +1656 -0
  416. ccxt_ir-4.3.46.0.1/ccxt/pro/bitopro.py +445 -0
  417. ccxt_ir-4.3.46.0.1/ccxt/pro/bitpanda.py +15 -0
  418. ccxt_ir-4.3.46.0.1/ccxt/pro/bitrue.py +447 -0
  419. ccxt_ir-4.3.46.0.1/ccxt/pro/bitstamp.py +522 -0
  420. ccxt_ir-4.3.46.0.1/ccxt/pro/bitvavo.py +1270 -0
  421. ccxt_ir-4.3.46.0.1/ccxt/pro/blockchaincom.py +738 -0
  422. ccxt_ir-4.3.46.0.1/ccxt/pro/bybit.py +2000 -0
  423. ccxt_ir-4.3.46.0.1/ccxt/pro/cex.py +1440 -0
  424. ccxt_ir-4.3.46.0.1/ccxt/pro/coinbase.py +678 -0
  425. ccxt_ir-4.3.46.0.1/ccxt/pro/coinbaseexchange.py +895 -0
  426. ccxt_ir-4.3.46.0.1/ccxt/pro/coinbaseinternational.py +620 -0
  427. ccxt_ir-4.3.46.0.1/ccxt/pro/coincheck.py +199 -0
  428. ccxt_ir-4.3.46.0.1/ccxt/pro/coinex.py +1061 -0
  429. ccxt_ir-4.3.46.0.1/ccxt/pro/coinone.py +395 -0
  430. ccxt_ir-4.3.46.0.1/ccxt/pro/cryptocom.py +947 -0
  431. ccxt_ir-4.3.46.0.1/ccxt/pro/currencycom.py +536 -0
  432. ccxt_ir-4.3.46.0.1/ccxt/pro/deribit.py +892 -0
  433. ccxt_ir-4.3.46.0.1/ccxt/pro/exmo.py +629 -0
  434. ccxt_ir-4.3.46.0.1/ccxt/pro/gate.py +1416 -0
  435. ccxt_ir-4.3.46.0.1/ccxt/pro/gateio.py +15 -0
  436. ccxt_ir-4.3.46.0.1/ccxt/pro/gemini.py +865 -0
  437. ccxt_ir-4.3.46.0.1/ccxt/pro/hitbtc.py +1216 -0
  438. ccxt_ir-4.3.46.0.1/ccxt/pro/hollaex.py +563 -0
  439. ccxt_ir-4.3.46.0.1/ccxt/pro/htx.py +2215 -0
  440. ccxt_ir-4.3.46.0.1/ccxt/pro/huobi.py +15 -0
  441. ccxt_ir-4.3.46.0.1/ccxt/pro/huobijp.py +570 -0
  442. ccxt_ir-4.3.46.0.1/ccxt/pro/hyperliquid.py +525 -0
  443. ccxt_ir-4.3.46.0.1/ccxt/pro/idex.py +672 -0
  444. ccxt_ir-4.3.46.0.1/ccxt/pro/independentreserve.py +270 -0
  445. ccxt_ir-4.3.46.0.1/ccxt/pro/kraken.py +1356 -0
  446. ccxt_ir-4.3.46.0.1/ccxt/pro/krakenfutures.py +1492 -0
  447. ccxt_ir-4.3.46.0.1/ccxt/pro/kucoin.py +1133 -0
  448. ccxt_ir-4.3.46.0.1/ccxt/pro/kucoinfutures.py +1081 -0
  449. ccxt_ir-4.3.46.0.1/ccxt/pro/lbank.py +843 -0
  450. ccxt_ir-4.3.46.0.1/ccxt/pro/luno.py +303 -0
  451. ccxt_ir-4.3.46.0.1/ccxt/pro/mexc.py +1122 -0
  452. ccxt_ir-4.3.46.0.1/ccxt/pro/ndax.py +506 -0
  453. ccxt_ir-4.3.46.0.1/ccxt/pro/okcoin.py +698 -0
  454. ccxt_ir-4.3.46.0.1/ccxt/pro/okx.py +1851 -0
  455. ccxt_ir-4.3.46.0.1/ccxt/pro/onetrading.py +1275 -0
  456. ccxt_ir-4.3.46.0.1/ccxt/pro/oxfun.py +950 -0
  457. ccxt_ir-4.3.46.0.1/ccxt/pro/p2b.py +419 -0
  458. ccxt_ir-4.3.46.0.1/ccxt/pro/phemex.py +1441 -0
  459. ccxt_ir-4.3.46.0.1/ccxt/pro/poloniex.py +1166 -0
  460. ccxt_ir-4.3.46.0.1/ccxt/pro/poloniexfutures.py +990 -0
  461. ccxt_ir-4.3.46.0.1/ccxt/pro/probit.py +551 -0
  462. ccxt_ir-4.3.46.0.1/ccxt/pro/upbit.py +520 -0
  463. ccxt_ir-4.3.46.0.1/ccxt/pro/wazirx.py +749 -0
  464. ccxt_ir-4.3.46.0.1/ccxt/pro/whitebit.py +864 -0
  465. ccxt_ir-4.3.46.0.1/ccxt/pro/woo.py +1078 -0
  466. ccxt_ir-4.3.46.0.1/ccxt/pro/woofipro.py +1183 -0
  467. ccxt_ir-4.3.46.0.1/ccxt/probit.py +1734 -0
  468. ccxt_ir-4.3.46.0.1/ccxt/ramzinex.py +476 -0
  469. ccxt_ir-4.3.46.0.1/ccxt/sarmayex.py +357 -0
  470. ccxt_ir-4.3.46.0.1/ccxt/sarrafex.py +478 -0
  471. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/__init__.py +1 -0
  472. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ecdsa/__init__.py +14 -0
  473. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ecdsa/_version.py +520 -0
  474. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ecdsa/curves.py +56 -0
  475. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ecdsa/der.py +221 -0
  476. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ecdsa/ecdsa.py +310 -0
  477. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ecdsa/ellipticcurve.py +197 -0
  478. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ecdsa/keys.py +332 -0
  479. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ecdsa/numbertheory.py +531 -0
  480. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ecdsa/rfc6979.py +100 -0
  481. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ecdsa/util.py +266 -0
  482. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/__init__.py +7 -0
  483. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/abi/__init__.py +16 -0
  484. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/abi/abi.py +19 -0
  485. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/abi/base.py +152 -0
  486. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/abi/codec.py +217 -0
  487. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/abi/constants.py +3 -0
  488. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/abi/decoding.py +565 -0
  489. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/abi/encoding.py +720 -0
  490. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/abi/exceptions.py +139 -0
  491. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/abi/grammar.py +443 -0
  492. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/abi/packed.py +13 -0
  493. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/abi/py.typed +0 -0
  494. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/abi/registry.py +643 -0
  495. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/abi/tools/__init__.py +3 -0
  496. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/abi/tools/_strategies.py +230 -0
  497. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/abi/utils/__init__.py +0 -0
  498. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/abi/utils/numeric.py +83 -0
  499. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/abi/utils/padding.py +27 -0
  500. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/abi/utils/string.py +19 -0
  501. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/account/__init__.py +3 -0
  502. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/account/encode_typed_data/__init__.py +4 -0
  503. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/account/encode_typed_data/encoding_and_hashing.py +239 -0
  504. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/account/encode_typed_data/helpers.py +40 -0
  505. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/account/messages.py +263 -0
  506. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/account/py.typed +0 -0
  507. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/hexbytes/__init__.py +5 -0
  508. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/hexbytes/_utils.py +54 -0
  509. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/hexbytes/main.py +65 -0
  510. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/hexbytes/py.typed +0 -0
  511. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/typing/__init__.py +63 -0
  512. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/typing/abi.py +6 -0
  513. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/typing/bls.py +7 -0
  514. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/typing/discovery.py +5 -0
  515. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/typing/encoding.py +7 -0
  516. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/typing/enums.py +17 -0
  517. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/typing/ethpm.py +9 -0
  518. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/typing/evm.py +20 -0
  519. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/typing/networks.py +1122 -0
  520. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/typing/py.typed +0 -0
  521. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/utils/__init__.py +115 -0
  522. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/utils/abi.py +72 -0
  523. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/utils/address.py +171 -0
  524. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/utils/applicators.py +151 -0
  525. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/utils/conversions.py +190 -0
  526. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/utils/currency.py +107 -0
  527. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/utils/curried/__init__.py +269 -0
  528. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/utils/debug.py +20 -0
  529. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/utils/decorators.py +132 -0
  530. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/utils/encoding.py +6 -0
  531. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/utils/exceptions.py +4 -0
  532. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/utils/functional.py +75 -0
  533. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/utils/hexadecimal.py +74 -0
  534. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/utils/humanize.py +188 -0
  535. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/utils/logging.py +159 -0
  536. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/utils/module_loading.py +31 -0
  537. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/utils/numeric.py +43 -0
  538. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/utils/py.typed +0 -0
  539. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/utils/toolz.py +76 -0
  540. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/utils/types.py +54 -0
  541. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/utils/typing/__init__.py +18 -0
  542. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/utils/typing/misc.py +14 -0
  543. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/ethereum/utils/units.py +31 -0
  544. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/keccak/__init__.py +3 -0
  545. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/keccak/keccak.py +197 -0
  546. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/msgpack/__init__.py +55 -0
  547. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/msgpack/exceptions.py +48 -0
  548. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/msgpack/ext.py +168 -0
  549. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/msgpack/fallback.py +951 -0
  550. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/parsimonious/__init__.py +10 -0
  551. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/parsimonious/exceptions.py +105 -0
  552. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/parsimonious/expressions.py +479 -0
  553. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/parsimonious/grammar.py +487 -0
  554. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/parsimonious/nodes.py +325 -0
  555. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/parsimonious/utils.py +40 -0
  556. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/toolz/__init__.py +26 -0
  557. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/toolz/_signatures.py +784 -0
  558. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/toolz/_version.py +520 -0
  559. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/toolz/compatibility.py +30 -0
  560. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/toolz/curried/__init__.py +101 -0
  561. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/toolz/curried/exceptions.py +22 -0
  562. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/toolz/curried/operator.py +22 -0
  563. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/toolz/dicttoolz.py +339 -0
  564. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/toolz/functoolz.py +1049 -0
  565. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/toolz/itertoolz.py +1057 -0
  566. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/toolz/recipes.py +46 -0
  567. ccxt_ir-4.3.46.0.1/ccxt/static_dependencies/toolz/utils.py +9 -0
  568. ccxt_ir-4.3.46.0.1/ccxt/tabdeal.py +364 -0
  569. ccxt_ir-4.3.46.0.1/ccxt/test/__init__.py +3 -0
  570. ccxt_ir-4.3.46.0.1/ccxt/test/base/__init__.py +29 -0
  571. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_account.py +26 -0
  572. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_balance.py +56 -0
  573. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_borrow_interest.py +35 -0
  574. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_borrow_rate.py +32 -0
  575. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_calculate_fee.py +51 -0
  576. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_crypto.py +127 -0
  577. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_currency.py +76 -0
  578. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_datetime.py +109 -0
  579. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_decimal_to_precision.py +392 -0
  580. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_deep_extend.py +68 -0
  581. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_deposit_withdrawal.py +50 -0
  582. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_exchange_datetime_functions.py +76 -0
  583. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_funding_rate_history.py +29 -0
  584. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_last_price.py +31 -0
  585. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_ledger_entry.py +45 -0
  586. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_ledger_item.py +48 -0
  587. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_leverage_tier.py +33 -0
  588. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_liquidation.py +50 -0
  589. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_margin_mode.py +24 -0
  590. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_margin_modification.py +35 -0
  591. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_market.py +193 -0
  592. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_number.py +411 -0
  593. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_ohlcv.py +33 -0
  594. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_open_interest.py +32 -0
  595. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_order.py +64 -0
  596. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_order_book.py +69 -0
  597. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_position.py +60 -0
  598. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_shared_methods.py +353 -0
  599. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_status.py +24 -0
  600. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_throttle.py +126 -0
  601. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_ticker.py +92 -0
  602. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_trade.py +47 -0
  603. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_trading_fee.py +26 -0
  604. ccxt_ir-4.3.46.0.1/ccxt/test/base/test_transaction.py +39 -0
  605. ccxt_ir-4.3.46.0.1/ccxt/test/test_async.py +1649 -0
  606. ccxt_ir-4.3.46.0.1/ccxt/test/test_sync.py +1648 -0
  607. ccxt_ir-4.3.46.0.1/ccxt/tetherland.py +349 -0
  608. ccxt_ir-4.3.46.0.1/ccxt/timex.py +1593 -0
  609. ccxt_ir-4.3.46.0.1/ccxt/tokocrypto.py +2405 -0
  610. ccxt_ir-4.3.46.0.1/ccxt/tradeogre.py +608 -0
  611. ccxt_ir-4.3.46.0.1/ccxt/twox.py +326 -0
  612. ccxt_ir-4.3.46.0.1/ccxt/ubitex.py +409 -0
  613. ccxt_ir-4.3.46.0.1/ccxt/upbit.py +1833 -0
  614. ccxt_ir-4.3.46.0.1/ccxt/wallex.py +445 -0
  615. ccxt_ir-4.3.46.0.1/ccxt/wavesexchange.py +2472 -0
  616. ccxt_ir-4.3.46.0.1/ccxt/wazirx.py +1224 -0
  617. ccxt_ir-4.3.46.0.1/ccxt/whitebit.py +2469 -0
  618. ccxt_ir-4.3.46.0.1/ccxt/woo.py +3114 -0
  619. ccxt_ir-4.3.46.0.1/ccxt/woofipro.py +2533 -0
  620. ccxt_ir-4.3.46.0.1/ccxt/xt.py +4453 -0
  621. ccxt_ir-4.3.46.0.1/ccxt/yobit.py +1283 -0
  622. ccxt_ir-4.3.46.0.1/ccxt/zaif.py +725 -0
  623. ccxt_ir-4.3.46.0.1/ccxt/zonda.py +1828 -0
  624. ccxt_ir-4.3.46.0.1/ccxt_ir.egg-info/PKG-INFO +655 -0
  625. ccxt_ir-4.3.46.0.1/ccxt_ir.egg-info/SOURCES.txt +630 -0
  626. ccxt_ir-4.3.46.0.1/ccxt_ir.egg-info/dependency_links.txt +1 -0
  627. ccxt_ir-4.3.46.0.1/ccxt_ir.egg-info/requires.txt +17 -0
  628. ccxt_ir-4.3.46.0.1/ccxt_ir.egg-info/top_level.txt +1 -0
  629. ccxt_ir-4.3.46.0.1/package.json +278 -0
  630. ccxt_ir-4.3.46.0.1/setup.cfg +21 -0
  631. ccxt_ir-4.3.46.0.1/setup.py +104 -0
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright © 2024 Igor Kroitor
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,5 @@
1
+ # Include the license file
2
+ include LICENSE.txt
3
+
4
+ # Include the package.json file
5
+ include package.json