crypto-com-sdk 0.0.13__py3-none-any.whl → 0.0.15__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 (289) hide show
  1. {crypto_com_sdk-0.0.13.dist-info → crypto_com_sdk-0.0.15.dist-info}/METADATA +1 -1
  2. crypto_com_sdk-0.0.15.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.13.dist-info/RECORD +0 -3
  289. {crypto_com_sdk-0.0.13.dist-info → crypto_com_sdk-0.0.15.dist-info}/WHEEL +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: crypto-com-sdk
3
- Version: 0.0.13
3
+ Version: 0.0.15
4
4
  Summary: cryptocom crypto exchange api client
5
5
  Project-URL: Homepage, https://github.com/ccxt/ccxt
6
6
  Project-URL: Issues, https://github.com/ccxt/ccxt
@@ -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.15.dist-info/METADATA,sha256=OpOyyrG8KCpkVGst3UBTpP0B41Yh59CafXM2x1WROCs,2146
287
+ crypto_com_sdk-0.0.15.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
288
+ crypto_com_sdk-0.0.15.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
@@ -0,0 +1,101 @@
1
+ import sys
2
+ import cryptocom.ccxt as ccxt_module
3
+ sys.modules['ccxt'] = ccxt_module
4
+
5
+ # -*- coding: utf-8 -*-
6
+
7
+ """CCXT: CryptoCurrency eXchange Trading Library"""
8
+
9
+ # MIT License
10
+ # Copyright (c) 2017 Igor Kroitor
11
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
12
+ # of this software and associated documentation files (the "Software"), to deal
13
+ # in the Software without restriction, including without limitation the rights
14
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
+ # copies of the Software, and to permit persons to whom the Software is
16
+ # furnished to do so, subject to the following conditions:
17
+ # The above copyright notice and this permission notice shall be included in all
18
+ # copies or substantial portions of the Software.
19
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
+ # SOFTWARE.
26
+
27
+ # ----------------------------------------------------------------------------
28
+
29
+ __version__ = '4.4.69'
30
+
31
+ # ----------------------------------------------------------------------------
32
+
33
+ from ccxt.base.exchange import Exchange # noqa: F401
34
+ from ccxt.base.precise import Precise # noqa: F401
35
+
36
+ from ccxt.base.decimal_to_precision import decimal_to_precision # noqa: F401
37
+ from ccxt.base.decimal_to_precision import TRUNCATE # noqa: F401
38
+ from ccxt.base.decimal_to_precision import ROUND # noqa: F401
39
+ from ccxt.base.decimal_to_precision import ROUND_UP # noqa: F401
40
+ from ccxt.base.decimal_to_precision import ROUND_DOWN # noqa: F401
41
+ from ccxt.base.decimal_to_precision import DECIMAL_PLACES # noqa: F401
42
+ from ccxt.base.decimal_to_precision import SIGNIFICANT_DIGITS # noqa: F401
43
+ from ccxt.base.decimal_to_precision import TICK_SIZE # noqa: F401
44
+ from ccxt.base.decimal_to_precision import NO_PADDING # noqa: F401
45
+ from ccxt.base.decimal_to_precision import PAD_WITH_ZERO # noqa: F401
46
+
47
+ from ccxt.base import errors
48
+ from ccxt.base.errors import BaseError # noqa: F401
49
+ from ccxt.base.errors import ExchangeError # noqa: F401
50
+ from ccxt.base.errors import AuthenticationError # noqa: F401
51
+ from ccxt.base.errors import PermissionDenied # noqa: F401
52
+ from ccxt.base.errors import AccountNotEnabled # noqa: F401
53
+ from ccxt.base.errors import AccountSuspended # noqa: F401
54
+ from ccxt.base.errors import ArgumentsRequired # noqa: F401
55
+ from ccxt.base.errors import BadRequest # noqa: F401
56
+ from ccxt.base.errors import BadSymbol # noqa: F401
57
+ from ccxt.base.errors import OperationRejected # noqa: F401
58
+ from ccxt.base.errors import NoChange # noqa: F401
59
+ from ccxt.base.errors import MarginModeAlreadySet # noqa: F401
60
+ from ccxt.base.errors import MarketClosed # noqa: F401
61
+ from ccxt.base.errors import ManualInteractionNeeded # noqa: F401
62
+ from ccxt.base.errors import InsufficientFunds # noqa: F401
63
+ from ccxt.base.errors import InvalidAddress # noqa: F401
64
+ from ccxt.base.errors import AddressPending # noqa: F401
65
+ from ccxt.base.errors import InvalidOrder # noqa: F401
66
+ from ccxt.base.errors import OrderNotFound # noqa: F401
67
+ from ccxt.base.errors import OrderNotCached # noqa: F401
68
+ from ccxt.base.errors import OrderImmediatelyFillable # noqa: F401
69
+ from ccxt.base.errors import OrderNotFillable # noqa: F401
70
+ from ccxt.base.errors import DuplicateOrderId # noqa: F401
71
+ from ccxt.base.errors import ContractUnavailable # noqa: F401
72
+ from ccxt.base.errors import NotSupported # noqa: F401
73
+ from ccxt.base.errors import InvalidProxySettings # noqa: F401
74
+ from ccxt.base.errors import ExchangeClosedByUser # noqa: F401
75
+ from ccxt.base.errors import OperationFailed # noqa: F401
76
+ from ccxt.base.errors import NetworkError # noqa: F401
77
+ from ccxt.base.errors import DDoSProtection # noqa: F401
78
+ from ccxt.base.errors import RateLimitExceeded # noqa: F401
79
+ from ccxt.base.errors import ExchangeNotAvailable # noqa: F401
80
+ from ccxt.base.errors import OnMaintenance # noqa: F401
81
+ from ccxt.base.errors import InvalidNonce # noqa: F401
82
+ from ccxt.base.errors import ChecksumError # noqa: F401
83
+ from ccxt.base.errors import RequestTimeout # noqa: F401
84
+ from ccxt.base.errors import BadResponse # noqa: F401
85
+ from ccxt.base.errors import NullResponse # noqa: F401
86
+ from ccxt.base.errors import CancelPending # noqa: F401
87
+ from ccxt.base.errors import UnsubscribeError # noqa: F401
88
+ from ccxt.base.errors import error_hierarchy # noqa: F401
89
+
90
+ from ccxt.cryptocom import cryptocom # noqa: F401
91
+
92
+ exchanges = [ 'cryptocom',]
93
+
94
+ base = [
95
+ 'Exchange',
96
+ 'Precise',
97
+ 'exchanges',
98
+ 'decimal_to_precision',
99
+ ]
100
+
101
+ __all__ = base + errors.__all__ + exchanges
@@ -0,0 +1,121 @@
1
+ from ccxt.base.types import Entry
2
+
3
+
4
+ class ImplicitAPI:
5
+ v1_public_get_public_auth = v1PublicGetPublicAuth = Entry('public/auth', ['v1', 'public'], 'GET', {'cost': 3.3333333333333335})
6
+ v1_public_get_public_get_instruments = v1PublicGetPublicGetInstruments = Entry('public/get-instruments', ['v1', 'public'], 'GET', {'cost': 3.3333333333333335})
7
+ v1_public_get_public_get_book = v1PublicGetPublicGetBook = Entry('public/get-book', ['v1', 'public'], 'GET', {'cost': 1})
8
+ v1_public_get_public_get_candlestick = v1PublicGetPublicGetCandlestick = Entry('public/get-candlestick', ['v1', 'public'], 'GET', {'cost': 1})
9
+ v1_public_get_public_get_trades = v1PublicGetPublicGetTrades = Entry('public/get-trades', ['v1', 'public'], 'GET', {'cost': 1})
10
+ v1_public_get_public_get_tickers = v1PublicGetPublicGetTickers = Entry('public/get-tickers', ['v1', 'public'], 'GET', {'cost': 1})
11
+ v1_public_get_public_get_valuations = v1PublicGetPublicGetValuations = Entry('public/get-valuations', ['v1', 'public'], 'GET', {'cost': 1})
12
+ v1_public_get_public_get_expired_settlement_price = v1PublicGetPublicGetExpiredSettlementPrice = Entry('public/get-expired-settlement-price', ['v1', 'public'], 'GET', {'cost': 3.3333333333333335})
13
+ v1_public_get_public_get_insurance = v1PublicGetPublicGetInsurance = Entry('public/get-insurance', ['v1', 'public'], 'GET', {'cost': 1})
14
+ v1_public_get_public_get_risk_parameters = v1PublicGetPublicGetRiskParameters = Entry('public/get-risk-parameters', ['v1', 'public'], 'GET', {'cost': 1})
15
+ v1_public_post_public_staking_get_conversion_rate = v1PublicPostPublicStakingGetConversionRate = Entry('public/staking/get-conversion-rate', ['v1', 'public'], 'POST', {'cost': 2})
16
+ v1_private_post_private_set_cancel_on_disconnect = v1PrivatePostPrivateSetCancelOnDisconnect = Entry('private/set-cancel-on-disconnect', ['v1', 'private'], 'POST', {'cost': 3.3333333333333335})
17
+ v1_private_post_private_get_cancel_on_disconnect = v1PrivatePostPrivateGetCancelOnDisconnect = Entry('private/get-cancel-on-disconnect', ['v1', 'private'], 'POST', {'cost': 3.3333333333333335})
18
+ v1_private_post_private_user_balance = v1PrivatePostPrivateUserBalance = Entry('private/user-balance', ['v1', 'private'], 'POST', {'cost': 3.3333333333333335})
19
+ v1_private_post_private_user_balance_history = v1PrivatePostPrivateUserBalanceHistory = Entry('private/user-balance-history', ['v1', 'private'], 'POST', {'cost': 3.3333333333333335})
20
+ v1_private_post_private_get_positions = v1PrivatePostPrivateGetPositions = Entry('private/get-positions', ['v1', 'private'], 'POST', {'cost': 3.3333333333333335})
21
+ v1_private_post_private_create_order = v1PrivatePostPrivateCreateOrder = Entry('private/create-order', ['v1', 'private'], 'POST', {'cost': 0.6666666666666666})
22
+ v1_private_post_private_create_order_list = v1PrivatePostPrivateCreateOrderList = Entry('private/create-order-list', ['v1', 'private'], 'POST', {'cost': 3.3333333333333335})
23
+ v1_private_post_private_cancel_order = v1PrivatePostPrivateCancelOrder = Entry('private/cancel-order', ['v1', 'private'], 'POST', {'cost': 0.6666666666666666})
24
+ v1_private_post_private_cancel_order_list = v1PrivatePostPrivateCancelOrderList = Entry('private/cancel-order-list', ['v1', 'private'], 'POST', {'cost': 3.3333333333333335})
25
+ v1_private_post_private_cancel_all_orders = v1PrivatePostPrivateCancelAllOrders = Entry('private/cancel-all-orders', ['v1', 'private'], 'POST', {'cost': 0.6666666666666666})
26
+ v1_private_post_private_close_position = v1PrivatePostPrivateClosePosition = Entry('private/close-position', ['v1', 'private'], 'POST', {'cost': 3.3333333333333335})
27
+ v1_private_post_private_get_order_history = v1PrivatePostPrivateGetOrderHistory = Entry('private/get-order-history', ['v1', 'private'], 'POST', {'cost': 100})
28
+ v1_private_post_private_get_open_orders = v1PrivatePostPrivateGetOpenOrders = Entry('private/get-open-orders', ['v1', 'private'], 'POST', {'cost': 3.3333333333333335})
29
+ v1_private_post_private_get_order_detail = v1PrivatePostPrivateGetOrderDetail = Entry('private/get-order-detail', ['v1', 'private'], 'POST', {'cost': 0.3333333333333333})
30
+ v1_private_post_private_get_trades = v1PrivatePostPrivateGetTrades = Entry('private/get-trades', ['v1', 'private'], 'POST', {'cost': 100})
31
+ v1_private_post_private_change_account_leverage = v1PrivatePostPrivateChangeAccountLeverage = Entry('private/change-account-leverage', ['v1', 'private'], 'POST', {'cost': 3.3333333333333335})
32
+ v1_private_post_private_get_transactions = v1PrivatePostPrivateGetTransactions = Entry('private/get-transactions', ['v1', 'private'], 'POST', {'cost': 3.3333333333333335})
33
+ v1_private_post_private_create_subaccount_transfer = v1PrivatePostPrivateCreateSubaccountTransfer = Entry('private/create-subaccount-transfer', ['v1', 'private'], 'POST', {'cost': 3.3333333333333335})
34
+ v1_private_post_private_get_subaccount_balances = v1PrivatePostPrivateGetSubaccountBalances = Entry('private/get-subaccount-balances', ['v1', 'private'], 'POST', {'cost': 3.3333333333333335})
35
+ v1_private_post_private_get_order_list = v1PrivatePostPrivateGetOrderList = Entry('private/get-order-list', ['v1', 'private'], 'POST', {'cost': 3.3333333333333335})
36
+ v1_private_post_private_create_withdrawal = v1PrivatePostPrivateCreateWithdrawal = Entry('private/create-withdrawal', ['v1', 'private'], 'POST', {'cost': 3.3333333333333335})
37
+ v1_private_post_private_get_currency_networks = v1PrivatePostPrivateGetCurrencyNetworks = Entry('private/get-currency-networks', ['v1', 'private'], 'POST', {'cost': 3.3333333333333335})
38
+ v1_private_post_private_get_deposit_address = v1PrivatePostPrivateGetDepositAddress = Entry('private/get-deposit-address', ['v1', 'private'], 'POST', {'cost': 3.3333333333333335})
39
+ v1_private_post_private_get_accounts = v1PrivatePostPrivateGetAccounts = Entry('private/get-accounts', ['v1', 'private'], 'POST', {'cost': 3.3333333333333335})
40
+ v1_private_post_private_get_withdrawal_history = v1PrivatePostPrivateGetWithdrawalHistory = Entry('private/get-withdrawal-history', ['v1', 'private'], 'POST', {'cost': 3.3333333333333335})
41
+ v1_private_post_private_get_deposit_history = v1PrivatePostPrivateGetDepositHistory = Entry('private/get-deposit-history', ['v1', 'private'], 'POST', {'cost': 3.3333333333333335})
42
+ v1_private_post_private_get_fee_rate = v1PrivatePostPrivateGetFeeRate = Entry('private/get-fee-rate', ['v1', 'private'], 'POST', {'cost': 2})
43
+ v1_private_post_private_get_instrument_fee_rate = v1PrivatePostPrivateGetInstrumentFeeRate = Entry('private/get-instrument-fee-rate', ['v1', 'private'], 'POST', {'cost': 2})
44
+ v1_private_post_private_staking_stake = v1PrivatePostPrivateStakingStake = Entry('private/staking/stake', ['v1', 'private'], 'POST', {'cost': 2})
45
+ v1_private_post_private_staking_unstake = v1PrivatePostPrivateStakingUnstake = Entry('private/staking/unstake', ['v1', 'private'], 'POST', {'cost': 2})
46
+ v1_private_post_private_staking_get_staking_position = v1PrivatePostPrivateStakingGetStakingPosition = Entry('private/staking/get-staking-position', ['v1', 'private'], 'POST', {'cost': 2})
47
+ v1_private_post_private_staking_get_staking_instruments = v1PrivatePostPrivateStakingGetStakingInstruments = Entry('private/staking/get-staking-instruments', ['v1', 'private'], 'POST', {'cost': 2})
48
+ v1_private_post_private_staking_get_open_stake = v1PrivatePostPrivateStakingGetOpenStake = Entry('private/staking/get-open-stake', ['v1', 'private'], 'POST', {'cost': 2})
49
+ v1_private_post_private_staking_get_stake_history = v1PrivatePostPrivateStakingGetStakeHistory = Entry('private/staking/get-stake-history', ['v1', 'private'], 'POST', {'cost': 2})
50
+ v1_private_post_private_staking_get_reward_history = v1PrivatePostPrivateStakingGetRewardHistory = Entry('private/staking/get-reward-history', ['v1', 'private'], 'POST', {'cost': 2})
51
+ v1_private_post_private_staking_convert = v1PrivatePostPrivateStakingConvert = Entry('private/staking/convert', ['v1', 'private'], 'POST', {'cost': 2})
52
+ v1_private_post_private_staking_get_open_convert = v1PrivatePostPrivateStakingGetOpenConvert = Entry('private/staking/get-open-convert', ['v1', 'private'], 'POST', {'cost': 2})
53
+ v1_private_post_private_staking_get_convert_history = v1PrivatePostPrivateStakingGetConvertHistory = Entry('private/staking/get-convert-history', ['v1', 'private'], 'POST', {'cost': 2})
54
+ v2_public_get_public_auth = v2PublicGetPublicAuth = Entry('public/auth', ['v2', 'public'], 'GET', {'cost': 1})
55
+ v2_public_get_public_get_instruments = v2PublicGetPublicGetInstruments = Entry('public/get-instruments', ['v2', 'public'], 'GET', {'cost': 1})
56
+ v2_public_get_public_get_book = v2PublicGetPublicGetBook = Entry('public/get-book', ['v2', 'public'], 'GET', {'cost': 1})
57
+ v2_public_get_public_get_candlestick = v2PublicGetPublicGetCandlestick = Entry('public/get-candlestick', ['v2', 'public'], 'GET', {'cost': 1})
58
+ v2_public_get_public_get_ticker = v2PublicGetPublicGetTicker = Entry('public/get-ticker', ['v2', 'public'], 'GET', {'cost': 1})
59
+ v2_public_get_public_get_trades = v2PublicGetPublicGetTrades = Entry('public/get-trades', ['v2', 'public'], 'GET', {'cost': 1})
60
+ v2_public_get_public_margin_get_transfer_currencies = v2PublicGetPublicMarginGetTransferCurrencies = Entry('public/margin/get-transfer-currencies', ['v2', 'public'], 'GET', {'cost': 1})
61
+ v2_public_get_public_margin_get_load_currenices = v2PublicGetPublicMarginGetLoadCurrenices = Entry('public/margin/get-load-currenices', ['v2', 'public'], 'GET', {'cost': 1})
62
+ v2_public_get_public_respond_heartbeat = v2PublicGetPublicRespondHeartbeat = Entry('public/respond-heartbeat', ['v2', 'public'], 'GET', {'cost': 1})
63
+ v2_private_post_private_set_cancel_on_disconnect = v2PrivatePostPrivateSetCancelOnDisconnect = Entry('private/set-cancel-on-disconnect', ['v2', 'private'], 'POST', {'cost': 3.3333333333333335})
64
+ v2_private_post_private_get_cancel_on_disconnect = v2PrivatePostPrivateGetCancelOnDisconnect = Entry('private/get-cancel-on-disconnect', ['v2', 'private'], 'POST', {'cost': 3.3333333333333335})
65
+ v2_private_post_private_create_withdrawal = v2PrivatePostPrivateCreateWithdrawal = Entry('private/create-withdrawal', ['v2', 'private'], 'POST', {'cost': 3.3333333333333335})
66
+ v2_private_post_private_get_withdrawal_history = v2PrivatePostPrivateGetWithdrawalHistory = Entry('private/get-withdrawal-history', ['v2', 'private'], 'POST', {'cost': 3.3333333333333335})
67
+ v2_private_post_private_get_currency_networks = v2PrivatePostPrivateGetCurrencyNetworks = Entry('private/get-currency-networks', ['v2', 'private'], 'POST', {'cost': 3.3333333333333335})
68
+ v2_private_post_private_get_deposit_history = v2PrivatePostPrivateGetDepositHistory = Entry('private/get-deposit-history', ['v2', 'private'], 'POST', {'cost': 3.3333333333333335})
69
+ v2_private_post_private_get_deposit_address = v2PrivatePostPrivateGetDepositAddress = Entry('private/get-deposit-address', ['v2', 'private'], 'POST', {'cost': 3.3333333333333335})
70
+ v2_private_post_private_export_create_export_request = v2PrivatePostPrivateExportCreateExportRequest = Entry('private/export/create-export-request', ['v2', 'private'], 'POST', {'cost': 3.3333333333333335})
71
+ v2_private_post_private_export_get_export_requests = v2PrivatePostPrivateExportGetExportRequests = Entry('private/export/get-export-requests', ['v2', 'private'], 'POST', {'cost': 3.3333333333333335})
72
+ v2_private_post_private_export_download_export_output = v2PrivatePostPrivateExportDownloadExportOutput = Entry('private/export/download-export-output', ['v2', 'private'], 'POST', {'cost': 3.3333333333333335})
73
+ v2_private_post_private_get_account_summary = v2PrivatePostPrivateGetAccountSummary = Entry('private/get-account-summary', ['v2', 'private'], 'POST', {'cost': 3.3333333333333335})
74
+ v2_private_post_private_create_order = v2PrivatePostPrivateCreateOrder = Entry('private/create-order', ['v2', 'private'], 'POST', {'cost': 0.6666666666666666})
75
+ v2_private_post_private_cancel_order = v2PrivatePostPrivateCancelOrder = Entry('private/cancel-order', ['v2', 'private'], 'POST', {'cost': 0.6666666666666666})
76
+ v2_private_post_private_cancel_all_orders = v2PrivatePostPrivateCancelAllOrders = Entry('private/cancel-all-orders', ['v2', 'private'], 'POST', {'cost': 0.6666666666666666})
77
+ v2_private_post_private_create_order_list = v2PrivatePostPrivateCreateOrderList = Entry('private/create-order-list', ['v2', 'private'], 'POST', {'cost': 3.3333333333333335})
78
+ v2_private_post_private_get_order_history = v2PrivatePostPrivateGetOrderHistory = Entry('private/get-order-history', ['v2', 'private'], 'POST', {'cost': 3.3333333333333335})
79
+ v2_private_post_private_get_open_orders = v2PrivatePostPrivateGetOpenOrders = Entry('private/get-open-orders', ['v2', 'private'], 'POST', {'cost': 3.3333333333333335})
80
+ v2_private_post_private_get_order_detail = v2PrivatePostPrivateGetOrderDetail = Entry('private/get-order-detail', ['v2', 'private'], 'POST', {'cost': 0.3333333333333333})
81
+ v2_private_post_private_get_trades = v2PrivatePostPrivateGetTrades = Entry('private/get-trades', ['v2', 'private'], 'POST', {'cost': 100})
82
+ v2_private_post_private_get_accounts = v2PrivatePostPrivateGetAccounts = Entry('private/get-accounts', ['v2', 'private'], 'POST', {'cost': 3.3333333333333335})
83
+ v2_private_post_private_get_subaccount_balances = v2PrivatePostPrivateGetSubaccountBalances = Entry('private/get-subaccount-balances', ['v2', 'private'], 'POST', {'cost': 3.3333333333333335})
84
+ v2_private_post_private_create_subaccount_transfer = v2PrivatePostPrivateCreateSubaccountTransfer = Entry('private/create-subaccount-transfer', ['v2', 'private'], 'POST', {'cost': 3.3333333333333335})
85
+ v2_private_post_private_otc_get_otc_user = v2PrivatePostPrivateOtcGetOtcUser = Entry('private/otc/get-otc-user', ['v2', 'private'], 'POST', {'cost': 3.3333333333333335})
86
+ v2_private_post_private_otc_get_instruments = v2PrivatePostPrivateOtcGetInstruments = Entry('private/otc/get-instruments', ['v2', 'private'], 'POST', {'cost': 3.3333333333333335})
87
+ v2_private_post_private_otc_request_quote = v2PrivatePostPrivateOtcRequestQuote = Entry('private/otc/request-quote', ['v2', 'private'], 'POST', {'cost': 100})
88
+ v2_private_post_private_otc_accept_quote = v2PrivatePostPrivateOtcAcceptQuote = Entry('private/otc/accept-quote', ['v2', 'private'], 'POST', {'cost': 100})
89
+ v2_private_post_private_otc_get_quote_history = v2PrivatePostPrivateOtcGetQuoteHistory = Entry('private/otc/get-quote-history', ['v2', 'private'], 'POST', {'cost': 3.3333333333333335})
90
+ v2_private_post_private_otc_get_trade_history = v2PrivatePostPrivateOtcGetTradeHistory = Entry('private/otc/get-trade-history', ['v2', 'private'], 'POST', {'cost': 3.3333333333333335})
91
+ v2_private_post_private_otc_create_order = v2PrivatePostPrivateOtcCreateOrder = Entry('private/otc/create-order', ['v2', 'private'], 'POST', {'cost': 3.3333333333333335})
92
+ derivatives_public_get_public_auth = derivativesPublicGetPublicAuth = Entry('public/auth', ['derivatives', 'public'], 'GET', {'cost': 3.3333333333333335})
93
+ derivatives_public_get_public_get_instruments = derivativesPublicGetPublicGetInstruments = Entry('public/get-instruments', ['derivatives', 'public'], 'GET', {'cost': 3.3333333333333335})
94
+ derivatives_public_get_public_get_book = derivativesPublicGetPublicGetBook = Entry('public/get-book', ['derivatives', 'public'], 'GET', {'cost': 1})
95
+ derivatives_public_get_public_get_candlestick = derivativesPublicGetPublicGetCandlestick = Entry('public/get-candlestick', ['derivatives', 'public'], 'GET', {'cost': 1})
96
+ derivatives_public_get_public_get_trades = derivativesPublicGetPublicGetTrades = Entry('public/get-trades', ['derivatives', 'public'], 'GET', {'cost': 1})
97
+ derivatives_public_get_public_get_tickers = derivativesPublicGetPublicGetTickers = Entry('public/get-tickers', ['derivatives', 'public'], 'GET', {'cost': 1})
98
+ derivatives_public_get_public_get_valuations = derivativesPublicGetPublicGetValuations = Entry('public/get-valuations', ['derivatives', 'public'], 'GET', {'cost': 1})
99
+ derivatives_public_get_public_get_expired_settlement_price = derivativesPublicGetPublicGetExpiredSettlementPrice = Entry('public/get-expired-settlement-price', ['derivatives', 'public'], 'GET', {'cost': 3.3333333333333335})
100
+ derivatives_public_get_public_get_insurance = derivativesPublicGetPublicGetInsurance = Entry('public/get-insurance', ['derivatives', 'public'], 'GET', {'cost': 1})
101
+ derivatives_private_post_private_set_cancel_on_disconnect = derivativesPrivatePostPrivateSetCancelOnDisconnect = Entry('private/set-cancel-on-disconnect', ['derivatives', 'private'], 'POST', {'cost': 3.3333333333333335})
102
+ derivatives_private_post_private_get_cancel_on_disconnect = derivativesPrivatePostPrivateGetCancelOnDisconnect = Entry('private/get-cancel-on-disconnect', ['derivatives', 'private'], 'POST', {'cost': 3.3333333333333335})
103
+ derivatives_private_post_private_user_balance = derivativesPrivatePostPrivateUserBalance = Entry('private/user-balance', ['derivatives', 'private'], 'POST', {'cost': 3.3333333333333335})
104
+ derivatives_private_post_private_user_balance_history = derivativesPrivatePostPrivateUserBalanceHistory = Entry('private/user-balance-history', ['derivatives', 'private'], 'POST', {'cost': 3.3333333333333335})
105
+ derivatives_private_post_private_get_positions = derivativesPrivatePostPrivateGetPositions = Entry('private/get-positions', ['derivatives', 'private'], 'POST', {'cost': 3.3333333333333335})
106
+ derivatives_private_post_private_create_order = derivativesPrivatePostPrivateCreateOrder = Entry('private/create-order', ['derivatives', 'private'], 'POST', {'cost': 0.6666666666666666})
107
+ derivatives_private_post_private_create_order_list = derivativesPrivatePostPrivateCreateOrderList = Entry('private/create-order-list', ['derivatives', 'private'], 'POST', {'cost': 3.3333333333333335})
108
+ derivatives_private_post_private_cancel_order = derivativesPrivatePostPrivateCancelOrder = Entry('private/cancel-order', ['derivatives', 'private'], 'POST', {'cost': 0.6666666666666666})
109
+ derivatives_private_post_private_cancel_order_list = derivativesPrivatePostPrivateCancelOrderList = Entry('private/cancel-order-list', ['derivatives', 'private'], 'POST', {'cost': 3.3333333333333335})
110
+ derivatives_private_post_private_cancel_all_orders = derivativesPrivatePostPrivateCancelAllOrders = Entry('private/cancel-all-orders', ['derivatives', 'private'], 'POST', {'cost': 0.6666666666666666})
111
+ derivatives_private_post_private_close_position = derivativesPrivatePostPrivateClosePosition = Entry('private/close-position', ['derivatives', 'private'], 'POST', {'cost': 3.3333333333333335})
112
+ derivatives_private_post_private_convert_collateral = derivativesPrivatePostPrivateConvertCollateral = Entry('private/convert-collateral', ['derivatives', 'private'], 'POST', {'cost': 3.3333333333333335})
113
+ derivatives_private_post_private_get_order_history = derivativesPrivatePostPrivateGetOrderHistory = Entry('private/get-order-history', ['derivatives', 'private'], 'POST', {'cost': 100})
114
+ derivatives_private_post_private_get_open_orders = derivativesPrivatePostPrivateGetOpenOrders = Entry('private/get-open-orders', ['derivatives', 'private'], 'POST', {'cost': 3.3333333333333335})
115
+ derivatives_private_post_private_get_order_detail = derivativesPrivatePostPrivateGetOrderDetail = Entry('private/get-order-detail', ['derivatives', 'private'], 'POST', {'cost': 0.3333333333333333})
116
+ derivatives_private_post_private_get_trades = derivativesPrivatePostPrivateGetTrades = Entry('private/get-trades', ['derivatives', 'private'], 'POST', {'cost': 100})
117
+ derivatives_private_post_private_change_account_leverage = derivativesPrivatePostPrivateChangeAccountLeverage = Entry('private/change-account-leverage', ['derivatives', 'private'], 'POST', {'cost': 3.3333333333333335})
118
+ derivatives_private_post_private_get_transactions = derivativesPrivatePostPrivateGetTransactions = Entry('private/get-transactions', ['derivatives', 'private'], 'POST', {'cost': 3.3333333333333335})
119
+ derivatives_private_post_private_create_subaccount_transfer = derivativesPrivatePostPrivateCreateSubaccountTransfer = Entry('private/create-subaccount-transfer', ['derivatives', 'private'], 'POST', {'cost': 3.3333333333333335})
120
+ derivatives_private_post_private_get_subaccount_balances = derivativesPrivatePostPrivateGetSubaccountBalances = Entry('private/get-subaccount-balances', ['derivatives', 'private'], 'POST', {'cost': 3.3333333333333335})
121
+ derivatives_private_post_private_get_order_list = derivativesPrivatePostPrivateGetOrderList = Entry('private/get-order-list', ['derivatives', 'private'], 'POST', {'cost': 3.3333333333333335})