crypto-com-sdk 0.0.2__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.
Files changed (288) hide show
  1. crypto_com_sdk/__init__.py +7 -0
  2. crypto_com_sdk/ccxt/__init__.py +101 -0
  3. crypto_com_sdk/ccxt/abstract/cryptocom.py +121 -0
  4. crypto_com_sdk/ccxt/async_support/__init__.py +80 -0
  5. crypto_com_sdk/ccxt/async_support/base/__init__.py +1 -0
  6. crypto_com_sdk/ccxt/async_support/base/exchange.py +2100 -0
  7. crypto_com_sdk/ccxt/async_support/base/throttler.py +50 -0
  8. crypto_com_sdk/ccxt/async_support/base/ws/__init__.py +38 -0
  9. crypto_com_sdk/ccxt/async_support/base/ws/aiohttp_client.py +147 -0
  10. crypto_com_sdk/ccxt/async_support/base/ws/cache.py +213 -0
  11. crypto_com_sdk/ccxt/async_support/base/ws/client.py +214 -0
  12. crypto_com_sdk/ccxt/async_support/base/ws/fast_client.py +97 -0
  13. crypto_com_sdk/ccxt/async_support/base/ws/functions.py +59 -0
  14. crypto_com_sdk/ccxt/async_support/base/ws/future.py +69 -0
  15. crypto_com_sdk/ccxt/async_support/base/ws/order_book.py +78 -0
  16. crypto_com_sdk/ccxt/async_support/base/ws/order_book_side.py +174 -0
  17. crypto_com_sdk/ccxt/async_support/cryptocom.py +3125 -0
  18. crypto_com_sdk/ccxt/base/__init__.py +27 -0
  19. crypto_com_sdk/ccxt/base/decimal_to_precision.py +174 -0
  20. crypto_com_sdk/ccxt/base/errors.py +267 -0
  21. crypto_com_sdk/ccxt/base/exchange.py +6770 -0
  22. crypto_com_sdk/ccxt/base/precise.py +297 -0
  23. crypto_com_sdk/ccxt/base/types.py +577 -0
  24. crypto_com_sdk/ccxt/cryptocom.py +3125 -0
  25. crypto_com_sdk/ccxt/pro/__init__.py +21 -0
  26. crypto_com_sdk/ccxt/pro/cryptocom.py +1326 -0
  27. crypto_com_sdk/ccxt/static_dependencies/README.md +1 -0
  28. crypto_com_sdk/ccxt/static_dependencies/__init__.py +1 -0
  29. crypto_com_sdk/ccxt/static_dependencies/ecdsa/__init__.py +14 -0
  30. crypto_com_sdk/ccxt/static_dependencies/ecdsa/_version.py +520 -0
  31. crypto_com_sdk/ccxt/static_dependencies/ecdsa/curves.py +56 -0
  32. crypto_com_sdk/ccxt/static_dependencies/ecdsa/der.py +221 -0
  33. crypto_com_sdk/ccxt/static_dependencies/ecdsa/ecdsa.py +310 -0
  34. crypto_com_sdk/ccxt/static_dependencies/ecdsa/ellipticcurve.py +197 -0
  35. crypto_com_sdk/ccxt/static_dependencies/ecdsa/keys.py +332 -0
  36. crypto_com_sdk/ccxt/static_dependencies/ecdsa/numbertheory.py +531 -0
  37. crypto_com_sdk/ccxt/static_dependencies/ecdsa/rfc6979.py +100 -0
  38. crypto_com_sdk/ccxt/static_dependencies/ecdsa/util.py +266 -0
  39. crypto_com_sdk/ccxt/static_dependencies/ethereum/__init__.py +7 -0
  40. crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/__init__.py +16 -0
  41. crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/abi.py +19 -0
  42. crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/base.py +152 -0
  43. crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/codec.py +217 -0
  44. crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/constants.py +3 -0
  45. crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/decoding.py +565 -0
  46. crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/encoding.py +720 -0
  47. crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/exceptions.py +139 -0
  48. crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/grammar.py +443 -0
  49. crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/packed.py +13 -0
  50. crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/py.typed +0 -0
  51. crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/registry.py +643 -0
  52. crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/tools/__init__.py +3 -0
  53. crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/tools/_strategies.py +230 -0
  54. crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/utils/__init__.py +0 -0
  55. crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/utils/numeric.py +83 -0
  56. crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/utils/padding.py +27 -0
  57. crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/utils/string.py +19 -0
  58. crypto_com_sdk/ccxt/static_dependencies/ethereum/account/__init__.py +3 -0
  59. crypto_com_sdk/ccxt/static_dependencies/ethereum/account/encode_typed_data/__init__.py +4 -0
  60. crypto_com_sdk/ccxt/static_dependencies/ethereum/account/encode_typed_data/encoding_and_hashing.py +239 -0
  61. crypto_com_sdk/ccxt/static_dependencies/ethereum/account/encode_typed_data/helpers.py +40 -0
  62. crypto_com_sdk/ccxt/static_dependencies/ethereum/account/messages.py +263 -0
  63. crypto_com_sdk/ccxt/static_dependencies/ethereum/account/py.typed +0 -0
  64. crypto_com_sdk/ccxt/static_dependencies/ethereum/hexbytes/__init__.py +5 -0
  65. crypto_com_sdk/ccxt/static_dependencies/ethereum/hexbytes/_utils.py +54 -0
  66. crypto_com_sdk/ccxt/static_dependencies/ethereum/hexbytes/main.py +65 -0
  67. crypto_com_sdk/ccxt/static_dependencies/ethereum/hexbytes/py.typed +0 -0
  68. crypto_com_sdk/ccxt/static_dependencies/ethereum/typing/__init__.py +63 -0
  69. crypto_com_sdk/ccxt/static_dependencies/ethereum/typing/abi.py +6 -0
  70. crypto_com_sdk/ccxt/static_dependencies/ethereum/typing/bls.py +7 -0
  71. crypto_com_sdk/ccxt/static_dependencies/ethereum/typing/discovery.py +5 -0
  72. crypto_com_sdk/ccxt/static_dependencies/ethereum/typing/encoding.py +7 -0
  73. crypto_com_sdk/ccxt/static_dependencies/ethereum/typing/enums.py +17 -0
  74. crypto_com_sdk/ccxt/static_dependencies/ethereum/typing/ethpm.py +9 -0
  75. crypto_com_sdk/ccxt/static_dependencies/ethereum/typing/evm.py +20 -0
  76. crypto_com_sdk/ccxt/static_dependencies/ethereum/typing/networks.py +1122 -0
  77. crypto_com_sdk/ccxt/static_dependencies/ethereum/typing/py.typed +0 -0
  78. crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/__init__.py +115 -0
  79. crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/abi.py +72 -0
  80. crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/address.py +171 -0
  81. crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/applicators.py +151 -0
  82. crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/conversions.py +190 -0
  83. crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/currency.py +107 -0
  84. crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/curried/__init__.py +269 -0
  85. crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/debug.py +20 -0
  86. crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/decorators.py +132 -0
  87. crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/encoding.py +6 -0
  88. crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/exceptions.py +4 -0
  89. crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/functional.py +75 -0
  90. crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/hexadecimal.py +74 -0
  91. crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/humanize.py +188 -0
  92. crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/logging.py +159 -0
  93. crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/module_loading.py +31 -0
  94. crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/numeric.py +43 -0
  95. crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/py.typed +0 -0
  96. crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/toolz.py +76 -0
  97. crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/types.py +54 -0
  98. crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/typing/__init__.py +18 -0
  99. crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/typing/misc.py +14 -0
  100. crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/units.py +31 -0
  101. crypto_com_sdk/ccxt/static_dependencies/keccak/__init__.py +3 -0
  102. crypto_com_sdk/ccxt/static_dependencies/keccak/keccak.py +197 -0
  103. crypto_com_sdk/ccxt/static_dependencies/lark/__init__.py +38 -0
  104. crypto_com_sdk/ccxt/static_dependencies/lark/__pyinstaller/__init__.py +6 -0
  105. crypto_com_sdk/ccxt/static_dependencies/lark/__pyinstaller/hook-lark.py +14 -0
  106. crypto_com_sdk/ccxt/static_dependencies/lark/ast_utils.py +59 -0
  107. crypto_com_sdk/ccxt/static_dependencies/lark/common.py +86 -0
  108. crypto_com_sdk/ccxt/static_dependencies/lark/exceptions.py +292 -0
  109. crypto_com_sdk/ccxt/static_dependencies/lark/grammar.py +130 -0
  110. crypto_com_sdk/ccxt/static_dependencies/lark/grammars/__init__.py +0 -0
  111. crypto_com_sdk/ccxt/static_dependencies/lark/grammars/common.lark +59 -0
  112. crypto_com_sdk/ccxt/static_dependencies/lark/grammars/lark.lark +62 -0
  113. crypto_com_sdk/ccxt/static_dependencies/lark/grammars/python.lark +302 -0
  114. crypto_com_sdk/ccxt/static_dependencies/lark/grammars/unicode.lark +7 -0
  115. crypto_com_sdk/ccxt/static_dependencies/lark/indenter.py +143 -0
  116. crypto_com_sdk/ccxt/static_dependencies/lark/lark.py +658 -0
  117. crypto_com_sdk/ccxt/static_dependencies/lark/lexer.py +678 -0
  118. crypto_com_sdk/ccxt/static_dependencies/lark/load_grammar.py +1428 -0
  119. crypto_com_sdk/ccxt/static_dependencies/lark/parse_tree_builder.py +391 -0
  120. crypto_com_sdk/ccxt/static_dependencies/lark/parser_frontends.py +257 -0
  121. crypto_com_sdk/ccxt/static_dependencies/lark/parsers/__init__.py +0 -0
  122. crypto_com_sdk/ccxt/static_dependencies/lark/parsers/cyk.py +340 -0
  123. crypto_com_sdk/ccxt/static_dependencies/lark/parsers/earley.py +314 -0
  124. crypto_com_sdk/ccxt/static_dependencies/lark/parsers/earley_common.py +42 -0
  125. crypto_com_sdk/ccxt/static_dependencies/lark/parsers/earley_forest.py +801 -0
  126. crypto_com_sdk/ccxt/static_dependencies/lark/parsers/grammar_analysis.py +203 -0
  127. crypto_com_sdk/ccxt/static_dependencies/lark/parsers/lalr_analysis.py +332 -0
  128. crypto_com_sdk/ccxt/static_dependencies/lark/parsers/lalr_interactive_parser.py +158 -0
  129. crypto_com_sdk/ccxt/static_dependencies/lark/parsers/lalr_parser.py +122 -0
  130. crypto_com_sdk/ccxt/static_dependencies/lark/parsers/lalr_parser_state.py +110 -0
  131. crypto_com_sdk/ccxt/static_dependencies/lark/parsers/xearley.py +165 -0
  132. crypto_com_sdk/ccxt/static_dependencies/lark/py.typed +0 -0
  133. crypto_com_sdk/ccxt/static_dependencies/lark/reconstruct.py +107 -0
  134. crypto_com_sdk/ccxt/static_dependencies/lark/tools/__init__.py +70 -0
  135. crypto_com_sdk/ccxt/static_dependencies/lark/tools/nearley.py +202 -0
  136. crypto_com_sdk/ccxt/static_dependencies/lark/tools/serialize.py +32 -0
  137. crypto_com_sdk/ccxt/static_dependencies/lark/tools/standalone.py +196 -0
  138. crypto_com_sdk/ccxt/static_dependencies/lark/tree.py +267 -0
  139. crypto_com_sdk/ccxt/static_dependencies/lark/tree_matcher.py +186 -0
  140. crypto_com_sdk/ccxt/static_dependencies/lark/tree_templates.py +180 -0
  141. crypto_com_sdk/ccxt/static_dependencies/lark/utils.py +343 -0
  142. crypto_com_sdk/ccxt/static_dependencies/lark/visitors.py +596 -0
  143. crypto_com_sdk/ccxt/static_dependencies/marshmallow/__init__.py +81 -0
  144. crypto_com_sdk/ccxt/static_dependencies/marshmallow/base.py +65 -0
  145. crypto_com_sdk/ccxt/static_dependencies/marshmallow/class_registry.py +94 -0
  146. crypto_com_sdk/ccxt/static_dependencies/marshmallow/decorators.py +231 -0
  147. crypto_com_sdk/ccxt/static_dependencies/marshmallow/error_store.py +60 -0
  148. crypto_com_sdk/ccxt/static_dependencies/marshmallow/exceptions.py +71 -0
  149. crypto_com_sdk/ccxt/static_dependencies/marshmallow/fields.py +2114 -0
  150. crypto_com_sdk/ccxt/static_dependencies/marshmallow/orderedset.py +89 -0
  151. crypto_com_sdk/ccxt/static_dependencies/marshmallow/py.typed +0 -0
  152. crypto_com_sdk/ccxt/static_dependencies/marshmallow/schema.py +1228 -0
  153. crypto_com_sdk/ccxt/static_dependencies/marshmallow/types.py +12 -0
  154. crypto_com_sdk/ccxt/static_dependencies/marshmallow/utils.py +378 -0
  155. crypto_com_sdk/ccxt/static_dependencies/marshmallow/validate.py +678 -0
  156. crypto_com_sdk/ccxt/static_dependencies/marshmallow/warnings.py +2 -0
  157. crypto_com_sdk/ccxt/static_dependencies/marshmallow_dataclass/__init__.py +1047 -0
  158. crypto_com_sdk/ccxt/static_dependencies/marshmallow_dataclass/collection_field.py +51 -0
  159. crypto_com_sdk/ccxt/static_dependencies/marshmallow_dataclass/lazy_class_attribute.py +45 -0
  160. crypto_com_sdk/ccxt/static_dependencies/marshmallow_dataclass/mypy.py +71 -0
  161. crypto_com_sdk/ccxt/static_dependencies/marshmallow_dataclass/py.typed +0 -0
  162. crypto_com_sdk/ccxt/static_dependencies/marshmallow_dataclass/typing.py +14 -0
  163. crypto_com_sdk/ccxt/static_dependencies/marshmallow_dataclass/union_field.py +82 -0
  164. crypto_com_sdk/ccxt/static_dependencies/marshmallow_oneofschema/__init__.py +1 -0
  165. crypto_com_sdk/ccxt/static_dependencies/marshmallow_oneofschema/one_of_schema.py +193 -0
  166. crypto_com_sdk/ccxt/static_dependencies/marshmallow_oneofschema/py.typed +0 -0
  167. crypto_com_sdk/ccxt/static_dependencies/msgpack/__init__.py +55 -0
  168. crypto_com_sdk/ccxt/static_dependencies/msgpack/_cmsgpack.pyx +11 -0
  169. crypto_com_sdk/ccxt/static_dependencies/msgpack/_packer.pyx +374 -0
  170. crypto_com_sdk/ccxt/static_dependencies/msgpack/_unpacker.pyx +547 -0
  171. crypto_com_sdk/ccxt/static_dependencies/msgpack/buff_converter.h +8 -0
  172. crypto_com_sdk/ccxt/static_dependencies/msgpack/exceptions.py +48 -0
  173. crypto_com_sdk/ccxt/static_dependencies/msgpack/ext.py +168 -0
  174. crypto_com_sdk/ccxt/static_dependencies/msgpack/fallback.py +951 -0
  175. crypto_com_sdk/ccxt/static_dependencies/msgpack/pack.h +89 -0
  176. crypto_com_sdk/ccxt/static_dependencies/msgpack/pack_template.h +820 -0
  177. crypto_com_sdk/ccxt/static_dependencies/msgpack/sysdep.h +194 -0
  178. crypto_com_sdk/ccxt/static_dependencies/msgpack/unpack.h +391 -0
  179. crypto_com_sdk/ccxt/static_dependencies/msgpack/unpack_define.h +95 -0
  180. crypto_com_sdk/ccxt/static_dependencies/msgpack/unpack_template.h +464 -0
  181. crypto_com_sdk/ccxt/static_dependencies/parsimonious/__init__.py +10 -0
  182. crypto_com_sdk/ccxt/static_dependencies/parsimonious/exceptions.py +105 -0
  183. crypto_com_sdk/ccxt/static_dependencies/parsimonious/expressions.py +479 -0
  184. crypto_com_sdk/ccxt/static_dependencies/parsimonious/grammar.py +487 -0
  185. crypto_com_sdk/ccxt/static_dependencies/parsimonious/nodes.py +325 -0
  186. crypto_com_sdk/ccxt/static_dependencies/parsimonious/utils.py +40 -0
  187. crypto_com_sdk/ccxt/static_dependencies/starknet/__init__.py +0 -0
  188. crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v0/__init__.py +2 -0
  189. crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v0/model.py +44 -0
  190. crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v0/parser.py +216 -0
  191. crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v0/schemas.py +72 -0
  192. crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v0/shape.py +63 -0
  193. crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v1/__init__.py +2 -0
  194. crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v1/core_structures.json +14 -0
  195. crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v1/model.py +39 -0
  196. crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v1/parser.py +220 -0
  197. crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v1/parser_transformer.py +179 -0
  198. crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v1/schemas.py +66 -0
  199. crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v1/shape.py +47 -0
  200. crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v2/__init__.py +2 -0
  201. crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v2/model.py +89 -0
  202. crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v2/parser.py +293 -0
  203. crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v2/parser_transformer.py +192 -0
  204. crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v2/schemas.py +132 -0
  205. crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v2/shape.py +107 -0
  206. crypto_com_sdk/ccxt/static_dependencies/starknet/cairo/__init__.py +0 -0
  207. crypto_com_sdk/ccxt/static_dependencies/starknet/cairo/data_types.py +123 -0
  208. crypto_com_sdk/ccxt/static_dependencies/starknet/cairo/deprecated_parse/__init__.py +0 -0
  209. crypto_com_sdk/ccxt/static_dependencies/starknet/cairo/deprecated_parse/cairo_types.py +77 -0
  210. crypto_com_sdk/ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser.py +46 -0
  211. crypto_com_sdk/ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser_transformer.py +138 -0
  212. crypto_com_sdk/ccxt/static_dependencies/starknet/cairo/felt.py +64 -0
  213. crypto_com_sdk/ccxt/static_dependencies/starknet/cairo/type_parser.py +121 -0
  214. crypto_com_sdk/ccxt/static_dependencies/starknet/cairo/v1/__init__.py +0 -0
  215. crypto_com_sdk/ccxt/static_dependencies/starknet/cairo/v1/type_parser.py +59 -0
  216. crypto_com_sdk/ccxt/static_dependencies/starknet/cairo/v2/__init__.py +0 -0
  217. crypto_com_sdk/ccxt/static_dependencies/starknet/cairo/v2/type_parser.py +77 -0
  218. crypto_com_sdk/ccxt/static_dependencies/starknet/ccxt_utils.py +7 -0
  219. crypto_com_sdk/ccxt/static_dependencies/starknet/common.py +15 -0
  220. crypto_com_sdk/ccxt/static_dependencies/starknet/constants.py +39 -0
  221. crypto_com_sdk/ccxt/static_dependencies/starknet/hash/__init__.py +0 -0
  222. crypto_com_sdk/ccxt/static_dependencies/starknet/hash/address.py +79 -0
  223. crypto_com_sdk/ccxt/static_dependencies/starknet/hash/compiled_class_hash_objects.py +111 -0
  224. crypto_com_sdk/ccxt/static_dependencies/starknet/hash/selector.py +16 -0
  225. crypto_com_sdk/ccxt/static_dependencies/starknet/hash/storage.py +12 -0
  226. crypto_com_sdk/ccxt/static_dependencies/starknet/hash/utils.py +78 -0
  227. crypto_com_sdk/ccxt/static_dependencies/starknet/models/__init__.py +0 -0
  228. crypto_com_sdk/ccxt/static_dependencies/starknet/models/typed_data.py +45 -0
  229. crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/__init__.py +24 -0
  230. crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/_calldata_reader.py +40 -0
  231. crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/_context.py +142 -0
  232. crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/__init__.py +10 -0
  233. crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/_common.py +82 -0
  234. crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/array_serializer.py +43 -0
  235. crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/bool_serializer.py +37 -0
  236. crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/byte_array_serializer.py +66 -0
  237. crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/cairo_data_serializer.py +71 -0
  238. crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/enum_serializer.py +71 -0
  239. crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/felt_serializer.py +50 -0
  240. crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/named_tuple_serializer.py +58 -0
  241. crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/option_serializer.py +43 -0
  242. crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/output_serializer.py +40 -0
  243. crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/payload_serializer.py +72 -0
  244. crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/struct_serializer.py +36 -0
  245. crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/tuple_serializer.py +36 -0
  246. crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/uint256_serializer.py +76 -0
  247. crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/uint_serializer.py +100 -0
  248. crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/unit_serializer.py +32 -0
  249. crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/errors.py +10 -0
  250. crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/factory.py +229 -0
  251. crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/function_serialization_adapter.py +110 -0
  252. crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/tuple_dataclass.py +59 -0
  253. crypto_com_sdk/ccxt/static_dependencies/starknet/utils/__init__.py +0 -0
  254. crypto_com_sdk/ccxt/static_dependencies/starknet/utils/constructor_args_translator.py +86 -0
  255. crypto_com_sdk/ccxt/static_dependencies/starknet/utils/iterable.py +13 -0
  256. crypto_com_sdk/ccxt/static_dependencies/starknet/utils/schema.py +13 -0
  257. crypto_com_sdk/ccxt/static_dependencies/starknet/utils/typed_data.py +182 -0
  258. crypto_com_sdk/ccxt/static_dependencies/starkware/__init__.py +0 -0
  259. crypto_com_sdk/ccxt/static_dependencies/starkware/crypto/__init__.py +0 -0
  260. crypto_com_sdk/ccxt/static_dependencies/starkware/crypto/fast_pedersen_hash.py +50 -0
  261. crypto_com_sdk/ccxt/static_dependencies/starkware/crypto/math_utils.py +78 -0
  262. crypto_com_sdk/ccxt/static_dependencies/starkware/crypto/signature.py +2344 -0
  263. crypto_com_sdk/ccxt/static_dependencies/starkware/crypto/utils.py +63 -0
  264. crypto_com_sdk/ccxt/static_dependencies/sympy/__init__.py +0 -0
  265. crypto_com_sdk/ccxt/static_dependencies/sympy/core/__init__.py +0 -0
  266. crypto_com_sdk/ccxt/static_dependencies/sympy/core/intfunc.py +35 -0
  267. crypto_com_sdk/ccxt/static_dependencies/sympy/external/__init__.py +0 -0
  268. crypto_com_sdk/ccxt/static_dependencies/sympy/external/gmpy.py +345 -0
  269. crypto_com_sdk/ccxt/static_dependencies/sympy/external/importtools.py +187 -0
  270. crypto_com_sdk/ccxt/static_dependencies/sympy/external/ntheory.py +637 -0
  271. crypto_com_sdk/ccxt/static_dependencies/sympy/external/pythonmpq.py +341 -0
  272. crypto_com_sdk/ccxt/static_dependencies/toolz/__init__.py +26 -0
  273. crypto_com_sdk/ccxt/static_dependencies/toolz/_signatures.py +784 -0
  274. crypto_com_sdk/ccxt/static_dependencies/toolz/_version.py +520 -0
  275. crypto_com_sdk/ccxt/static_dependencies/toolz/compatibility.py +30 -0
  276. crypto_com_sdk/ccxt/static_dependencies/toolz/curried/__init__.py +101 -0
  277. crypto_com_sdk/ccxt/static_dependencies/toolz/curried/exceptions.py +22 -0
  278. crypto_com_sdk/ccxt/static_dependencies/toolz/curried/operator.py +22 -0
  279. crypto_com_sdk/ccxt/static_dependencies/toolz/dicttoolz.py +339 -0
  280. crypto_com_sdk/ccxt/static_dependencies/toolz/functoolz.py +1049 -0
  281. crypto_com_sdk/ccxt/static_dependencies/toolz/itertoolz.py +1057 -0
  282. crypto_com_sdk/ccxt/static_dependencies/toolz/recipes.py +46 -0
  283. crypto_com_sdk/ccxt/static_dependencies/toolz/utils.py +9 -0
  284. crypto_com_sdk/ccxt/static_dependencies/typing_inspect/__init__.py +0 -0
  285. crypto_com_sdk/ccxt/static_dependencies/typing_inspect/typing_inspect.py +851 -0
  286. crypto_com_sdk-0.0.2.dist-info/METADATA +62 -0
  287. crypto_com_sdk-0.0.2.dist-info/RECORD +288 -0
  288. crypto_com_sdk-0.0.2.dist-info/WHEEL +4 -0
@@ -0,0 +1,62 @@
1
+ Metadata-Version: 2.4
2
+ Name: crypto_com_sdk
3
+ Version: 0.0.2
4
+ Summary: cryptocom exchange api client
5
+ Project-URL: Homepage, https://github.com/ccxt/ccxt
6
+ Project-URL: Issues, https://github.com/ccxt/ccxt
7
+ Author-email: Example Author <author@example.com>
8
+ License: MIT
9
+ Classifier: Operating System :: OS Independent
10
+ Classifier: Programming Language :: Python :: 3
11
+ Requires-Python: >=3.8
12
+ Description-Content-Type: text/markdown
13
+
14
+ # cryptocom-python
15
+ Python SDK (sync and async) for Cryptocom with Rest and WS capabilities.
16
+
17
+ You can check Cryptocom's docs here: [Docs](https://ccxt.com)
18
+
19
+
20
+ You can check the SDK docs here: [SDK](https://docs.ccxt.com/#/exchanges/cryptocom)
21
+
22
+ *This package derives from CCXT and allows you to call pretty much every endpoint by either using the unified CCXT API or calling the endpoints directly*
23
+
24
+ ## Installation
25
+
26
+ ```
27
+ pip install crypto-com-sdk
28
+ ```
29
+
30
+ ## Usage
31
+
32
+ ### Async
33
+
34
+ ```Python
35
+ from crypto_com_sdk import CryptocomAsync
36
+
37
+ async def main():
38
+ instance = CryptocomAsync({})
39
+ order = await instance.create_order(__EXAMPLE_SYMBOL__, "limit", "buy", 1, 100000)
40
+ ```
41
+
42
+ ### Sync
43
+
44
+ ```Python
45
+ from crypto_com_sdk import CryptocomSync
46
+
47
+ def main():
48
+ instance = CryptocomSync({})
49
+ order = instance.create_order(__EXAMPLE_SYMBOL__, "limit", "buy", 1, 100000)
50
+ ```
51
+
52
+ ### Websockets
53
+
54
+ ```Python
55
+ from crypto_com_sdk import CryptocomWs
56
+
57
+ async def main():
58
+ instance = CryptocomWs({})
59
+ while True:
60
+ orders = await instance.watch_orders(__EXAMPLE_SYMBOL__)
61
+ ```
62
+
@@ -0,0 +1,288 @@
1
+ crypto_com_sdk/__init__.py,sha256=Ei5wz00g_3ERgN2Gsu1ZcccyL4tByDvfxR8qKkPxAgc,282
2
+ crypto_com_sdk/ccxt/__init__.py,sha256=1BpzAkpiBnRgs3T_JpbtSIZ0C3dbHXwO8Xm1blX2A5M,6054
3
+ crypto_com_sdk/ccxt/cryptocom.py,sha256=MqHql1i3rEqSdJHunGVHlqv6gl4p68YyPENMnseYJiU,141103
4
+ crypto_com_sdk/ccxt/abstract/cryptocom.py,sha256=VdIfedBhx9Oym8fQ06c4Xmip7iT02hiVNBQA0E0rXU8,20915
5
+ crypto_com_sdk/ccxt/async_support/__init__.py,sha256=X_Vp-RNY7wyaBYK5aYC8X1j8USFzr9kTk1eCw1owqsw,4787
6
+ crypto_com_sdk/ccxt/async_support/cryptocom.py,sha256=GCtbWxu0SD3kW4SuECPYKP-ZQiV0VuIhVswWjuCmikE,141711
7
+ crypto_com_sdk/ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
8
+ crypto_com_sdk/ccxt/async_support/base/exchange.py,sha256=kaTkt4ymyRymoDhvLkrjCrEpcs89pipkw6uTn6duP6c,117187
9
+ crypto_com_sdk/ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
10
+ crypto_com_sdk/ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
11
+ crypto_com_sdk/ccxt/async_support/base/ws/aiohttp_client.py,sha256=Y5HxAVXyyYduj6b6SbbUZETlq3GrVMzrkW1r-TMgpb8,6329
12
+ crypto_com_sdk/ccxt/async_support/base/ws/cache.py,sha256=Qf7a9t22vW6jfl387IUTl0lPmIejBW3VG38ge1Jh55g,8170
13
+ crypto_com_sdk/ccxt/async_support/base/ws/client.py,sha256=J5lTz3QGTaURZYeqW4R5xNw1orDlHYoOVXIJIX6d5Zc,8188
14
+ crypto_com_sdk/ccxt/async_support/base/ws/fast_client.py,sha256=WPXKqSi9OPDtpgAvt19T1EVtTg4BNk8WGSLtxUVMh08,3956
15
+ crypto_com_sdk/ccxt/async_support/base/ws/functions.py,sha256=qwvEnjtINWL5ZU-dbbeIunjyBxzFqbGWHfVhxqAcKug,1499
16
+ crypto_com_sdk/ccxt/async_support/base/ws/future.py,sha256=WhAJ7wdEiLdfgl5tfGHv6HgLxAN0tTc9xL4gbkKVOaE,2409
17
+ crypto_com_sdk/ccxt/async_support/base/ws/order_book.py,sha256=uBUaIHhzMRykpmo4BCsdJ-t_HozS6VxhEs8x-Kbj-NI,2894
18
+ crypto_com_sdk/ccxt/async_support/base/ws/order_book_side.py,sha256=GhnGUt78pJ-AYL_Dq9produGjmBJLCI5FHIRdMz1O-g,6551
19
+ crypto_com_sdk/ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
20
+ crypto_com_sdk/ccxt/base/decimal_to_precision.py,sha256=fgWRBzRTtsf3r2INyS4f7WHlzgjB5YM1ekiwqD21aac,6634
21
+ crypto_com_sdk/ccxt/base/errors.py,sha256=MvCrL_sAM3de616T6RE0PSxiF2xV6Qqz5b1y1ghidbk,4888
22
+ crypto_com_sdk/ccxt/base/exchange.py,sha256=4z7QnN1ZrLppZxRurWXt_PwEm6NTf492bB0V5mAVxQ0,320359
23
+ crypto_com_sdk/ccxt/base/precise.py,sha256=koce64Yrp6vFbGijJtUt-QQ6XhJgeGTCksZ871FPp_A,8886
24
+ crypto_com_sdk/ccxt/base/types.py,sha256=asavKC4Fpuz9MGv1tJBld0j8CeojiP7nBj04Abusst4,10766
25
+ crypto_com_sdk/ccxt/pro/__init__.py,sha256=BLe3VgGREtuVksEgOn0FSh9EGC9sQT_DMpOV9dfuVTE,625
26
+ crypto_com_sdk/ccxt/pro/cryptocom.py,sha256=HxORVyDV1R0ILS-fl8ikRvF0D7pW9AqPaZNxVVeOTYI,60160
27
+ crypto_com_sdk/ccxt/static_dependencies/README.md,sha256=3TCvhhn09_Cqf9BDDpao1V7EfKHDpQ6k9oWRsLFixpU,18
28
+ crypto_com_sdk/ccxt/static_dependencies/__init__.py,sha256=tzFje8cloqmiIE6kola3EaYC0SnD1izWnri69hzHsSw,168
29
+ crypto_com_sdk/ccxt/static_dependencies/ecdsa/__init__.py,sha256=Xaj0G79BLtBt2YZcOOMV8qOlQZ7fIJznNiHhiEEZfQA,594
30
+ crypto_com_sdk/ccxt/static_dependencies/ecdsa/_version.py,sha256=eMIr0XQiX8_th_x4iAd0JFcYKLowY9dYz33-vKVFIPI,18461
31
+ crypto_com_sdk/ccxt/static_dependencies/ecdsa/curves.py,sha256=3CN80_QIv25zyF_5RY7_TZAgJd5EHsMUyfbevtxjnx4,1886
32
+ crypto_com_sdk/ccxt/static_dependencies/ecdsa/der.py,sha256=Nzlxj6r2hyGwDtj2JAoWKVTz34CsvPWQxvXV9RSs0mQ,6942
33
+ crypto_com_sdk/ccxt/static_dependencies/ecdsa/ecdsa.py,sha256=hHfeDVRsBS2yO4M-Vz7GdbOHyQ-lMD4i9k5HBgOCS9Y,11336
34
+ crypto_com_sdk/ccxt/static_dependencies/ecdsa/ellipticcurve.py,sha256=eoStUvTfXNiubR4t6qz_QeUndedgez8tOfOZNiQbgv0,5517
35
+ crypto_com_sdk/ccxt/static_dependencies/ecdsa/keys.py,sha256=14pEz3rvn5-U0U2zLyiUN2IY4ha7ZYLVSjChj7J9-so,14201
36
+ crypto_com_sdk/ccxt/static_dependencies/ecdsa/numbertheory.py,sha256=WyMnrdTC28POCqpcVbf6kSXJvuB3Zmn_ssNTZ3erBUA,13468
37
+ crypto_com_sdk/ccxt/static_dependencies/ecdsa/rfc6979.py,sha256=kkkI7js69gWbFv2kzl_DwGkN6qffEpI9u4qqQ_XDGEo,2572
38
+ crypto_com_sdk/ccxt/static_dependencies/ecdsa/util.py,sha256=M0NQZ4dDQFTd8afSkF-7YyP9KbsXzOn-VUIYCxik8ms,10037
39
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/__init__.py,sha256=xfPvnZ1igh-KjLSLXkvGEb_F5nC7ACbbRyobJtN_rbM,171
40
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/__init__.py,sha256=KchRBwK8BlBQ8I5yE_wfcl3zDALCrf2Cxld6uuWoKX8,276
41
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/abi.py,sha256=HPxmpV6EPQPy4RDzp1Vnvv0yAo3nVVICy6RgSCdkbbY,490
42
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/base.py,sha256=L1jLyBNGjZKfJGZ8NUIMTw3VShjLwoblpXotgpJjMNM,4861
43
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/codec.py,sha256=4w5TiUwuoiSKIiJOi0pRrQ3v1sPwFJMZWzRMugPSVLY,6871
44
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/constants.py,sha256=ebWuKkdkZUlN9HOPO5F6DzX3f05KcZSCmtnRXYZCdyw,51
45
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/decoding.py,sha256=3sjAL5vFluY0jE9BtYwf9DQiwQeuvV1DYMUrZKwxOEw,16828
46
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/encoding.py,sha256=dojX7qlUx_cnSIAXKcT4sU-t1SQDIQIGsBNoM-bEHe8,20162
47
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/exceptions.py,sha256=Fn238lB98zQAMNTuHHgXC_iBGk7GRlh0_wCLDaa476s,2941
48
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/grammar.py,sha256=AJcaT5QzVNhOEGSc4heLOfH-RNT8j2KUUgzAQj5yf3E,12358
49
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/packed.py,sha256=I2eDuCdp1kXs2sIzJGbklDnb3ULx8EbKTa0uQJ-pLF0,387
50
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/registry.py,sha256=dKVlq25kZVHTjrjyUpwiVB9Pm4Kdj9JcHO4nSsletQI,19329
52
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/tools/__init__.py,sha256=qyxY82bT0HM8m9bqpo0IMFY_y4OM9C0YA4gUACnUWQg,65
53
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/tools/_strategies.py,sha256=nNREv0Fp5Ejmli-9mQFQRXGJMyK7iCTYk_bDdBPG0yQ,5742
54
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/utils/numeric.py,sha256=3KAm3ZFcZ95TdIJeOQb7Uj_XyI3GDwofg25s6rJspVU,2097
56
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/utils/padding.py,sha256=Wg6ayuzr7V7SbWzNU3qlVx7hGppyftP4iMNw1a376B4,426
57
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/abi/utils/string.py,sha256=fjsAR2C7Xlu5bHomxx5l4rlADFtByzGTQfugMTo8TQk,436
58
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/account/__init__.py,sha256=A7CnT-tudgrgtZwIHpAqMDBl7gXolw9f1xmLkATFhzM,48
59
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/account/messages.py,sha256=SVON_N_s0fJFX4--xvcmw6rNP3A0RdaauUgrxRBJXas,10588
60
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/account/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
61
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/account/encode_typed_data/__init__.py,sha256=Ibeat3YaJZHoEfwvW_cMdBX8n8nB8TAOx67YFoKfqcM,80
62
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/account/encode_typed_data/encoding_and_hashing.py,sha256=QtTlkSfHbz5kd9ybdBxpWlqG2ZTFSKbEcxRwgMMVLEY,7126
63
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/account/encode_typed_data/helpers.py,sha256=a4VbVz93mI2WmplYskI0ITTbUYjmv6MjWaMrQLZWTjU,982
64
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/hexbytes/__init__.py,sha256=CTEC38p8BZiDRds2iANHMTjVspmjXOVzkvF68SPwKjA,60
65
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/hexbytes/_utils.py,sha256=hUEDsNJ8WJqYBENOML0S1ni8Lnf2veYB0bCmjM1avCI,1687
66
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/hexbytes/main.py,sha256=c1hO5-DoevsxQVcuN5H4pPBeWT2OG7JZk0Xq7IlT98g,1768
67
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/hexbytes/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/typing/__init__.py,sha256=4ifoznAfmAiUg64ikxGCQvM0bG0h6rmwBpWiBW4mFak,913
69
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/typing/abi.py,sha256=kGqws8LwEauRbdgxonXq1xhw13Cr_nucn2msTPXfgk4,85
70
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/typing/bls.py,sha256=SZ-rytl8G0Vkvwz_riZKBQ_DLv5ebbprJJNna12vnwQ,191
71
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/typing/discovery.py,sha256=0H-tbsb-8B-hjwuv0rTRzlpkcpPvqPsyvOaH2IfLLgg,71
72
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/typing/encoding.py,sha256=AhhHOqZwo9NPbKI8_aBw5fmDqj_0mbBMACwrSCz8mes,117
73
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/typing/enums.py,sha256=Kb-GcYItS6FYGgG9mbqNFetTuw85_UJeZ0dZyEIYrWE,458
74
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/typing/ethpm.py,sha256=ZXF2KA11CSsQBmLT4sZgcT-i7IQxUsI5MTHWyi1lEo8,173
75
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/typing/evm.py,sha256=JShudaL4ebhdsMySfolxbHw17RiDehl1PRuZnYQbdLE,546
76
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/typing/networks.py,sha256=mt30i92LjddDF0un8OggICEz9BO2M-kZVB0zRSMY_34,20845
77
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/typing/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
78
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/__init__.py,sha256=Ol72mGtvYkM20t05XZc_4jNb3vUPEorT9RIGWh6D9q8,2162
79
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/abi.py,sha256=nVug_kOAvc1SU26SjWfRZsgTU6dtLsBNktFff07MFrA,2123
80
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/address.py,sha256=yUKkJyp-6k9TJyX_Xv3id4bewyCw2gEVVfme-Pem8oI,4364
81
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/applicators.py,sha256=CLKnrC-7eUCaWaszvuJkwv24E2zm4kbEUt3vSymsaLE,4342
82
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/conversions.py,sha256=rh6muBnl14AhGrMqEwX3HQPqiGuVcVU1dLD3n_IgPRU,5498
83
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/currency.py,sha256=Pj9EsavDolXU1ZbHTqa5IQpemeMEjS8L2mGDpqhWkz8,3021
84
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/debug.py,sha256=0Z-tNOqgQJunS4uHeSCCH1LWLoijlH34MBh6NRrrDrk,499
85
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/decorators.py,sha256=VYG5rVnPLLlv4XtknqUc2P55XUDLE8MfqkbKp59_6Rw,3997
86
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/encoding.py,sha256=1qfDeuinLZ01XjYgknpm_p9LuWwaYvicYkYI8mS1iMc,199
87
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/exceptions.py,sha256=3ndM6zl4QoSc6GupV9T1Klz9TByM8w2zr4ez8UJvzew,110
88
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/functional.py,sha256=9EHqNRv39Cu9oH5m6j5YoRiKMZZrlBXJdMSJ6jvPwhM,2100
89
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/hexadecimal.py,sha256=TS_zf1IXNBUqTlbOlQOML7agnKBEFUWJLnd_ET7dNz4,1826
90
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/humanize.py,sha256=2mt_w9pFKYd5_oGawXKtVZPmEVfnaD4zOF84Lu1nC18,4137
91
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/logging.py,sha256=aPsKtk9WlAqR0X85iXnGCYVT_nt_fFnQn0gBuxX1nb8,5155
92
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/module_loading.py,sha256=DCLM4dEh1gqr8Ny-FWwD-_pINqeHzbLSupz4ZIpCCAw,842
93
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/numeric.py,sha256=RrXdXI-bhhkEsz3aBtxHuGlc_2ZJvUGpvMc47wx408Y,1190
94
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
95
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/toolz.py,sha256=8s0TUhNDiQ3MRRmPwH47ft8eNxfX050P-EWrUbiPX5E,1001
96
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/types.py,sha256=S6w22xzYXzyBEVVYRLiYYXd437Ot-puyqeb5FSVmGog,1074
97
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/units.py,sha256=jRo8p6trxwuISBnT8kfxTNVyd_TSd5vVY5aiKDefB1U,1757
98
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/curried/__init__.py,sha256=s3fqJCpAaDrcsWlrznmNxZgtuKfxynOVmPyzgRZeb9s,6398
99
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/typing/__init__.py,sha256=84PxIxCvEHtBb-Ik6qnGvXH4alaWbamr_zDbtlbJh3A,325
100
+ crypto_com_sdk/ccxt/static_dependencies/ethereum/utils/typing/misc.py,sha256=WzYhHSbZiX0Em5UPLcqSMJPa67rlgLDygoKeGPylKMg,189
101
+ crypto_com_sdk/ccxt/static_dependencies/keccak/__init__.py,sha256=mfcrTChnMXsr-JmfN2VbzscTRt9XA2RRGchfHRMYncU,45
102
+ crypto_com_sdk/ccxt/static_dependencies/keccak/keccak.py,sha256=RblmQEQkGpMhug0EU3hyE0kBjs1NDfGQqbwrBK7ZycY,6934
103
+ crypto_com_sdk/ccxt/static_dependencies/lark/__init__.py,sha256=OBNUDBJFIaedTvqNDIu_phXkybswNvtjI4UbxYMqz1c,744
104
+ crypto_com_sdk/ccxt/static_dependencies/lark/ast_utils.py,sha256=jwn44ocNQhZGbfcFsEZnwi_gGvPbNgzjQ-0RuEtwDzI,2117
105
+ crypto_com_sdk/ccxt/static_dependencies/lark/common.py,sha256=M9-CFAUP3--OkftyyWjke-Kc1-pQMczT1MluHCFwdy4,3008
106
+ crypto_com_sdk/ccxt/static_dependencies/lark/exceptions.py,sha256=g76ygMPfSMl6ukKqFAZVpR2EAJTOOdyfJ_ALXc_MCR8,10939
107
+ crypto_com_sdk/ccxt/static_dependencies/lark/grammar.py,sha256=DR17QSLSKCRhMOqx2UQh4n-Ywu4CD-wjdQxtuM8OHkY,3665
108
+ crypto_com_sdk/ccxt/static_dependencies/lark/indenter.py,sha256=L5uNDYUMNrk4ZTWKmW0Tu-H-3GGErLOHygMC32N_twE,4221
109
+ crypto_com_sdk/ccxt/static_dependencies/lark/lark.py,sha256=_IHWmTxt43kfd9eYVtwx58zEWWSFAq9_gKH7Oeu5PZs,28184
110
+ crypto_com_sdk/ccxt/static_dependencies/lark/lexer.py,sha256=OwgQPCpQ-vUi-2aeZztsydd4DLkEgCbZeucvEPvHFi4,24037
111
+ crypto_com_sdk/ccxt/static_dependencies/lark/load_grammar.py,sha256=WYZDxyO6omhA8NKyMjSckfAMwVKuIMF3liiYXE_-kHo,53946
112
+ crypto_com_sdk/ccxt/static_dependencies/lark/parse_tree_builder.py,sha256=jT_3gCEkBGZoTXAWSnhMn1kRuJILWB-E7XkUciYNHI4,14412
113
+ crypto_com_sdk/ccxt/static_dependencies/lark/parser_frontends.py,sha256=mxMXxux2hkfTfE859wuVp4-Fr1no6YVEUt8toDjEdPQ,10165
114
+ crypto_com_sdk/ccxt/static_dependencies/lark/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
+ crypto_com_sdk/ccxt/static_dependencies/lark/reconstruct.py,sha256=s7CevBXchUG_fe2otdAITxIaSXCEIiSjy4Sbh5QC0hs,3763
116
+ crypto_com_sdk/ccxt/static_dependencies/lark/tree.py,sha256=aWWHMazid8bbJanhmCjK9XK2jRFJ6N6WmlwXJGTsz28,8522
117
+ crypto_com_sdk/ccxt/static_dependencies/lark/tree_matcher.py,sha256=jHdZJggn405SXmPpGf9U9HLrrsfP4eNNZaj267UTB00,6003
118
+ crypto_com_sdk/ccxt/static_dependencies/lark/tree_templates.py,sha256=u9rgvQ9X3sDweRkhtteF9nPzCYpQPKvxQowkvU5rOcY,5959
119
+ crypto_com_sdk/ccxt/static_dependencies/lark/utils.py,sha256=jZrLWb-f1OPZoV2e-3W4uxDm7h1AlaERaDrqSdbt7k4,11176
120
+ crypto_com_sdk/ccxt/static_dependencies/lark/visitors.py,sha256=VJ3T1m8p78MwXJotpOAvn06mYEqKyuIlhsAF51U-a3w,21422
121
+ crypto_com_sdk/ccxt/static_dependencies/lark/__pyinstaller/__init__.py,sha256=_PpFm44f_mwHlCpvYgv9ZgubLfNDc3PlePVir4sxRfI,182
122
+ crypto_com_sdk/ccxt/static_dependencies/lark/__pyinstaller/hook-lark.py,sha256=5aFHiZWVHPRdHT8qnb4kW4JSOql5GusHodHR25_q9sU,599
123
+ crypto_com_sdk/ccxt/static_dependencies/lark/grammars/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
124
+ crypto_com_sdk/ccxt/static_dependencies/lark/grammars/common.lark,sha256=FV9xGIPiPqHRM4ULAxP6jApXRTVsSwbOe697I9s7DLs,885
125
+ crypto_com_sdk/ccxt/static_dependencies/lark/grammars/lark.lark,sha256=nq1NTZYqm_DPI2mjRIlpd3ZcxPjGhapA4GUzkcfBTQs,1541
126
+ crypto_com_sdk/ccxt/static_dependencies/lark/grammars/python.lark,sha256=WMakTkpzCqOd0jUjYONI3LOnSy2KRN9NoL9pFtAZYCI,10641
127
+ crypto_com_sdk/ccxt/static_dependencies/lark/grammars/unicode.lark,sha256=d9YCz0XWimdl4F8M5YCptavBcFG9D58Yd4aMwxjYtEI,96
128
+ crypto_com_sdk/ccxt/static_dependencies/lark/parsers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
129
+ crypto_com_sdk/ccxt/static_dependencies/lark/parsers/cyk.py,sha256=c3GLk3kq23Xwb8MqUOjvivwP488KJY6NUWgxqeR5980,12192
130
+ crypto_com_sdk/ccxt/static_dependencies/lark/parsers/earley.py,sha256=mkmHWGtrY_96gxL12jH994lrbcFDy0DZz79Zl7pTXlI,14883
131
+ crypto_com_sdk/ccxt/static_dependencies/lark/parsers/earley_common.py,sha256=e2e6NrNucw-WMiNV8HqQ_TpGx6P7v_S8f5aEcF0Tkqo,1620
132
+ crypto_com_sdk/ccxt/static_dependencies/lark/parsers/earley_forest.py,sha256=dlcAPQAaGEqcc5rRr0lqmIUhU1qfVG5ORxPPzjbZ0TI,31313
133
+ crypto_com_sdk/ccxt/static_dependencies/lark/parsers/grammar_analysis.py,sha256=WoxuPu53lXJAGmdyldfaRy4yKJ9LRPl90VBYczyaVZA,7106
134
+ crypto_com_sdk/ccxt/static_dependencies/lark/parsers/lalr_analysis.py,sha256=DGHFk2tIluIyeFEVFfsMRU77DVbd598IJnUUOXO04yo,12207
135
+ crypto_com_sdk/ccxt/static_dependencies/lark/parsers/lalr_interactive_parser.py,sha256=i_m5s6CK-7JjSqEAa7z_MB-ZjeU5mK1bF6fM7Rs5jIQ,5751
136
+ crypto_com_sdk/ccxt/static_dependencies/lark/parsers/lalr_parser.py,sha256=LJE-1Dn062fQapFLGFykQUpd5SnyDcO_DJOScGUlOqk,4583
137
+ crypto_com_sdk/ccxt/static_dependencies/lark/parsers/lalr_parser_state.py,sha256=2nj36F3URvRgI1nxF712euvusYPz4nh5PQZDCVL_RQ4,3790
138
+ crypto_com_sdk/ccxt/static_dependencies/lark/parsers/xearley.py,sha256=DboXMNtuN0G-SXrrDm5zgUDUekz85h0Rih2PRvcf1LM,7825
139
+ crypto_com_sdk/ccxt/static_dependencies/lark/tools/__init__.py,sha256=FeKYmVUjXSt-vlQm2ktyWkcxaOCTOkZnHD_kOUWjUuA,2469
140
+ crypto_com_sdk/ccxt/static_dependencies/lark/tools/nearley.py,sha256=QaLYdW6mYQdDq8JKMisV3lvPqzF0wPgu8q8BtsSA33g,6265
141
+ crypto_com_sdk/ccxt/static_dependencies/lark/tools/serialize.py,sha256=nwt46LNxkDm0T_Uh9k2wS4fcfgvZQ2dy4-YC_aKhTQk,965
142
+ crypto_com_sdk/ccxt/static_dependencies/lark/tools/standalone.py,sha256=6eXDqBuzZSpE5BGZm_Fh6X5yRhAPYxNVyl2aUU3ABzA,5627
143
+ crypto_com_sdk/ccxt/static_dependencies/marshmallow/__init__.py,sha256=QYC9_DYxA7la56yUxAdLZm6CymFWVxZjPmmG5-ZnMag,2365
144
+ crypto_com_sdk/ccxt/static_dependencies/marshmallow/base.py,sha256=jZ68DZxxSCvRg2GTcxQcf2JjTxqEn-xFNrBEMK3CinU,1346
145
+ crypto_com_sdk/ccxt/static_dependencies/marshmallow/class_registry.py,sha256=Ir_n2nNhuDz4EXkVCmdITvlMem5XwrrVJs_Il76-w_g,2790
146
+ crypto_com_sdk/ccxt/static_dependencies/marshmallow/decorators.py,sha256=84tMGdn7P-aT9J5KdAfCefxEF9WElgtFaMSVwMMQIpo,8290
147
+ crypto_com_sdk/ccxt/static_dependencies/marshmallow/error_store.py,sha256=Y1dJggsZ7t5E1hikM4FRSfGzLDWjNCxDQV2bgkx4Bw8,2212
148
+ crypto_com_sdk/ccxt/static_dependencies/marshmallow/exceptions.py,sha256=DuARdOcirCdJxmlp16V97hQKAXOokvdW12jXtYOlGyk,2326
149
+ crypto_com_sdk/ccxt/static_dependencies/marshmallow/fields.py,sha256=pHY5bqRVo0-_aaX-E54phTmO2onIONhnY8ebHutjga8,72898
150
+ crypto_com_sdk/ccxt/static_dependencies/marshmallow/orderedset.py,sha256=C2aAG6w1faIL1phinbAltbe3AUAnF5MN6n7fzESNDhI,2922
151
+ crypto_com_sdk/ccxt/static_dependencies/marshmallow/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
152
+ crypto_com_sdk/ccxt/static_dependencies/marshmallow/schema.py,sha256=Uh7iikJdreSnTudAJWYyToXI_a0rH5DQhO24PMA5Qc4,48832
153
+ crypto_com_sdk/ccxt/static_dependencies/marshmallow/types.py,sha256=eHMwQR8-ICX2RHf_i6bgjnhzdanbpBqXuzXuP6jHcNI,332
154
+ crypto_com_sdk/ccxt/static_dependencies/marshmallow/utils.py,sha256=9IEYfO17evHhcJ8tMqUx768J2udNphrSqg_LY3quWuQ,11853
155
+ crypto_com_sdk/ccxt/static_dependencies/marshmallow/validate.py,sha256=icPw5qS-gz-IL-sNhFPJJ-ZD84QfpmySslmbOt4K2Ys,23826
156
+ crypto_com_sdk/ccxt/static_dependencies/marshmallow/warnings.py,sha256=vHQu7AluuWqLhvlw5noXtWWbya13zDXY6JMaVSUzmDs,65
157
+ crypto_com_sdk/ccxt/static_dependencies/marshmallow_dataclass/__init__.py,sha256=9vbR9DeSggTFJC3a7PzZ0o93BWSEIhTgXK0Mxw4DDZM,36024
158
+ crypto_com_sdk/ccxt/static_dependencies/marshmallow_dataclass/collection_field.py,sha256=Nc1y1jThnhYDIBuPQZqpVatAVAIk3-KAFoNO9Arz_eE,1640
159
+ crypto_com_sdk/ccxt/static_dependencies/marshmallow_dataclass/lazy_class_attribute.py,sha256=2fEF6NSdNYDAegxXkT0D2hjysRKlEXFSIH7eP0nurVE,1070
160
+ crypto_com_sdk/ccxt/static_dependencies/marshmallow_dataclass/mypy.py,sha256=Ek5j_gS0I83Oly6xpxWrR4obCDDDSHmjXhywsQlb2wQ,2034
161
+ crypto_com_sdk/ccxt/static_dependencies/marshmallow_dataclass/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
162
+ crypto_com_sdk/ccxt/static_dependencies/marshmallow_dataclass/typing.py,sha256=OqcSrGTwMWr4_Ct3hCHW9dWNiWpa1ViGsUgFOqSfvz4,269
163
+ crypto_com_sdk/ccxt/static_dependencies/marshmallow_dataclass/union_field.py,sha256=zi2-4NThvY---6gXBWyL_zUK3e7MVl5dY-ffY2vZPvc,2914
164
+ crypto_com_sdk/ccxt/static_dependencies/marshmallow_oneofschema/__init__.py,sha256=KQjXt0W26CH8CvBBTA0YFEMsIHwR9_oMfBGppTnoTlI,47
165
+ crypto_com_sdk/ccxt/static_dependencies/marshmallow_oneofschema/one_of_schema.py,sha256=DXIK8-Py-EtnniDpGvwqjTbz9x3PrkgpHcqykvfEo0A,6714
166
+ crypto_com_sdk/ccxt/static_dependencies/marshmallow_oneofschema/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
167
+ crypto_com_sdk/ccxt/static_dependencies/msgpack/__init__.py,sha256=tMxCiw7hJRLJN3JgUmPXOo64qMaUAbKTCf44CvE2tg8,1077
168
+ crypto_com_sdk/ccxt/static_dependencies/msgpack/_cmsgpack.pyx,sha256=JQb-SpqADciQgq3jEhFskYbQmtZL-o46G7CEkOi5qFc,335
169
+ crypto_com_sdk/ccxt/static_dependencies/msgpack/_packer.pyx,sha256=4X3JTr9wbEmkbqEw2NEDnNQsbqlTZjh3X2PFUdAI34w,14607
170
+ crypto_com_sdk/ccxt/static_dependencies/msgpack/_unpacker.pyx,sha256=9oq2d3v_0VzsY1biMQ3_3CwPyQfDOYRDjU3ZxPkXXTc,18888
171
+ crypto_com_sdk/ccxt/static_dependencies/msgpack/buff_converter.h,sha256=t0RwS7ilhFPHeo83lznAtJsvBBbD85txgvVDOJCSGYg,220
172
+ crypto_com_sdk/ccxt/static_dependencies/msgpack/exceptions.py,sha256=dCTWei8dpkrMsQDcjQk74ATl9HsIBH0ybt8zOPNqMYc,1081
173
+ crypto_com_sdk/ccxt/static_dependencies/msgpack/ext.py,sha256=fKp00BqDLjUtZnPd70Llr138zk8JsCuSpJkkZ5S4dt8,5629
174
+ crypto_com_sdk/ccxt/static_dependencies/msgpack/fallback.py,sha256=wdUWJkWX2gzfRW9BBCTOuIE1Wvrf5PtBtR8ZtY7G_EE,33175
175
+ crypto_com_sdk/ccxt/static_dependencies/msgpack/pack.h,sha256=tK5VBNP9-R5FJ4etPQ1hWTswfyTnlqNuAYRczwBUCP0,2072
176
+ crypto_com_sdk/ccxt/static_dependencies/msgpack/pack_template.h,sha256=Yqe6kpV4w9CVwhCluL5kHoqz1ihceY1zN6Sypx2Lztc,21775
177
+ crypto_com_sdk/ccxt/static_dependencies/msgpack/sysdep.h,sha256=g0Be20rldEx2yZHY-s7eFtzx7dZlnognCutLNL2Cys8,6452
178
+ crypto_com_sdk/ccxt/static_dependencies/msgpack/unpack.h,sha256=2349vxJmTKqSB9H69ILZqCjb7W9oDNJgmLk0RXN1ax4,10976
179
+ crypto_com_sdk/ccxt/static_dependencies/msgpack/unpack_define.h,sha256=ebuKljj6t2eb7UVM-cl6cr2l0oK0PcMx3l7Zhqq6wEQ,2366
180
+ crypto_com_sdk/ccxt/static_dependencies/msgpack/unpack_template.h,sha256=iyowdiEgnnnue1Mpj5BU5d0Q_Tc-SWFrbM_rOmE5_qk,14846
181
+ crypto_com_sdk/ccxt/static_dependencies/parsimonious/__init__.py,sha256=mvKG2Vusvg2QoRjKhRAAxOwPppJk4r7sPCleSsYzJLU,385
182
+ crypto_com_sdk/ccxt/static_dependencies/parsimonious/exceptions.py,sha256=wOGBNI2sx29eSGMA9bYg-4RbqQIOOgu72ZGQkYtv4N4,3603
183
+ crypto_com_sdk/ccxt/static_dependencies/parsimonious/expressions.py,sha256=FTSpmx3YxAI6nd1dpYhiVKvfS_eyDmXWQI03-iVEz0g,16864
184
+ crypto_com_sdk/ccxt/static_dependencies/parsimonious/grammar.py,sha256=e5o_w98SjGURDz22JrfDwv3d-R-wu3eo9A8LIkX3zmI,19190
185
+ crypto_com_sdk/ccxt/static_dependencies/parsimonious/nodes.py,sha256=DhgjH6pjOWFPcwOEEoz29Cz2rkom08zHmAj7_L1miTE,13084
186
+ crypto_com_sdk/ccxt/static_dependencies/parsimonious/utils.py,sha256=2eyApbqJ9zZ5FAmhW8bl47s2tlYc6IqvJpzacSK3kWs,1087
187
+ crypto_com_sdk/ccxt/static_dependencies/starknet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
188
+ crypto_com_sdk/ccxt/static_dependencies/starknet/ccxt_utils.py,sha256=aOn9TXn178WMUEvmJQKzgg-fgBnjm_oFnKGJ0JyRCJ0,340
189
+ crypto_com_sdk/ccxt/static_dependencies/starknet/common.py,sha256=Vkzq8r2S-xhECatpXz5xT7N9a5dfneOW0zYO3sTsIuM,457
190
+ crypto_com_sdk/ccxt/static_dependencies/starknet/constants.py,sha256=Zzf0aE0NoVIaNF7Nr-NRVq0Zc5mzsp0c-grVvpPQ5s4,1281
191
+ crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v0/__init__.py,sha256=xq7KVZh22PTyHTlWLnY11F2Rmd61Wz-HUEjim1HXv7k,70
192
+ crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v0/model.py,sha256=VN6jbGShsO1h7sVNrIVGyXLXrxXn-_9A1T7Ci-BESrI,1149
193
+ crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v0/parser.py,sha256=IDSzCJL3eUjBPRuIud5Vmn5cx2nnvlX2AyH6-lT4US4,7897
194
+ crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v0/schemas.py,sha256=FUygfKcUwjh0Ogs3rmIRUrtjH4GtjFo313tFTE49dLA,2254
195
+ crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v0/shape.py,sha256=GnSLpFmJf1BXZkDYeuIJ2AP8ozoPXJ5_PAuwhSDtg9Y,1349
196
+ crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v1/__init__.py,sha256=xq7KVZh22PTyHTlWLnY11F2Rmd61Wz-HUEjim1HXv7k,70
197
+ crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v1/core_structures.json,sha256=yZn0iNul0PCe88PQ3ebd3lW1gxSUkNv36kYXmQ3YnPA,222
198
+ crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v1/model.py,sha256=5RRh-bBrMSTZbwlsMvNh24CQPKUaG7L4ppRTJ8-73ho,995
199
+ crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v1/parser.py,sha256=pB51-qkn2rQP5UM0AAJsQ6-FcJO8BoyUawc8Mfte3kI,7950
200
+ crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v1/parser_transformer.py,sha256=2gmyZgGSVzBKaIj3Lptno4ACvMC5ipwuzlJGvT7F4I8,5220
201
+ crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v1/schemas.py,sha256=WplXzPonCOmjVUVXnRUV0SzhPEBJewA9J9gMoy45Chc,2006
202
+ crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v1/shape.py,sha256=z2KbwMEAROsNY5y0DypM-ij605Z9svzuoQ-uQmRSo84,927
203
+ crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v2/__init__.py,sha256=xq7KVZh22PTyHTlWLnY11F2Rmd61Wz-HUEjim1HXv7k,70
204
+ crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v2/model.py,sha256=G6Z5xBFQryZRnbYpJL-xVBLQGeWIPOJB-ewg2ll5UdM,2197
205
+ crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v2/parser.py,sha256=ZhFNnhnpa0bMgIgxkZlxFQDf_XFIhESVFxhjSWtJjwQ,10439
206
+ crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v2/parser_transformer.py,sha256=AX7hOYn4VoyU5wr49wL400zpBkpOrGqgornGCeMXYEo,5623
207
+ crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v2/schemas.py,sha256=jBVZluEODarVQSpAl4DBVq9VS19pml7fcK-1xzOW3Uc,4242
208
+ crypto_com_sdk/ccxt/static_dependencies/starknet/abi/v2/shape.py,sha256=wRo6_RzTs7i4UHV_De0bMmgr_rvqKpjvSmidxtn6nSs,2043
209
+ crypto_com_sdk/ccxt/static_dependencies/starknet/cairo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
210
+ crypto_com_sdk/ccxt/static_dependencies/starknet/cairo/data_types.py,sha256=xy70JGn-sFXFPGb7JUCpvk-DOkaGi0X86sJ-Eq0evnY,2174
211
+ crypto_com_sdk/ccxt/static_dependencies/starknet/cairo/felt.py,sha256=3dCoWOqib-BVBiRM3AEZ1pqa1v-oO_7U-SoaEKaxYfA,1708
212
+ crypto_com_sdk/ccxt/static_dependencies/starknet/cairo/type_parser.py,sha256=sjqf2WuyRqfVvBzfEgbU8aWnWFmVMfZQfIGIqbeQfro,4407
213
+ crypto_com_sdk/ccxt/static_dependencies/starknet/cairo/deprecated_parse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
214
+ crypto_com_sdk/ccxt/static_dependencies/starknet/cairo/deprecated_parse/cairo_types.py,sha256=YVrvqKyqctoz172Ta85ubkmy_7v6U8TiOf9J1zQf0lk,1434
215
+ crypto_com_sdk/ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser.py,sha256=VixjKG0zYyjR6NaWIIC2qzunvkzxmnX-MvU2MLmKirU,1280
216
+ crypto_com_sdk/ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser_transformer.py,sha256=uyIqwCktMsdF3zenns0_o0oHgKkvYn-7gXoKYZ6cos8,3883
217
+ crypto_com_sdk/ccxt/static_dependencies/starknet/cairo/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
218
+ crypto_com_sdk/ccxt/static_dependencies/starknet/cairo/v1/type_parser.py,sha256=fwUVELVmfU8yMCy2wOFFRmkiNl8p_MWI51Y-FKGkies,2082
219
+ crypto_com_sdk/ccxt/static_dependencies/starknet/cairo/v2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
220
+ crypto_com_sdk/ccxt/static_dependencies/starknet/cairo/v2/type_parser.py,sha256=Ljty_JU5oEoh2Pzhv3otVNbncK5lgUMMkNJdzhkIRGM,2506
221
+ crypto_com_sdk/ccxt/static_dependencies/starknet/hash/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
222
+ crypto_com_sdk/ccxt/static_dependencies/starknet/hash/address.py,sha256=Ajdub47ZFQ5nspbsuRIPlVC9EDzW-DzkDnPyhhkv18I,2259
223
+ crypto_com_sdk/ccxt/static_dependencies/starknet/hash/compiled_class_hash_objects.py,sha256=w-TbuJvHBlXUdBXsxf5A7uWuoW1xW490qFHVI_w7hX4,3349
224
+ crypto_com_sdk/ccxt/static_dependencies/starknet/hash/selector.py,sha256=y7PRHGePeCGkuzDZKlcR6JJ-PTgpfKVPW4Gl5sTvFN8,474
225
+ crypto_com_sdk/ccxt/static_dependencies/starknet/hash/storage.py,sha256=pQZdxL6Fac3HGR6Sfvhek-vjsT1reUhIqd2glIbySs8,402
226
+ crypto_com_sdk/ccxt/static_dependencies/starknet/hash/utils.py,sha256=DTFR7uFqksoOh5O4ZPHF5vzohmrA19dYrsPGSSYvhpI,2173
227
+ crypto_com_sdk/ccxt/static_dependencies/starknet/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
228
+ crypto_com_sdk/ccxt/static_dependencies/starknet/models/typed_data.py,sha256=nq6tuZuWbygx0oFa-fNIP2QB1bNTAQwosTuXyYxtD9A,815
229
+ crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/__init__.py,sha256=B71RdRcil04hDiY7jNxo_PFGzEenQKXwm3rJuG79ukg,655
230
+ crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/_calldata_reader.py,sha256=aPiWzMn8cAmjC_obUbNPRqqJ6sR4yOh0SKYGH-gK6ik,1135
231
+ crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/_context.py,sha256=LOult4jWMDYLFKR4C16R9F9F3EJFK4ZoM_wnIAQHiJA,4821
232
+ crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/errors.py,sha256=7FzyxluiXip0KJKRaDuYWzP6NzRYY1uInrjRzoTx6tU,345
233
+ crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/factory.py,sha256=ShhxMuUCQxx7VlpBzi-gisGlNp27cFDrFqoTqUev_IQ,7237
234
+ crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/function_serialization_adapter.py,sha256=JWnt9opafvE4_B6MA6DxFD5BUcJaS80EgJggSi7fadA,3837
235
+ crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/tuple_dataclass.py,sha256=MOKjgXuSBbwTpPCKf2NnkCEgUXROqffsHnx89sqKlkU,2108
236
+ crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/__init__.py,sha256=-ZU3Xw6kYFY8QsScdpl17cFe4CpUDlmgVAplgs0yi68,495
237
+ crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/_common.py,sha256=NBMJjkz5kO38OswqxlM97AOOcgrV0iAd5O8U8tKfLqc,2859
238
+ crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/array_serializer.py,sha256=iBD6YllfBnixV_hDvR3RKrwfw6G4ZzhnRzRk-dzWsIA,1219
239
+ crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/bool_serializer.py,sha256=Tte3mkdqs-149j6LNNZzRD_oxoK8DGc8IhBCC2o_g7Q,999
240
+ crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/byte_array_serializer.py,sha256=gFGuLWh23Mga5Cmju1NZfJlr55ru5mvwCwbMUo7brtM,2070
241
+ crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/cairo_data_serializer.py,sha256=hxjj7csmknHRb72rQ1bKXN2-wjON03cKBPFGQDcACG8,2279
242
+ crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/enum_serializer.py,sha256=JPYxWx0Wrn-9pB2EI4PL4p1c948xQvSulz6qH0U3kK8,2229
243
+ crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/felt_serializer.py,sha256=_7UH-M-PbYu2vPYKh5mF8E1AhSg5QK6mRHKEjFR3xn8,1548
244
+ crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/named_tuple_serializer.py,sha256=yTQsyupHFM7vIjB_9H2LJzMLfjBfWZKDK-Ts3LQow6M,1809
245
+ crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/option_serializer.py,sha256=-py0qFUq1OQhqlrFOF4Ryg2bZXHzts0egbZlVWR4QJg,1136
246
+ crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/output_serializer.py,sha256=5oWi20A9VOgnE1AoilrsrSTWJZfgBNLw2JfQweINZhU,1151
247
+ crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/payload_serializer.py,sha256=Y2JjrG6v8PUgLHN0Md39cLU70tb4agi4umj-kwkXz_M,2445
248
+ crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/struct_serializer.py,sha256=b9hhMqnAhCqN8uF6-TPph035lt4oktBUkdPotXZ1mQs,941
249
+ crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/tuple_serializer.py,sha256=Ble023LEceZEmLld-E7x_I_Ez5NYr3zNsGAVwMgU-N0,964
250
+ crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/uint256_serializer.py,sha256=sPGeD8y6z8iA3B1M6i4tF1w2vrqv_cKKkgxOm_qKl1k,2406
251
+ crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/uint_serializer.py,sha256=PV_uYvI4PyV8aVg4oNYO-uZxFlIrpKFKoyXeE39LILQ,3157
252
+ crypto_com_sdk/ccxt/static_dependencies/starknet/serialization/data_serializers/unit_serializer.py,sha256=h9X769Ls9Iks0HIZ5uDjuLNjcPGom73Kg3hhYzt2p-I,778
253
+ crypto_com_sdk/ccxt/static_dependencies/starknet/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
254
+ crypto_com_sdk/ccxt/static_dependencies/starknet/utils/constructor_args_translator.py,sha256=kFMRxdCJi5rlgLiwBbgyGVlByGBQxkvljiG0zMb4hDM,2537
255
+ crypto_com_sdk/ccxt/static_dependencies/starknet/utils/iterable.py,sha256=m-A7qOnh6W5OvWpsIbSJdVPuWYjESkiVcZEY_S3XYas,302
256
+ crypto_com_sdk/ccxt/static_dependencies/starknet/utils/schema.py,sha256=OKVVk_BTTxGkPy0Lv0P1kL27g9-s5ln_YIiU-VVwBH4,361
257
+ crypto_com_sdk/ccxt/static_dependencies/starknet/utils/typed_data.py,sha256=Ln6JBGJp8C_wNjGI_nry7h7CBX8ImTzKjNbmFtp2kSQ,5561
258
+ crypto_com_sdk/ccxt/static_dependencies/starkware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
259
+ crypto_com_sdk/ccxt/static_dependencies/starkware/crypto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
260
+ crypto_com_sdk/ccxt/static_dependencies/starkware/crypto/fast_pedersen_hash.py,sha256=69IypXuwIbBnpGdsYbwU-t9U96V7SoHwissaPdo7fKA,2032
261
+ crypto_com_sdk/ccxt/static_dependencies/starkware/crypto/math_utils.py,sha256=Mx3R_UqUTmpeL7vRmNrN59CUdXGK2u_WEGXRRav1i50,3145
262
+ crypto_com_sdk/ccxt/static_dependencies/starkware/crypto/signature.py,sha256=Q4fnm-St_nyW_jeHBFEVBRQ7kWkQ_wvO3qt6xkHu65U,112683
263
+ crypto_com_sdk/ccxt/static_dependencies/starkware/crypto/utils.py,sha256=lSLXMW4VCy7RkobrDR-HonGoHmI4lReVwvgnHDxR_SE,1600
264
+ crypto_com_sdk/ccxt/static_dependencies/sympy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
265
+ crypto_com_sdk/ccxt/static_dependencies/sympy/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
266
+ crypto_com_sdk/ccxt/static_dependencies/sympy/core/intfunc.py,sha256=dnMzhDBVtVOHeIHVNll-5Ek6si7c1uH-Gpdet86DrVE,844
267
+ crypto_com_sdk/ccxt/static_dependencies/sympy/external/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
268
+ crypto_com_sdk/ccxt/static_dependencies/sympy/external/gmpy.py,sha256=Kdh81lf0ll3mk1iur4KxSIHm88GLv-xNc3rT7i8-E2M,10283
269
+ crypto_com_sdk/ccxt/static_dependencies/sympy/external/importtools.py,sha256=Q7tS2cdGZ9a4NI_1sgGuoVcSDv_rIk-Av0BpFTa6EzA,7671
270
+ crypto_com_sdk/ccxt/static_dependencies/sympy/external/ntheory.py,sha256=dsfEjXvZpSf_cxMEiNmPPuI26eZ3KFJjvsFPEKfQonU,18051
271
+ crypto_com_sdk/ccxt/static_dependencies/sympy/external/pythonmpq.py,sha256=WOMTvHxYLXNp_vQ1F3jE_haeRlnGicbRlCTOp4ZNuo8,11243
272
+ crypto_com_sdk/ccxt/static_dependencies/toolz/__init__.py,sha256=SlTjHMiaQULRWlN_D1MYQMAQB6d9sQB9AYlud7BsduQ,374
273
+ crypto_com_sdk/ccxt/static_dependencies/toolz/_signatures.py,sha256=RI2GtVNSyYyXfn5vfXOqyHwXiblHF1L5pPjAHpbCU5I,20555
274
+ crypto_com_sdk/ccxt/static_dependencies/toolz/_version.py,sha256=027biJ0ZWLRQtWxcQj8XqnvszCO3p2SEkLn49RPqRlw,18447
275
+ crypto_com_sdk/ccxt/static_dependencies/toolz/compatibility.py,sha256=giOYcwv1TaOWDfB-C2JP2pFIJ5YZX9aP1s4UPzCQnw4,997
276
+ crypto_com_sdk/ccxt/static_dependencies/toolz/dicttoolz.py,sha256=sE8wlGNLezhdmkRqB2gQcxSbwbO6-c-4SVbY-yFjuoE,8955
277
+ crypto_com_sdk/ccxt/static_dependencies/toolz/functoolz.py,sha256=ecggVgwdndIqXdHDd28mgmBwkIDsGUM6YYR6ZML8wzY,29821
278
+ crypto_com_sdk/ccxt/static_dependencies/toolz/itertoolz.py,sha256=t5Eu8o9TbD40zAd9RkaGoFoZPgt2qiX6LzaPgqef_aM,27612
279
+ crypto_com_sdk/ccxt/static_dependencies/toolz/recipes.py,sha256=r_j701Ug2_oO4bHunoy1xizk0N-m9QBwObyCITJuF0I,1256
280
+ crypto_com_sdk/ccxt/static_dependencies/toolz/utils.py,sha256=JLlXt8x_JqSVevmLZPnt5bZJsdKMBJgJb5IwlcfOnsc,139
281
+ crypto_com_sdk/ccxt/static_dependencies/toolz/curried/__init__.py,sha256=iOuFY4c1kixe_h8lxuWIW5Az-cXRvOWJ5xuTfFficeE,2226
282
+ crypto_com_sdk/ccxt/static_dependencies/toolz/curried/exceptions.py,sha256=gKFOHDIayAWnX2uC8Z2KrUwpP-UpoqI5Tx1a859QdVY,344
283
+ crypto_com_sdk/ccxt/static_dependencies/toolz/curried/operator.py,sha256=ML92mknkAwzBl2NCm-4werSUmJEtSHNY9NSzhseNM9s,525
284
+ crypto_com_sdk/ccxt/static_dependencies/typing_inspect/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
285
+ crypto_com_sdk/ccxt/static_dependencies/typing_inspect/typing_inspect.py,sha256=5gIWomLPfuDpgd3gX1GlnX0MuXM3VorR4j2W2qXORiQ,28269
286
+ crypto_com_sdk-0.0.2.dist-info/METADATA,sha256=2NeeydRrRc37K6Z2y3z2OFZiovrGWa1yjSjTNat3ayc,1484
287
+ crypto_com_sdk-0.0.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
288
+ crypto_com_sdk-0.0.2.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.27.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any