crypto-com-sdk 0.0.14__py3-none-any.whl → 0.0.16__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 (290) hide show
  1. crypto_com_sdk-0.0.16.dist-info/METADATA +306 -0
  2. crypto_com_sdk-0.0.16.dist-info/RECORD +288 -0
  3. cryptocom/__init__.py +7 -0
  4. cryptocom/ccxt/__init__.py +101 -0
  5. cryptocom/ccxt/abstract/cryptocom.py +121 -0
  6. cryptocom/ccxt/async_support/__init__.py +80 -0
  7. cryptocom/ccxt/async_support/base/__init__.py +1 -0
  8. cryptocom/ccxt/async_support/base/exchange.py +2100 -0
  9. cryptocom/ccxt/async_support/base/throttler.py +50 -0
  10. cryptocom/ccxt/async_support/base/ws/__init__.py +38 -0
  11. cryptocom/ccxt/async_support/base/ws/aiohttp_client.py +147 -0
  12. cryptocom/ccxt/async_support/base/ws/cache.py +213 -0
  13. cryptocom/ccxt/async_support/base/ws/client.py +214 -0
  14. cryptocom/ccxt/async_support/base/ws/fast_client.py +97 -0
  15. cryptocom/ccxt/async_support/base/ws/functions.py +59 -0
  16. cryptocom/ccxt/async_support/base/ws/future.py +69 -0
  17. cryptocom/ccxt/async_support/base/ws/order_book.py +78 -0
  18. cryptocom/ccxt/async_support/base/ws/order_book_side.py +174 -0
  19. cryptocom/ccxt/async_support/cryptocom.py +3125 -0
  20. cryptocom/ccxt/base/__init__.py +27 -0
  21. cryptocom/ccxt/base/decimal_to_precision.py +174 -0
  22. cryptocom/ccxt/base/errors.py +267 -0
  23. cryptocom/ccxt/base/exchange.py +6769 -0
  24. cryptocom/ccxt/base/precise.py +297 -0
  25. cryptocom/ccxt/base/types.py +577 -0
  26. cryptocom/ccxt/cryptocom.py +3125 -0
  27. cryptocom/ccxt/pro/__init__.py +21 -0
  28. cryptocom/ccxt/pro/cryptocom.py +1326 -0
  29. cryptocom/ccxt/static_dependencies/README.md +1 -0
  30. cryptocom/ccxt/static_dependencies/__init__.py +1 -0
  31. cryptocom/ccxt/static_dependencies/ecdsa/__init__.py +14 -0
  32. cryptocom/ccxt/static_dependencies/ecdsa/_version.py +520 -0
  33. cryptocom/ccxt/static_dependencies/ecdsa/curves.py +56 -0
  34. cryptocom/ccxt/static_dependencies/ecdsa/der.py +221 -0
  35. cryptocom/ccxt/static_dependencies/ecdsa/ecdsa.py +310 -0
  36. cryptocom/ccxt/static_dependencies/ecdsa/ellipticcurve.py +197 -0
  37. cryptocom/ccxt/static_dependencies/ecdsa/keys.py +332 -0
  38. cryptocom/ccxt/static_dependencies/ecdsa/numbertheory.py +531 -0
  39. cryptocom/ccxt/static_dependencies/ecdsa/rfc6979.py +100 -0
  40. cryptocom/ccxt/static_dependencies/ecdsa/util.py +266 -0
  41. cryptocom/ccxt/static_dependencies/ethereum/__init__.py +7 -0
  42. cryptocom/ccxt/static_dependencies/ethereum/abi/__init__.py +16 -0
  43. cryptocom/ccxt/static_dependencies/ethereum/abi/abi.py +19 -0
  44. cryptocom/ccxt/static_dependencies/ethereum/abi/base.py +152 -0
  45. cryptocom/ccxt/static_dependencies/ethereum/abi/codec.py +217 -0
  46. cryptocom/ccxt/static_dependencies/ethereum/abi/constants.py +3 -0
  47. cryptocom/ccxt/static_dependencies/ethereum/abi/decoding.py +565 -0
  48. cryptocom/ccxt/static_dependencies/ethereum/abi/encoding.py +720 -0
  49. cryptocom/ccxt/static_dependencies/ethereum/abi/exceptions.py +139 -0
  50. cryptocom/ccxt/static_dependencies/ethereum/abi/grammar.py +443 -0
  51. cryptocom/ccxt/static_dependencies/ethereum/abi/packed.py +13 -0
  52. cryptocom/ccxt/static_dependencies/ethereum/abi/py.typed +0 -0
  53. cryptocom/ccxt/static_dependencies/ethereum/abi/registry.py +643 -0
  54. cryptocom/ccxt/static_dependencies/ethereum/abi/tools/__init__.py +3 -0
  55. cryptocom/ccxt/static_dependencies/ethereum/abi/tools/_strategies.py +230 -0
  56. cryptocom/ccxt/static_dependencies/ethereum/abi/utils/__init__.py +0 -0
  57. cryptocom/ccxt/static_dependencies/ethereum/abi/utils/numeric.py +83 -0
  58. cryptocom/ccxt/static_dependencies/ethereum/abi/utils/padding.py +27 -0
  59. cryptocom/ccxt/static_dependencies/ethereum/abi/utils/string.py +19 -0
  60. cryptocom/ccxt/static_dependencies/ethereum/account/__init__.py +3 -0
  61. cryptocom/ccxt/static_dependencies/ethereum/account/encode_typed_data/__init__.py +4 -0
  62. cryptocom/ccxt/static_dependencies/ethereum/account/encode_typed_data/encoding_and_hashing.py +239 -0
  63. cryptocom/ccxt/static_dependencies/ethereum/account/encode_typed_data/helpers.py +40 -0
  64. cryptocom/ccxt/static_dependencies/ethereum/account/messages.py +263 -0
  65. cryptocom/ccxt/static_dependencies/ethereum/account/py.typed +0 -0
  66. cryptocom/ccxt/static_dependencies/ethereum/hexbytes/__init__.py +5 -0
  67. cryptocom/ccxt/static_dependencies/ethereum/hexbytes/_utils.py +54 -0
  68. cryptocom/ccxt/static_dependencies/ethereum/hexbytes/main.py +65 -0
  69. cryptocom/ccxt/static_dependencies/ethereum/hexbytes/py.typed +0 -0
  70. cryptocom/ccxt/static_dependencies/ethereum/typing/__init__.py +63 -0
  71. cryptocom/ccxt/static_dependencies/ethereum/typing/abi.py +6 -0
  72. cryptocom/ccxt/static_dependencies/ethereum/typing/bls.py +7 -0
  73. cryptocom/ccxt/static_dependencies/ethereum/typing/discovery.py +5 -0
  74. cryptocom/ccxt/static_dependencies/ethereum/typing/encoding.py +7 -0
  75. cryptocom/ccxt/static_dependencies/ethereum/typing/enums.py +17 -0
  76. cryptocom/ccxt/static_dependencies/ethereum/typing/ethpm.py +9 -0
  77. cryptocom/ccxt/static_dependencies/ethereum/typing/evm.py +20 -0
  78. cryptocom/ccxt/static_dependencies/ethereum/typing/networks.py +1122 -0
  79. cryptocom/ccxt/static_dependencies/ethereum/typing/py.typed +0 -0
  80. cryptocom/ccxt/static_dependencies/ethereum/utils/__init__.py +115 -0
  81. cryptocom/ccxt/static_dependencies/ethereum/utils/abi.py +72 -0
  82. cryptocom/ccxt/static_dependencies/ethereum/utils/address.py +171 -0
  83. cryptocom/ccxt/static_dependencies/ethereum/utils/applicators.py +151 -0
  84. cryptocom/ccxt/static_dependencies/ethereum/utils/conversions.py +190 -0
  85. cryptocom/ccxt/static_dependencies/ethereum/utils/currency.py +107 -0
  86. cryptocom/ccxt/static_dependencies/ethereum/utils/curried/__init__.py +269 -0
  87. cryptocom/ccxt/static_dependencies/ethereum/utils/debug.py +20 -0
  88. cryptocom/ccxt/static_dependencies/ethereum/utils/decorators.py +132 -0
  89. cryptocom/ccxt/static_dependencies/ethereum/utils/encoding.py +6 -0
  90. cryptocom/ccxt/static_dependencies/ethereum/utils/exceptions.py +4 -0
  91. cryptocom/ccxt/static_dependencies/ethereum/utils/functional.py +75 -0
  92. cryptocom/ccxt/static_dependencies/ethereum/utils/hexadecimal.py +74 -0
  93. cryptocom/ccxt/static_dependencies/ethereum/utils/humanize.py +188 -0
  94. cryptocom/ccxt/static_dependencies/ethereum/utils/logging.py +159 -0
  95. cryptocom/ccxt/static_dependencies/ethereum/utils/module_loading.py +31 -0
  96. cryptocom/ccxt/static_dependencies/ethereum/utils/numeric.py +43 -0
  97. cryptocom/ccxt/static_dependencies/ethereum/utils/py.typed +0 -0
  98. cryptocom/ccxt/static_dependencies/ethereum/utils/toolz.py +76 -0
  99. cryptocom/ccxt/static_dependencies/ethereum/utils/types.py +54 -0
  100. cryptocom/ccxt/static_dependencies/ethereum/utils/typing/__init__.py +18 -0
  101. cryptocom/ccxt/static_dependencies/ethereum/utils/typing/misc.py +14 -0
  102. cryptocom/ccxt/static_dependencies/ethereum/utils/units.py +31 -0
  103. cryptocom/ccxt/static_dependencies/keccak/__init__.py +3 -0
  104. cryptocom/ccxt/static_dependencies/keccak/keccak.py +197 -0
  105. cryptocom/ccxt/static_dependencies/lark/__init__.py +38 -0
  106. cryptocom/ccxt/static_dependencies/lark/__pyinstaller/__init__.py +6 -0
  107. cryptocom/ccxt/static_dependencies/lark/__pyinstaller/hook-lark.py +14 -0
  108. cryptocom/ccxt/static_dependencies/lark/ast_utils.py +59 -0
  109. cryptocom/ccxt/static_dependencies/lark/common.py +86 -0
  110. cryptocom/ccxt/static_dependencies/lark/exceptions.py +292 -0
  111. cryptocom/ccxt/static_dependencies/lark/grammar.py +130 -0
  112. cryptocom/ccxt/static_dependencies/lark/grammars/__init__.py +0 -0
  113. cryptocom/ccxt/static_dependencies/lark/grammars/common.lark +59 -0
  114. cryptocom/ccxt/static_dependencies/lark/grammars/lark.lark +62 -0
  115. cryptocom/ccxt/static_dependencies/lark/grammars/python.lark +302 -0
  116. cryptocom/ccxt/static_dependencies/lark/grammars/unicode.lark +7 -0
  117. cryptocom/ccxt/static_dependencies/lark/indenter.py +143 -0
  118. cryptocom/ccxt/static_dependencies/lark/lark.py +658 -0
  119. cryptocom/ccxt/static_dependencies/lark/lexer.py +678 -0
  120. cryptocom/ccxt/static_dependencies/lark/load_grammar.py +1428 -0
  121. cryptocom/ccxt/static_dependencies/lark/parse_tree_builder.py +391 -0
  122. cryptocom/ccxt/static_dependencies/lark/parser_frontends.py +257 -0
  123. cryptocom/ccxt/static_dependencies/lark/parsers/__init__.py +0 -0
  124. cryptocom/ccxt/static_dependencies/lark/parsers/cyk.py +340 -0
  125. cryptocom/ccxt/static_dependencies/lark/parsers/earley.py +314 -0
  126. cryptocom/ccxt/static_dependencies/lark/parsers/earley_common.py +42 -0
  127. cryptocom/ccxt/static_dependencies/lark/parsers/earley_forest.py +801 -0
  128. cryptocom/ccxt/static_dependencies/lark/parsers/grammar_analysis.py +203 -0
  129. cryptocom/ccxt/static_dependencies/lark/parsers/lalr_analysis.py +332 -0
  130. cryptocom/ccxt/static_dependencies/lark/parsers/lalr_interactive_parser.py +158 -0
  131. cryptocom/ccxt/static_dependencies/lark/parsers/lalr_parser.py +122 -0
  132. cryptocom/ccxt/static_dependencies/lark/parsers/lalr_parser_state.py +110 -0
  133. cryptocom/ccxt/static_dependencies/lark/parsers/xearley.py +165 -0
  134. cryptocom/ccxt/static_dependencies/lark/py.typed +0 -0
  135. cryptocom/ccxt/static_dependencies/lark/reconstruct.py +107 -0
  136. cryptocom/ccxt/static_dependencies/lark/tools/__init__.py +70 -0
  137. cryptocom/ccxt/static_dependencies/lark/tools/nearley.py +202 -0
  138. cryptocom/ccxt/static_dependencies/lark/tools/serialize.py +32 -0
  139. cryptocom/ccxt/static_dependencies/lark/tools/standalone.py +196 -0
  140. cryptocom/ccxt/static_dependencies/lark/tree.py +267 -0
  141. cryptocom/ccxt/static_dependencies/lark/tree_matcher.py +186 -0
  142. cryptocom/ccxt/static_dependencies/lark/tree_templates.py +180 -0
  143. cryptocom/ccxt/static_dependencies/lark/utils.py +343 -0
  144. cryptocom/ccxt/static_dependencies/lark/visitors.py +596 -0
  145. cryptocom/ccxt/static_dependencies/marshmallow/__init__.py +81 -0
  146. cryptocom/ccxt/static_dependencies/marshmallow/base.py +65 -0
  147. cryptocom/ccxt/static_dependencies/marshmallow/class_registry.py +94 -0
  148. cryptocom/ccxt/static_dependencies/marshmallow/decorators.py +231 -0
  149. cryptocom/ccxt/static_dependencies/marshmallow/error_store.py +60 -0
  150. cryptocom/ccxt/static_dependencies/marshmallow/exceptions.py +71 -0
  151. cryptocom/ccxt/static_dependencies/marshmallow/fields.py +2114 -0
  152. cryptocom/ccxt/static_dependencies/marshmallow/orderedset.py +89 -0
  153. cryptocom/ccxt/static_dependencies/marshmallow/py.typed +0 -0
  154. cryptocom/ccxt/static_dependencies/marshmallow/schema.py +1228 -0
  155. cryptocom/ccxt/static_dependencies/marshmallow/types.py +12 -0
  156. cryptocom/ccxt/static_dependencies/marshmallow/utils.py +378 -0
  157. cryptocom/ccxt/static_dependencies/marshmallow/validate.py +678 -0
  158. cryptocom/ccxt/static_dependencies/marshmallow/warnings.py +2 -0
  159. cryptocom/ccxt/static_dependencies/marshmallow_dataclass/__init__.py +1047 -0
  160. cryptocom/ccxt/static_dependencies/marshmallow_dataclass/collection_field.py +51 -0
  161. cryptocom/ccxt/static_dependencies/marshmallow_dataclass/lazy_class_attribute.py +45 -0
  162. cryptocom/ccxt/static_dependencies/marshmallow_dataclass/mypy.py +71 -0
  163. cryptocom/ccxt/static_dependencies/marshmallow_dataclass/py.typed +0 -0
  164. cryptocom/ccxt/static_dependencies/marshmallow_dataclass/typing.py +14 -0
  165. cryptocom/ccxt/static_dependencies/marshmallow_dataclass/union_field.py +82 -0
  166. cryptocom/ccxt/static_dependencies/marshmallow_oneofschema/__init__.py +1 -0
  167. cryptocom/ccxt/static_dependencies/marshmallow_oneofschema/one_of_schema.py +193 -0
  168. cryptocom/ccxt/static_dependencies/marshmallow_oneofschema/py.typed +0 -0
  169. cryptocom/ccxt/static_dependencies/msgpack/__init__.py +55 -0
  170. cryptocom/ccxt/static_dependencies/msgpack/_cmsgpack.pyx +11 -0
  171. cryptocom/ccxt/static_dependencies/msgpack/_packer.pyx +374 -0
  172. cryptocom/ccxt/static_dependencies/msgpack/_unpacker.pyx +547 -0
  173. cryptocom/ccxt/static_dependencies/msgpack/buff_converter.h +8 -0
  174. cryptocom/ccxt/static_dependencies/msgpack/exceptions.py +48 -0
  175. cryptocom/ccxt/static_dependencies/msgpack/ext.py +168 -0
  176. cryptocom/ccxt/static_dependencies/msgpack/fallback.py +951 -0
  177. cryptocom/ccxt/static_dependencies/msgpack/pack.h +89 -0
  178. cryptocom/ccxt/static_dependencies/msgpack/pack_template.h +820 -0
  179. cryptocom/ccxt/static_dependencies/msgpack/sysdep.h +194 -0
  180. cryptocom/ccxt/static_dependencies/msgpack/unpack.h +391 -0
  181. cryptocom/ccxt/static_dependencies/msgpack/unpack_define.h +95 -0
  182. cryptocom/ccxt/static_dependencies/msgpack/unpack_template.h +464 -0
  183. cryptocom/ccxt/static_dependencies/parsimonious/__init__.py +10 -0
  184. cryptocom/ccxt/static_dependencies/parsimonious/exceptions.py +105 -0
  185. cryptocom/ccxt/static_dependencies/parsimonious/expressions.py +479 -0
  186. cryptocom/ccxt/static_dependencies/parsimonious/grammar.py +487 -0
  187. cryptocom/ccxt/static_dependencies/parsimonious/nodes.py +325 -0
  188. cryptocom/ccxt/static_dependencies/parsimonious/utils.py +40 -0
  189. cryptocom/ccxt/static_dependencies/starknet/__init__.py +0 -0
  190. cryptocom/ccxt/static_dependencies/starknet/abi/v0/__init__.py +2 -0
  191. cryptocom/ccxt/static_dependencies/starknet/abi/v0/model.py +44 -0
  192. cryptocom/ccxt/static_dependencies/starknet/abi/v0/parser.py +216 -0
  193. cryptocom/ccxt/static_dependencies/starknet/abi/v0/schemas.py +72 -0
  194. cryptocom/ccxt/static_dependencies/starknet/abi/v0/shape.py +63 -0
  195. cryptocom/ccxt/static_dependencies/starknet/abi/v1/__init__.py +2 -0
  196. cryptocom/ccxt/static_dependencies/starknet/abi/v1/core_structures.json +14 -0
  197. cryptocom/ccxt/static_dependencies/starknet/abi/v1/model.py +39 -0
  198. cryptocom/ccxt/static_dependencies/starknet/abi/v1/parser.py +220 -0
  199. cryptocom/ccxt/static_dependencies/starknet/abi/v1/parser_transformer.py +179 -0
  200. cryptocom/ccxt/static_dependencies/starknet/abi/v1/schemas.py +66 -0
  201. cryptocom/ccxt/static_dependencies/starknet/abi/v1/shape.py +47 -0
  202. cryptocom/ccxt/static_dependencies/starknet/abi/v2/__init__.py +2 -0
  203. cryptocom/ccxt/static_dependencies/starknet/abi/v2/model.py +89 -0
  204. cryptocom/ccxt/static_dependencies/starknet/abi/v2/parser.py +293 -0
  205. cryptocom/ccxt/static_dependencies/starknet/abi/v2/parser_transformer.py +192 -0
  206. cryptocom/ccxt/static_dependencies/starknet/abi/v2/schemas.py +132 -0
  207. cryptocom/ccxt/static_dependencies/starknet/abi/v2/shape.py +107 -0
  208. cryptocom/ccxt/static_dependencies/starknet/cairo/__init__.py +0 -0
  209. cryptocom/ccxt/static_dependencies/starknet/cairo/data_types.py +123 -0
  210. cryptocom/ccxt/static_dependencies/starknet/cairo/deprecated_parse/__init__.py +0 -0
  211. cryptocom/ccxt/static_dependencies/starknet/cairo/deprecated_parse/cairo_types.py +77 -0
  212. cryptocom/ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser.py +46 -0
  213. cryptocom/ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser_transformer.py +138 -0
  214. cryptocom/ccxt/static_dependencies/starknet/cairo/felt.py +64 -0
  215. cryptocom/ccxt/static_dependencies/starknet/cairo/type_parser.py +121 -0
  216. cryptocom/ccxt/static_dependencies/starknet/cairo/v1/__init__.py +0 -0
  217. cryptocom/ccxt/static_dependencies/starknet/cairo/v1/type_parser.py +59 -0
  218. cryptocom/ccxt/static_dependencies/starknet/cairo/v2/__init__.py +0 -0
  219. cryptocom/ccxt/static_dependencies/starknet/cairo/v2/type_parser.py +77 -0
  220. cryptocom/ccxt/static_dependencies/starknet/ccxt_utils.py +7 -0
  221. cryptocom/ccxt/static_dependencies/starknet/common.py +15 -0
  222. cryptocom/ccxt/static_dependencies/starknet/constants.py +39 -0
  223. cryptocom/ccxt/static_dependencies/starknet/hash/__init__.py +0 -0
  224. cryptocom/ccxt/static_dependencies/starknet/hash/address.py +79 -0
  225. cryptocom/ccxt/static_dependencies/starknet/hash/compiled_class_hash_objects.py +111 -0
  226. cryptocom/ccxt/static_dependencies/starknet/hash/selector.py +16 -0
  227. cryptocom/ccxt/static_dependencies/starknet/hash/storage.py +12 -0
  228. cryptocom/ccxt/static_dependencies/starknet/hash/utils.py +78 -0
  229. cryptocom/ccxt/static_dependencies/starknet/models/__init__.py +0 -0
  230. cryptocom/ccxt/static_dependencies/starknet/models/typed_data.py +45 -0
  231. cryptocom/ccxt/static_dependencies/starknet/serialization/__init__.py +24 -0
  232. cryptocom/ccxt/static_dependencies/starknet/serialization/_calldata_reader.py +40 -0
  233. cryptocom/ccxt/static_dependencies/starknet/serialization/_context.py +142 -0
  234. cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/__init__.py +10 -0
  235. cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/_common.py +82 -0
  236. cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/array_serializer.py +43 -0
  237. cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/bool_serializer.py +37 -0
  238. cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/byte_array_serializer.py +66 -0
  239. cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/cairo_data_serializer.py +71 -0
  240. cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/enum_serializer.py +71 -0
  241. cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/felt_serializer.py +50 -0
  242. cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/named_tuple_serializer.py +58 -0
  243. cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/option_serializer.py +43 -0
  244. cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/output_serializer.py +40 -0
  245. cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/payload_serializer.py +72 -0
  246. cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/struct_serializer.py +36 -0
  247. cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/tuple_serializer.py +36 -0
  248. cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/uint256_serializer.py +76 -0
  249. cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/uint_serializer.py +100 -0
  250. cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/unit_serializer.py +32 -0
  251. cryptocom/ccxt/static_dependencies/starknet/serialization/errors.py +10 -0
  252. cryptocom/ccxt/static_dependencies/starknet/serialization/factory.py +229 -0
  253. cryptocom/ccxt/static_dependencies/starknet/serialization/function_serialization_adapter.py +110 -0
  254. cryptocom/ccxt/static_dependencies/starknet/serialization/tuple_dataclass.py +59 -0
  255. cryptocom/ccxt/static_dependencies/starknet/utils/__init__.py +0 -0
  256. cryptocom/ccxt/static_dependencies/starknet/utils/constructor_args_translator.py +86 -0
  257. cryptocom/ccxt/static_dependencies/starknet/utils/iterable.py +13 -0
  258. cryptocom/ccxt/static_dependencies/starknet/utils/schema.py +13 -0
  259. cryptocom/ccxt/static_dependencies/starknet/utils/typed_data.py +182 -0
  260. cryptocom/ccxt/static_dependencies/starkware/__init__.py +0 -0
  261. cryptocom/ccxt/static_dependencies/starkware/crypto/__init__.py +0 -0
  262. cryptocom/ccxt/static_dependencies/starkware/crypto/fast_pedersen_hash.py +50 -0
  263. cryptocom/ccxt/static_dependencies/starkware/crypto/math_utils.py +78 -0
  264. cryptocom/ccxt/static_dependencies/starkware/crypto/signature.py +2344 -0
  265. cryptocom/ccxt/static_dependencies/starkware/crypto/utils.py +63 -0
  266. cryptocom/ccxt/static_dependencies/sympy/__init__.py +0 -0
  267. cryptocom/ccxt/static_dependencies/sympy/core/__init__.py +0 -0
  268. cryptocom/ccxt/static_dependencies/sympy/core/intfunc.py +35 -0
  269. cryptocom/ccxt/static_dependencies/sympy/external/__init__.py +0 -0
  270. cryptocom/ccxt/static_dependencies/sympy/external/gmpy.py +345 -0
  271. cryptocom/ccxt/static_dependencies/sympy/external/importtools.py +187 -0
  272. cryptocom/ccxt/static_dependencies/sympy/external/ntheory.py +637 -0
  273. cryptocom/ccxt/static_dependencies/sympy/external/pythonmpq.py +341 -0
  274. cryptocom/ccxt/static_dependencies/toolz/__init__.py +26 -0
  275. cryptocom/ccxt/static_dependencies/toolz/_signatures.py +784 -0
  276. cryptocom/ccxt/static_dependencies/toolz/_version.py +520 -0
  277. cryptocom/ccxt/static_dependencies/toolz/compatibility.py +30 -0
  278. cryptocom/ccxt/static_dependencies/toolz/curried/__init__.py +101 -0
  279. cryptocom/ccxt/static_dependencies/toolz/curried/exceptions.py +22 -0
  280. cryptocom/ccxt/static_dependencies/toolz/curried/operator.py +22 -0
  281. cryptocom/ccxt/static_dependencies/toolz/dicttoolz.py +339 -0
  282. cryptocom/ccxt/static_dependencies/toolz/functoolz.py +1049 -0
  283. cryptocom/ccxt/static_dependencies/toolz/itertoolz.py +1057 -0
  284. cryptocom/ccxt/static_dependencies/toolz/recipes.py +46 -0
  285. cryptocom/ccxt/static_dependencies/toolz/utils.py +9 -0
  286. cryptocom/ccxt/static_dependencies/typing_inspect/__init__.py +0 -0
  287. cryptocom/ccxt/static_dependencies/typing_inspect/typing_inspect.py +851 -0
  288. crypto_com_sdk-0.0.14.dist-info/METADATA +0 -79
  289. crypto_com_sdk-0.0.14.dist-info/RECORD +0 -3
  290. {crypto_com_sdk-0.0.14.dist-info → crypto_com_sdk-0.0.16.dist-info}/WHEEL +0 -0
@@ -0,0 +1,306 @@
1
+ Metadata-Version: 2.4
2
+ Name: crypto-com-sdk
3
+ Version: 0.0.16
4
+ Summary: cryptocom crypto exchange api client
5
+ Project-URL: Homepage, https://github.com/ccxt/ccxt
6
+ Project-URL: Issues, https://github.com/ccxt/ccxt
7
+ Author-email: CCXT <info@ccxt.trade>
8
+ License: MIT
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Intended Audience :: Financial and Insurance Industry
11
+ Classifier: Intended Audience :: Information Technology
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Topic :: Office/Business :: Financial :: Investment
16
+ Classifier: Topic :: Software Development :: Build Tools
17
+ Requires-Python: >=3.8
18
+ Description-Content-Type: text/markdown
19
+
20
+ # cryptocom-python
21
+ Python SDK (sync and async) for Cryptocom cryptocurrency exchange with Rest and WS capabilities.
22
+
23
+ You can check the SDK docs here: [SDK](https://docs.ccxt.com/#/exchanges/cryptocom)
24
+ You can check Cryptocom's docs here: [Docs](https://ccxt.com)
25
+
26
+
27
+ ## Installation
28
+
29
+ ```
30
+ pip install __PYTHON_PACKAGE_NAME__
31
+ ```
32
+
33
+ ## Usage
34
+
35
+ ### Sync
36
+
37
+ ```Python
38
+ from cryptocom import CryptocomSync
39
+
40
+ def main():
41
+ instance = CryptocomSync({})
42
+ ob = instance.fetch_order_book("BTC/USDC")
43
+ print(ob)
44
+ #
45
+ # balance = instance.fetch_balance()
46
+ # order = instance.create_order("BTC/USDC", "limit", "buy", 1, 100000)
47
+ ```
48
+
49
+ ### Async
50
+
51
+ ```Python
52
+ import asyncio
53
+ from cryptocom import CryptocomAsync
54
+
55
+ async def main():
56
+ instance = CryptocomAsync({})
57
+ ob = await instance.fetch_order_book("BTC/USDC")
58
+ print(ob)
59
+ #
60
+ # balance = await instance.fetch_balance()
61
+ # order = await instance.create_order("BTC/USDC", "limit", "buy", 1, 100000)
62
+
63
+ asyncio.run(main())
64
+ ```
65
+
66
+
67
+
68
+ ### Websockets
69
+
70
+ ```Python
71
+ from cryptocom import CryptocomWs
72
+
73
+ async def main():
74
+ instance = CryptocomWs({})
75
+ while True:
76
+ ob = await instance.watch_order_book("BTC/USDC")
77
+ print(ob)
78
+ # orders = await instance.watch_orders("BTC/USDC")
79
+ ```
80
+
81
+
82
+
83
+
84
+
85
+ #### Raw call
86
+
87
+ You can also construct custom requests to available "implicit" endpoints
88
+
89
+ ```Python
90
+ request = {
91
+ 'type': 'candleSnapshot',
92
+ 'req': {
93
+ 'coin': coin,
94
+ 'interval': tf,
95
+ 'startTime': since,
96
+ 'endTime': until,
97
+ },
98
+ }
99
+ response = await instance.public_post_info(request)
100
+ ```
101
+
102
+
103
+
104
+
105
+ ## Available methods
106
+
107
+ ### REST Unified
108
+
109
+ - `create_advanced_order_request(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={})`
110
+ - `create_order_request(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={})`
111
+ - `create_order(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={})`
112
+ - `create_orders(self, orders: List[OrderRequest], params={})`
113
+ - `fetch_accounts(self, params={})`
114
+ - `fetch_balance(self, params={})`
115
+ - `fetch_deposit_address(self, code: str, params={})`
116
+ - `fetch_deposit_addresses_by_network(self, code: str, params={})`
117
+ - `fetch_deposit_withdraw_fees(self, codes: Strings = None, params={})`
118
+ - `fetch_deposits(self, code: Str = None, since: Int = None, limit: Int = None, params={})`
119
+ - `fetch_funding_rate_history(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
120
+ - `fetch_ledger(self, code: Str = None, since: Int = None, limit: Int = None, params={})`
121
+ - `fetch_markets(self, params={})`
122
+ - `fetch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
123
+ - `fetch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={})`
124
+ - `fetch_open_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
125
+ - `fetch_order_book(self, symbol: str, limit: Int = None, params={})`
126
+ - `fetch_order(self, id: str, symbol: Str = None, params={})`
127
+ - `fetch_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
128
+ - `fetch_position(self, symbol: str, params={})`
129
+ - `fetch_positions(self, symbols: Strings = None, params={})`
130
+ - `fetch_settlement_history(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
131
+ - `fetch_ticker(self, symbol: str, params={})`
132
+ - `fetch_tickers(self, symbols: Strings = None, params={})`
133
+ - `fetch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={})`
134
+ - `fetch_trading_fee(self, symbol: str, params={})`
135
+ - `fetch_trading_fees(self, params={})`
136
+ - `fetch_withdrawals(self, code: Str = None, since: Int = None, limit: Int = None, params={})`
137
+ - `cancel_all_orders(self, symbol: Str = None, params={})`
138
+ - `cancel_order(self, id: str, symbol: Str = None, params={})`
139
+ - `cancel_orders_for_symbols(self, orders: List[CancellationRequest], params={})`
140
+ - `cancel_orders(self, ids, symbol: Str = None, params={})`
141
+ - `close_position(self, symbol: str, side: OrderSide = None, params={})`
142
+ - `custom_handle_margin_mode_and_params(self, methodName, params={})`
143
+ - `describe(self)`
144
+ - `nonce(self)`
145
+ - `params_to_string(self, object, level)`
146
+ - `withdraw(self, code: str, amount: float, address: str, tag=None, params={})`
147
+
148
+ ### REST Raw
149
+
150
+ - `v1_public_get_public_auth(request)`
151
+ - `v1_public_get_public_get_instruments(request)`
152
+ - `v1_public_get_public_get_book(request)`
153
+ - `v1_public_get_public_get_candlestick(request)`
154
+ - `v1_public_get_public_get_trades(request)`
155
+ - `v1_public_get_public_get_tickers(request)`
156
+ - `v1_public_get_public_get_valuations(request)`
157
+ - `v1_public_get_public_get_expired_settlement_price(request)`
158
+ - `v1_public_get_public_get_insurance(request)`
159
+ - `v1_public_get_public_get_risk_parameters(request)`
160
+ - `v1_public_post_public_staking_get_conversion_rate(request)`
161
+ - `v1_private_post_private_set_cancel_on_disconnect(request)`
162
+ - `v1_private_post_private_get_cancel_on_disconnect(request)`
163
+ - `v1_private_post_private_user_balance(request)`
164
+ - `v1_private_post_private_user_balance_history(request)`
165
+ - `v1_private_post_private_get_positions(request)`
166
+ - `v1_private_post_private_create_order(request)`
167
+ - `v1_private_post_private_create_order_list(request)`
168
+ - `v1_private_post_private_cancel_order(request)`
169
+ - `v1_private_post_private_cancel_order_list(request)`
170
+ - `v1_private_post_private_cancel_all_orders(request)`
171
+ - `v1_private_post_private_close_position(request)`
172
+ - `v1_private_post_private_get_order_history(request)`
173
+ - `v1_private_post_private_get_open_orders(request)`
174
+ - `v1_private_post_private_get_order_detail(request)`
175
+ - `v1_private_post_private_get_trades(request)`
176
+ - `v1_private_post_private_change_account_leverage(request)`
177
+ - `v1_private_post_private_get_transactions(request)`
178
+ - `v1_private_post_private_create_subaccount_transfer(request)`
179
+ - `v1_private_post_private_get_subaccount_balances(request)`
180
+ - `v1_private_post_private_get_order_list(request)`
181
+ - `v1_private_post_private_create_withdrawal(request)`
182
+ - `v1_private_post_private_get_currency_networks(request)`
183
+ - `v1_private_post_private_get_deposit_address(request)`
184
+ - `v1_private_post_private_get_accounts(request)`
185
+ - `v1_private_post_private_get_withdrawal_history(request)`
186
+ - `v1_private_post_private_get_deposit_history(request)`
187
+ - `v1_private_post_private_get_fee_rate(request)`
188
+ - `v1_private_post_private_get_instrument_fee_rate(request)`
189
+ - `v1_private_post_private_staking_stake(request)`
190
+ - `v1_private_post_private_staking_unstake(request)`
191
+ - `v1_private_post_private_staking_get_staking_position(request)`
192
+ - `v1_private_post_private_staking_get_staking_instruments(request)`
193
+ - `v1_private_post_private_staking_get_open_stake(request)`
194
+ - `v1_private_post_private_staking_get_stake_history(request)`
195
+ - `v1_private_post_private_staking_get_reward_history(request)`
196
+ - `v1_private_post_private_staking_convert(request)`
197
+ - `v1_private_post_private_staking_get_open_convert(request)`
198
+ - `v1_private_post_private_staking_get_convert_history(request)`
199
+ - `v2_public_get_public_auth(request)`
200
+ - `v2_public_get_public_get_instruments(request)`
201
+ - `v2_public_get_public_get_book(request)`
202
+ - `v2_public_get_public_get_candlestick(request)`
203
+ - `v2_public_get_public_get_ticker(request)`
204
+ - `v2_public_get_public_get_trades(request)`
205
+ - `v2_public_get_public_margin_get_transfer_currencies(request)`
206
+ - `v2_public_get_public_margin_get_load_currenices(request)`
207
+ - `v2_public_get_public_respond_heartbeat(request)`
208
+ - `v2_private_post_private_set_cancel_on_disconnect(request)`
209
+ - `v2_private_post_private_get_cancel_on_disconnect(request)`
210
+ - `v2_private_post_private_create_withdrawal(request)`
211
+ - `v2_private_post_private_get_withdrawal_history(request)`
212
+ - `v2_private_post_private_get_currency_networks(request)`
213
+ - `v2_private_post_private_get_deposit_history(request)`
214
+ - `v2_private_post_private_get_deposit_address(request)`
215
+ - `v2_private_post_private_export_create_export_request(request)`
216
+ - `v2_private_post_private_export_get_export_requests(request)`
217
+ - `v2_private_post_private_export_download_export_output(request)`
218
+ - `v2_private_post_private_get_account_summary(request)`
219
+ - `v2_private_post_private_create_order(request)`
220
+ - `v2_private_post_private_cancel_order(request)`
221
+ - `v2_private_post_private_cancel_all_orders(request)`
222
+ - `v2_private_post_private_create_order_list(request)`
223
+ - `v2_private_post_private_get_order_history(request)`
224
+ - `v2_private_post_private_get_open_orders(request)`
225
+ - `v2_private_post_private_get_order_detail(request)`
226
+ - `v2_private_post_private_get_trades(request)`
227
+ - `v2_private_post_private_get_accounts(request)`
228
+ - `v2_private_post_private_get_subaccount_balances(request)`
229
+ - `v2_private_post_private_create_subaccount_transfer(request)`
230
+ - `v2_private_post_private_otc_get_otc_user(request)`
231
+ - `v2_private_post_private_otc_get_instruments(request)`
232
+ - `v2_private_post_private_otc_request_quote(request)`
233
+ - `v2_private_post_private_otc_accept_quote(request)`
234
+ - `v2_private_post_private_otc_get_quote_history(request)`
235
+ - `v2_private_post_private_otc_get_trade_history(request)`
236
+ - `v2_private_post_private_otc_create_order(request)`
237
+ - `derivatives_public_get_public_auth(request)`
238
+ - `derivatives_public_get_public_get_instruments(request)`
239
+ - `derivatives_public_get_public_get_book(request)`
240
+ - `derivatives_public_get_public_get_candlestick(request)`
241
+ - `derivatives_public_get_public_get_trades(request)`
242
+ - `derivatives_public_get_public_get_tickers(request)`
243
+ - `derivatives_public_get_public_get_valuations(request)`
244
+ - `derivatives_public_get_public_get_expired_settlement_price(request)`
245
+ - `derivatives_public_get_public_get_insurance(request)`
246
+ - `derivatives_private_post_private_set_cancel_on_disconnect(request)`
247
+ - `derivatives_private_post_private_get_cancel_on_disconnect(request)`
248
+ - `derivatives_private_post_private_user_balance(request)`
249
+ - `derivatives_private_post_private_user_balance_history(request)`
250
+ - `derivatives_private_post_private_get_positions(request)`
251
+ - `derivatives_private_post_private_create_order(request)`
252
+ - `derivatives_private_post_private_create_order_list(request)`
253
+ - `derivatives_private_post_private_cancel_order(request)`
254
+ - `derivatives_private_post_private_cancel_order_list(request)`
255
+ - `derivatives_private_post_private_cancel_all_orders(request)`
256
+ - `derivatives_private_post_private_close_position(request)`
257
+ - `derivatives_private_post_private_convert_collateral(request)`
258
+ - `derivatives_private_post_private_get_order_history(request)`
259
+ - `derivatives_private_post_private_get_open_orders(request)`
260
+ - `derivatives_private_post_private_get_order_detail(request)`
261
+ - `derivatives_private_post_private_get_trades(request)`
262
+ - `derivatives_private_post_private_change_account_leverage(request)`
263
+ - `derivatives_private_post_private_get_transactions(request)`
264
+ - `derivatives_private_post_private_create_subaccount_transfer(request)`
265
+ - `derivatives_private_post_private_get_subaccount_balances(request)`
266
+ - `derivatives_private_post_private_get_order_list(request)`
267
+
268
+ ### WS Unified
269
+
270
+ - `describe(self)`
271
+ - `pong(self, client, message)`
272
+ - `watch_order_book(self, symbol: str, limit: Int = None, params={})`
273
+ - `un_watch_order_book(self, symbol: str, params={})`
274
+ - `watch_order_book_for_symbols(self, symbols: List[str], limit: Int = None, params={})`
275
+ - `un_watch_order_book_for_symbols(self, symbols: List[str], params={})`
276
+ - `watch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={})`
277
+ - `un_watch_trades(self, symbol: str, params={})`
278
+ - `watch_trades_for_symbols(self, symbols: List[str], since: Int = None, limit: Int = None, params={})`
279
+ - `un_watch_trades_for_symbols(self, symbols: List[str], params={})`
280
+ - `watch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
281
+ - `watch_ticker(self, symbol: str, params={})`
282
+ - `un_watch_ticker(self, symbol: str, params={})`
283
+ - `watch_tickers(self, symbols: Strings = None, params={})`
284
+ - `un_watch_tickers(self, symbols: Strings = None, params={})`
285
+ - `watch_bids_asks(self, symbols: Strings = None, params={})`
286
+ - `watch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={})`
287
+ - `un_watch_ohlcv(self, symbol: str, timeframe='1m', params={})`
288
+ - `watch_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
289
+ - `watch_positions(self, symbols: Strings = None, since: Int = None, limit: Int = None, params={})`
290
+ - `set_positions_cache(self, client: Client, type, symbols: Strings = None)`
291
+ - `load_positions_snapshot(self, client, messageHash)`
292
+ - `watch_balance(self, params={})`
293
+ - `create_order_ws(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={})`
294
+ - `cancel_order_ws(self, id: str, symbol: Str = None, params={})`
295
+ - `cancel_all_orders_ws(self, symbol: Str = None, params={})`
296
+ - `watch_public(self, messageHash, params={})`
297
+ - `watch_public_multiple(self, messageHashes, topics, params={})`
298
+ - `un_watch_public_multiple(self, topic: str, symbols: List[str], messageHashes: List[str], subMessageHashes: List[str], topics: List[str], params={}, subExtend={})`
299
+ - `watch_private_request(self, nonce, params={})`
300
+ - `watch_private_subscribe(self, messageHash, params={})`
301
+ - `authenticate(self, params={})`
302
+
303
+ ## Contribution
304
+ - Give us a star :star:
305
+ - Fork and Clone! Awesome
306
+ - Select existing issues or create a new issue.
@@ -0,0 +1,288 @@
1
+ cryptocom/__init__.py,sha256=Ei5wz00g_3ERgN2Gsu1ZcccyL4tByDvfxR8qKkPxAgc,282
2
+ cryptocom/ccxt/__init__.py,sha256=1BpzAkpiBnRgs3T_JpbtSIZ0C3dbHXwO8Xm1blX2A5M,6054
3
+ cryptocom/ccxt/cryptocom.py,sha256=MqHql1i3rEqSdJHunGVHlqv6gl4p68YyPENMnseYJiU,141103
4
+ cryptocom/ccxt/abstract/cryptocom.py,sha256=VdIfedBhx9Oym8fQ06c4Xmip7iT02hiVNBQA0E0rXU8,20915
5
+ cryptocom/ccxt/async_support/__init__.py,sha256=X_Vp-RNY7wyaBYK5aYC8X1j8USFzr9kTk1eCw1owqsw,4787
6
+ cryptocom/ccxt/async_support/cryptocom.py,sha256=GCtbWxu0SD3kW4SuECPYKP-ZQiV0VuIhVswWjuCmikE,141711
7
+ cryptocom/ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
8
+ cryptocom/ccxt/async_support/base/exchange.py,sha256=kaTkt4ymyRymoDhvLkrjCrEpcs89pipkw6uTn6duP6c,117187
9
+ cryptocom/ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
10
+ cryptocom/ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
11
+ cryptocom/ccxt/async_support/base/ws/aiohttp_client.py,sha256=Y5HxAVXyyYduj6b6SbbUZETlq3GrVMzrkW1r-TMgpb8,6329
12
+ cryptocom/ccxt/async_support/base/ws/cache.py,sha256=Qf7a9t22vW6jfl387IUTl0lPmIejBW3VG38ge1Jh55g,8170
13
+ cryptocom/ccxt/async_support/base/ws/client.py,sha256=J5lTz3QGTaURZYeqW4R5xNw1orDlHYoOVXIJIX6d5Zc,8188
14
+ cryptocom/ccxt/async_support/base/ws/fast_client.py,sha256=WPXKqSi9OPDtpgAvt19T1EVtTg4BNk8WGSLtxUVMh08,3956
15
+ cryptocom/ccxt/async_support/base/ws/functions.py,sha256=qwvEnjtINWL5ZU-dbbeIunjyBxzFqbGWHfVhxqAcKug,1499
16
+ cryptocom/ccxt/async_support/base/ws/future.py,sha256=WhAJ7wdEiLdfgl5tfGHv6HgLxAN0tTc9xL4gbkKVOaE,2409
17
+ cryptocom/ccxt/async_support/base/ws/order_book.py,sha256=uBUaIHhzMRykpmo4BCsdJ-t_HozS6VxhEs8x-Kbj-NI,2894
18
+ cryptocom/ccxt/async_support/base/ws/order_book_side.py,sha256=GhnGUt78pJ-AYL_Dq9produGjmBJLCI5FHIRdMz1O-g,6551
19
+ cryptocom/ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
20
+ cryptocom/ccxt/base/decimal_to_precision.py,sha256=fgWRBzRTtsf3r2INyS4f7WHlzgjB5YM1ekiwqD21aac,6634
21
+ cryptocom/ccxt/base/errors.py,sha256=MvCrL_sAM3de616T6RE0PSxiF2xV6Qqz5b1y1ghidbk,4888
22
+ cryptocom/ccxt/base/exchange.py,sha256=rlbOp4euVpeXPiEEAS0eWLHA2nXGRhLHmiEnbBoIqcI,320329
23
+ cryptocom/ccxt/base/precise.py,sha256=koce64Yrp6vFbGijJtUt-QQ6XhJgeGTCksZ871FPp_A,8886
24
+ cryptocom/ccxt/base/types.py,sha256=asavKC4Fpuz9MGv1tJBld0j8CeojiP7nBj04Abusst4,10766
25
+ cryptocom/ccxt/pro/__init__.py,sha256=BLe3VgGREtuVksEgOn0FSh9EGC9sQT_DMpOV9dfuVTE,625
26
+ cryptocom/ccxt/pro/cryptocom.py,sha256=HxORVyDV1R0ILS-fl8ikRvF0D7pW9AqPaZNxVVeOTYI,60160
27
+ cryptocom/ccxt/static_dependencies/README.md,sha256=3TCvhhn09_Cqf9BDDpao1V7EfKHDpQ6k9oWRsLFixpU,18
28
+ cryptocom/ccxt/static_dependencies/__init__.py,sha256=tzFje8cloqmiIE6kola3EaYC0SnD1izWnri69hzHsSw,168
29
+ cryptocom/ccxt/static_dependencies/ecdsa/__init__.py,sha256=Xaj0G79BLtBt2YZcOOMV8qOlQZ7fIJznNiHhiEEZfQA,594
30
+ cryptocom/ccxt/static_dependencies/ecdsa/_version.py,sha256=eMIr0XQiX8_th_x4iAd0JFcYKLowY9dYz33-vKVFIPI,18461
31
+ cryptocom/ccxt/static_dependencies/ecdsa/curves.py,sha256=3CN80_QIv25zyF_5RY7_TZAgJd5EHsMUyfbevtxjnx4,1886
32
+ cryptocom/ccxt/static_dependencies/ecdsa/der.py,sha256=Nzlxj6r2hyGwDtj2JAoWKVTz34CsvPWQxvXV9RSs0mQ,6942
33
+ cryptocom/ccxt/static_dependencies/ecdsa/ecdsa.py,sha256=hHfeDVRsBS2yO4M-Vz7GdbOHyQ-lMD4i9k5HBgOCS9Y,11336
34
+ cryptocom/ccxt/static_dependencies/ecdsa/ellipticcurve.py,sha256=eoStUvTfXNiubR4t6qz_QeUndedgez8tOfOZNiQbgv0,5517
35
+ cryptocom/ccxt/static_dependencies/ecdsa/keys.py,sha256=14pEz3rvn5-U0U2zLyiUN2IY4ha7ZYLVSjChj7J9-so,14201
36
+ cryptocom/ccxt/static_dependencies/ecdsa/numbertheory.py,sha256=WyMnrdTC28POCqpcVbf6kSXJvuB3Zmn_ssNTZ3erBUA,13468
37
+ cryptocom/ccxt/static_dependencies/ecdsa/rfc6979.py,sha256=kkkI7js69gWbFv2kzl_DwGkN6qffEpI9u4qqQ_XDGEo,2572
38
+ cryptocom/ccxt/static_dependencies/ecdsa/util.py,sha256=M0NQZ4dDQFTd8afSkF-7YyP9KbsXzOn-VUIYCxik8ms,10037
39
+ cryptocom/ccxt/static_dependencies/ethereum/__init__.py,sha256=xfPvnZ1igh-KjLSLXkvGEb_F5nC7ACbbRyobJtN_rbM,171
40
+ cryptocom/ccxt/static_dependencies/ethereum/abi/__init__.py,sha256=KchRBwK8BlBQ8I5yE_wfcl3zDALCrf2Cxld6uuWoKX8,276
41
+ cryptocom/ccxt/static_dependencies/ethereum/abi/abi.py,sha256=HPxmpV6EPQPy4RDzp1Vnvv0yAo3nVVICy6RgSCdkbbY,490
42
+ cryptocom/ccxt/static_dependencies/ethereum/abi/base.py,sha256=L1jLyBNGjZKfJGZ8NUIMTw3VShjLwoblpXotgpJjMNM,4861
43
+ cryptocom/ccxt/static_dependencies/ethereum/abi/codec.py,sha256=4w5TiUwuoiSKIiJOi0pRrQ3v1sPwFJMZWzRMugPSVLY,6871
44
+ cryptocom/ccxt/static_dependencies/ethereum/abi/constants.py,sha256=ebWuKkdkZUlN9HOPO5F6DzX3f05KcZSCmtnRXYZCdyw,51
45
+ cryptocom/ccxt/static_dependencies/ethereum/abi/decoding.py,sha256=3sjAL5vFluY0jE9BtYwf9DQiwQeuvV1DYMUrZKwxOEw,16828
46
+ cryptocom/ccxt/static_dependencies/ethereum/abi/encoding.py,sha256=dojX7qlUx_cnSIAXKcT4sU-t1SQDIQIGsBNoM-bEHe8,20162
47
+ cryptocom/ccxt/static_dependencies/ethereum/abi/exceptions.py,sha256=Fn238lB98zQAMNTuHHgXC_iBGk7GRlh0_wCLDaa476s,2941
48
+ cryptocom/ccxt/static_dependencies/ethereum/abi/grammar.py,sha256=AJcaT5QzVNhOEGSc4heLOfH-RNT8j2KUUgzAQj5yf3E,12358
49
+ cryptocom/ccxt/static_dependencies/ethereum/abi/packed.py,sha256=I2eDuCdp1kXs2sIzJGbklDnb3ULx8EbKTa0uQJ-pLF0,387
50
+ cryptocom/ccxt/static_dependencies/ethereum/abi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
+ cryptocom/ccxt/static_dependencies/ethereum/abi/registry.py,sha256=dKVlq25kZVHTjrjyUpwiVB9Pm4Kdj9JcHO4nSsletQI,19329
52
+ cryptocom/ccxt/static_dependencies/ethereum/abi/tools/__init__.py,sha256=qyxY82bT0HM8m9bqpo0IMFY_y4OM9C0YA4gUACnUWQg,65
53
+ cryptocom/ccxt/static_dependencies/ethereum/abi/tools/_strategies.py,sha256=nNREv0Fp5Ejmli-9mQFQRXGJMyK7iCTYk_bDdBPG0yQ,5742
54
+ cryptocom/ccxt/static_dependencies/ethereum/abi/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
+ cryptocom/ccxt/static_dependencies/ethereum/abi/utils/numeric.py,sha256=3KAm3ZFcZ95TdIJeOQb7Uj_XyI3GDwofg25s6rJspVU,2097
56
+ cryptocom/ccxt/static_dependencies/ethereum/abi/utils/padding.py,sha256=Wg6ayuzr7V7SbWzNU3qlVx7hGppyftP4iMNw1a376B4,426
57
+ cryptocom/ccxt/static_dependencies/ethereum/abi/utils/string.py,sha256=fjsAR2C7Xlu5bHomxx5l4rlADFtByzGTQfugMTo8TQk,436
58
+ cryptocom/ccxt/static_dependencies/ethereum/account/__init__.py,sha256=A7CnT-tudgrgtZwIHpAqMDBl7gXolw9f1xmLkATFhzM,48
59
+ cryptocom/ccxt/static_dependencies/ethereum/account/messages.py,sha256=SVON_N_s0fJFX4--xvcmw6rNP3A0RdaauUgrxRBJXas,10588
60
+ cryptocom/ccxt/static_dependencies/ethereum/account/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
61
+ cryptocom/ccxt/static_dependencies/ethereum/account/encode_typed_data/__init__.py,sha256=Ibeat3YaJZHoEfwvW_cMdBX8n8nB8TAOx67YFoKfqcM,80
62
+ cryptocom/ccxt/static_dependencies/ethereum/account/encode_typed_data/encoding_and_hashing.py,sha256=QtTlkSfHbz5kd9ybdBxpWlqG2ZTFSKbEcxRwgMMVLEY,7126
63
+ cryptocom/ccxt/static_dependencies/ethereum/account/encode_typed_data/helpers.py,sha256=a4VbVz93mI2WmplYskI0ITTbUYjmv6MjWaMrQLZWTjU,982
64
+ cryptocom/ccxt/static_dependencies/ethereum/hexbytes/__init__.py,sha256=CTEC38p8BZiDRds2iANHMTjVspmjXOVzkvF68SPwKjA,60
65
+ cryptocom/ccxt/static_dependencies/ethereum/hexbytes/_utils.py,sha256=hUEDsNJ8WJqYBENOML0S1ni8Lnf2veYB0bCmjM1avCI,1687
66
+ cryptocom/ccxt/static_dependencies/ethereum/hexbytes/main.py,sha256=c1hO5-DoevsxQVcuN5H4pPBeWT2OG7JZk0Xq7IlT98g,1768
67
+ cryptocom/ccxt/static_dependencies/ethereum/hexbytes/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
+ cryptocom/ccxt/static_dependencies/ethereum/typing/__init__.py,sha256=4ifoznAfmAiUg64ikxGCQvM0bG0h6rmwBpWiBW4mFak,913
69
+ cryptocom/ccxt/static_dependencies/ethereum/typing/abi.py,sha256=kGqws8LwEauRbdgxonXq1xhw13Cr_nucn2msTPXfgk4,85
70
+ cryptocom/ccxt/static_dependencies/ethereum/typing/bls.py,sha256=SZ-rytl8G0Vkvwz_riZKBQ_DLv5ebbprJJNna12vnwQ,191
71
+ cryptocom/ccxt/static_dependencies/ethereum/typing/discovery.py,sha256=0H-tbsb-8B-hjwuv0rTRzlpkcpPvqPsyvOaH2IfLLgg,71
72
+ cryptocom/ccxt/static_dependencies/ethereum/typing/encoding.py,sha256=AhhHOqZwo9NPbKI8_aBw5fmDqj_0mbBMACwrSCz8mes,117
73
+ cryptocom/ccxt/static_dependencies/ethereum/typing/enums.py,sha256=Kb-GcYItS6FYGgG9mbqNFetTuw85_UJeZ0dZyEIYrWE,458
74
+ cryptocom/ccxt/static_dependencies/ethereum/typing/ethpm.py,sha256=ZXF2KA11CSsQBmLT4sZgcT-i7IQxUsI5MTHWyi1lEo8,173
75
+ cryptocom/ccxt/static_dependencies/ethereum/typing/evm.py,sha256=JShudaL4ebhdsMySfolxbHw17RiDehl1PRuZnYQbdLE,546
76
+ cryptocom/ccxt/static_dependencies/ethereum/typing/networks.py,sha256=mt30i92LjddDF0un8OggICEz9BO2M-kZVB0zRSMY_34,20845
77
+ cryptocom/ccxt/static_dependencies/ethereum/typing/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
78
+ cryptocom/ccxt/static_dependencies/ethereum/utils/__init__.py,sha256=Ol72mGtvYkM20t05XZc_4jNb3vUPEorT9RIGWh6D9q8,2162
79
+ cryptocom/ccxt/static_dependencies/ethereum/utils/abi.py,sha256=nVug_kOAvc1SU26SjWfRZsgTU6dtLsBNktFff07MFrA,2123
80
+ cryptocom/ccxt/static_dependencies/ethereum/utils/address.py,sha256=yUKkJyp-6k9TJyX_Xv3id4bewyCw2gEVVfme-Pem8oI,4364
81
+ cryptocom/ccxt/static_dependencies/ethereum/utils/applicators.py,sha256=CLKnrC-7eUCaWaszvuJkwv24E2zm4kbEUt3vSymsaLE,4342
82
+ cryptocom/ccxt/static_dependencies/ethereum/utils/conversions.py,sha256=rh6muBnl14AhGrMqEwX3HQPqiGuVcVU1dLD3n_IgPRU,5498
83
+ cryptocom/ccxt/static_dependencies/ethereum/utils/currency.py,sha256=Pj9EsavDolXU1ZbHTqa5IQpemeMEjS8L2mGDpqhWkz8,3021
84
+ cryptocom/ccxt/static_dependencies/ethereum/utils/debug.py,sha256=0Z-tNOqgQJunS4uHeSCCH1LWLoijlH34MBh6NRrrDrk,499
85
+ cryptocom/ccxt/static_dependencies/ethereum/utils/decorators.py,sha256=VYG5rVnPLLlv4XtknqUc2P55XUDLE8MfqkbKp59_6Rw,3997
86
+ cryptocom/ccxt/static_dependencies/ethereum/utils/encoding.py,sha256=1qfDeuinLZ01XjYgknpm_p9LuWwaYvicYkYI8mS1iMc,199
87
+ cryptocom/ccxt/static_dependencies/ethereum/utils/exceptions.py,sha256=3ndM6zl4QoSc6GupV9T1Klz9TByM8w2zr4ez8UJvzew,110
88
+ cryptocom/ccxt/static_dependencies/ethereum/utils/functional.py,sha256=9EHqNRv39Cu9oH5m6j5YoRiKMZZrlBXJdMSJ6jvPwhM,2100
89
+ cryptocom/ccxt/static_dependencies/ethereum/utils/hexadecimal.py,sha256=TS_zf1IXNBUqTlbOlQOML7agnKBEFUWJLnd_ET7dNz4,1826
90
+ cryptocom/ccxt/static_dependencies/ethereum/utils/humanize.py,sha256=2mt_w9pFKYd5_oGawXKtVZPmEVfnaD4zOF84Lu1nC18,4137
91
+ cryptocom/ccxt/static_dependencies/ethereum/utils/logging.py,sha256=aPsKtk9WlAqR0X85iXnGCYVT_nt_fFnQn0gBuxX1nb8,5155
92
+ cryptocom/ccxt/static_dependencies/ethereum/utils/module_loading.py,sha256=DCLM4dEh1gqr8Ny-FWwD-_pINqeHzbLSupz4ZIpCCAw,842
93
+ cryptocom/ccxt/static_dependencies/ethereum/utils/numeric.py,sha256=RrXdXI-bhhkEsz3aBtxHuGlc_2ZJvUGpvMc47wx408Y,1190
94
+ cryptocom/ccxt/static_dependencies/ethereum/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
95
+ cryptocom/ccxt/static_dependencies/ethereum/utils/toolz.py,sha256=8s0TUhNDiQ3MRRmPwH47ft8eNxfX050P-EWrUbiPX5E,1001
96
+ cryptocom/ccxt/static_dependencies/ethereum/utils/types.py,sha256=S6w22xzYXzyBEVVYRLiYYXd437Ot-puyqeb5FSVmGog,1074
97
+ cryptocom/ccxt/static_dependencies/ethereum/utils/units.py,sha256=jRo8p6trxwuISBnT8kfxTNVyd_TSd5vVY5aiKDefB1U,1757
98
+ cryptocom/ccxt/static_dependencies/ethereum/utils/curried/__init__.py,sha256=s3fqJCpAaDrcsWlrznmNxZgtuKfxynOVmPyzgRZeb9s,6398
99
+ cryptocom/ccxt/static_dependencies/ethereum/utils/typing/__init__.py,sha256=84PxIxCvEHtBb-Ik6qnGvXH4alaWbamr_zDbtlbJh3A,325
100
+ cryptocom/ccxt/static_dependencies/ethereum/utils/typing/misc.py,sha256=WzYhHSbZiX0Em5UPLcqSMJPa67rlgLDygoKeGPylKMg,189
101
+ cryptocom/ccxt/static_dependencies/keccak/__init__.py,sha256=mfcrTChnMXsr-JmfN2VbzscTRt9XA2RRGchfHRMYncU,45
102
+ cryptocom/ccxt/static_dependencies/keccak/keccak.py,sha256=RblmQEQkGpMhug0EU3hyE0kBjs1NDfGQqbwrBK7ZycY,6934
103
+ cryptocom/ccxt/static_dependencies/lark/__init__.py,sha256=OBNUDBJFIaedTvqNDIu_phXkybswNvtjI4UbxYMqz1c,744
104
+ cryptocom/ccxt/static_dependencies/lark/ast_utils.py,sha256=jwn44ocNQhZGbfcFsEZnwi_gGvPbNgzjQ-0RuEtwDzI,2117
105
+ cryptocom/ccxt/static_dependencies/lark/common.py,sha256=M9-CFAUP3--OkftyyWjke-Kc1-pQMczT1MluHCFwdy4,3008
106
+ cryptocom/ccxt/static_dependencies/lark/exceptions.py,sha256=g76ygMPfSMl6ukKqFAZVpR2EAJTOOdyfJ_ALXc_MCR8,10939
107
+ cryptocom/ccxt/static_dependencies/lark/grammar.py,sha256=DR17QSLSKCRhMOqx2UQh4n-Ywu4CD-wjdQxtuM8OHkY,3665
108
+ cryptocom/ccxt/static_dependencies/lark/indenter.py,sha256=L5uNDYUMNrk4ZTWKmW0Tu-H-3GGErLOHygMC32N_twE,4221
109
+ cryptocom/ccxt/static_dependencies/lark/lark.py,sha256=_IHWmTxt43kfd9eYVtwx58zEWWSFAq9_gKH7Oeu5PZs,28184
110
+ cryptocom/ccxt/static_dependencies/lark/lexer.py,sha256=OwgQPCpQ-vUi-2aeZztsydd4DLkEgCbZeucvEPvHFi4,24037
111
+ cryptocom/ccxt/static_dependencies/lark/load_grammar.py,sha256=WYZDxyO6omhA8NKyMjSckfAMwVKuIMF3liiYXE_-kHo,53946
112
+ cryptocom/ccxt/static_dependencies/lark/parse_tree_builder.py,sha256=jT_3gCEkBGZoTXAWSnhMn1kRuJILWB-E7XkUciYNHI4,14412
113
+ cryptocom/ccxt/static_dependencies/lark/parser_frontends.py,sha256=mxMXxux2hkfTfE859wuVp4-Fr1no6YVEUt8toDjEdPQ,10165
114
+ cryptocom/ccxt/static_dependencies/lark/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
+ cryptocom/ccxt/static_dependencies/lark/reconstruct.py,sha256=s7CevBXchUG_fe2otdAITxIaSXCEIiSjy4Sbh5QC0hs,3763
116
+ cryptocom/ccxt/static_dependencies/lark/tree.py,sha256=aWWHMazid8bbJanhmCjK9XK2jRFJ6N6WmlwXJGTsz28,8522
117
+ cryptocom/ccxt/static_dependencies/lark/tree_matcher.py,sha256=jHdZJggn405SXmPpGf9U9HLrrsfP4eNNZaj267UTB00,6003
118
+ cryptocom/ccxt/static_dependencies/lark/tree_templates.py,sha256=u9rgvQ9X3sDweRkhtteF9nPzCYpQPKvxQowkvU5rOcY,5959
119
+ cryptocom/ccxt/static_dependencies/lark/utils.py,sha256=jZrLWb-f1OPZoV2e-3W4uxDm7h1AlaERaDrqSdbt7k4,11176
120
+ cryptocom/ccxt/static_dependencies/lark/visitors.py,sha256=VJ3T1m8p78MwXJotpOAvn06mYEqKyuIlhsAF51U-a3w,21422
121
+ cryptocom/ccxt/static_dependencies/lark/__pyinstaller/__init__.py,sha256=_PpFm44f_mwHlCpvYgv9ZgubLfNDc3PlePVir4sxRfI,182
122
+ cryptocom/ccxt/static_dependencies/lark/__pyinstaller/hook-lark.py,sha256=5aFHiZWVHPRdHT8qnb4kW4JSOql5GusHodHR25_q9sU,599
123
+ cryptocom/ccxt/static_dependencies/lark/grammars/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
124
+ cryptocom/ccxt/static_dependencies/lark/grammars/common.lark,sha256=FV9xGIPiPqHRM4ULAxP6jApXRTVsSwbOe697I9s7DLs,885
125
+ cryptocom/ccxt/static_dependencies/lark/grammars/lark.lark,sha256=nq1NTZYqm_DPI2mjRIlpd3ZcxPjGhapA4GUzkcfBTQs,1541
126
+ cryptocom/ccxt/static_dependencies/lark/grammars/python.lark,sha256=WMakTkpzCqOd0jUjYONI3LOnSy2KRN9NoL9pFtAZYCI,10641
127
+ cryptocom/ccxt/static_dependencies/lark/grammars/unicode.lark,sha256=d9YCz0XWimdl4F8M5YCptavBcFG9D58Yd4aMwxjYtEI,96
128
+ cryptocom/ccxt/static_dependencies/lark/parsers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
129
+ cryptocom/ccxt/static_dependencies/lark/parsers/cyk.py,sha256=c3GLk3kq23Xwb8MqUOjvivwP488KJY6NUWgxqeR5980,12192
130
+ cryptocom/ccxt/static_dependencies/lark/parsers/earley.py,sha256=mkmHWGtrY_96gxL12jH994lrbcFDy0DZz79Zl7pTXlI,14883
131
+ cryptocom/ccxt/static_dependencies/lark/parsers/earley_common.py,sha256=e2e6NrNucw-WMiNV8HqQ_TpGx6P7v_S8f5aEcF0Tkqo,1620
132
+ cryptocom/ccxt/static_dependencies/lark/parsers/earley_forest.py,sha256=dlcAPQAaGEqcc5rRr0lqmIUhU1qfVG5ORxPPzjbZ0TI,31313
133
+ cryptocom/ccxt/static_dependencies/lark/parsers/grammar_analysis.py,sha256=WoxuPu53lXJAGmdyldfaRy4yKJ9LRPl90VBYczyaVZA,7106
134
+ cryptocom/ccxt/static_dependencies/lark/parsers/lalr_analysis.py,sha256=DGHFk2tIluIyeFEVFfsMRU77DVbd598IJnUUOXO04yo,12207
135
+ cryptocom/ccxt/static_dependencies/lark/parsers/lalr_interactive_parser.py,sha256=i_m5s6CK-7JjSqEAa7z_MB-ZjeU5mK1bF6fM7Rs5jIQ,5751
136
+ cryptocom/ccxt/static_dependencies/lark/parsers/lalr_parser.py,sha256=LJE-1Dn062fQapFLGFykQUpd5SnyDcO_DJOScGUlOqk,4583
137
+ cryptocom/ccxt/static_dependencies/lark/parsers/lalr_parser_state.py,sha256=2nj36F3URvRgI1nxF712euvusYPz4nh5PQZDCVL_RQ4,3790
138
+ cryptocom/ccxt/static_dependencies/lark/parsers/xearley.py,sha256=DboXMNtuN0G-SXrrDm5zgUDUekz85h0Rih2PRvcf1LM,7825
139
+ cryptocom/ccxt/static_dependencies/lark/tools/__init__.py,sha256=FeKYmVUjXSt-vlQm2ktyWkcxaOCTOkZnHD_kOUWjUuA,2469
140
+ cryptocom/ccxt/static_dependencies/lark/tools/nearley.py,sha256=QaLYdW6mYQdDq8JKMisV3lvPqzF0wPgu8q8BtsSA33g,6265
141
+ cryptocom/ccxt/static_dependencies/lark/tools/serialize.py,sha256=nwt46LNxkDm0T_Uh9k2wS4fcfgvZQ2dy4-YC_aKhTQk,965
142
+ cryptocom/ccxt/static_dependencies/lark/tools/standalone.py,sha256=6eXDqBuzZSpE5BGZm_Fh6X5yRhAPYxNVyl2aUU3ABzA,5627
143
+ cryptocom/ccxt/static_dependencies/marshmallow/__init__.py,sha256=QYC9_DYxA7la56yUxAdLZm6CymFWVxZjPmmG5-ZnMag,2365
144
+ cryptocom/ccxt/static_dependencies/marshmallow/base.py,sha256=jZ68DZxxSCvRg2GTcxQcf2JjTxqEn-xFNrBEMK3CinU,1346
145
+ cryptocom/ccxt/static_dependencies/marshmallow/class_registry.py,sha256=Ir_n2nNhuDz4EXkVCmdITvlMem5XwrrVJs_Il76-w_g,2790
146
+ cryptocom/ccxt/static_dependencies/marshmallow/decorators.py,sha256=84tMGdn7P-aT9J5KdAfCefxEF9WElgtFaMSVwMMQIpo,8290
147
+ cryptocom/ccxt/static_dependencies/marshmallow/error_store.py,sha256=Y1dJggsZ7t5E1hikM4FRSfGzLDWjNCxDQV2bgkx4Bw8,2212
148
+ cryptocom/ccxt/static_dependencies/marshmallow/exceptions.py,sha256=DuARdOcirCdJxmlp16V97hQKAXOokvdW12jXtYOlGyk,2326
149
+ cryptocom/ccxt/static_dependencies/marshmallow/fields.py,sha256=pHY5bqRVo0-_aaX-E54phTmO2onIONhnY8ebHutjga8,72898
150
+ cryptocom/ccxt/static_dependencies/marshmallow/orderedset.py,sha256=C2aAG6w1faIL1phinbAltbe3AUAnF5MN6n7fzESNDhI,2922
151
+ cryptocom/ccxt/static_dependencies/marshmallow/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
152
+ cryptocom/ccxt/static_dependencies/marshmallow/schema.py,sha256=Uh7iikJdreSnTudAJWYyToXI_a0rH5DQhO24PMA5Qc4,48832
153
+ cryptocom/ccxt/static_dependencies/marshmallow/types.py,sha256=eHMwQR8-ICX2RHf_i6bgjnhzdanbpBqXuzXuP6jHcNI,332
154
+ cryptocom/ccxt/static_dependencies/marshmallow/utils.py,sha256=9IEYfO17evHhcJ8tMqUx768J2udNphrSqg_LY3quWuQ,11853
155
+ cryptocom/ccxt/static_dependencies/marshmallow/validate.py,sha256=icPw5qS-gz-IL-sNhFPJJ-ZD84QfpmySslmbOt4K2Ys,23826
156
+ cryptocom/ccxt/static_dependencies/marshmallow/warnings.py,sha256=vHQu7AluuWqLhvlw5noXtWWbya13zDXY6JMaVSUzmDs,65
157
+ cryptocom/ccxt/static_dependencies/marshmallow_dataclass/__init__.py,sha256=9vbR9DeSggTFJC3a7PzZ0o93BWSEIhTgXK0Mxw4DDZM,36024
158
+ cryptocom/ccxt/static_dependencies/marshmallow_dataclass/collection_field.py,sha256=Nc1y1jThnhYDIBuPQZqpVatAVAIk3-KAFoNO9Arz_eE,1640
159
+ cryptocom/ccxt/static_dependencies/marshmallow_dataclass/lazy_class_attribute.py,sha256=2fEF6NSdNYDAegxXkT0D2hjysRKlEXFSIH7eP0nurVE,1070
160
+ cryptocom/ccxt/static_dependencies/marshmallow_dataclass/mypy.py,sha256=Ek5j_gS0I83Oly6xpxWrR4obCDDDSHmjXhywsQlb2wQ,2034
161
+ cryptocom/ccxt/static_dependencies/marshmallow_dataclass/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
162
+ cryptocom/ccxt/static_dependencies/marshmallow_dataclass/typing.py,sha256=OqcSrGTwMWr4_Ct3hCHW9dWNiWpa1ViGsUgFOqSfvz4,269
163
+ cryptocom/ccxt/static_dependencies/marshmallow_dataclass/union_field.py,sha256=zi2-4NThvY---6gXBWyL_zUK3e7MVl5dY-ffY2vZPvc,2914
164
+ cryptocom/ccxt/static_dependencies/marshmallow_oneofschema/__init__.py,sha256=KQjXt0W26CH8CvBBTA0YFEMsIHwR9_oMfBGppTnoTlI,47
165
+ cryptocom/ccxt/static_dependencies/marshmallow_oneofschema/one_of_schema.py,sha256=DXIK8-Py-EtnniDpGvwqjTbz9x3PrkgpHcqykvfEo0A,6714
166
+ cryptocom/ccxt/static_dependencies/marshmallow_oneofschema/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
167
+ cryptocom/ccxt/static_dependencies/msgpack/__init__.py,sha256=tMxCiw7hJRLJN3JgUmPXOo64qMaUAbKTCf44CvE2tg8,1077
168
+ cryptocom/ccxt/static_dependencies/msgpack/_cmsgpack.pyx,sha256=JQb-SpqADciQgq3jEhFskYbQmtZL-o46G7CEkOi5qFc,335
169
+ cryptocom/ccxt/static_dependencies/msgpack/_packer.pyx,sha256=4X3JTr9wbEmkbqEw2NEDnNQsbqlTZjh3X2PFUdAI34w,14607
170
+ cryptocom/ccxt/static_dependencies/msgpack/_unpacker.pyx,sha256=9oq2d3v_0VzsY1biMQ3_3CwPyQfDOYRDjU3ZxPkXXTc,18888
171
+ cryptocom/ccxt/static_dependencies/msgpack/buff_converter.h,sha256=t0RwS7ilhFPHeo83lznAtJsvBBbD85txgvVDOJCSGYg,220
172
+ cryptocom/ccxt/static_dependencies/msgpack/exceptions.py,sha256=dCTWei8dpkrMsQDcjQk74ATl9HsIBH0ybt8zOPNqMYc,1081
173
+ cryptocom/ccxt/static_dependencies/msgpack/ext.py,sha256=fKp00BqDLjUtZnPd70Llr138zk8JsCuSpJkkZ5S4dt8,5629
174
+ cryptocom/ccxt/static_dependencies/msgpack/fallback.py,sha256=wdUWJkWX2gzfRW9BBCTOuIE1Wvrf5PtBtR8ZtY7G_EE,33175
175
+ cryptocom/ccxt/static_dependencies/msgpack/pack.h,sha256=tK5VBNP9-R5FJ4etPQ1hWTswfyTnlqNuAYRczwBUCP0,2072
176
+ cryptocom/ccxt/static_dependencies/msgpack/pack_template.h,sha256=Yqe6kpV4w9CVwhCluL5kHoqz1ihceY1zN6Sypx2Lztc,21775
177
+ cryptocom/ccxt/static_dependencies/msgpack/sysdep.h,sha256=g0Be20rldEx2yZHY-s7eFtzx7dZlnognCutLNL2Cys8,6452
178
+ cryptocom/ccxt/static_dependencies/msgpack/unpack.h,sha256=2349vxJmTKqSB9H69ILZqCjb7W9oDNJgmLk0RXN1ax4,10976
179
+ cryptocom/ccxt/static_dependencies/msgpack/unpack_define.h,sha256=ebuKljj6t2eb7UVM-cl6cr2l0oK0PcMx3l7Zhqq6wEQ,2366
180
+ cryptocom/ccxt/static_dependencies/msgpack/unpack_template.h,sha256=iyowdiEgnnnue1Mpj5BU5d0Q_Tc-SWFrbM_rOmE5_qk,14846
181
+ cryptocom/ccxt/static_dependencies/parsimonious/__init__.py,sha256=mvKG2Vusvg2QoRjKhRAAxOwPppJk4r7sPCleSsYzJLU,385
182
+ cryptocom/ccxt/static_dependencies/parsimonious/exceptions.py,sha256=wOGBNI2sx29eSGMA9bYg-4RbqQIOOgu72ZGQkYtv4N4,3603
183
+ cryptocom/ccxt/static_dependencies/parsimonious/expressions.py,sha256=FTSpmx3YxAI6nd1dpYhiVKvfS_eyDmXWQI03-iVEz0g,16864
184
+ cryptocom/ccxt/static_dependencies/parsimonious/grammar.py,sha256=e5o_w98SjGURDz22JrfDwv3d-R-wu3eo9A8LIkX3zmI,19190
185
+ cryptocom/ccxt/static_dependencies/parsimonious/nodes.py,sha256=DhgjH6pjOWFPcwOEEoz29Cz2rkom08zHmAj7_L1miTE,13084
186
+ cryptocom/ccxt/static_dependencies/parsimonious/utils.py,sha256=2eyApbqJ9zZ5FAmhW8bl47s2tlYc6IqvJpzacSK3kWs,1087
187
+ cryptocom/ccxt/static_dependencies/starknet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
188
+ cryptocom/ccxt/static_dependencies/starknet/ccxt_utils.py,sha256=aOn9TXn178WMUEvmJQKzgg-fgBnjm_oFnKGJ0JyRCJ0,340
189
+ cryptocom/ccxt/static_dependencies/starknet/common.py,sha256=Vkzq8r2S-xhECatpXz5xT7N9a5dfneOW0zYO3sTsIuM,457
190
+ cryptocom/ccxt/static_dependencies/starknet/constants.py,sha256=Zzf0aE0NoVIaNF7Nr-NRVq0Zc5mzsp0c-grVvpPQ5s4,1281
191
+ cryptocom/ccxt/static_dependencies/starknet/abi/v0/__init__.py,sha256=xq7KVZh22PTyHTlWLnY11F2Rmd61Wz-HUEjim1HXv7k,70
192
+ cryptocom/ccxt/static_dependencies/starknet/abi/v0/model.py,sha256=VN6jbGShsO1h7sVNrIVGyXLXrxXn-_9A1T7Ci-BESrI,1149
193
+ cryptocom/ccxt/static_dependencies/starknet/abi/v0/parser.py,sha256=IDSzCJL3eUjBPRuIud5Vmn5cx2nnvlX2AyH6-lT4US4,7897
194
+ cryptocom/ccxt/static_dependencies/starknet/abi/v0/schemas.py,sha256=FUygfKcUwjh0Ogs3rmIRUrtjH4GtjFo313tFTE49dLA,2254
195
+ cryptocom/ccxt/static_dependencies/starknet/abi/v0/shape.py,sha256=GnSLpFmJf1BXZkDYeuIJ2AP8ozoPXJ5_PAuwhSDtg9Y,1349
196
+ cryptocom/ccxt/static_dependencies/starknet/abi/v1/__init__.py,sha256=xq7KVZh22PTyHTlWLnY11F2Rmd61Wz-HUEjim1HXv7k,70
197
+ cryptocom/ccxt/static_dependencies/starknet/abi/v1/core_structures.json,sha256=yZn0iNul0PCe88PQ3ebd3lW1gxSUkNv36kYXmQ3YnPA,222
198
+ cryptocom/ccxt/static_dependencies/starknet/abi/v1/model.py,sha256=5RRh-bBrMSTZbwlsMvNh24CQPKUaG7L4ppRTJ8-73ho,995
199
+ cryptocom/ccxt/static_dependencies/starknet/abi/v1/parser.py,sha256=pB51-qkn2rQP5UM0AAJsQ6-FcJO8BoyUawc8Mfte3kI,7950
200
+ cryptocom/ccxt/static_dependencies/starknet/abi/v1/parser_transformer.py,sha256=2gmyZgGSVzBKaIj3Lptno4ACvMC5ipwuzlJGvT7F4I8,5220
201
+ cryptocom/ccxt/static_dependencies/starknet/abi/v1/schemas.py,sha256=WplXzPonCOmjVUVXnRUV0SzhPEBJewA9J9gMoy45Chc,2006
202
+ cryptocom/ccxt/static_dependencies/starknet/abi/v1/shape.py,sha256=z2KbwMEAROsNY5y0DypM-ij605Z9svzuoQ-uQmRSo84,927
203
+ cryptocom/ccxt/static_dependencies/starknet/abi/v2/__init__.py,sha256=xq7KVZh22PTyHTlWLnY11F2Rmd61Wz-HUEjim1HXv7k,70
204
+ cryptocom/ccxt/static_dependencies/starknet/abi/v2/model.py,sha256=G6Z5xBFQryZRnbYpJL-xVBLQGeWIPOJB-ewg2ll5UdM,2197
205
+ cryptocom/ccxt/static_dependencies/starknet/abi/v2/parser.py,sha256=ZhFNnhnpa0bMgIgxkZlxFQDf_XFIhESVFxhjSWtJjwQ,10439
206
+ cryptocom/ccxt/static_dependencies/starknet/abi/v2/parser_transformer.py,sha256=AX7hOYn4VoyU5wr49wL400zpBkpOrGqgornGCeMXYEo,5623
207
+ cryptocom/ccxt/static_dependencies/starknet/abi/v2/schemas.py,sha256=jBVZluEODarVQSpAl4DBVq9VS19pml7fcK-1xzOW3Uc,4242
208
+ cryptocom/ccxt/static_dependencies/starknet/abi/v2/shape.py,sha256=wRo6_RzTs7i4UHV_De0bMmgr_rvqKpjvSmidxtn6nSs,2043
209
+ cryptocom/ccxt/static_dependencies/starknet/cairo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
210
+ cryptocom/ccxt/static_dependencies/starknet/cairo/data_types.py,sha256=xy70JGn-sFXFPGb7JUCpvk-DOkaGi0X86sJ-Eq0evnY,2174
211
+ cryptocom/ccxt/static_dependencies/starknet/cairo/felt.py,sha256=3dCoWOqib-BVBiRM3AEZ1pqa1v-oO_7U-SoaEKaxYfA,1708
212
+ cryptocom/ccxt/static_dependencies/starknet/cairo/type_parser.py,sha256=sjqf2WuyRqfVvBzfEgbU8aWnWFmVMfZQfIGIqbeQfro,4407
213
+ cryptocom/ccxt/static_dependencies/starknet/cairo/deprecated_parse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
214
+ cryptocom/ccxt/static_dependencies/starknet/cairo/deprecated_parse/cairo_types.py,sha256=YVrvqKyqctoz172Ta85ubkmy_7v6U8TiOf9J1zQf0lk,1434
215
+ cryptocom/ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser.py,sha256=VixjKG0zYyjR6NaWIIC2qzunvkzxmnX-MvU2MLmKirU,1280
216
+ cryptocom/ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser_transformer.py,sha256=uyIqwCktMsdF3zenns0_o0oHgKkvYn-7gXoKYZ6cos8,3883
217
+ cryptocom/ccxt/static_dependencies/starknet/cairo/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
218
+ cryptocom/ccxt/static_dependencies/starknet/cairo/v1/type_parser.py,sha256=fwUVELVmfU8yMCy2wOFFRmkiNl8p_MWI51Y-FKGkies,2082
219
+ cryptocom/ccxt/static_dependencies/starknet/cairo/v2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
220
+ cryptocom/ccxt/static_dependencies/starknet/cairo/v2/type_parser.py,sha256=Ljty_JU5oEoh2Pzhv3otVNbncK5lgUMMkNJdzhkIRGM,2506
221
+ cryptocom/ccxt/static_dependencies/starknet/hash/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
222
+ cryptocom/ccxt/static_dependencies/starknet/hash/address.py,sha256=Ajdub47ZFQ5nspbsuRIPlVC9EDzW-DzkDnPyhhkv18I,2259
223
+ cryptocom/ccxt/static_dependencies/starknet/hash/compiled_class_hash_objects.py,sha256=w-TbuJvHBlXUdBXsxf5A7uWuoW1xW490qFHVI_w7hX4,3349
224
+ cryptocom/ccxt/static_dependencies/starknet/hash/selector.py,sha256=y7PRHGePeCGkuzDZKlcR6JJ-PTgpfKVPW4Gl5sTvFN8,474
225
+ cryptocom/ccxt/static_dependencies/starknet/hash/storage.py,sha256=pQZdxL6Fac3HGR6Sfvhek-vjsT1reUhIqd2glIbySs8,402
226
+ cryptocom/ccxt/static_dependencies/starknet/hash/utils.py,sha256=DTFR7uFqksoOh5O4ZPHF5vzohmrA19dYrsPGSSYvhpI,2173
227
+ cryptocom/ccxt/static_dependencies/starknet/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
228
+ cryptocom/ccxt/static_dependencies/starknet/models/typed_data.py,sha256=nq6tuZuWbygx0oFa-fNIP2QB1bNTAQwosTuXyYxtD9A,815
229
+ cryptocom/ccxt/static_dependencies/starknet/serialization/__init__.py,sha256=B71RdRcil04hDiY7jNxo_PFGzEenQKXwm3rJuG79ukg,655
230
+ cryptocom/ccxt/static_dependencies/starknet/serialization/_calldata_reader.py,sha256=aPiWzMn8cAmjC_obUbNPRqqJ6sR4yOh0SKYGH-gK6ik,1135
231
+ cryptocom/ccxt/static_dependencies/starknet/serialization/_context.py,sha256=LOult4jWMDYLFKR4C16R9F9F3EJFK4ZoM_wnIAQHiJA,4821
232
+ cryptocom/ccxt/static_dependencies/starknet/serialization/errors.py,sha256=7FzyxluiXip0KJKRaDuYWzP6NzRYY1uInrjRzoTx6tU,345
233
+ cryptocom/ccxt/static_dependencies/starknet/serialization/factory.py,sha256=ShhxMuUCQxx7VlpBzi-gisGlNp27cFDrFqoTqUev_IQ,7237
234
+ cryptocom/ccxt/static_dependencies/starknet/serialization/function_serialization_adapter.py,sha256=JWnt9opafvE4_B6MA6DxFD5BUcJaS80EgJggSi7fadA,3837
235
+ cryptocom/ccxt/static_dependencies/starknet/serialization/tuple_dataclass.py,sha256=MOKjgXuSBbwTpPCKf2NnkCEgUXROqffsHnx89sqKlkU,2108
236
+ cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/__init__.py,sha256=-ZU3Xw6kYFY8QsScdpl17cFe4CpUDlmgVAplgs0yi68,495
237
+ cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/_common.py,sha256=NBMJjkz5kO38OswqxlM97AOOcgrV0iAd5O8U8tKfLqc,2859
238
+ cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/array_serializer.py,sha256=iBD6YllfBnixV_hDvR3RKrwfw6G4ZzhnRzRk-dzWsIA,1219
239
+ cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/bool_serializer.py,sha256=Tte3mkdqs-149j6LNNZzRD_oxoK8DGc8IhBCC2o_g7Q,999
240
+ cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/byte_array_serializer.py,sha256=gFGuLWh23Mga5Cmju1NZfJlr55ru5mvwCwbMUo7brtM,2070
241
+ cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/cairo_data_serializer.py,sha256=hxjj7csmknHRb72rQ1bKXN2-wjON03cKBPFGQDcACG8,2279
242
+ cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/enum_serializer.py,sha256=JPYxWx0Wrn-9pB2EI4PL4p1c948xQvSulz6qH0U3kK8,2229
243
+ cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/felt_serializer.py,sha256=_7UH-M-PbYu2vPYKh5mF8E1AhSg5QK6mRHKEjFR3xn8,1548
244
+ cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/named_tuple_serializer.py,sha256=yTQsyupHFM7vIjB_9H2LJzMLfjBfWZKDK-Ts3LQow6M,1809
245
+ cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/option_serializer.py,sha256=-py0qFUq1OQhqlrFOF4Ryg2bZXHzts0egbZlVWR4QJg,1136
246
+ cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/output_serializer.py,sha256=5oWi20A9VOgnE1AoilrsrSTWJZfgBNLw2JfQweINZhU,1151
247
+ cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/payload_serializer.py,sha256=Y2JjrG6v8PUgLHN0Md39cLU70tb4agi4umj-kwkXz_M,2445
248
+ cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/struct_serializer.py,sha256=b9hhMqnAhCqN8uF6-TPph035lt4oktBUkdPotXZ1mQs,941
249
+ cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/tuple_serializer.py,sha256=Ble023LEceZEmLld-E7x_I_Ez5NYr3zNsGAVwMgU-N0,964
250
+ cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/uint256_serializer.py,sha256=sPGeD8y6z8iA3B1M6i4tF1w2vrqv_cKKkgxOm_qKl1k,2406
251
+ cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/uint_serializer.py,sha256=PV_uYvI4PyV8aVg4oNYO-uZxFlIrpKFKoyXeE39LILQ,3157
252
+ cryptocom/ccxt/static_dependencies/starknet/serialization/data_serializers/unit_serializer.py,sha256=h9X769Ls9Iks0HIZ5uDjuLNjcPGom73Kg3hhYzt2p-I,778
253
+ cryptocom/ccxt/static_dependencies/starknet/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
254
+ cryptocom/ccxt/static_dependencies/starknet/utils/constructor_args_translator.py,sha256=kFMRxdCJi5rlgLiwBbgyGVlByGBQxkvljiG0zMb4hDM,2537
255
+ cryptocom/ccxt/static_dependencies/starknet/utils/iterable.py,sha256=m-A7qOnh6W5OvWpsIbSJdVPuWYjESkiVcZEY_S3XYas,302
256
+ cryptocom/ccxt/static_dependencies/starknet/utils/schema.py,sha256=OKVVk_BTTxGkPy0Lv0P1kL27g9-s5ln_YIiU-VVwBH4,361
257
+ cryptocom/ccxt/static_dependencies/starknet/utils/typed_data.py,sha256=Ln6JBGJp8C_wNjGI_nry7h7CBX8ImTzKjNbmFtp2kSQ,5561
258
+ cryptocom/ccxt/static_dependencies/starkware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
259
+ cryptocom/ccxt/static_dependencies/starkware/crypto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
260
+ cryptocom/ccxt/static_dependencies/starkware/crypto/fast_pedersen_hash.py,sha256=69IypXuwIbBnpGdsYbwU-t9U96V7SoHwissaPdo7fKA,2032
261
+ cryptocom/ccxt/static_dependencies/starkware/crypto/math_utils.py,sha256=Mx3R_UqUTmpeL7vRmNrN59CUdXGK2u_WEGXRRav1i50,3145
262
+ cryptocom/ccxt/static_dependencies/starkware/crypto/signature.py,sha256=Q4fnm-St_nyW_jeHBFEVBRQ7kWkQ_wvO3qt6xkHu65U,112683
263
+ cryptocom/ccxt/static_dependencies/starkware/crypto/utils.py,sha256=lSLXMW4VCy7RkobrDR-HonGoHmI4lReVwvgnHDxR_SE,1600
264
+ cryptocom/ccxt/static_dependencies/sympy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
265
+ cryptocom/ccxt/static_dependencies/sympy/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
266
+ cryptocom/ccxt/static_dependencies/sympy/core/intfunc.py,sha256=dnMzhDBVtVOHeIHVNll-5Ek6si7c1uH-Gpdet86DrVE,844
267
+ cryptocom/ccxt/static_dependencies/sympy/external/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
268
+ cryptocom/ccxt/static_dependencies/sympy/external/gmpy.py,sha256=Kdh81lf0ll3mk1iur4KxSIHm88GLv-xNc3rT7i8-E2M,10283
269
+ cryptocom/ccxt/static_dependencies/sympy/external/importtools.py,sha256=Q7tS2cdGZ9a4NI_1sgGuoVcSDv_rIk-Av0BpFTa6EzA,7671
270
+ cryptocom/ccxt/static_dependencies/sympy/external/ntheory.py,sha256=dsfEjXvZpSf_cxMEiNmPPuI26eZ3KFJjvsFPEKfQonU,18051
271
+ cryptocom/ccxt/static_dependencies/sympy/external/pythonmpq.py,sha256=WOMTvHxYLXNp_vQ1F3jE_haeRlnGicbRlCTOp4ZNuo8,11243
272
+ cryptocom/ccxt/static_dependencies/toolz/__init__.py,sha256=SlTjHMiaQULRWlN_D1MYQMAQB6d9sQB9AYlud7BsduQ,374
273
+ cryptocom/ccxt/static_dependencies/toolz/_signatures.py,sha256=RI2GtVNSyYyXfn5vfXOqyHwXiblHF1L5pPjAHpbCU5I,20555
274
+ cryptocom/ccxt/static_dependencies/toolz/_version.py,sha256=027biJ0ZWLRQtWxcQj8XqnvszCO3p2SEkLn49RPqRlw,18447
275
+ cryptocom/ccxt/static_dependencies/toolz/compatibility.py,sha256=giOYcwv1TaOWDfB-C2JP2pFIJ5YZX9aP1s4UPzCQnw4,997
276
+ cryptocom/ccxt/static_dependencies/toolz/dicttoolz.py,sha256=sE8wlGNLezhdmkRqB2gQcxSbwbO6-c-4SVbY-yFjuoE,8955
277
+ cryptocom/ccxt/static_dependencies/toolz/functoolz.py,sha256=ecggVgwdndIqXdHDd28mgmBwkIDsGUM6YYR6ZML8wzY,29821
278
+ cryptocom/ccxt/static_dependencies/toolz/itertoolz.py,sha256=t5Eu8o9TbD40zAd9RkaGoFoZPgt2qiX6LzaPgqef_aM,27612
279
+ cryptocom/ccxt/static_dependencies/toolz/recipes.py,sha256=r_j701Ug2_oO4bHunoy1xizk0N-m9QBwObyCITJuF0I,1256
280
+ cryptocom/ccxt/static_dependencies/toolz/utils.py,sha256=JLlXt8x_JqSVevmLZPnt5bZJsdKMBJgJb5IwlcfOnsc,139
281
+ cryptocom/ccxt/static_dependencies/toolz/curried/__init__.py,sha256=iOuFY4c1kixe_h8lxuWIW5Az-cXRvOWJ5xuTfFficeE,2226
282
+ cryptocom/ccxt/static_dependencies/toolz/curried/exceptions.py,sha256=gKFOHDIayAWnX2uC8Z2KrUwpP-UpoqI5Tx1a859QdVY,344
283
+ cryptocom/ccxt/static_dependencies/toolz/curried/operator.py,sha256=ML92mknkAwzBl2NCm-4werSUmJEtSHNY9NSzhseNM9s,525
284
+ cryptocom/ccxt/static_dependencies/typing_inspect/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
285
+ cryptocom/ccxt/static_dependencies/typing_inspect/typing_inspect.py,sha256=5gIWomLPfuDpgd3gX1GlnX0MuXM3VorR4j2W2qXORiQ,28269
286
+ crypto_com_sdk-0.0.16.dist-info/METADATA,sha256=o9IyZTF4TF74L5LhRqDqJTJq4bsH0HbqQVRB57P7Tiw,14174
287
+ crypto_com_sdk-0.0.16.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
288
+ crypto_com_sdk-0.0.16.dist-info/RECORD,,
cryptocom/__init__.py ADDED
@@ -0,0 +1,7 @@
1
+ import sys
2
+ import cryptocom.ccxt as ccxt_module
3
+ sys.modules['ccxt'] = ccxt_module
4
+
5
+ from cryptocom.ccxt import cryptocom as CryptocomSync
6
+ from cryptocom.ccxt.async_support.cryptocom import cryptocom as CryptocomAsync
7
+ from cryptocom.ccxt.pro.cryptocom import cryptocom as CryptocomWs