coinex-api 0.0.89__py3-none-any.whl → 0.0.110__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of coinex-api might be problematic. Click here for more details.

Files changed (197) hide show
  1. coinex/ccxt/__init__.py +1 -1
  2. coinex/ccxt/async_support/__init__.py +1 -1
  3. coinex/ccxt/async_support/base/exchange.py +139 -10
  4. coinex/ccxt/async_support/base/throttler.py +1 -1
  5. coinex/ccxt/async_support/base/ws/cache.py +1 -0
  6. coinex/ccxt/async_support/base/ws/client.py +26 -4
  7. coinex/ccxt/async_support/coinex.py +2 -2
  8. coinex/ccxt/base/exchange.py +587 -91
  9. coinex/ccxt/base/types.py +11 -2
  10. coinex/ccxt/coinex.py +2 -2
  11. coinex/ccxt/pro/__init__.py +1 -1
  12. coinex/ccxt/pro/coinex.py +10 -7
  13. coinex/ccxt/static_dependencies/bip/__init__.py +6 -0
  14. coinex/ccxt/static_dependencies/bip/addr/P2PKH_addr.py +205 -0
  15. coinex/ccxt/static_dependencies/bip/addr/__init__.py +5 -0
  16. coinex/ccxt/static_dependencies/bip/addr/addr_dec_utils.py +125 -0
  17. coinex/ccxt/static_dependencies/bip/addr/addr_key_validator.py +162 -0
  18. coinex/ccxt/static_dependencies/bip/addr/iaddr_decoder.py +48 -0
  19. coinex/ccxt/static_dependencies/bip/addr/iaddr_encoder.py +50 -0
  20. coinex/ccxt/static_dependencies/bip/base58/__init__.py +3 -0
  21. coinex/ccxt/static_dependencies/bip/base58/base58.py +207 -0
  22. coinex/ccxt/static_dependencies/bip/base58/base58_ex.py +25 -0
  23. coinex/ccxt/static_dependencies/bip/base58/base58_xmr.py +155 -0
  24. coinex/ccxt/static_dependencies/bip/bech32/__init__.py +4 -0
  25. coinex/ccxt/static_dependencies/bip/bech32/bch_bech32.py +220 -0
  26. coinex/ccxt/static_dependencies/bip/bech32/bech32.py +235 -0
  27. coinex/ccxt/static_dependencies/bip/bech32/bech32_base.py +246 -0
  28. coinex/ccxt/static_dependencies/bip/bech32/bech32_ex.py +25 -0
  29. coinex/ccxt/static_dependencies/bip/bech32/segwit_bech32.py +173 -0
  30. coinex/ccxt/static_dependencies/bip/bip32/__init__.py +14 -0
  31. coinex/ccxt/static_dependencies/bip/bip32/base/__init__.py +3 -0
  32. coinex/ccxt/static_dependencies/bip/bip32/base/bip32_base.py +581 -0
  33. coinex/ccxt/static_dependencies/bip/bip32/base/ibip32_key_derivator.py +83 -0
  34. coinex/ccxt/static_dependencies/bip/bip32/base/ibip32_mst_key_generator.py +47 -0
  35. coinex/ccxt/static_dependencies/bip/bip32/bip32_const.py +35 -0
  36. coinex/ccxt/static_dependencies/bip/bip32/bip32_ex.py +29 -0
  37. coinex/ccxt/static_dependencies/bip/bip32/bip32_key_data.py +500 -0
  38. coinex/ccxt/static_dependencies/bip/bip32/bip32_key_net_ver.py +83 -0
  39. coinex/ccxt/static_dependencies/bip/bip32/bip32_key_ser.py +294 -0
  40. coinex/ccxt/static_dependencies/bip/bip32/bip32_keys.py +457 -0
  41. coinex/ccxt/static_dependencies/bip/bip32/bip32_path.py +247 -0
  42. coinex/ccxt/static_dependencies/bip/bip32/bip32_utils.py +72 -0
  43. coinex/ccxt/static_dependencies/bip/bip32/kholaw/__init__.py +4 -0
  44. coinex/ccxt/static_dependencies/bip/bip32/kholaw/bip32_kholaw_ed25519.py +82 -0
  45. coinex/ccxt/static_dependencies/bip/bip32/kholaw/bip32_kholaw_ed25519_key_derivator.py +118 -0
  46. coinex/ccxt/static_dependencies/bip/bip32/kholaw/bip32_kholaw_key_derivator_base.py +204 -0
  47. coinex/ccxt/static_dependencies/bip/bip32/kholaw/bip32_kholaw_mst_key_generator.py +119 -0
  48. coinex/ccxt/static_dependencies/bip/bip32/slip10/__init__.py +1 -0
  49. coinex/ccxt/static_dependencies/bip/bip32/slip10/bip32_slip10_key_derivator.py +200 -0
  50. coinex/ccxt/static_dependencies/bip/bip32/slip10/bip32_slip10_mst_key_generator.py +168 -0
  51. coinex/ccxt/static_dependencies/bip/bip32/slip10/bip32_slip10_secp256k1.py +82 -0
  52. coinex/ccxt/static_dependencies/bip/bip44/__init__.py +1 -0
  53. coinex/ccxt/static_dependencies/bip/bip44/bip44.py +265 -0
  54. coinex/ccxt/static_dependencies/bip/bip44_base/__init__.py +3 -0
  55. coinex/ccxt/static_dependencies/bip/bip44_base/bip44_base.py +624 -0
  56. coinex/ccxt/static_dependencies/bip/bip44_base/bip44_base_ex.py +25 -0
  57. coinex/ccxt/static_dependencies/bip/bip44_base/bip44_keys.py +225 -0
  58. coinex/ccxt/static_dependencies/bip/coin_conf/__init__.py +2 -0
  59. coinex/ccxt/static_dependencies/bip/coin_conf/coin_conf.py +68 -0
  60. coinex/ccxt/static_dependencies/bip/coin_conf/coins_conf.py +890 -0
  61. coinex/ccxt/static_dependencies/bip/conf/__init__.py +0 -0
  62. coinex/ccxt/static_dependencies/bip/conf/bip44/__init__.py +3 -0
  63. coinex/ccxt/static_dependencies/bip/conf/bip44/bip44_coins.py +126 -0
  64. coinex/ccxt/static_dependencies/bip/conf/bip44/bip44_conf.py +1360 -0
  65. coinex/ccxt/static_dependencies/bip/conf/bip44/bip44_conf_getter.py +153 -0
  66. coinex/ccxt/static_dependencies/bip/conf/bip49/__init__.py +3 -0
  67. coinex/ccxt/static_dependencies/bip/conf/bip49/bip49_coins.py +53 -0
  68. coinex/ccxt/static_dependencies/bip/conf/bip49/bip49_conf.py +366 -0
  69. coinex/ccxt/static_dependencies/bip/conf/bip49/bip49_conf_getter.py +80 -0
  70. coinex/ccxt/static_dependencies/bip/conf/bip84/__init__.py +3 -0
  71. coinex/ccxt/static_dependencies/bip/conf/bip84/bip84_coins.py +39 -0
  72. coinex/ccxt/static_dependencies/bip/conf/bip84/bip84_conf.py +113 -0
  73. coinex/ccxt/static_dependencies/bip/conf/bip84/bip84_conf_getter.py +66 -0
  74. coinex/ccxt/static_dependencies/bip/conf/bip86/__init__.py +3 -0
  75. coinex/ccxt/static_dependencies/bip/conf/bip86/bip86_coins.py +37 -0
  76. coinex/ccxt/static_dependencies/bip/conf/bip86/bip86_conf.py +83 -0
  77. coinex/ccxt/static_dependencies/bip/conf/bip86/bip86_conf_getter.py +64 -0
  78. coinex/ccxt/static_dependencies/bip/conf/common/__init__.py +8 -0
  79. coinex/ccxt/static_dependencies/bip/conf/common/atom_addr.py +104 -0
  80. coinex/ccxt/static_dependencies/bip/conf/common/bip_bitcoin_cash_conf.py +106 -0
  81. coinex/ccxt/static_dependencies/bip/conf/common/bip_coin_conf.py +217 -0
  82. coinex/ccxt/static_dependencies/bip/conf/common/bip_coins.py +28 -0
  83. coinex/ccxt/static_dependencies/bip/conf/common/bip_conf_const.py +30 -0
  84. coinex/ccxt/static_dependencies/bip/conf/common/bip_litecoin_conf.py +121 -0
  85. coinex/ccxt/static_dependencies/bip/ecc/__init__.py +42 -0
  86. coinex/ccxt/static_dependencies/bip/ecc/common/__init__.py +0 -0
  87. coinex/ccxt/static_dependencies/bip/ecc/common/dummy_point.py +219 -0
  88. coinex/ccxt/static_dependencies/bip/ecc/common/ikeys.py +263 -0
  89. coinex/ccxt/static_dependencies/bip/ecc/common/ipoint.py +190 -0
  90. coinex/ccxt/static_dependencies/bip/ecc/conf.py +28 -0
  91. coinex/ccxt/static_dependencies/bip/ecc/curve/__init__.py +0 -0
  92. coinex/ccxt/static_dependencies/bip/ecc/curve/elliptic_curve.py +121 -0
  93. coinex/ccxt/static_dependencies/bip/ecc/curve/elliptic_curve_getter.py +74 -0
  94. coinex/ccxt/static_dependencies/bip/ecc/curve/elliptic_curve_types.py +37 -0
  95. coinex/ccxt/static_dependencies/bip/ecc/ecdsa/__init__.py +0 -0
  96. coinex/ccxt/static_dependencies/bip/ecc/ecdsa/ecdsa_keys.py +36 -0
  97. coinex/ccxt/static_dependencies/bip/ecc/secp256k1/__init__.py +0 -0
  98. coinex/ccxt/static_dependencies/bip/ecc/secp256k1/secp256k1.py +36 -0
  99. coinex/ccxt/static_dependencies/bip/ecc/secp256k1/secp256k1_const.py +59 -0
  100. coinex/ccxt/static_dependencies/bip/ecc/secp256k1/secp256k1_keys_ecdsa.py +248 -0
  101. coinex/ccxt/static_dependencies/bip/ecc/secp256k1/secp256k1_point_ecdsa.py +234 -0
  102. coinex/ccxt/static_dependencies/bip/slip/__init__.py +0 -0
  103. coinex/ccxt/static_dependencies/bip/slip/slip173/__init__.py +1 -0
  104. coinex/ccxt/static_dependencies/bip/slip/slip173/slip173.py +60 -0
  105. coinex/ccxt/static_dependencies/bip/slip/slip32/__init__.py +4 -0
  106. coinex/ccxt/static_dependencies/bip/slip/slip32/slip32.py +322 -0
  107. coinex/ccxt/static_dependencies/bip/slip/slip32/slip32_key_net_ver.py +62 -0
  108. coinex/ccxt/static_dependencies/bip/slip/slip44/__init__.py +1 -0
  109. coinex/ccxt/static_dependencies/bip/slip/slip44/slip44.py +81 -0
  110. coinex/ccxt/static_dependencies/bip/utils/__init__.py +0 -0
  111. coinex/ccxt/static_dependencies/bip/utils/conf/__init__.py +1 -0
  112. coinex/ccxt/static_dependencies/bip/utils/conf/coin_names.py +59 -0
  113. coinex/ccxt/static_dependencies/bip/utils/crypto/__init__.py +10 -0
  114. coinex/ccxt/static_dependencies/bip/utils/crypto/aes_ecb.py +152 -0
  115. coinex/ccxt/static_dependencies/bip/utils/crypto/blake2.py +191 -0
  116. coinex/ccxt/static_dependencies/bip/utils/crypto/chacha20_poly1305.py +101 -0
  117. coinex/ccxt/static_dependencies/bip/utils/crypto/hash160.py +57 -0
  118. coinex/ccxt/static_dependencies/bip/utils/crypto/hmac.py +118 -0
  119. coinex/ccxt/static_dependencies/bip/utils/crypto/pbkdf2.py +66 -0
  120. coinex/ccxt/static_dependencies/bip/utils/crypto/ripemd.py +58 -0
  121. coinex/ccxt/static_dependencies/bip/utils/crypto/scrypt.py +66 -0
  122. coinex/ccxt/static_dependencies/bip/utils/crypto/sha2.py +182 -0
  123. coinex/ccxt/static_dependencies/bip/utils/crypto/sha3.py +99 -0
  124. coinex/ccxt/static_dependencies/bip/utils/misc/__init__.py +7 -0
  125. coinex/ccxt/static_dependencies/bip/utils/misc/algo.py +108 -0
  126. coinex/ccxt/static_dependencies/bip/utils/misc/base32.py +151 -0
  127. coinex/ccxt/static_dependencies/bip/utils/misc/bit.py +115 -0
  128. coinex/ccxt/static_dependencies/bip/utils/misc/bytes.py +200 -0
  129. coinex/ccxt/static_dependencies/bip/utils/misc/data_bytes.py +181 -0
  130. coinex/ccxt/static_dependencies/bip/utils/misc/integer.py +97 -0
  131. coinex/ccxt/static_dependencies/bip/utils/misc/string.py +54 -0
  132. coinex/ccxt/static_dependencies/bip/utils/typing/__init__.py +1 -0
  133. coinex/ccxt/static_dependencies/bip/utils/typing/literal.py +27 -0
  134. coinex/ccxt/static_dependencies/bip/wif/__init__.py +1 -0
  135. coinex/ccxt/static_dependencies/bip/wif/wif.py +144 -0
  136. coinex/ccxt/static_dependencies/dydx_v4_client/amino/amino_pb2.py +31 -0
  137. coinex/ccxt/static_dependencies/dydx_v4_client/cosmos/base/v1beta1/coin_pb2.py +47 -0
  138. coinex/ccxt/static_dependencies/dydx_v4_client/cosmos/crypto/multisig/keys_pb2.py +33 -0
  139. coinex/ccxt/static_dependencies/dydx_v4_client/cosmos/crypto/multisig/v1beta1/multisig_pb2.py +33 -0
  140. coinex/ccxt/static_dependencies/dydx_v4_client/cosmos/crypto/secp256k1/keys_pb2.py +34 -0
  141. coinex/ccxt/static_dependencies/dydx_v4_client/cosmos/msg/v1/msg_pb2.py +27 -0
  142. coinex/ccxt/static_dependencies/dydx_v4_client/cosmos/tx/signing/v1beta1/signing_pb2.py +38 -0
  143. coinex/ccxt/static_dependencies/dydx_v4_client/cosmos/tx/v1beta1/tx_pb2.py +75 -0
  144. coinex/ccxt/static_dependencies/dydx_v4_client/cosmos_proto/cosmos_pb2.py +36 -0
  145. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/accountplus/accountplus_pb2.py +31 -0
  146. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/accountplus/genesis_pb2.py +40 -0
  147. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/accountplus/models_pb2.py +26 -0
  148. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/accountplus/params_pb2.py +29 -0
  149. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/accountplus/query_pb2.py +57 -0
  150. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/accountplus/tx_pb2.py +51 -0
  151. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/block_rate_limit_config_pb2.py +37 -0
  152. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/clob_pair_pb2.py +41 -0
  153. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/equity_tier_limit_config_pb2.py +35 -0
  154. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/finalize_block_pb2.py +27 -0
  155. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/liquidations_config_pb2.py +39 -0
  156. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/liquidations_pb2.py +38 -0
  157. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/matches_pb2.py +55 -0
  158. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/mev_pb2.py +49 -0
  159. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/operation_pb2.py +32 -0
  160. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/order_pb2.py +86 -0
  161. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/order_removals_pb2.py +32 -0
  162. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/process_proposer_matches_events_pb2.py +42 -0
  163. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/query_pb2.py +124 -0
  164. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/streaming_pb2.py +29 -0
  165. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/tx_pb2.py +117 -0
  166. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/sending/genesis_pb2.py +26 -0
  167. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/sending/query_pb2.py +26 -0
  168. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/sending/transfer_pb2.py +61 -0
  169. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/sending/tx_pb2.py +37 -0
  170. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/subaccounts/asset_position_pb2.py +29 -0
  171. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/subaccounts/genesis_pb2.py +30 -0
  172. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/subaccounts/perpetual_position_pb2.py +33 -0
  173. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/subaccounts/query_pb2.py +63 -0
  174. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/subaccounts/streaming_pb2.py +31 -0
  175. coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/subaccounts/subaccount_pb2.py +33 -0
  176. coinex/ccxt/static_dependencies/dydx_v4_client/gogoproto/gogo_pb2.py +102 -0
  177. coinex/ccxt/static_dependencies/dydx_v4_client/registry.py +38 -0
  178. coinex/ccxt/static_dependencies/ecdsa/ellipticcurve.py +842 -0
  179. coinex/ccxt/static_dependencies/ecdsa/keys.py +15 -4
  180. coinex/ccxt/static_dependencies/mnemonic/__init__.py +4 -0
  181. coinex/ccxt/static_dependencies/mnemonic/mnemonic.py +282 -0
  182. coinex/ccxt/static_dependencies/mnemonic/py.typed +1 -0
  183. coinex/ccxt/static_dependencies/mnemonic/wordlist/chinese_simplified.txt +2048 -0
  184. coinex/ccxt/static_dependencies/mnemonic/wordlist/chinese_traditional.txt +2048 -0
  185. coinex/ccxt/static_dependencies/mnemonic/wordlist/czech.txt +2048 -0
  186. coinex/ccxt/static_dependencies/mnemonic/wordlist/english.txt +2048 -0
  187. coinex/ccxt/static_dependencies/mnemonic/wordlist/french.txt +2048 -0
  188. coinex/ccxt/static_dependencies/mnemonic/wordlist/italian.txt +2048 -0
  189. coinex/ccxt/static_dependencies/mnemonic/wordlist/japanese.txt +2048 -0
  190. coinex/ccxt/static_dependencies/mnemonic/wordlist/korean.txt +2048 -0
  191. coinex/ccxt/static_dependencies/mnemonic/wordlist/portuguese.txt +2048 -0
  192. coinex/ccxt/static_dependencies/mnemonic/wordlist/russian.txt +2048 -0
  193. coinex/ccxt/static_dependencies/mnemonic/wordlist/spanish.txt +2048 -0
  194. coinex/ccxt/static_dependencies/mnemonic/wordlist/turkish.txt +2048 -0
  195. {coinex_api-0.0.89.dist-info → coinex_api-0.0.110.dist-info}/METADATA +3 -3
  196. {coinex_api-0.0.89.dist-info → coinex_api-0.0.110.dist-info}/RECORD +197 -17
  197. {coinex_api-0.0.89.dist-info → coinex_api-0.0.110.dist-info}/WHEEL +1 -1
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: coinex-api
3
- Version: 0.0.89
3
+ Version: 0.0.110
4
4
  Summary: coinex crypto exchange api client
5
5
  Project-URL: Homepage, https://github.com/ccxt/ccxt
6
6
  Project-URL: Issues, https://github.com/ccxt/ccxt
@@ -153,7 +153,7 @@ You can also construct custom requests to available "implicit" endpoints
153
153
  - `fetch_margin_balance(self, params={})`
154
154
  - `fetch_markets(self, params={})`
155
155
  - `fetch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
156
- - `fetch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={})`
156
+ - `fetch_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={})`
157
157
  - `fetch_open_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
158
158
  - `fetch_order_book(self, symbol: str, limit: Int = 20, params={})`
159
159
  - `fetch_order(self, id: str, symbol: Str = None, params={})`
@@ -176,7 +176,7 @@ You can also construct custom requests to available "implicit" endpoints
176
176
  - `borrow_isolated_margin(self, symbol: str, code: str, amount: float, params={})`
177
177
  - `cancel_all_orders(self, symbol: Str = None, params={})`
178
178
  - `cancel_order(self, id: str, symbol: Str = None, params={})`
179
- - `cancel_orders(self, ids, symbol: Str = None, params={})`
179
+ - `cancel_orders(self, ids: List[str], symbol: Str = None, params={})`
180
180
  - `close_position(self, symbol: str, side: OrderSide = None, params={})`
181
181
  - `describe(self)`
182
182
  - `edit_order(self, id: str, symbol: str, type: OrderType, side: OrderSide, amount: Num = None, price: Num = None, params={})`
@@ -1,15 +1,15 @@
1
1
  coinex/__init__.py,sha256=d633U2PpNFHvpDWLb3lItS0ObcBN0E2XgS5QkOEejI8,246
2
- coinex/ccxt/__init__.py,sha256=97ddXG-ZhPaeH5uw00GItYQ9Rv_sbppkMr95hDI9fAg,6130
3
- coinex/ccxt/coinex.py,sha256=GNqLhiIrwvRjtVGgwHI_no_RxjPK4E0vg90F-kGHQWA,270314
2
+ coinex/ccxt/__init__.py,sha256=WZqvBwE-9vbSIp4LU4Bf7FOUi1X-LU1jFavtwC_6S8A,6131
3
+ coinex/ccxt/coinex.py,sha256=VqutrPqA0bMfkCFJr4vwkM-46UIz0JwdMdmvCWdtYaM,270332
4
4
  coinex/ccxt/abstract/coinex.py,sha256=4TRXtWgONqkm3eSL55Y5T7Q4QxJrnOTuhP0ugsKHAWo,34856
5
- coinex/ccxt/async_support/__init__.py,sha256=W55RLGSe8zNP10HJDQeiwYYHmlyiTL2V83_0LWO2GC8,4863
6
- coinex/ccxt/async_support/coinex.py,sha256=IfL7Z4SeWlAdrNs7T-fpRLlUN_DRe_QrUhkDJBt_24U,271620
5
+ coinex/ccxt/async_support/__init__.py,sha256=FxYvsI8uwqvRQITEz5Te5BDmZ2sQGlOZu56iyAOIyPI,4864
6
+ coinex/ccxt/async_support/coinex.py,sha256=18GEGxrF8u9zEUDehoC6XKbOX3qaDoTUW1D8uRDkcrw,271638
7
7
  coinex/ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
8
- coinex/ccxt/async_support/base/exchange.py,sha256=zcjR7MUn8V80r5FKX8ifKeOXMg7cNSuEfxbhZ6PLteY,121432
9
- coinex/ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
8
+ coinex/ccxt/async_support/base/exchange.py,sha256=HmDiR9YEUoair8PX0gOhhESZSIDmRMEen4Gmsy6MNLw,129025
9
+ coinex/ccxt/async_support/base/throttler.py,sha256=SR1JdHbXgkkRps_YBP7QxVREHsBN1Gbpm5gx_YuMa5g,1841
10
10
  coinex/ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
11
- coinex/ccxt/async_support/base/ws/cache.py,sha256=xf2VOtfUwloxSlIQ39M1RGZHWQzyS9IGhB5NX6cDcAc,8370
12
- coinex/ccxt/async_support/base/ws/client.py,sha256=GZmtA-oYJUtBA063mEF_zxDPtAm-7WsISJTffFalJyo,13735
11
+ coinex/ccxt/async_support/base/ws/cache.py,sha256=CQsIMBhSzH-U_eKnCkUCQZ_FmsDH7H4ILVrOt3_yLBk,8396
12
+ coinex/ccxt/async_support/base/ws/client.py,sha256=sbj7ViCdqQ0FPv7ILtsVYaXjTFNajq9jKH78ZK2KH4g,14736
13
13
  coinex/ccxt/async_support/base/ws/functions.py,sha256=qwvEnjtINWL5ZU-dbbeIunjyBxzFqbGWHfVhxqAcKug,1499
14
14
  coinex/ccxt/async_support/base/ws/future.py,sha256=hjdQ42zkfju5nar0GpTLJ4zXQBtgBU8DzYM5uPFcjsE,1450
15
15
  coinex/ccxt/async_support/base/ws/order_book.py,sha256=uBUaIHhzMRykpmo4BCsdJ-t_HozS6VxhEs8x-Kbj-NI,2894
@@ -17,20 +17,185 @@ coinex/ccxt/async_support/base/ws/order_book_side.py,sha256=GhnGUt78pJ-AYL_Dq9pr
17
17
  coinex/ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
18
18
  coinex/ccxt/base/decimal_to_precision.py,sha256=3XI30u9YudHbTA438397u5rkdlXa3atxwZEfUus3C4k,6803
19
19
  coinex/ccxt/base/errors.py,sha256=OGhWNvNtRlJOzFx-n1x3ZjTnaPpfWH0Vc0xACS-MeDw,5012
20
- coinex/ccxt/base/exchange.py,sha256=pEYq-RPWeigwt4gmtNlP-wF7G-KD4NsY28n6YYIvBTE,338594
20
+ coinex/ccxt/base/exchange.py,sha256=HFse-QFNGtcGzT64thGNQh_uSWPXkRNDdk8gMPpa1kk,361634
21
21
  coinex/ccxt/base/precise.py,sha256=koce64Yrp6vFbGijJtUt-QQ6XhJgeGTCksZ871FPp_A,8886
22
- coinex/ccxt/base/types.py,sha256=Gvbogh9i7pPH7Z18xesYeDPribqqwq8uKpOv-YODFBs,11505
23
- coinex/ccxt/pro/__init__.py,sha256=CDCfItxQR49X9faxMm-Vye6X2IY2Hxl6O6M5M_2HeqQ,4177
24
- coinex/ccxt/pro/coinex.py,sha256=08fXjB39W8n9XlvMFUfQUznik17J9W8j7Lvgwn0qWLA,56711
22
+ coinex/ccxt/base/types.py,sha256=GcSXBpT0x6PyTFfmcL3XVjdPQm_3mTV-zesS_40DKpI,11681
23
+ coinex/ccxt/pro/__init__.py,sha256=h_JKEJCqdl2cTmKIni5w4P26ai-Cm44wGpJ68DhpT6A,4178
24
+ coinex/ccxt/pro/coinex.py,sha256=3-fW0C_pFkPJQ4mdHdR8pgpWJkwgWzv-Tpx62-STC7M,56790
25
25
  coinex/ccxt/static_dependencies/README.md,sha256=3TCvhhn09_Cqf9BDDpao1V7EfKHDpQ6k9oWRsLFixpU,18
26
26
  coinex/ccxt/static_dependencies/__init__.py,sha256=tzFje8cloqmiIE6kola3EaYC0SnD1izWnri69hzHsSw,168
27
+ coinex/ccxt/static_dependencies/bip/__init__.py,sha256=NV7FKPDad0mq6I1V_JbJWnof2tQ-Ln-par3O9yCIbw8,131
28
+ coinex/ccxt/static_dependencies/bip/addr/P2PKH_addr.py,sha256=Dco9ZCTF9GwC2jzbTg_SJNGBFa8xHaYHlDnWdaids4k,7121
29
+ coinex/ccxt/static_dependencies/bip/addr/__init__.py,sha256=SqmYSclKu5Llw1Stjgg8G5Z8-he4ajtn7imuNCszuR8,196
30
+ coinex/ccxt/static_dependencies/bip/addr/addr_dec_utils.py,sha256=U8LKfG62yetXX6tUeLviwYVsqDT1zHQz71kOvqcPWgE,4650
31
+ coinex/ccxt/static_dependencies/bip/addr/addr_key_validator.py,sha256=5o8ME_LNkDT8dBiL0GcAHsrj0tFgWz1SxiuEIcCCW1Y,5999
32
+ coinex/ccxt/static_dependencies/bip/addr/iaddr_decoder.py,sha256=zVWNI9p-nrxjp9qGWIF4s9GaItS4n-pw0FiIyZPWo-g,1833
33
+ coinex/ccxt/static_dependencies/bip/addr/iaddr_encoder.py,sha256=v1rGdUfy3i5XAmSoSOvkyDRtcBk1uE6MmgqFDP6dF9c,1924
34
+ coinex/ccxt/static_dependencies/bip/base58/__init__.py,sha256=S8NqKtuC7Ob7FOdmZFtdgm3frSr36Ug-1_Cw5f2zjYQ,168
35
+ coinex/ccxt/static_dependencies/bip/base58/base58.py,sha256=JmUut1G9hSqXKK9zV7lPw5d77iiRv7Ug2QuQR1Fdlts,6874
36
+ coinex/ccxt/static_dependencies/bip/base58/base58_ex.py,sha256=2Qt5k7DK-LF8ZbEnwomVsGEaZbeeyTiMzG5iV79CThg,1222
37
+ coinex/ccxt/static_dependencies/bip/base58/base58_xmr.py,sha256=ZW1ATvoer4odnZVbJ7PSjLvv8Dj9OgHcLmFxK6azS84,5291
38
+ coinex/ccxt/static_dependencies/bip/bech32/__init__.py,sha256=a_hJd-1JB1FfwGukSdpy33dGXoxMtB2wVG2dVmQR3r8,219
39
+ coinex/ccxt/static_dependencies/bip/bech32/bch_bech32.py,sha256=jcyAb4fUqRryiUs5N12h4_2mKWDST05OGko85qvdD4E,6619
40
+ coinex/ccxt/static_dependencies/bip/bech32/bech32.py,sha256=JQSx2WBDy5aPYJ_QzFylW6N7B30v1FlP64A0Zj73iB0,7213
41
+ coinex/ccxt/static_dependencies/bip/bech32/bech32_base.py,sha256=is4UZqegtRawrLb6RBQL_13Fw53I2XywCMXhU44ayRw,7979
42
+ coinex/ccxt/static_dependencies/bip/bech32/bech32_ex.py,sha256=21_E5MFSCrZbgbyznKAANIDQWdLkSHo0l9MPOa1oPwA,1222
43
+ coinex/ccxt/static_dependencies/bip/bech32/segwit_bech32.py,sha256=YMhTb6LVDBi1oQ3diPDrENgh9EDZRZ9ktRu9qBGKSQ4,6051
44
+ coinex/ccxt/static_dependencies/bip/bip32/__init__.py,sha256=nolqjLscUDqTgbgE6NVdWVN58dFDRvNC0A383QyH1fI,635
45
+ coinex/ccxt/static_dependencies/bip/bip32/bip32_const.py,sha256=cK5tWqsx-FVw4oeyfYmIRWClJBYRqg5tlUTgseKB_pM,1783
46
+ coinex/ccxt/static_dependencies/bip/bip32/bip32_ex.py,sha256=woSfnSJYSk0dDbJWKoF8Org1r3cji8az5fNg-3G2cdc,1289
47
+ coinex/ccxt/static_dependencies/bip/bip32/bip32_key_data.py,sha256=WBN7DkrANkuFRAwmdt9kI0htY_9ye7JAPzOrUbvqDKg,13542
48
+ coinex/ccxt/static_dependencies/bip/bip32/bip32_key_net_ver.py,sha256=XIXfK6RDz3jWryNaaXxkQmJxjGRQfqOXm6Nxg8YRdpI,2611
49
+ coinex/ccxt/static_dependencies/bip/bip32/bip32_key_ser.py,sha256=30UhnmZw_4E0AfWlzmYFx8og_5b3A3A1fOYbGtQ8pQY,10141
50
+ coinex/ccxt/static_dependencies/bip/bip32/bip32_keys.py,sha256=kqiwkz5TY6dPOdZzc49JW_K-l_Jsw3LFCm7V9RFP9Lg,14626
51
+ coinex/ccxt/static_dependencies/bip/bip32/bip32_path.py,sha256=QrMdKDhfQyhiXzYPGFQHhYSrsmkx0SeLMsABuouVTHk,7143
52
+ coinex/ccxt/static_dependencies/bip/bip32/bip32_utils.py,sha256=gCdeieoKFofYEJqYA6wY7aIOY1k9K5UtDK6axmJ8A1k,2255
53
+ coinex/ccxt/static_dependencies/bip/bip32/base/__init__.py,sha256=nkHdYjQcUGZNHDZegG2CSgw1T5Y0a02kqGac6mUa7xo,147
54
+ coinex/ccxt/static_dependencies/bip/bip32/base/bip32_base.py,sha256=wDVrEv9VuVgqUbXfIrd5DiGg-nKg4b5_Urng6yFWKPM,20184
55
+ coinex/ccxt/static_dependencies/bip/bip32/base/ibip32_key_derivator.py,sha256=OYCPY1OXidq7wXZcRPoRdfPswqAsjHz5JczB5y2_dWo,3004
56
+ coinex/ccxt/static_dependencies/bip/bip32/base/ibip32_mst_key_generator.py,sha256=QDoLmvboHS3XqEiu02BGWbVNar86RheHW0ztVshnIm8,1850
57
+ coinex/ccxt/static_dependencies/bip/bip32/kholaw/__init__.py,sha256=j8v39jcwah6FLAibDGb5UbeJZ9lLRdg1bCtdnaS02mg,346
58
+ coinex/ccxt/static_dependencies/bip/bip32/kholaw/bip32_kholaw_ed25519.py,sha256=10f5KqXihO3xUxx6x5JdsmNdRxiS7hiO8kmO7nNAlwI,2916
59
+ coinex/ccxt/static_dependencies/bip/bip32/kholaw/bip32_kholaw_ed25519_key_derivator.py,sha256=-W68Ll49YlodtcQDBN1gQRZppyuXrFRt1GZNLp8SK_4,4648
60
+ coinex/ccxt/static_dependencies/bip/bip32/kholaw/bip32_kholaw_key_derivator_base.py,sha256=TC7-SIYNHG01J17SmOZep7Gd_eKfYxsUKu78G2JVwSE,7783
61
+ coinex/ccxt/static_dependencies/bip/bip32/kholaw/bip32_kholaw_mst_key_generator.py,sha256=7rvzWibAeLEikDVJfVNcLf9Dh5vxvzxrM73eMm605XQ,4726
62
+ coinex/ccxt/static_dependencies/bip/bip32/slip10/__init__.py,sha256=tqAyJeigqQ4dcQ8TgCS33nbjwYQvrTwjK21UqBJyiek,73
63
+ coinex/ccxt/static_dependencies/bip/bip32/slip10/bip32_slip10_key_derivator.py,sha256=u4XtTvGj8U2LNnHW15OBbhyXb15N78_EL-gEYHwxGgs,7338
64
+ coinex/ccxt/static_dependencies/bip/bip32/slip10/bip32_slip10_mst_key_generator.py,sha256=7LufYb7I_hQgVkcSU9PzAeCDGfeAjXi_m8EemZL-kzY,6508
65
+ coinex/ccxt/static_dependencies/bip/bip32/slip10/bip32_slip10_secp256k1.py,sha256=lQTtDtJshqWUOL2d5tPzItGukY__XTwfXAtUoJzPj5k,2871
66
+ coinex/ccxt/static_dependencies/bip/bip44/__init__.py,sha256=EzEZ1Qb-YCoW8MIMX-RjzY_KxfCj5v4kenFPY3LTE8M,25
67
+ coinex/ccxt/static_dependencies/bip/bip44/bip44.py,sha256=dBMCUV0fl7hmBxxNJ0uJjJYpqn84VoKGBvNLboYwMYQ,9398
68
+ coinex/ccxt/static_dependencies/bip/bip44_base/__init__.py,sha256=kPGqzLvBqy8ZTShorsHacQWb0MeKey3op3-dpLZzl_4,160
69
+ coinex/ccxt/static_dependencies/bip/bip44_base/bip44_base.py,sha256=MdcV96AWpgHCuiVQ2J_g6S_-OXE_oaOObW82e85kl4g,21198
70
+ coinex/ccxt/static_dependencies/bip/bip44_base/bip44_base_ex.py,sha256=VLW6xR5Fi9Hue-e8ZkIRSHk1APneZl1j236qKuTjrPc,1230
71
+ coinex/ccxt/static_dependencies/bip/bip44_base/bip44_keys.py,sha256=be9_PAUgea-IOsOd26Ch3d_ANLqpf_skO5aei-vQPME,7038
72
+ coinex/ccxt/static_dependencies/bip/coin_conf/__init__.py,sha256=e6_7AwGhiDJx00iRowXn-aVyJUUVBXcfuhVXM5QH5w4,66
73
+ coinex/ccxt/static_dependencies/bip/coin_conf/coin_conf.py,sha256=qsDCcq5w7hstfzpZIZW9363xAJCmwFBnJTp92Esz1ag,2182
74
+ coinex/ccxt/static_dependencies/bip/coin_conf/coins_conf.py,sha256=TnP2kQzEbO2SEU90pR-Ew_3Ub3abp8RzoDaf4ZaMnec,26321
75
+ coinex/ccxt/static_dependencies/bip/conf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
76
+ coinex/ccxt/static_dependencies/bip/conf/bip44/__init__.py,sha256=eiYiIKiL5sjhB5EC26YjwxAEC2aLFqDkTpD76OvErCs,121
77
+ coinex/ccxt/static_dependencies/bip/conf/bip44/bip44_coins.py,sha256=VuIGEmgoy5F5_T-1Yfn1ydcWB-_XyxCmOzDCO2HXNeY,3582
78
+ coinex/ccxt/static_dependencies/bip/conf/bip44/bip44_conf.py,sha256=k87fTAv8m51tAtFl6NZemhkTLV3ZrEoe8NbAwtSkEgw,47947
79
+ coinex/ccxt/static_dependencies/bip/conf/bip44/bip44_conf_getter.py,sha256=FuFyOgAI-XUnsp4FSUS9Eg8KKSZiiyGbTYnTG_ucitc,7169
80
+ coinex/ccxt/static_dependencies/bip/conf/bip49/__init__.py,sha256=K53a-NZsGmZUfOn3BTFJuERhCSnqI4EJJPohrt-iBko,189
81
+ coinex/ccxt/static_dependencies/bip/conf/bip49/bip49_coins.py,sha256=pBkAo9-0VI_WG14ioi0nhP2OfvBLd0TDu7ko_DbGMJY,1831
82
+ coinex/ccxt/static_dependencies/bip/conf/bip49/bip49_conf.py,sha256=UsHKB1N7qNfLQkem7t0ulwX00DdaHPkCse8FeLWO5a4,15396
83
+ coinex/ccxt/static_dependencies/bip/conf/bip49/bip49_conf_getter.py,sha256=VHLKUpDWtQLjhQN2MkcGv5bA-bkzgVxSn2-w4E4GCr0,3362
84
+ coinex/ccxt/static_dependencies/bip/conf/bip84/__init__.py,sha256=Izje_jPPi1fNRwywWJz59Skyi1OORfdbkbbAoTswi5E,189
85
+ coinex/ccxt/static_dependencies/bip/conf/bip84/bip84_coins.py,sha256=u86ySKxoGScWQwlDzmHgrhuLHxXe9NvGqgXoEVTbTk4,1459
86
+ coinex/ccxt/static_dependencies/bip/conf/bip84/bip84_conf.py,sha256=7zX-p-_MiJJEV6lgam4rLf694BOj3TyoKHTnpovA_ng,4834
87
+ coinex/ccxt/static_dependencies/bip/conf/bip84/bip84_conf_getter.py,sha256=SxOEKclchYbZPsmlYbW5xGlotsYvlWwvVye70cT_oL8,2514
88
+ coinex/ccxt/static_dependencies/bip/conf/bip86/__init__.py,sha256=xzeAgzXQoOgE1lf97FkgQf3zWFoNdTa5BHYzxovkJb4,189
89
+ coinex/ccxt/static_dependencies/bip/conf/bip86/bip86_coins.py,sha256=lqy2Y6xvjFdBptrDiLMo0swM2If8wV7quwRbWShbS00,1407
90
+ coinex/ccxt/static_dependencies/bip/conf/bip86/bip86_conf.py,sha256=jk3SjgEwROSZWKFgs0mAFBzXjUatyv4owRnYcz15sJY,3430
91
+ coinex/ccxt/static_dependencies/bip/conf/bip86/bip86_conf_getter.py,sha256=lZ8h6Xe_LZuFSmRbke8lq5IdYRaPH47ClR0WgF5wIZc,2394
92
+ coinex/ccxt/static_dependencies/bip/conf/common/__init__.py,sha256=bwQasIv2klJBMrARETzzHb88bhOj0zDiGGMWXWvrA3E,373
93
+ coinex/ccxt/static_dependencies/bip/conf/common/atom_addr.py,sha256=0eTlRtk54Z2giyCAZ21Qc4RZT7SMRdwyWfOTJ5OPwNM,3442
94
+ coinex/ccxt/static_dependencies/bip/conf/common/bip_bitcoin_cash_conf.py,sha256=480UwQa5TO2dGlIuZb1dIKGWpTAC8ac9Rgi5q2fBsfY,4252
95
+ coinex/ccxt/static_dependencies/bip/conf/common/bip_coin_conf.py,sha256=6VCWKUt5HnrVTo_Xzp4y_oycXyyczYDFGfoFpEFIJeU,6834
96
+ coinex/ccxt/static_dependencies/bip/conf/common/bip_coins.py,sha256=kfIs6cceB8VK1WoG5fnmKNoWsd4sy4ahBrBt5qmZoew,1232
97
+ coinex/ccxt/static_dependencies/bip/conf/common/bip_conf_const.py,sha256=eLwJMPZSGXR2hLyso1nK02Wqp-DsJyQ70hI-wSASiGY,1439
98
+ coinex/ccxt/static_dependencies/bip/conf/common/bip_litecoin_conf.py,sha256=GSm590zM5I_RNjoXE9QnVjAReujsURxaW2OFW5JNO64,4955
99
+ coinex/ccxt/static_dependencies/bip/ecc/__init__.py,sha256=xP5gVz30iQGfxauGEGbZk-QbyJAhHpurYR6u3A2uCXg,1717
100
+ coinex/ccxt/static_dependencies/bip/ecc/conf.py,sha256=BssT7DDledif4Hz3vYS9sW2gq1_tMMdqDjwXIkKFY70,1288
101
+ coinex/ccxt/static_dependencies/bip/ecc/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
102
+ coinex/ccxt/static_dependencies/bip/ecc/common/dummy_point.py,sha256=jouHegwS2VUamtWrNsaiDj_XqZMcO0Tr_puyHZpKhM0,5774
103
+ coinex/ccxt/static_dependencies/bip/ecc/common/ikeys.py,sha256=O9oF1A8lnGj5_ZfnPAYBdXpLUQQQR3tlRADcsiU8Wk4,6352
104
+ coinex/ccxt/static_dependencies/bip/ecc/common/ipoint.py,sha256=4vgQI70rbkRL5Dj4Hkxlx40KP5tRWzsHcaXYVDkA50w,4610
105
+ coinex/ccxt/static_dependencies/bip/ecc/curve/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
106
+ coinex/ccxt/static_dependencies/bip/ecc/curve/elliptic_curve.py,sha256=jbV76VelbJzF5jFDFD6PE8z37QM2v_fsvoNpDPSuDkw,3706
107
+ coinex/ccxt/static_dependencies/bip/ecc/curve/elliptic_curve_getter.py,sha256=PVgEMQFuc8Dzq0y4uPsZwaLE11P8c5w24b7N9YxVvZE,2963
108
+ coinex/ccxt/static_dependencies/bip/ecc/curve/elliptic_curve_types.py,sha256=w_P8mS0vOileNFK1LCJ4OQ8x1cu6-1Prxfntz00F5fU,1449
109
+ coinex/ccxt/static_dependencies/bip/ecc/ecdsa/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
110
+ coinex/ccxt/static_dependencies/bip/ecc/ecdsa/ecdsa_keys.py,sha256=0R1UTvFxMeJm5jmGw8t3aHewrPeHfpf50QhzajsoRHQ,1623
111
+ coinex/ccxt/static_dependencies/bip/ecc/secp256k1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
112
+ coinex/ccxt/static_dependencies/bip/ecc/secp256k1/secp256k1.py,sha256=5oYgVT-g8DGpzt76zkNAiccUIZkyJtcZVzDYwVr1vS8,1712
113
+ coinex/ccxt/static_dependencies/bip/ecc/secp256k1/secp256k1_const.py,sha256=AbB4vUUX-VVi8khgXI72bw8xxOpscZasO_XDikKLhRw,2051
114
+ coinex/ccxt/static_dependencies/bip/ecc/secp256k1/secp256k1_keys_ecdsa.py,sha256=HV18mlQGM5U53h7Kh2KmAyWzWs03izjBvyLQQQdPxpo,6947
115
+ coinex/ccxt/static_dependencies/bip/ecc/secp256k1/secp256k1_point_ecdsa.py,sha256=I7ReXeIeCdwIyKsyYxbkG18NACFFHlKVHdwCIrtzaJs,6761
116
+ coinex/ccxt/static_dependencies/bip/slip/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
117
+ coinex/ccxt/static_dependencies/bip/slip/slip173/__init__.py,sha256=M8K5xniTV9lFkNTB7gtcGgXbkBuQVfmHj7QhyaNDinc,29
118
+ coinex/ccxt/static_dependencies/bip/slip/slip173/slip173.py,sha256=aioaFg3xua68GN7xZ-zlfXQthlp29tPYmTG8CKro3T4,2199
119
+ coinex/ccxt/static_dependencies/bip/slip/slip32/__init__.py,sha256=e28Rg0BGNxb3oeiumGSOO30xqUPfg1GMmSw8W9Llqek,223
120
+ coinex/ccxt/static_dependencies/bip/slip/slip32/slip32.py,sha256=GmUZkj75A5jT-yCeNClJ84U2slvVCeLv8gd-giL4a18,10892
121
+ coinex/ccxt/static_dependencies/bip/slip/slip32/slip32_key_net_ver.py,sha256=PIFaaudA_LlYvLFdpSXOhYHP2kefVAZlOa6jWAp4EXI,2023
122
+ coinex/ccxt/static_dependencies/bip/slip/slip44/__init__.py,sha256=eqMdxjh-T9wukV6k50obNQVLiAl8Jn8_EP2adrk4wTk,27
123
+ coinex/ccxt/static_dependencies/bip/slip/slip44/slip44.py,sha256=WYeFoTqOQhAbTXv473pm3qzzp6ayWnybr8VF9oMRN18,2498
124
+ coinex/ccxt/static_dependencies/bip/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
125
+ coinex/ccxt/static_dependencies/bip/utils/conf/__init__.py,sha256=pXQtbTUyuORXZenKE9bX6ljAMqYFwTpn9_6h8-yARF8,34
126
+ coinex/ccxt/static_dependencies/bip/utils/conf/coin_names.py,sha256=VOHAHhsKs8D3BQFYiRO4ZvW2KU2drVym-_mO6-0k92I,1822
127
+ coinex/ccxt/static_dependencies/bip/utils/crypto/__init__.py,sha256=b9r2TQqDBGvlT06UfFnYvZ6QIjbOW_J45RvRU-RBdjo,461
128
+ coinex/ccxt/static_dependencies/bip/utils/crypto/aes_ecb.py,sha256=wH0p2T-h7XdAettUQPAXLNMr9ED2LWE4rZUyTxxx-8M,3877
129
+ coinex/ccxt/static_dependencies/bip/utils/crypto/blake2.py,sha256=WW9eb-NBCmlXSI82-hI8uTI1HOXv1CB_6nmO_FynWoE,4984
130
+ coinex/ccxt/static_dependencies/bip/utils/crypto/chacha20_poly1305.py,sha256=mrm737eaTNr85kkRdxVZiCZ5RTVTY9N82nHjgU6u3Ss,3451
131
+ coinex/ccxt/static_dependencies/bip/utils/crypto/hash160.py,sha256=_rNMSsOBmY6YoP9xLjz5n09d_TEqEzqIPqiN4bmUadA,1843
132
+ coinex/ccxt/static_dependencies/bip/utils/crypto/hmac.py,sha256=xTxW0NpaWp7iPmkBuVLiFOPkltTF9z9N33IAL3xESLU,3690
133
+ coinex/ccxt/static_dependencies/bip/utils/crypto/pbkdf2.py,sha256=rnxVweftUvKqGXil2Dxck1yWuSg1S7hccok0KfJgmMk,2533
134
+ coinex/ccxt/static_dependencies/bip/utils/crypto/ripemd.py,sha256=MXGKkdYVxC9WeIoXmCoNLNEe3Cq9vP9EQH2zgMD-MxA,1855
135
+ coinex/ccxt/static_dependencies/bip/utils/crypto/scrypt.py,sha256=4ElZqkNUD12NEcQi9Y0ov73fdGjIGX26zPbVEl2W2es,2481
136
+ coinex/ccxt/static_dependencies/bip/utils/crypto/sha2.py,sha256=x3Xl0UpG-dh2wZ2Taqu3WwhHU0o415FAykZejQqwaZI,4640
137
+ coinex/ccxt/static_dependencies/bip/utils/crypto/sha3.py,sha256=QfbISUrIVrzDxRLSr9nickhQNcoq221SuSJwSSq8OvI,2984
138
+ coinex/ccxt/static_dependencies/bip/utils/misc/__init__.py,sha256=zmV9RXKLwihYyAWes5VoNggebxzX7xoe_jgq92VFi1g,233
139
+ coinex/ccxt/static_dependencies/bip/utils/misc/algo.py,sha256=YuZDXtLR00Z7cKA1arUGlLedLKgh0AAGeceTERGovh0,3350
140
+ coinex/ccxt/static_dependencies/bip/utils/misc/base32.py,sha256=n-x5PZ0BlbcrN7V0s0ywdJ8Hxk8J7VnRWAp1FK4HfLU,4699
141
+ coinex/ccxt/static_dependencies/bip/utils/misc/bit.py,sha256=gt16jqhyq8opcazg-LkV6Uu2Tx3U-dPS5oaCUzRjQM0,3314
142
+ coinex/ccxt/static_dependencies/bip/utils/misc/bytes.py,sha256=jucSu67_i2rd6rlXybg5ByCnxmkJUIacJ2IjzV3mIjo,6072
143
+ coinex/ccxt/static_dependencies/bip/utils/misc/data_bytes.py,sha256=LSGbn_lhTQhw-STYEgCzLPywqGkTo4QF-d-H0zjqPmE,4709
144
+ coinex/ccxt/static_dependencies/bip/utils/misc/integer.py,sha256=MyYh_d03g9FA_Kwq5_q2fo3to-oqfhi12l876fzTLQQ,3381
145
+ coinex/ccxt/static_dependencies/bip/utils/misc/string.py,sha256=zLNYYMKiyiZ4WjAsFjeG4hJ1TbNuCXYUNAQsDAmcDvU,1830
146
+ coinex/ccxt/static_dependencies/bip/utils/typing/__init__.py,sha256=9jGbRQm6zurO-WaeDJyGb0zWKH4QNdtcpc43j9al0_w,29
147
+ coinex/ccxt/static_dependencies/bip/utils/typing/literal.py,sha256=2sHpcIUjI4MUOCzn7zHbQ7OibEslnXZObRW0p5lt-NI,1345
148
+ coinex/ccxt/static_dependencies/bip/wif/__init__.py,sha256=7jVffi2slwVKJrq2aU-v3GTCDON1wSchT3pzU9AQkbk,56
149
+ coinex/ccxt/static_dependencies/bip/wif/wif.py,sha256=Vllvut3EAc90jVNvMUHqt0cchSHntE5nLNIU2JEVc6c,5440
150
+ coinex/ccxt/static_dependencies/dydx_v4_client/registry.py,sha256=gwRloJJOfyHtavMMigopl-g5WbMMSx4UlH2uUyxkSzo,1248
151
+ coinex/ccxt/static_dependencies/dydx_v4_client/amino/amino_pb2.py,sha256=rCMWDkKo_z60AOA0l0qrTIUd6JGFw7zuBkcgQENQBro,2121
152
+ coinex/ccxt/static_dependencies/dydx_v4_client/cosmos/base/v1beta1/coin_pb2.py,sha256=m1CIbvt_ywaIELshsK0tjIITj3gpBvaApALQMQnWclY,3238
153
+ coinex/ccxt/static_dependencies/dydx_v4_client/cosmos/crypto/multisig/keys_pb2.py,sha256=eaWVnFdnZxe1fWBxrFDbI6kI5ZxYqfu3oRJwQdFUaaE,2080
154
+ coinex/ccxt/static_dependencies/dydx_v4_client/cosmos/crypto/multisig/v1beta1/multisig_pb2.py,sha256=SjfkNAQ4vx8-QZ1-xlxJNTy1BtF4jANanJgqmLxPQTk,1735
155
+ coinex/ccxt/static_dependencies/dydx_v4_client/cosmos/crypto/secp256k1/keys_pb2.py,sha256=-LY_jqzfJZ1LK3q7y-pNu_u6Gr4Zx8jurcl0eQnq9oA,1885
156
+ coinex/ccxt/static_dependencies/dydx_v4_client/cosmos/msg/v1/msg_pb2.py,sha256=0I2zi3cCS-YKVqY8XVAMORU_IEpSnFWnfwPr6eIWmdk,1454
157
+ coinex/ccxt/static_dependencies/dydx_v4_client/cosmos/tx/signing/v1beta1/signing_pb2.py,sha256=Kjx8QyV5WrNV2VsKTQhhcZGNMMIB_ibdwg-7uxLQnD8,3131
158
+ coinex/ccxt/static_dependencies/dydx_v4_client/cosmos/tx/v1beta1/tx_pb2.py,sha256=bYZGx8eeVFGAb6SrZdKR0WvO1iOl0hmHNY_3nyo54n4,7230
159
+ coinex/ccxt/static_dependencies/dydx_v4_client/cosmos_proto/cosmos_pb2.py,sha256=IiltX4EM-y83nqOfmGIe7UOg726eAnhG-kdupgreChM,2770
160
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/accountplus/accountplus_pb2.py,sha256=OniEasHmwjcm2zUrbs5Tedowfh7wgknthRvqiMPRzzg,1863
161
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/accountplus/genesis_pb2.py,sha256=PdBWz7IgBQpIQJLD_zSurIZ_gx3jBcsQCaS6ujiyyXc,3011
162
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/accountplus/models_pb2.py,sha256=dn3auJSeHLK82_8WATq5HFEesQPBvWC9UVEfRpYxYZM,1320
163
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/accountplus/params_pb2.py,sha256=DaOeFnx5BturRkbFizOyF16cRUyOBMe-NKBpFZepjX0,1557
164
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/accountplus/query_pb2.py,sha256=tnkMqUp2l6PD-pMpWjvlsYRgRIj5fws6sxvKFBJl56M,5291
165
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/accountplus/tx_pb2.py,sha256=4i6u438Lh9shlmbPOiHV20Pckn_cRw0i_nCdv5kdqbs,4145
166
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/block_rate_limit_config_pb2.py,sha256=ceKezHSmSNcivvUFTi943kFUgOnyI28Kguf_6FTohVw,3040
167
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/clob_pair_pb2.py,sha256=zZDdrqY-JJK8fUinqVwk4-pIZJvrJtWom-77AIWR4AU,3314
168
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/equity_tier_limit_config_pb2.py,sha256=8sFuKX7iPhfbLsS5wSc0T9FTJY-UTnGqwqKJ8kk5lLU,2540
169
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/finalize_block_pb2.py,sha256=YUa8o6jJCfnEkyA7rUA3hm_x8AXsn-34ffhMZkjTrVk,1439
170
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/liquidations_config_pb2.py,sha256=eMhV1a7SkkdBorI7kMLx_wMJ8J1xpbWtHHxAKKQkrl0,2945
171
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/liquidations_pb2.py,sha256=ssqVwsfAkzXq15fyUNAtx9IqPJDBKpO4tiu24WxYY18,2909
172
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/matches_pb2.py,sha256=Y1Y3-dY6ClrsptE-V5UXFiIftxJvhC_-thbTPrNLzR8,4921
173
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/mev_pb2.py,sha256=z0zELBy-LjZPEku8YR-7y9Ah_99m_Rz5IZpA4fb1zR0,4727
174
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/operation_pb2.py,sha256=zk3qRRY5tBI0oNz1vwCZcExfO75K306h4MkROC4tKTQ,2561
175
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/order_pb2.py,sha256=RIHR8PRd5bAY2EYieylytUfCAjtg6d3TLrRIbBd2h7Y,8850
176
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/order_removals_pb2.py,sha256=jcIITCCTe9HGpELL_YB49fjueQvJuFdmisq3AeuWRAY,2409
177
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/process_proposer_matches_events_pb2.py,sha256=boO4KBmquy0tf7QJrrckykIwVenMinjB-aUMFgxRIb8,3954
178
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/query_pb2.py,sha256=fMtNddwz_iplqnwfxFlT0-o2ldKO8pjxusCNcLRFH0Q,15351
179
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/streaming_pb2.py,sha256=2a6w1jCRtJUzz0fL0pr73YvRjAyPz1HtVh-XRq5aIhY,2015
180
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/tx_pb2.py,sha256=NF4AnvuxFjmgEeAuZxDi7XwdyiMkt8VpGNnPE9wNG7Y,12034
181
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/sending/genesis_pb2.py,sha256=g8dw2XarpNxQ4y1TFPJv1S468zrT_dMGIiA_c8OR5is,1159
182
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/sending/query_pb2.py,sha256=HpVhocp_QFduN8R2fu4NxJMrGXXPtvBwuurWX2ELF3s,1130
183
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/sending/transfer_pb2.py,sha256=gJTMqHL_DdEepothXmuggYZJ2u_YAuQCX2qY8e78iJ8,5191
184
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/sending/tx_pb2.py,sha256=YsOZEmaBbSGwa3WgQxdONElqHM2zC3X7vvJrxtHy3LI,2621
185
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/subaccounts/asset_position_pb2.py,sha256=509tVNRpNe8E8_97euQnyjXbFqSRjMxK1BEzvKzd4Do,1735
186
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/subaccounts/genesis_pb2.py,sha256=87P9suGH59sW-hPWPDsputzQXAoiNLvjT6WRAszSKys,1664
187
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/subaccounts/perpetual_position_pb2.py,sha256=4OIzeXLThh8BZ3r5eu01jWAGBXS97babCSUV3RJ7Lgc,2494
188
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/subaccounts/query_pb2.py,sha256=S8ptetf1e6vHxIliXq2znH-soxwkKa1alW-exr8xtb8,6570
189
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/subaccounts/streaming_pb2.py,sha256=gtr4ZVmsjfkXqv-FCo8qSSrUlzUe--9qDqaRQLEw1TI,2146
190
+ coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/subaccounts/subaccount_pb2.py,sha256=qlWlNkih_mfatk5iFmCNdIJMbvLa8bYfP36ZwC3bGe0,2293
191
+ coinex/ccxt/static_dependencies/dydx_v4_client/gogoproto/gogo_pb2.py,sha256=4l4KQl3ksoVeChPcnw8Ni90D81G9TUZ1mlJJNnliC6E,14516
27
192
  coinex/ccxt/static_dependencies/ecdsa/__init__.py,sha256=Xaj0G79BLtBt2YZcOOMV8qOlQZ7fIJznNiHhiEEZfQA,594
28
193
  coinex/ccxt/static_dependencies/ecdsa/_version.py,sha256=eMIr0XQiX8_th_x4iAd0JFcYKLowY9dYz33-vKVFIPI,18461
29
194
  coinex/ccxt/static_dependencies/ecdsa/curves.py,sha256=3CN80_QIv25zyF_5RY7_TZAgJd5EHsMUyfbevtxjnx4,1886
30
195
  coinex/ccxt/static_dependencies/ecdsa/der.py,sha256=Nzlxj6r2hyGwDtj2JAoWKVTz34CsvPWQxvXV9RSs0mQ,6942
31
196
  coinex/ccxt/static_dependencies/ecdsa/ecdsa.py,sha256=hHfeDVRsBS2yO4M-Vz7GdbOHyQ-lMD4i9k5HBgOCS9Y,11336
32
- coinex/ccxt/static_dependencies/ecdsa/ellipticcurve.py,sha256=eoStUvTfXNiubR4t6qz_QeUndedgez8tOfOZNiQbgv0,5517
33
- coinex/ccxt/static_dependencies/ecdsa/keys.py,sha256=14pEz3rvn5-U0U2zLyiUN2IY4ha7ZYLVSjChj7J9-so,14201
197
+ coinex/ccxt/static_dependencies/ecdsa/ellipticcurve.py,sha256=1S5pMxCbO95JiZFbafBpdrGSkijN9wz6jH0wfSUrTfk,35839
198
+ coinex/ccxt/static_dependencies/ecdsa/keys.py,sha256=SyoQ2hY52X9pZeMqbmc3LxYQBtvMvLfpfCxonmQ7-lo,14557
34
199
  coinex/ccxt/static_dependencies/ecdsa/numbertheory.py,sha256=WyMnrdTC28POCqpcVbf6kSXJvuB3Zmn_ssNTZ3erBUA,13468
35
200
  coinex/ccxt/static_dependencies/ecdsa/rfc6979.py,sha256=kkkI7js69gWbFv2kzl_DwGkN6qffEpI9u4qqQ_XDGEo,2572
36
201
  coinex/ccxt/static_dependencies/ecdsa/util.py,sha256=M0NQZ4dDQFTd8afSkF-7YyP9KbsXzOn-VUIYCxik8ms,10037
@@ -162,6 +327,21 @@ coinex/ccxt/static_dependencies/marshmallow_dataclass/union_field.py,sha256=zi2-
162
327
  coinex/ccxt/static_dependencies/marshmallow_oneofschema/__init__.py,sha256=KQjXt0W26CH8CvBBTA0YFEMsIHwR9_oMfBGppTnoTlI,47
163
328
  coinex/ccxt/static_dependencies/marshmallow_oneofschema/one_of_schema.py,sha256=DXIK8-Py-EtnniDpGvwqjTbz9x3PrkgpHcqykvfEo0A,6714
164
329
  coinex/ccxt/static_dependencies/marshmallow_oneofschema/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
330
+ coinex/ccxt/static_dependencies/mnemonic/__init__.py,sha256=Yaz5fkKNCLZZkFHu7InkXbpd6Iq3N8VVSdlYKafXeXk,110
331
+ coinex/ccxt/static_dependencies/mnemonic/mnemonic.py,sha256=1v2ekj0zW6hSjSR-AVhg_DMh7LpKPSKVCEp3mND5Ayg,11069
332
+ coinex/ccxt/static_dependencies/mnemonic/py.typed,sha256=bWew9mHgMy8LqMu7RuqQXFXLBxh2CRx0dUbSx-3wE48,27
333
+ coinex/ccxt/static_dependencies/mnemonic/wordlist/chinese_simplified.txt,sha256=XFlCeSvYNAy4snzVkvEBXt9WqMWyYnbuGKSCQo58VyY,8192
334
+ coinex/ccxt/static_dependencies/mnemonic/wordlist/chinese_traditional.txt,sha256=QXsms9hQCkrj1ZcX1wEZUttvwvuEuAfz-UrHNOicG18,8192
335
+ coinex/ccxt/static_dependencies/mnemonic/wordlist/czech.txt,sha256=foDhYcPpPZVUwu-3jU486_j8cn6cUuA7g7lEBr3Mlfw,14945
336
+ coinex/ccxt/static_dependencies/mnemonic/wordlist/english.txt,sha256=L17tU6Rye0v4iA2PPxme_JDlhQNkbZ_47_Oi7Tsk29o,13116
337
+ coinex/ccxt/static_dependencies/mnemonic/wordlist/french.txt,sha256=68OVmreAGh32usT6fZcGUvHfdraDzS9AA8lBxj1Rflk,16777
338
+ coinex/ccxt/static_dependencies/mnemonic/wordlist/italian.txt,sha256=05LEn9twCiTNH86yN8H2XcwSj2s0qKrLWLWThLXGSMI,16033
339
+ coinex/ccxt/static_dependencies/mnemonic/wordlist/japanese.txt,sha256=Lu0K70kikeBhYz162BF_GisD64CinQ5OMResJSjQX_0,26423
340
+ coinex/ccxt/static_dependencies/mnemonic/wordlist/korean.txt,sha256=npX4bBZ96I9FDwqvieh_ZiSlf5c8Z7UW4zjo6LiJf2A,37832
341
+ coinex/ccxt/static_dependencies/mnemonic/wordlist/portuguese.txt,sha256=JoXpwZTIKuZ-ELpZ2epTRaI9wJPpInb8U2H2Zn15zT8,15671
342
+ coinex/ccxt/static_dependencies/mnemonic/wordlist/russian.txt,sha256=bSqYhDbtOQ3zJk1L9So7k4PXH30PiayoAnXuHpZWLyQ,27096
343
+ coinex/ccxt/static_dependencies/mnemonic/wordlist/spanish.txt,sha256=RoRqWgE50ePLdyk-UhwoZfe824LETo0KBqLNDsukjAs,13996
344
+ coinex/ccxt/static_dependencies/mnemonic/wordlist/turkish.txt,sha256=NETmGfDcRS73ojDxUbvKosARulSRTUyaCoV6JY1uxfc,16168
165
345
  coinex/ccxt/static_dependencies/msgpack/__init__.py,sha256=tMxCiw7hJRLJN3JgUmPXOo64qMaUAbKTCf44CvE2tg8,1077
166
346
  coinex/ccxt/static_dependencies/msgpack/_cmsgpack.pyx,sha256=JQb-SpqADciQgq3jEhFskYbQmtZL-o46G7CEkOi5qFc,335
167
347
  coinex/ccxt/static_dependencies/msgpack/_packer.pyx,sha256=4X3JTr9wbEmkbqEw2NEDnNQsbqlTZjh3X2PFUdAI34w,14607
@@ -281,6 +461,6 @@ coinex/ccxt/static_dependencies/toolz/curried/exceptions.py,sha256=gKFOHDIayAWnX
281
461
  coinex/ccxt/static_dependencies/toolz/curried/operator.py,sha256=ML92mknkAwzBl2NCm-4werSUmJEtSHNY9NSzhseNM9s,525
282
462
  coinex/ccxt/static_dependencies/typing_inspect/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
283
463
  coinex/ccxt/static_dependencies/typing_inspect/typing_inspect.py,sha256=5gIWomLPfuDpgd3gX1GlnX0MuXM3VorR4j2W2qXORiQ,28269
284
- coinex_api-0.0.89.dist-info/METADATA,sha256=TjkVET4OTSobgLh1PRq8YszHpYTthy8lJIYTMEe3aD8,20048
285
- coinex_api-0.0.89.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
286
- coinex_api-0.0.89.dist-info/RECORD,,
464
+ coinex_api-0.0.110.dist-info/METADATA,sha256=-r56Yv7JQnRdCuc4wH2yqI8iF0cQa8MLm9F0DAmxYS4,20067
465
+ coinex_api-0.0.110.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
466
+ coinex_api-0.0.110.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.27.0
2
+ Generator: hatchling 1.28.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any