bitmart 0.0.93__tar.gz → 0.0.106__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 (468) hide show
  1. {bitmart-0.0.93 → bitmart-0.0.106}/.gitignore +0 -1
  2. {bitmart-0.0.93 → bitmart-0.0.106}/PKG-INFO +3 -3
  3. {bitmart-0.0.93 → bitmart-0.0.106}/README.md +2 -2
  4. {bitmart-0.0.93 → bitmart-0.0.106}/pyproject.toml +1 -1
  5. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/__init__.py +1 -1
  6. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/async_support/__init__.py +1 -1
  7. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/async_support/base/exchange.py +137 -9
  8. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/async_support/base/throttler.py +1 -1
  9. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/async_support/base/ws/client.py +19 -1
  10. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/async_support/bitmart.py +19 -12
  11. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/base/exchange.py +377 -42
  12. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/base/types.py +4 -2
  13. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/bitmart.py +19 -12
  14. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/pro/__init__.py +1 -1
  15. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/pro/bitmart.py +2 -2
  16. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/__init__.py +6 -0
  17. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/addr/P2PKH_addr.py +205 -0
  18. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/addr/__init__.py +5 -0
  19. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/addr/addr_dec_utils.py +125 -0
  20. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/addr/addr_key_validator.py +162 -0
  21. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/addr/iaddr_decoder.py +48 -0
  22. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/addr/iaddr_encoder.py +50 -0
  23. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/base58/__init__.py +3 -0
  24. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/base58/base58.py +207 -0
  25. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/base58/base58_ex.py +25 -0
  26. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/base58/base58_xmr.py +155 -0
  27. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bech32/__init__.py +4 -0
  28. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bech32/bch_bech32.py +220 -0
  29. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bech32/bech32.py +235 -0
  30. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bech32/bech32_base.py +246 -0
  31. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bech32/bech32_ex.py +25 -0
  32. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bech32/segwit_bech32.py +173 -0
  33. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip32/__init__.py +14 -0
  34. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip32/base/__init__.py +3 -0
  35. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip32/base/bip32_base.py +581 -0
  36. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip32/base/ibip32_key_derivator.py +83 -0
  37. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip32/base/ibip32_mst_key_generator.py +47 -0
  38. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip32/bip32_const.py +35 -0
  39. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip32/bip32_ex.py +29 -0
  40. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip32/bip32_key_data.py +500 -0
  41. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip32/bip32_key_net_ver.py +83 -0
  42. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip32/bip32_key_ser.py +294 -0
  43. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip32/bip32_keys.py +457 -0
  44. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip32/bip32_path.py +247 -0
  45. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip32/bip32_utils.py +72 -0
  46. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip32/kholaw/__init__.py +4 -0
  47. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip32/kholaw/bip32_kholaw_ed25519.py +82 -0
  48. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip32/kholaw/bip32_kholaw_ed25519_key_derivator.py +118 -0
  49. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip32/kholaw/bip32_kholaw_key_derivator_base.py +204 -0
  50. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip32/kholaw/bip32_kholaw_mst_key_generator.py +119 -0
  51. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip32/slip10/__init__.py +1 -0
  52. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip32/slip10/bip32_slip10_key_derivator.py +200 -0
  53. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip32/slip10/bip32_slip10_mst_key_generator.py +168 -0
  54. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip32/slip10/bip32_slip10_secp256k1.py +82 -0
  55. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip44/__init__.py +1 -0
  56. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip44/bip44.py +265 -0
  57. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip44_base/__init__.py +3 -0
  58. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip44_base/bip44_base.py +624 -0
  59. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip44_base/bip44_base_ex.py +25 -0
  60. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/bip44_base/bip44_keys.py +225 -0
  61. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/coin_conf/__init__.py +2 -0
  62. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/coin_conf/coin_conf.py +68 -0
  63. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/coin_conf/coins_conf.py +890 -0
  64. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/conf/bip44/__init__.py +3 -0
  65. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/conf/bip44/bip44_coins.py +126 -0
  66. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/conf/bip44/bip44_conf.py +1360 -0
  67. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/conf/bip44/bip44_conf_getter.py +153 -0
  68. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/conf/bip49/__init__.py +3 -0
  69. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/conf/bip49/bip49_coins.py +53 -0
  70. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/conf/bip49/bip49_conf.py +366 -0
  71. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/conf/bip49/bip49_conf_getter.py +80 -0
  72. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/conf/bip84/__init__.py +3 -0
  73. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/conf/bip84/bip84_coins.py +39 -0
  74. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/conf/bip84/bip84_conf.py +113 -0
  75. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/conf/bip84/bip84_conf_getter.py +66 -0
  76. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/conf/bip86/__init__.py +3 -0
  77. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/conf/bip86/bip86_coins.py +37 -0
  78. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/conf/bip86/bip86_conf.py +83 -0
  79. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/conf/bip86/bip86_conf_getter.py +64 -0
  80. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/conf/common/__init__.py +8 -0
  81. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/conf/common/atom_addr.py +104 -0
  82. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/conf/common/bip_bitcoin_cash_conf.py +106 -0
  83. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/conf/common/bip_coin_conf.py +217 -0
  84. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/conf/common/bip_coins.py +28 -0
  85. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/conf/common/bip_conf_const.py +30 -0
  86. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/conf/common/bip_litecoin_conf.py +121 -0
  87. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/ecc/__init__.py +42 -0
  88. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/ecc/common/dummy_point.py +219 -0
  89. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/ecc/common/ikeys.py +263 -0
  90. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/ecc/common/ipoint.py +190 -0
  91. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/ecc/conf.py +28 -0
  92. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/ecc/curve/elliptic_curve.py +121 -0
  93. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/ecc/curve/elliptic_curve_getter.py +74 -0
  94. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/ecc/curve/elliptic_curve_types.py +37 -0
  95. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/ecc/ecdsa/ecdsa_keys.py +36 -0
  96. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/ecc/secp256k1/secp256k1.py +36 -0
  97. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/ecc/secp256k1/secp256k1_const.py +59 -0
  98. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/ecc/secp256k1/secp256k1_keys_ecdsa.py +248 -0
  99. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/ecc/secp256k1/secp256k1_point_ecdsa.py +234 -0
  100. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/slip/slip173/__init__.py +1 -0
  101. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/slip/slip173/slip173.py +60 -0
  102. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/slip/slip32/__init__.py +4 -0
  103. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/slip/slip32/slip32.py +322 -0
  104. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/slip/slip32/slip32_key_net_ver.py +62 -0
  105. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/slip/slip44/__init__.py +1 -0
  106. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/slip/slip44/slip44.py +81 -0
  107. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/utils/conf/__init__.py +1 -0
  108. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/utils/conf/coin_names.py +59 -0
  109. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/utils/crypto/__init__.py +10 -0
  110. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/utils/crypto/aes_ecb.py +152 -0
  111. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/utils/crypto/blake2.py +191 -0
  112. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/utils/crypto/chacha20_poly1305.py +101 -0
  113. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/utils/crypto/hash160.py +57 -0
  114. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/utils/crypto/hmac.py +118 -0
  115. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/utils/crypto/pbkdf2.py +66 -0
  116. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/utils/crypto/ripemd.py +58 -0
  117. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/utils/crypto/scrypt.py +66 -0
  118. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/utils/crypto/sha2.py +182 -0
  119. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/utils/crypto/sha3.py +99 -0
  120. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/utils/misc/__init__.py +7 -0
  121. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/utils/misc/algo.py +108 -0
  122. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/utils/misc/base32.py +151 -0
  123. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/utils/misc/bit.py +115 -0
  124. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/utils/misc/bytes.py +200 -0
  125. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/utils/misc/data_bytes.py +181 -0
  126. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/utils/misc/integer.py +97 -0
  127. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/utils/misc/string.py +54 -0
  128. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/utils/typing/__init__.py +1 -0
  129. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/utils/typing/literal.py +27 -0
  130. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/wif/__init__.py +1 -0
  131. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/wif/wif.py +144 -0
  132. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/amino/amino_pb2.py +31 -0
  133. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/cosmos/base/v1beta1/coin_pb2.py +47 -0
  134. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/cosmos/crypto/multisig/keys_pb2.py +33 -0
  135. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/cosmos/crypto/multisig/v1beta1/multisig_pb2.py +33 -0
  136. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/cosmos/crypto/secp256k1/keys_pb2.py +34 -0
  137. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/cosmos/msg/v1/msg_pb2.py +27 -0
  138. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/cosmos/tx/signing/v1beta1/signing_pb2.py +38 -0
  139. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/cosmos/tx/v1beta1/tx_pb2.py +75 -0
  140. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/cosmos_proto/cosmos_pb2.py +36 -0
  141. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/accountplus/accountplus_pb2.py +31 -0
  142. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/accountplus/genesis_pb2.py +40 -0
  143. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/accountplus/models_pb2.py +26 -0
  144. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/accountplus/params_pb2.py +29 -0
  145. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/accountplus/query_pb2.py +57 -0
  146. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/accountplus/tx_pb2.py +51 -0
  147. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/block_rate_limit_config_pb2.py +37 -0
  148. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/clob_pair_pb2.py +41 -0
  149. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/equity_tier_limit_config_pb2.py +35 -0
  150. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/finalize_block_pb2.py +27 -0
  151. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/liquidations_config_pb2.py +39 -0
  152. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/liquidations_pb2.py +38 -0
  153. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/matches_pb2.py +55 -0
  154. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/mev_pb2.py +49 -0
  155. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/operation_pb2.py +32 -0
  156. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/order_pb2.py +86 -0
  157. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/order_removals_pb2.py +32 -0
  158. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/process_proposer_matches_events_pb2.py +42 -0
  159. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/query_pb2.py +124 -0
  160. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/streaming_pb2.py +29 -0
  161. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/tx_pb2.py +117 -0
  162. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/sending/genesis_pb2.py +26 -0
  163. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/sending/query_pb2.py +26 -0
  164. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/sending/transfer_pb2.py +61 -0
  165. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/sending/tx_pb2.py +37 -0
  166. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/subaccounts/asset_position_pb2.py +29 -0
  167. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/subaccounts/genesis_pb2.py +30 -0
  168. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/subaccounts/perpetual_position_pb2.py +33 -0
  169. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/subaccounts/query_pb2.py +63 -0
  170. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/subaccounts/streaming_pb2.py +31 -0
  171. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/subaccounts/subaccount_pb2.py +33 -0
  172. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/gogoproto/gogo_pb2.py +102 -0
  173. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/dydx_v4_client/registry.py +38 -0
  174. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/ecdsa/ellipticcurve.py +1039 -0
  175. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ecdsa/keys.py +15 -4
  176. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/mnemonic/__init__.py +4 -0
  177. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/mnemonic/mnemonic.py +282 -0
  178. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/mnemonic/py.typed +1 -0
  179. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/mnemonic/wordlist/chinese_simplified.txt +2048 -0
  180. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/mnemonic/wordlist/chinese_traditional.txt +2048 -0
  181. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/mnemonic/wordlist/czech.txt +2048 -0
  182. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/mnemonic/wordlist/english.txt +2048 -0
  183. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/mnemonic/wordlist/french.txt +2048 -0
  184. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/mnemonic/wordlist/italian.txt +2048 -0
  185. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/mnemonic/wordlist/japanese.txt +2048 -0
  186. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/mnemonic/wordlist/korean.txt +2048 -0
  187. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/mnemonic/wordlist/portuguese.txt +2048 -0
  188. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/mnemonic/wordlist/russian.txt +2048 -0
  189. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/mnemonic/wordlist/spanish.txt +2048 -0
  190. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/mnemonic/wordlist/turkish.txt +2048 -0
  191. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/starknet/utils/__init__.py +0 -0
  192. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/starkware/__init__.py +0 -0
  193. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/starkware/crypto/__init__.py +0 -0
  194. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/sympy/__init__.py +0 -0
  195. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/sympy/core/__init__.py +0 -0
  196. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/sympy/external/__init__.py +0 -0
  197. bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/typing_inspect/__init__.py +0 -0
  198. bitmart-0.0.93/src/bitmart/ccxt/static_dependencies/ecdsa/ellipticcurve.py +0 -197
  199. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/__init__.py +0 -0
  200. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/abstract/bitmart.py +0 -0
  201. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/async_support/base/__init__.py +0 -0
  202. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/async_support/base/ws/__init__.py +0 -0
  203. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/async_support/base/ws/cache.py +0 -0
  204. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/async_support/base/ws/functions.py +0 -0
  205. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/async_support/base/ws/future.py +0 -0
  206. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/async_support/base/ws/order_book.py +0 -0
  207. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/async_support/base/ws/order_book_side.py +0 -0
  208. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/base/__init__.py +0 -0
  209. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/base/decimal_to_precision.py +0 -0
  210. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/base/errors.py +0 -0
  211. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/base/precise.py +0 -0
  212. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/README.md +0 -0
  213. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/__init__.py +0 -0
  214. {bitmart-0.0.93/src/bitmart/ccxt/static_dependencies/ethereum/abi/utils → bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/conf}/__init__.py +0 -0
  215. {bitmart-0.0.93/src/bitmart/ccxt/static_dependencies/lark/grammars → bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/ecc/common}/__init__.py +0 -0
  216. {bitmart-0.0.93/src/bitmart/ccxt/static_dependencies/lark/parsers → bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/ecc/curve}/__init__.py +0 -0
  217. {bitmart-0.0.93/src/bitmart/ccxt/static_dependencies/starknet → bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/ecc/ecdsa}/__init__.py +0 -0
  218. {bitmart-0.0.93/src/bitmart/ccxt/static_dependencies/starknet/cairo → bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/ecc/secp256k1}/__init__.py +0 -0
  219. {bitmart-0.0.93/src/bitmart/ccxt/static_dependencies/starknet/cairo/deprecated_parse → bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/slip}/__init__.py +0 -0
  220. {bitmart-0.0.93/src/bitmart/ccxt/static_dependencies/starknet/cairo/v1 → bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/bip/utils}/__init__.py +0 -0
  221. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ecdsa/__init__.py +0 -0
  222. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ecdsa/_version.py +0 -0
  223. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ecdsa/curves.py +0 -0
  224. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ecdsa/der.py +0 -0
  225. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ecdsa/ecdsa.py +0 -0
  226. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ecdsa/numbertheory.py +0 -0
  227. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ecdsa/rfc6979.py +0 -0
  228. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ecdsa/util.py +0 -0
  229. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/__init__.py +0 -0
  230. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/abi/__init__.py +0 -0
  231. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/abi/abi.py +0 -0
  232. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/abi/base.py +0 -0
  233. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/abi/codec.py +0 -0
  234. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/abi/constants.py +0 -0
  235. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/abi/decoding.py +0 -0
  236. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/abi/encoding.py +0 -0
  237. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/abi/exceptions.py +0 -0
  238. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/abi/grammar.py +0 -0
  239. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/abi/packed.py +0 -0
  240. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/abi/py.typed +0 -0
  241. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/abi/registry.py +0 -0
  242. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/abi/tools/__init__.py +0 -0
  243. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/abi/tools/_strategies.py +0 -0
  244. {bitmart-0.0.93/src/bitmart/ccxt/static_dependencies/starknet/cairo/v2 → bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/ethereum/abi/utils}/__init__.py +0 -0
  245. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/abi/utils/numeric.py +0 -0
  246. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/abi/utils/padding.py +0 -0
  247. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/abi/utils/string.py +0 -0
  248. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/account/__init__.py +0 -0
  249. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/account/encode_typed_data/__init__.py +0 -0
  250. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/account/encode_typed_data/encoding_and_hashing.py +0 -0
  251. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/account/encode_typed_data/helpers.py +0 -0
  252. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/account/messages.py +0 -0
  253. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/account/py.typed +0 -0
  254. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/hexbytes/__init__.py +0 -0
  255. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/hexbytes/_utils.py +0 -0
  256. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/hexbytes/main.py +0 -0
  257. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/hexbytes/py.typed +0 -0
  258. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/typing/__init__.py +0 -0
  259. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/typing/abi.py +0 -0
  260. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/typing/bls.py +0 -0
  261. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/typing/discovery.py +0 -0
  262. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/typing/encoding.py +0 -0
  263. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/typing/enums.py +0 -0
  264. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/typing/ethpm.py +0 -0
  265. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/typing/evm.py +0 -0
  266. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/typing/networks.py +0 -0
  267. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/typing/py.typed +0 -0
  268. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/utils/__init__.py +0 -0
  269. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/utils/abi.py +0 -0
  270. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/utils/address.py +0 -0
  271. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/utils/applicators.py +0 -0
  272. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/utils/conversions.py +0 -0
  273. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/utils/currency.py +0 -0
  274. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/utils/curried/__init__.py +0 -0
  275. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/utils/debug.py +0 -0
  276. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/utils/decorators.py +0 -0
  277. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/utils/encoding.py +0 -0
  278. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/utils/exceptions.py +0 -0
  279. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/utils/functional.py +0 -0
  280. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/utils/hexadecimal.py +0 -0
  281. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/utils/humanize.py +0 -0
  282. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/utils/logging.py +0 -0
  283. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/utils/module_loading.py +0 -0
  284. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/utils/numeric.py +0 -0
  285. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/utils/py.typed +0 -0
  286. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/utils/toolz.py +0 -0
  287. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/utils/types.py +0 -0
  288. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/utils/typing/__init__.py +0 -0
  289. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/utils/typing/misc.py +0 -0
  290. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/ethereum/utils/units.py +0 -0
  291. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/keccak/__init__.py +0 -0
  292. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/keccak/keccak.py +0 -0
  293. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/__init__.py +0 -0
  294. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/__pyinstaller/__init__.py +0 -0
  295. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/__pyinstaller/hook-lark.py +0 -0
  296. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/ast_utils.py +0 -0
  297. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/common.py +0 -0
  298. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/exceptions.py +0 -0
  299. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/grammar.py +0 -0
  300. {bitmart-0.0.93/src/bitmart/ccxt/static_dependencies/starknet/hash → bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/lark/grammars}/__init__.py +0 -0
  301. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/grammars/common.lark +0 -0
  302. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/grammars/lark.lark +0 -0
  303. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/grammars/python.lark +0 -0
  304. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/grammars/unicode.lark +0 -0
  305. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/indenter.py +0 -0
  306. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/lark.py +0 -0
  307. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/lexer.py +0 -0
  308. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/load_grammar.py +0 -0
  309. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/parse_tree_builder.py +0 -0
  310. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/parser_frontends.py +0 -0
  311. {bitmart-0.0.93/src/bitmart/ccxt/static_dependencies/starknet/models → bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/lark/parsers}/__init__.py +0 -0
  312. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/parsers/cyk.py +0 -0
  313. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/parsers/earley.py +0 -0
  314. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/parsers/earley_common.py +0 -0
  315. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/parsers/earley_forest.py +0 -0
  316. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/parsers/grammar_analysis.py +0 -0
  317. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/parsers/lalr_analysis.py +0 -0
  318. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/parsers/lalr_interactive_parser.py +0 -0
  319. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/parsers/lalr_parser.py +0 -0
  320. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/parsers/lalr_parser_state.py +0 -0
  321. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/parsers/xearley.py +0 -0
  322. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/py.typed +0 -0
  323. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/reconstruct.py +0 -0
  324. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/tools/__init__.py +0 -0
  325. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/tools/nearley.py +0 -0
  326. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/tools/serialize.py +0 -0
  327. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/tools/standalone.py +0 -0
  328. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/tree.py +0 -0
  329. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/tree_matcher.py +0 -0
  330. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/tree_templates.py +0 -0
  331. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/utils.py +0 -0
  332. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/lark/visitors.py +0 -0
  333. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/marshmallow/__init__.py +0 -0
  334. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/marshmallow/base.py +0 -0
  335. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/marshmallow/class_registry.py +0 -0
  336. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/marshmallow/decorators.py +0 -0
  337. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/marshmallow/error_store.py +0 -0
  338. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/marshmallow/exceptions.py +0 -0
  339. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/marshmallow/fields.py +0 -0
  340. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/marshmallow/orderedset.py +0 -0
  341. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/marshmallow/py.typed +0 -0
  342. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/marshmallow/schema.py +0 -0
  343. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/marshmallow/types.py +0 -0
  344. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/marshmallow/utils.py +0 -0
  345. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/marshmallow/validate.py +0 -0
  346. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/marshmallow/warnings.py +0 -0
  347. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/marshmallow_dataclass/__init__.py +0 -0
  348. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/marshmallow_dataclass/collection_field.py +0 -0
  349. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/marshmallow_dataclass/lazy_class_attribute.py +0 -0
  350. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/marshmallow_dataclass/mypy.py +0 -0
  351. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/marshmallow_dataclass/py.typed +0 -0
  352. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/marshmallow_dataclass/typing.py +0 -0
  353. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/marshmallow_dataclass/union_field.py +0 -0
  354. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/marshmallow_oneofschema/__init__.py +0 -0
  355. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/marshmallow_oneofschema/one_of_schema.py +0 -0
  356. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/marshmallow_oneofschema/py.typed +0 -0
  357. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/msgpack/__init__.py +0 -0
  358. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/msgpack/_cmsgpack.pyx +0 -0
  359. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/msgpack/_packer.pyx +0 -0
  360. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/msgpack/_unpacker.pyx +0 -0
  361. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/msgpack/buff_converter.h +0 -0
  362. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/msgpack/exceptions.py +0 -0
  363. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/msgpack/ext.py +0 -0
  364. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/msgpack/fallback.py +0 -0
  365. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/msgpack/pack.h +0 -0
  366. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/msgpack/pack_template.h +0 -0
  367. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/msgpack/sysdep.h +0 -0
  368. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/msgpack/unpack.h +0 -0
  369. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/msgpack/unpack_define.h +0 -0
  370. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/msgpack/unpack_template.h +0 -0
  371. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/parsimonious/__init__.py +0 -0
  372. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/parsimonious/exceptions.py +0 -0
  373. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/parsimonious/expressions.py +0 -0
  374. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/parsimonious/grammar.py +0 -0
  375. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/parsimonious/nodes.py +0 -0
  376. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/parsimonious/utils.py +0 -0
  377. {bitmart-0.0.93/src/bitmart/ccxt/static_dependencies/starknet/utils → bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/starknet}/__init__.py +0 -0
  378. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/abi/v0/__init__.py +0 -0
  379. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/abi/v0/model.py +0 -0
  380. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/abi/v0/parser.py +0 -0
  381. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/abi/v0/schemas.py +0 -0
  382. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/abi/v0/shape.py +0 -0
  383. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/abi/v1/__init__.py +0 -0
  384. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/abi/v1/core_structures.json +0 -0
  385. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/abi/v1/model.py +0 -0
  386. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/abi/v1/parser.py +0 -0
  387. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/abi/v1/parser_transformer.py +0 -0
  388. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/abi/v1/schemas.py +0 -0
  389. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/abi/v1/shape.py +0 -0
  390. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/abi/v2/__init__.py +0 -0
  391. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/abi/v2/model.py +0 -0
  392. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/abi/v2/parser.py +0 -0
  393. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/abi/v2/parser_transformer.py +0 -0
  394. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/abi/v2/schemas.py +0 -0
  395. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/abi/v2/shape.py +0 -0
  396. {bitmart-0.0.93/src/bitmart/ccxt/static_dependencies/starkware → bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/starknet/cairo}/__init__.py +0 -0
  397. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/cairo/data_types.py +0 -0
  398. {bitmart-0.0.93/src/bitmart/ccxt/static_dependencies/starkware/crypto → bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/starknet/cairo/deprecated_parse}/__init__.py +0 -0
  399. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/cairo/deprecated_parse/cairo_types.py +0 -0
  400. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser.py +0 -0
  401. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser_transformer.py +0 -0
  402. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/cairo/felt.py +0 -0
  403. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/cairo/type_parser.py +0 -0
  404. {bitmart-0.0.93/src/bitmart/ccxt/static_dependencies/sympy → bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/starknet/cairo/v1}/__init__.py +0 -0
  405. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/cairo/v1/type_parser.py +0 -0
  406. {bitmart-0.0.93/src/bitmart/ccxt/static_dependencies/sympy/core → bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/starknet/cairo/v2}/__init__.py +0 -0
  407. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/cairo/v2/type_parser.py +0 -0
  408. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/ccxt_utils.py +0 -0
  409. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/common.py +0 -0
  410. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/constants.py +0 -0
  411. {bitmart-0.0.93/src/bitmart/ccxt/static_dependencies/sympy/external → bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/starknet/hash}/__init__.py +0 -0
  412. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/hash/address.py +0 -0
  413. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/hash/compiled_class_hash_objects.py +0 -0
  414. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/hash/selector.py +0 -0
  415. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/hash/storage.py +0 -0
  416. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/hash/utils.py +0 -0
  417. {bitmart-0.0.93/src/bitmart/ccxt/static_dependencies/typing_inspect → bitmart-0.0.106/src/bitmart/ccxt/static_dependencies/starknet/models}/__init__.py +0 -0
  418. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/models/typed_data.py +0 -0
  419. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/serialization/__init__.py +0 -0
  420. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/serialization/_calldata_reader.py +0 -0
  421. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/serialization/_context.py +0 -0
  422. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/__init__.py +0 -0
  423. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/_common.py +0 -0
  424. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/array_serializer.py +0 -0
  425. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/bool_serializer.py +0 -0
  426. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/byte_array_serializer.py +0 -0
  427. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/cairo_data_serializer.py +0 -0
  428. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/enum_serializer.py +0 -0
  429. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/felt_serializer.py +0 -0
  430. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/named_tuple_serializer.py +0 -0
  431. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/option_serializer.py +0 -0
  432. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/output_serializer.py +0 -0
  433. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/payload_serializer.py +0 -0
  434. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/struct_serializer.py +0 -0
  435. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/tuple_serializer.py +0 -0
  436. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/uint256_serializer.py +0 -0
  437. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/uint_serializer.py +0 -0
  438. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/unit_serializer.py +0 -0
  439. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/serialization/errors.py +0 -0
  440. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/serialization/factory.py +0 -0
  441. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/serialization/function_serialization_adapter.py +0 -0
  442. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/serialization/tuple_dataclass.py +0 -0
  443. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/utils/constructor_args_translator.py +0 -0
  444. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/utils/iterable.py +0 -0
  445. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/utils/schema.py +0 -0
  446. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starknet/utils/typed_data.py +0 -0
  447. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starkware/crypto/fast_pedersen_hash.py +0 -0
  448. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starkware/crypto/math_utils.py +0 -0
  449. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starkware/crypto/signature.py +0 -0
  450. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/starkware/crypto/utils.py +0 -0
  451. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/sympy/core/intfunc.py +0 -0
  452. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/sympy/external/gmpy.py +0 -0
  453. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/sympy/external/importtools.py +0 -0
  454. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/sympy/external/ntheory.py +0 -0
  455. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/sympy/external/pythonmpq.py +0 -0
  456. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/toolz/__init__.py +0 -0
  457. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/toolz/_signatures.py +0 -0
  458. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/toolz/_version.py +0 -0
  459. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/toolz/compatibility.py +0 -0
  460. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/toolz/curried/__init__.py +0 -0
  461. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/toolz/curried/exceptions.py +0 -0
  462. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/toolz/curried/operator.py +0 -0
  463. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/toolz/dicttoolz.py +0 -0
  464. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/toolz/functoolz.py +0 -0
  465. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/toolz/itertoolz.py +0 -0
  466. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/toolz/recipes.py +0 -0
  467. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/toolz/utils.py +0 -0
  468. {bitmart-0.0.93 → bitmart-0.0.106}/src/bitmart/ccxt/static_dependencies/typing_inspect/typing_inspect.py +0 -0
@@ -173,5 +173,4 @@ cython_debug/
173
173
  .pypirc
174
174
 
175
175
  build/ccxt
176
- /meta.json
177
176
  /build/package-lock.json
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bitmart
3
- Version: 0.0.93
3
+ Version: 0.0.106
4
4
  Summary: bitmart crypto exchange api client
5
5
  Project-URL: Homepage, https://github.com/ccxt/ccxt
6
6
  Project-URL: Issues, https://github.com/ccxt/ccxt
@@ -150,7 +150,7 @@ You can also construct custom requests to available "implicit" endpoints
150
150
  - `fetch_markets(self, params={})`
151
151
  - `fetch_my_liquidations(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
152
152
  - `fetch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
153
- - `fetch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={})`
153
+ - `fetch_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={})`
154
154
  - `fetch_open_interest(self, symbol: str, params={})`
155
155
  - `fetch_open_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
156
156
  - `fetch_order_book(self, symbol: str, limit: Int = None, params={})`
@@ -321,7 +321,7 @@ You can also construct custom requests to available "implicit" endpoints
321
321
  - `watch_bids_asks(self, symbols: Strings = None, params={})`
322
322
  - `watch_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
323
323
  - `watch_positions(self, symbols: Strings = None, since: Int = None, limit: Int = None, params={})`
324
- - `watch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={})`
324
+ - `watch_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={})`
325
325
  - `watch_order_book(self, symbol: str, limit: Int = None, params={})`
326
326
  - `watch_order_book_for_symbols(self, symbols: List[str], limit: Int = None, params={})`
327
327
  - `authenticate(self, type, params={})`
@@ -131,7 +131,7 @@ You can also construct custom requests to available "implicit" endpoints
131
131
  - `fetch_markets(self, params={})`
132
132
  - `fetch_my_liquidations(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
133
133
  - `fetch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
134
- - `fetch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={})`
134
+ - `fetch_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={})`
135
135
  - `fetch_open_interest(self, symbol: str, params={})`
136
136
  - `fetch_open_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
137
137
  - `fetch_order_book(self, symbol: str, limit: Int = None, params={})`
@@ -302,7 +302,7 @@ You can also construct custom requests to available "implicit" endpoints
302
302
  - `watch_bids_asks(self, symbols: Strings = None, params={})`
303
303
  - `watch_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
304
304
  - `watch_positions(self, symbols: Strings = None, since: Int = None, limit: Int = None, params={})`
305
- - `watch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={})`
305
+ - `watch_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={})`
306
306
  - `watch_order_book(self, symbol: str, limit: Int = None, params={})`
307
307
  - `watch_order_book_for_symbols(self, symbols: List[str], limit: Int = None, params={})`
308
308
  - `authenticate(self, type, params={})`
@@ -11,7 +11,7 @@ only-include = ["src/bitmart"]
11
11
 
12
12
  [project]
13
13
  name = "bitmart"
14
- version = "0.0.93"
14
+ version = "0.0.106"
15
15
  authors = [
16
16
  { name="CCXT", email="info@ccxt.trade" },
17
17
  ]
@@ -26,7 +26,7 @@ sys.modules['ccxt'] = ccxt_module
26
26
 
27
27
  # ----------------------------------------------------------------------------
28
28
 
29
- __version__ = '4.5.8'
29
+ __version__ = '4.5.20'
30
30
 
31
31
  # ----------------------------------------------------------------------------
32
32
 
@@ -8,7 +8,7 @@ sys.modules['ccxt'] = ccxt_module
8
8
 
9
9
  # -----------------------------------------------------------------------------
10
10
 
11
- __version__ = '4.5.8'
11
+ __version__ = '4.5.20'
12
12
 
13
13
  # -----------------------------------------------------------------------------
14
14
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  # -----------------------------------------------------------------------------
4
4
 
5
- __version__ = '4.5.8'
5
+ __version__ = '4.5.20'
6
6
 
7
7
  # -----------------------------------------------------------------------------
8
8
 
@@ -25,7 +25,7 @@ from ccxt.async_support.base.throttler import Throttler
25
25
  # -----------------------------------------------------------------------------
26
26
 
27
27
  from ccxt.base.errors import BaseError, BadSymbol, BadRequest, BadResponse, ExchangeError, ExchangeNotAvailable, RequestTimeout, NotSupported, NullResponse, InvalidAddress, RateLimitExceeded, OperationFailed
28
- from ccxt.base.types import ConstructorArgs, OrderType, OrderSide, OrderRequest, CancellationRequest
28
+ from ccxt.base.types import ConstructorArgs, OrderType, OrderSide, OrderRequest, CancellationRequest, Order
29
29
 
30
30
  # -----------------------------------------------------------------------------
31
31
 
@@ -42,9 +42,9 @@ from ccxt.async_support.base.ws.order_book import OrderBook, IndexedOrderBook, C
42
42
  # -----------------------------------------------------------------------------
43
43
 
44
44
  try:
45
- from aiohttp_socks import ProxyConnector
45
+ from aiohttp_socks import ProxyConnector as SocksProxyConnector
46
46
  except ImportError:
47
- ProxyConnector = None
47
+ SocksProxyConnector = None
48
48
 
49
49
  # -----------------------------------------------------------------------------
50
50
 
@@ -177,7 +177,7 @@ class Exchange(BaseExchange):
177
177
  elif httpsProxy:
178
178
  final_proxy = httpsProxy
179
179
  elif socksProxy:
180
- if ProxyConnector is None:
180
+ if SocksProxyConnector is None:
181
181
  raise NotSupported(self.id + ' - to use SOCKS proxy with ccxt, you need "aiohttp_socks" module that can be installed by "pip install aiohttp_socks"')
182
182
  # override session
183
183
  if (self.socks_proxy_sessions is None):
@@ -274,12 +274,15 @@ class Exchange(BaseExchange):
274
274
  if (self.socks_proxy_sessions is None):
275
275
  self.socks_proxy_sessions = {}
276
276
  if (socksProxy not in self.socks_proxy_sessions):
277
- self.aiohttp_socks_connector = ProxyConnector.from_url(
278
- socksProxy,
277
+ reverse_dns = socksProxy.startswith('socks5h://')
278
+ socks_proxy_selected = socksProxy if not reverse_dns else socksProxy.replace('socks5h://', 'socks5://')
279
+ self.aiohttp_socks_connector = SocksProxyConnector.from_url(
280
+ socks_proxy_selected,
279
281
  # extra args copied from self.open()
280
282
  ssl=self.ssl_context,
281
283
  loop=self.asyncio_loop,
282
- enable_cleanup_closed=True
284
+ enable_cleanup_closed=True,
285
+ rdns=reverse_dns if reverse_dns else None
283
286
  )
284
287
  self.socks_proxy_sessions[socksProxy] = aiohttp.ClientSession(loop=self.asyncio_loop, connector=self.aiohttp_socks_connector, trust_env=self.aiohttp_trust_env)
285
288
  return self.socks_proxy_sessions[socksProxy]
@@ -608,6 +611,9 @@ class Exchange(BaseExchange):
608
611
  # }
609
612
  return dict_msg
610
613
 
614
+ async def load_dydx_protos(self):
615
+ return
616
+
611
617
  # ########################################################################
612
618
  # ########################################################################
613
619
  # ########################################################################
@@ -711,6 +717,12 @@ class Exchange(BaseExchange):
711
717
  async def un_watch_ticker(self, symbol: str, params={}):
712
718
  raise NotSupported(self.id + ' unWatchTicker() is not supported yet')
713
719
 
720
+ async def un_watch_mark_price(self, symbol: str, params={}):
721
+ raise NotSupported(self.id + ' unWatchMarkPrice() is not supported yet')
722
+
723
+ async def un_watch_mark_prices(self, symbols: Strings = None, params={}):
724
+ raise NotSupported(self.id + ' unWatchMarkPrices() is not supported yet')
725
+
714
726
  async def fetch_deposit_addresses(self, codes: Strings = None, params={}):
715
727
  raise NotSupported(self.id + ' fetchDepositAddresses() is not supported yet')
716
728
 
@@ -1004,6 +1016,9 @@ class Exchange(BaseExchange):
1004
1016
  await self.cancel_order(id, symbol)
1005
1017
  return await self.create_order(symbol, type, side, amount, price, params)
1006
1018
 
1019
+ async def edit_order_with_client_order_id(self, clientOrderId: str, symbol: str, type: OrderType, side: OrderSide, amount: Num = None, price: Num = None, params={}):
1020
+ return await self.edit_order('', symbol, type, side, amount, price, self.extend({'clientOrderId': clientOrderId}, params))
1021
+
1007
1022
  async def edit_order_ws(self, id: str, symbol: str, type: OrderType, side: OrderSide, amount: Num = None, price: Num = None, params={}):
1008
1023
  await self.cancel_order_ws(id, symbol)
1009
1024
  return await self.create_order_ws(symbol, type, side, amount, price, params)
@@ -1193,6 +1208,17 @@ class Exchange(BaseExchange):
1193
1208
  async def fetch_order(self, id: str, symbol: Str = None, params={}):
1194
1209
  raise NotSupported(self.id + ' fetchOrder() is not supported yet')
1195
1210
 
1211
+ async def fetch_order_with_client_order_id(self, clientOrderId: str, symbol: Str = None, params={}):
1212
+ """
1213
+ create a market order by providing the symbol, side and cost
1214
+ :param str clientOrderId: client order Id
1215
+ :param str symbol: unified symbol of the market to create an order in
1216
+ :param dict [params]: extra parameters specific to the exchange API endpoint
1217
+ :returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
1218
+ """
1219
+ extendedParams = self.extend(params, {'clientOrderId': clientOrderId})
1220
+ return await self.fetch_order('', symbol, extendedParams)
1221
+
1196
1222
  async def fetch_order_ws(self, id: str, symbol: Str = None, params={}):
1197
1223
  raise NotSupported(self.id + ' fetchOrderWs() is not supported yet')
1198
1224
 
@@ -1536,9 +1562,34 @@ class Exchange(BaseExchange):
1536
1562
  async def cancel_order(self, id: str, symbol: Str = None, params={}):
1537
1563
  raise NotSupported(self.id + ' cancelOrder() is not supported yet')
1538
1564
 
1565
+ async def cancel_order_with_client_order_id(self, clientOrderId: str, symbol: Str = None, params={}):
1566
+ """
1567
+ create a market order by providing the symbol, side and cost
1568
+ :param str clientOrderId: client order Id
1569
+ :param str symbol: unified symbol of the market to create an order in
1570
+ :param dict [params]: extra parameters specific to the exchange API endpoint
1571
+ :returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
1572
+ """
1573
+ extendedParams = self.extend(params, {'clientOrderId': clientOrderId})
1574
+ return await self.cancel_order('', symbol, extendedParams)
1575
+
1539
1576
  async def cancel_order_ws(self, id: str, symbol: Str = None, params={}):
1540
1577
  raise NotSupported(self.id + ' cancelOrderWs() is not supported yet')
1541
1578
 
1579
+ async def cancel_orders(self, ids: List[str], symbol: Str = None, params={}):
1580
+ raise NotSupported(self.id + ' cancelOrders() is not supported yet')
1581
+
1582
+ async def cancel_orders_with_client_order_ids(self, clientOrderIds: List[str], symbol: Str = None, params={}):
1583
+ """
1584
+ create a market order by providing the symbol, side and cost
1585
+ :param str[] clientOrderIds: client order Ids
1586
+ :param str symbol: unified symbol of the market to create an order in
1587
+ :param dict [params]: extra parameters specific to the exchange API endpoint
1588
+ :returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
1589
+ """
1590
+ extendedParams = self.extend(params, {'clientOrderIds': clientOrderIds})
1591
+ return await self.cancel_orders([], symbol, extendedParams)
1592
+
1542
1593
  async def cancel_orders_ws(self, ids: List[str], symbol: Str = None, params={}):
1543
1594
  raise NotSupported(self.id + ' cancelOrdersWs() is not supported yet')
1544
1595
 
@@ -1554,7 +1605,7 @@ class Exchange(BaseExchange):
1554
1605
  async def cancel_all_orders_ws(self, symbol: Str = None, params={}):
1555
1606
  raise NotSupported(self.id + ' cancelAllOrdersWs() is not supported yet')
1556
1607
 
1557
- async def cancel_unified_order(self, order, params={}):
1608
+ async def cancel_unified_order(self, order: Order, params={}):
1558
1609
  return self.cancel_order(self.safe_string(order, 'id'), self.safe_string(order, 'symbol'), params)
1559
1610
 
1560
1611
  async def fetch_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}):
@@ -2181,3 +2232,80 @@ class Exchange(BaseExchange):
2181
2232
  :returns dict: a `transfer structure <https://docs.ccxt.com/#/?id=transfer-structure>`
2182
2233
  """
2183
2234
  raise NotSupported(self.id + ' fetchTransfers() is not supported yet')
2235
+
2236
+ async def un_watch_ohlcv(self, symbol: str, timeframe: str = '1m', params={}):
2237
+ """
2238
+ watches historical candlestick data containing the open, high, low, and close price, and the volume of a market
2239
+ :param str symbol: unified symbol of the market to fetch OHLCV data for
2240
+ :param str timeframe: the length of time each candle represents
2241
+ :param dict [params]: extra parameters specific to the exchange API endpoint
2242
+ :returns int[][]: A list of candles ordered, open, high, low, close, volume
2243
+ """
2244
+ raise NotSupported(self.id + ' unWatchOHLCV() is not supported yet')
2245
+
2246
+ async def watch_mark_price(self, symbol: str, params={}):
2247
+ """
2248
+ watches a mark price for a specific market
2249
+ :param str symbol: unified symbol of the market to fetch the ticker for
2250
+ :param dict [params]: extra parameters specific to the exchange API endpoint
2251
+ :returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
2252
+ """
2253
+ raise NotSupported(self.id + ' watchMarkPrice() is not supported yet')
2254
+
2255
+ async def watch_mark_prices(self, symbols: Strings = None, params={}):
2256
+ """
2257
+ watches the mark price for all markets
2258
+ :param str[] symbols: unified symbol of the market to fetch the ticker for
2259
+ :param dict [params]: extra parameters specific to the exchange API endpoint
2260
+ :returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
2261
+ """
2262
+ raise NotSupported(self.id + ' watchMarkPrices() is not supported yet')
2263
+
2264
+ async def withdraw_ws(self, code: str, amount: float, address: str, tag: Str = None, params={}):
2265
+ """
2266
+ make a withdrawal
2267
+ :param str code: unified currency code
2268
+ :param float amount: the amount to withdraw
2269
+ :param str address: the address to withdraw to
2270
+ :param str tag:
2271
+ :param dict [params]: extra parameters specific to the bitvavo api endpoint
2272
+ :returns dict: a `transaction structure <https://docs.ccxt.com/#/?id=transaction-structure>`
2273
+ """
2274
+ raise NotSupported(self.id + ' withdrawWs() is not supported yet')
2275
+
2276
+ async def un_watch_my_trades(self, symbol: Str = None, params={}):
2277
+ """
2278
+ unWatches information on multiple trades made by the user
2279
+ :param str symbol: unified market symbol of the market orders were made in
2280
+ :param dict [params]: extra parameters specific to the exchange API endpoint
2281
+ :returns dict[]: a list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
2282
+ """
2283
+ raise NotSupported(self.id + ' unWatchMyTrades() is not supported yet')
2284
+
2285
+ async def create_orders_ws(self, orders: List[OrderRequest], params={}):
2286
+ """
2287
+ create a list of trade orders
2288
+ :param Array orders: list of orders to create, each object should contain the parameters required by createOrder, namely symbol, type, side, amount, price and params
2289
+ :param dict [params]: extra parameters specific to the exchange API endpoint
2290
+ :returns dict: an `order structure <https://docs.ccxt.com/#/?id=order-structure>`
2291
+ """
2292
+ raise NotSupported(self.id + ' createOrdersWs() is not supported yet')
2293
+
2294
+ async def fetch_orders_by_status_ws(self, status: str, symbol: Str = None, since: Int = None, limit: Int = None, params={}):
2295
+ """
2296
+ watches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
2297
+ :param str symbol: unified symbol of the market to fetch the order book for
2298
+ :param int [limit]: the maximum amount of order book entries to return
2299
+ :param dict [params]: extra parameters specific to the exchange API endpoint
2300
+ :returns dict: A dictionary of `order book structures <https://docs.ccxt.com/#/?id=order-book-structure>` indexed by market symbols
2301
+ """
2302
+ raise NotSupported(self.id + ' fetchOrdersByStatusWs() is not supported yet')
2303
+
2304
+ async def un_watch_bids_asks(self, symbols: Strings = None, params={}):
2305
+ """
2306
+ unWatches best bid & ask for symbols
2307
+ :param str[] symbols: unified symbol of the market to fetch the ticker for
2308
+ :param dict [params]: extra parameters specific to the exchange API endpoint
2309
+ :returns dict: a `ticker structure <https://docs.ccxt.com/#/?id=ticker-structure>`
2310
+ """
2311
+ raise NotSupported(self.id + ' unWatchBidsAsks() is not supported yet')
@@ -42,7 +42,7 @@ class Throttler:
42
42
  def __call__(self, cost=None):
43
43
  future = asyncio.Future()
44
44
  if len(self.queue) > self.config['maxCapacity']:
45
- raise RuntimeError('throttle queue is over maxCapacity (' + str(int(self.config['maxCapacity'])) + '), see https://github.com/ccxt/ccxt/issues/11645#issuecomment-1195695526')
45
+ raise RuntimeError('throttle queue is over maxCapacity (' + str(int(self.config['maxCapacity'])) + '), see https://docs.ccxt.com/#/README?id=maximum-requests-capacity')
46
46
  self.queue.append((future, cost))
47
47
  if not self.running:
48
48
  self.running = True
@@ -83,6 +83,12 @@ class Client(object):
83
83
  del self.rejections[message_hash]
84
84
  return future
85
85
 
86
+ def reusable_future(self, message_hash):
87
+ return self.future(message_hash) # only used in go
88
+
89
+ def reusableFuture(self, message_hash):
90
+ return self.future(message_hash) # only used in go
91
+
86
92
  def resolve(self, result, message_hash):
87
93
  if self.verbose and message_hash is None:
88
94
  self.log(iso8601(milliseconds()), 'resolve received None messageHash')
@@ -111,7 +117,7 @@ class Client(object):
111
117
  self.log(iso8601(milliseconds()), 'receive loop')
112
118
  if not self.closed():
113
119
  # let's drain the aiohttp buffer to avoid latency
114
- if len(self.buffer) > 1:
120
+ if self.buffer and len(self.buffer) > 1:
115
121
  size_delta = 0
116
122
  while len(self.buffer) > 1:
117
123
  message, size = self.buffer.popleft()
@@ -180,6 +186,16 @@ class Client(object):
180
186
  # looks like they exposed it in C
181
187
  # this means we can bypass it
182
188
  # https://github.com/aio-libs/aiohttp/blob/master/aiohttp/_websocket/reader_c.pxd#L53C24-L53C31
189
+ # these checks are necessary to protect these errors: AttributeError: 'NoneType' object has no attribute '_buffer'
190
+ # upon getting an error message
191
+ if self.connection is None:
192
+ return None
193
+ if self.connection._conn is None:
194
+ return None
195
+ if self.connection._conn.protocol is None:
196
+ return None
197
+ if self.connection._conn.protocol._payload is None:
198
+ return None
183
199
  return self.connection._conn.protocol._payload._buffer
184
200
 
185
201
  def connect(self, session, backoff_delay=0):
@@ -288,6 +304,8 @@ class Client(object):
288
304
  send_msg = json.dumps(message, separators=(',', ':'))
289
305
  else:
290
306
  send_msg = orjson.dumps(message).decode('utf-8')
307
+ if self.closed():
308
+ raise ConnectionError('Cannot Send Message: Connection closed before send')
291
309
  return await self.connection.send_str(send_msg)
292
310
 
293
311
  async def close(self, code=1000):
@@ -1026,7 +1026,7 @@ class bitmart(Exchange, ImplicitAPI):
1026
1026
  'swap': False,
1027
1027
  'future': False,
1028
1028
  'option': False,
1029
- 'active': True,
1029
+ 'active': self.safe_string_lower_2(market, 'status', 'trade_status') == 'trading',
1030
1030
  'contract': False,
1031
1031
  'linear': None,
1032
1032
  'inverse': None,
@@ -1141,7 +1141,7 @@ class bitmart(Exchange, ImplicitAPI):
1141
1141
  'swap': isSwap,
1142
1142
  'future': isFutures,
1143
1143
  'option': False,
1144
- 'active': True,
1144
+ 'active': self.safe_string_lower(market, 'status') == 'trading',
1145
1145
  'contract': True,
1146
1146
  'linear': True,
1147
1147
  'inverse': False,
@@ -2048,7 +2048,7 @@ class bitmart(Exchange, ImplicitAPI):
2048
2048
  self.safe_number_2(ohlcv, 'volume', 'v'),
2049
2049
  ]
2050
2050
 
2051
- async def fetch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}) -> List[list]:
2051
+ async def fetch_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}) -> List[list]:
2052
2052
  """
2053
2053
  fetches historical candlestick data containing the open, high, low, and close price, and the volume of a market
2054
2054
 
@@ -4517,12 +4517,15 @@ class bitmart(Exchange, ImplicitAPI):
4517
4517
  # "code": 1000,
4518
4518
  # "message": "Ok",
4519
4519
  # "data": {
4520
- # "timestamp": 1695184410697,
4521
4520
  # "symbol": "BTCUSDT",
4522
- # "rate_value": "-0.00002614",
4523
- # "expected_rate": "-0.00002"
4521
+ # "expected_rate": "-0.0000238",
4522
+ # "rate_value": "0.000009601106",
4523
+ # "funding_time": 1761292800000,
4524
+ # "funding_upper_limit": "0.0375",
4525
+ # "funding_lower_limit": "-0.0375",
4526
+ # "timestamp": 1761291544336
4524
4527
  # },
4525
- # "trace": "4cad855074654097ac7ba5257c47305d.54.16951844206655589"
4528
+ # "trace": "64b7a589-e1e-4ac2-86b1-41058757421"
4526
4529
  # }
4527
4530
  #
4528
4531
  data = self.safe_dict(response, 'data', {})
@@ -4587,14 +4590,18 @@ class bitmart(Exchange, ImplicitAPI):
4587
4590
  def parse_funding_rate(self, contract, market: Market = None) -> FundingRate:
4588
4591
  #
4589
4592
  # {
4590
- # "timestamp": 1695184410697,
4591
4593
  # "symbol": "BTCUSDT",
4592
- # "rate_value": "-0.00002614",
4593
- # "expected_rate": "-0.00002"
4594
+ # "expected_rate": "-0.0000238",
4595
+ # "rate_value": "0.000009601106",
4596
+ # "funding_time": 1761292800000,
4597
+ # "funding_upper_limit": "0.0375",
4598
+ # "funding_lower_limit": "-0.0375",
4599
+ # "timestamp": 1761291544336
4594
4600
  # }
4595
4601
  #
4596
4602
  marketId = self.safe_string(contract, 'symbol')
4597
4603
  timestamp = self.safe_integer(contract, 'timestamp')
4604
+ fundingTimestamp = self.safe_integer(contract, 'funding_time')
4598
4605
  return {
4599
4606
  'info': contract,
4600
4607
  'symbol': self.safe_symbol(marketId, market),
@@ -4605,8 +4612,8 @@ class bitmart(Exchange, ImplicitAPI):
4605
4612
  'timestamp': timestamp,
4606
4613
  'datetime': self.iso8601(timestamp),
4607
4614
  'fundingRate': self.safe_number(contract, 'expected_rate'),
4608
- 'fundingTimestamp': None,
4609
- 'fundingDatetime': None,
4615
+ 'fundingTimestamp': fundingTimestamp,
4616
+ 'fundingDatetime': self.iso8601(fundingTimestamp),
4610
4617
  'nextFundingRate': None,
4611
4618
  'nextFundingTimestamp': None,
4612
4619
  'nextFundingDatetime': None,