coinex-api 0.0.12__tar.gz → 0.0.14__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {coinex_api-0.0.12 → coinex_api-0.0.14}/PKG-INFO +1 -1
- {coinex_api-0.0.12 → coinex_api-0.0.14}/pyproject.toml +2 -3
- coinex_api-0.0.14/src/coinex/__init__.py +7 -0
- coinex_api-0.0.14/src/coinex/ccxt/__init__.py +101 -0
- coinex_api-0.0.14/src/coinex/ccxt/abstract/coinex.py +237 -0
- coinex_api-0.0.14/src/coinex/ccxt/async_support/__init__.py +80 -0
- coinex_api-0.0.14/src/coinex/ccxt/async_support/base/__init__.py +1 -0
- coinex_api-0.0.14/src/coinex/ccxt/async_support/base/exchange.py +2100 -0
- coinex_api-0.0.14/src/coinex/ccxt/async_support/base/throttler.py +50 -0
- coinex_api-0.0.14/src/coinex/ccxt/async_support/base/ws/__init__.py +38 -0
- coinex_api-0.0.14/src/coinex/ccxt/async_support/base/ws/aiohttp_client.py +147 -0
- coinex_api-0.0.14/src/coinex/ccxt/async_support/base/ws/cache.py +213 -0
- coinex_api-0.0.14/src/coinex/ccxt/async_support/base/ws/client.py +214 -0
- coinex_api-0.0.14/src/coinex/ccxt/async_support/base/ws/fast_client.py +97 -0
- coinex_api-0.0.14/src/coinex/ccxt/async_support/base/ws/functions.py +59 -0
- coinex_api-0.0.14/src/coinex/ccxt/async_support/base/ws/future.py +69 -0
- coinex_api-0.0.14/src/coinex/ccxt/async_support/base/ws/order_book.py +78 -0
- coinex_api-0.0.14/src/coinex/ccxt/async_support/base/ws/order_book_side.py +174 -0
- coinex_api-0.0.14/src/coinex/ccxt/async_support/coinex.py +5833 -0
- coinex_api-0.0.14/src/coinex/ccxt/base/__init__.py +27 -0
- coinex_api-0.0.14/src/coinex/ccxt/base/decimal_to_precision.py +174 -0
- coinex_api-0.0.14/src/coinex/ccxt/base/errors.py +267 -0
- coinex_api-0.0.14/src/coinex/ccxt/base/exchange.py +6769 -0
- coinex_api-0.0.14/src/coinex/ccxt/base/precise.py +297 -0
- coinex_api-0.0.14/src/coinex/ccxt/base/types.py +577 -0
- coinex_api-0.0.14/src/coinex/ccxt/coinex.py +5832 -0
- coinex_api-0.0.14/src/coinex/ccxt/pro/__init__.py +21 -0
- coinex_api-0.0.14/src/coinex/ccxt/pro/coinex.py +1366 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/README.md +1 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/__init__.py +1 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ecdsa/__init__.py +14 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ecdsa/_version.py +520 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ecdsa/curves.py +56 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ecdsa/der.py +221 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ecdsa/ecdsa.py +310 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ecdsa/ellipticcurve.py +197 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ecdsa/keys.py +332 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ecdsa/numbertheory.py +531 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ecdsa/rfc6979.py +100 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ecdsa/util.py +266 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/__init__.py +7 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/abi/__init__.py +16 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/abi/abi.py +19 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/abi/base.py +152 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/abi/codec.py +217 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/abi/constants.py +3 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/abi/decoding.py +565 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/abi/encoding.py +720 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/abi/exceptions.py +139 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/abi/grammar.py +443 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/abi/packed.py +13 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/abi/py.typed +0 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/abi/registry.py +643 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/abi/tools/__init__.py +3 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/abi/tools/_strategies.py +230 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/abi/utils/__init__.py +0 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/abi/utils/numeric.py +83 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/abi/utils/padding.py +27 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/abi/utils/string.py +19 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/account/__init__.py +3 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/account/encode_typed_data/__init__.py +4 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/account/encode_typed_data/encoding_and_hashing.py +239 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/account/encode_typed_data/helpers.py +40 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/account/messages.py +263 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/account/py.typed +0 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/hexbytes/__init__.py +5 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/hexbytes/_utils.py +54 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/hexbytes/main.py +65 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/hexbytes/py.typed +0 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/typing/__init__.py +63 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/typing/abi.py +6 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/typing/bls.py +7 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/typing/discovery.py +5 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/typing/encoding.py +7 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/typing/enums.py +17 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/typing/ethpm.py +9 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/typing/evm.py +20 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/typing/networks.py +1122 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/typing/py.typed +0 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/utils/__init__.py +115 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/utils/abi.py +72 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/utils/address.py +171 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/utils/applicators.py +151 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/utils/conversions.py +190 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/utils/currency.py +107 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/utils/curried/__init__.py +269 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/utils/debug.py +20 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/utils/decorators.py +132 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/utils/encoding.py +6 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/utils/exceptions.py +4 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/utils/functional.py +75 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/utils/hexadecimal.py +74 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/utils/humanize.py +188 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/utils/logging.py +159 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/utils/module_loading.py +31 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/utils/numeric.py +43 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/utils/py.typed +0 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/utils/toolz.py +76 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/utils/types.py +54 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/utils/typing/__init__.py +18 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/utils/typing/misc.py +14 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/ethereum/utils/units.py +31 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/keccak/__init__.py +3 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/keccak/keccak.py +197 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/__init__.py +38 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/__pyinstaller/__init__.py +6 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/__pyinstaller/hook-lark.py +14 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/ast_utils.py +59 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/common.py +86 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/exceptions.py +292 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/grammar.py +130 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/grammars/__init__.py +0 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/grammars/common.lark +59 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/grammars/lark.lark +62 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/grammars/python.lark +302 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/grammars/unicode.lark +7 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/indenter.py +143 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/lark.py +658 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/lexer.py +678 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/load_grammar.py +1428 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/parse_tree_builder.py +391 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/parser_frontends.py +257 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/parsers/__init__.py +0 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/parsers/cyk.py +340 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/parsers/earley.py +314 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/parsers/earley_common.py +42 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/parsers/earley_forest.py +801 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/parsers/grammar_analysis.py +203 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/parsers/lalr_analysis.py +332 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/parsers/lalr_interactive_parser.py +158 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/parsers/lalr_parser.py +122 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/parsers/lalr_parser_state.py +110 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/parsers/xearley.py +165 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/py.typed +0 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/reconstruct.py +107 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/tools/__init__.py +70 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/tools/nearley.py +202 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/tools/serialize.py +32 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/tools/standalone.py +196 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/tree.py +267 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/tree_matcher.py +186 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/tree_templates.py +180 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/utils.py +343 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/lark/visitors.py +596 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/marshmallow/__init__.py +81 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/marshmallow/base.py +65 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/marshmallow/class_registry.py +94 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/marshmallow/decorators.py +231 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/marshmallow/error_store.py +60 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/marshmallow/exceptions.py +71 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/marshmallow/fields.py +2114 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/marshmallow/orderedset.py +89 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/marshmallow/py.typed +0 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/marshmallow/schema.py +1228 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/marshmallow/types.py +12 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/marshmallow/utils.py +378 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/marshmallow/validate.py +678 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/marshmallow/warnings.py +2 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/marshmallow_dataclass/__init__.py +1047 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/marshmallow_dataclass/collection_field.py +51 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/marshmallow_dataclass/lazy_class_attribute.py +45 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/marshmallow_dataclass/mypy.py +71 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/marshmallow_dataclass/py.typed +0 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/marshmallow_dataclass/typing.py +14 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/marshmallow_dataclass/union_field.py +82 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/marshmallow_oneofschema/__init__.py +1 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/marshmallow_oneofschema/one_of_schema.py +193 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/marshmallow_oneofschema/py.typed +0 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/msgpack/__init__.py +55 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/msgpack/_cmsgpack.pyx +11 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/msgpack/_packer.pyx +374 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/msgpack/_unpacker.pyx +547 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/msgpack/buff_converter.h +8 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/msgpack/exceptions.py +48 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/msgpack/ext.py +168 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/msgpack/fallback.py +951 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/msgpack/pack.h +89 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/msgpack/pack_template.h +820 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/msgpack/sysdep.h +194 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/msgpack/unpack.h +391 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/msgpack/unpack_define.h +95 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/msgpack/unpack_template.h +464 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/parsimonious/__init__.py +10 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/parsimonious/exceptions.py +105 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/parsimonious/expressions.py +479 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/parsimonious/grammar.py +487 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/parsimonious/nodes.py +325 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/parsimonious/utils.py +40 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/__init__.py +0 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/abi/v0/__init__.py +2 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/abi/v0/model.py +44 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/abi/v0/parser.py +216 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/abi/v0/schemas.py +72 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/abi/v0/shape.py +63 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/abi/v1/__init__.py +2 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/abi/v1/core_structures.json +14 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/abi/v1/model.py +39 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/abi/v1/parser.py +220 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/abi/v1/parser_transformer.py +179 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/abi/v1/schemas.py +66 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/abi/v1/shape.py +47 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/abi/v2/__init__.py +2 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/abi/v2/model.py +89 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/abi/v2/parser.py +293 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/abi/v2/parser_transformer.py +192 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/abi/v2/schemas.py +132 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/abi/v2/shape.py +107 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/cairo/__init__.py +0 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/cairo/data_types.py +123 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/cairo/deprecated_parse/__init__.py +0 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/cairo/deprecated_parse/cairo_types.py +77 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser.py +46 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser_transformer.py +138 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/cairo/felt.py +64 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/cairo/type_parser.py +121 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/cairo/v1/__init__.py +0 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/cairo/v1/type_parser.py +59 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/cairo/v2/__init__.py +0 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/cairo/v2/type_parser.py +77 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/ccxt_utils.py +7 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/common.py +15 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/constants.py +39 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/hash/__init__.py +0 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/hash/address.py +79 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/hash/compiled_class_hash_objects.py +111 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/hash/selector.py +16 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/hash/storage.py +12 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/hash/utils.py +78 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/models/__init__.py +0 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/models/typed_data.py +45 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/serialization/__init__.py +24 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/serialization/_calldata_reader.py +40 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/serialization/_context.py +142 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/serialization/data_serializers/__init__.py +10 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/serialization/data_serializers/_common.py +82 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/serialization/data_serializers/array_serializer.py +43 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/serialization/data_serializers/bool_serializer.py +37 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/serialization/data_serializers/byte_array_serializer.py +66 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/serialization/data_serializers/cairo_data_serializer.py +71 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/serialization/data_serializers/enum_serializer.py +71 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/serialization/data_serializers/felt_serializer.py +50 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/serialization/data_serializers/named_tuple_serializer.py +58 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/serialization/data_serializers/option_serializer.py +43 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/serialization/data_serializers/output_serializer.py +40 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/serialization/data_serializers/payload_serializer.py +72 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/serialization/data_serializers/struct_serializer.py +36 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/serialization/data_serializers/tuple_serializer.py +36 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/serialization/data_serializers/uint256_serializer.py +76 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/serialization/data_serializers/uint_serializer.py +100 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/serialization/data_serializers/unit_serializer.py +32 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/serialization/errors.py +10 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/serialization/factory.py +229 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/serialization/function_serialization_adapter.py +110 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/serialization/tuple_dataclass.py +59 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/utils/__init__.py +0 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/utils/constructor_args_translator.py +86 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/utils/iterable.py +13 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/utils/schema.py +13 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starknet/utils/typed_data.py +182 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starkware/__init__.py +0 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starkware/crypto/__init__.py +0 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starkware/crypto/fast_pedersen_hash.py +50 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starkware/crypto/math_utils.py +78 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starkware/crypto/signature.py +2344 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/starkware/crypto/utils.py +63 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/sympy/__init__.py +0 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/sympy/core/__init__.py +0 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/sympy/core/intfunc.py +35 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/sympy/external/__init__.py +0 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/sympy/external/gmpy.py +345 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/sympy/external/importtools.py +187 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/sympy/external/ntheory.py +637 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/sympy/external/pythonmpq.py +341 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/toolz/__init__.py +26 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/toolz/_signatures.py +784 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/toolz/_version.py +520 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/toolz/compatibility.py +30 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/toolz/curried/__init__.py +101 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/toolz/curried/exceptions.py +22 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/toolz/curried/operator.py +22 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/toolz/dicttoolz.py +339 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/toolz/functoolz.py +1049 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/toolz/itertoolz.py +1057 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/toolz/recipes.py +46 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/toolz/utils.py +9 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/typing_inspect/__init__.py +0 -0
- coinex_api-0.0.14/src/coinex/ccxt/static_dependencies/typing_inspect/typing_inspect.py +851 -0
- {coinex_api-0.0.12 → coinex_api-0.0.14}/.gitignore +0 -0
- {coinex_api-0.0.12 → coinex_api-0.0.14}/README.md +0 -0
@@ -6,12 +6,11 @@ build-backend = "hatchling.build"
|
|
6
6
|
include = ["src/coinex"]
|
7
7
|
|
8
8
|
[tool.hatch.build.targets.wheel]
|
9
|
-
packages = ["coinex"]
|
10
|
-
src-layout = "src"
|
9
|
+
packages = ["src/coinex"]
|
11
10
|
|
12
11
|
[project]
|
13
12
|
name = "coinex-api"
|
14
|
-
version = "0.0.
|
13
|
+
version = "0.0.14"
|
15
14
|
authors = [
|
16
15
|
{ name="CCXT", email="info@ccxt.trade" },
|
17
16
|
]
|
@@ -0,0 +1,101 @@
|
|
1
|
+
import sys
|
2
|
+
import coinex.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.coinex import coinex # noqa: F401
|
91
|
+
|
92
|
+
exchanges = [ 'coinex',]
|
93
|
+
|
94
|
+
base = [
|
95
|
+
'Exchange',
|
96
|
+
'Precise',
|
97
|
+
'exchanges',
|
98
|
+
'decimal_to_precision',
|
99
|
+
]
|
100
|
+
|
101
|
+
__all__ = base + errors.__all__ + exchanges
|
@@ -0,0 +1,237 @@
|
|
1
|
+
from ccxt.base.types import Entry
|
2
|
+
|
3
|
+
|
4
|
+
class ImplicitAPI:
|
5
|
+
v1_public_get_amm_market = v1PublicGetAmmMarket = Entry('amm/market', ['v1', 'public'], 'GET', {'cost': 1})
|
6
|
+
v1_public_get_common_currency_rate = v1PublicGetCommonCurrencyRate = Entry('common/currency/rate', ['v1', 'public'], 'GET', {'cost': 1})
|
7
|
+
v1_public_get_common_asset_config = v1PublicGetCommonAssetConfig = Entry('common/asset/config', ['v1', 'public'], 'GET', {'cost': 1})
|
8
|
+
v1_public_get_common_maintain_info = v1PublicGetCommonMaintainInfo = Entry('common/maintain/info', ['v1', 'public'], 'GET', {'cost': 1})
|
9
|
+
v1_public_get_common_temp_maintain_info = v1PublicGetCommonTempMaintainInfo = Entry('common/temp-maintain/info', ['v1', 'public'], 'GET', {'cost': 1})
|
10
|
+
v1_public_get_margin_market = v1PublicGetMarginMarket = Entry('margin/market', ['v1', 'public'], 'GET', {'cost': 1})
|
11
|
+
v1_public_get_market_info = v1PublicGetMarketInfo = Entry('market/info', ['v1', 'public'], 'GET', {'cost': 1})
|
12
|
+
v1_public_get_market_list = v1PublicGetMarketList = Entry('market/list', ['v1', 'public'], 'GET', {'cost': 1})
|
13
|
+
v1_public_get_market_ticker = v1PublicGetMarketTicker = Entry('market/ticker', ['v1', 'public'], 'GET', {'cost': 1})
|
14
|
+
v1_public_get_market_ticker_all = v1PublicGetMarketTickerAll = Entry('market/ticker/all', ['v1', 'public'], 'GET', {'cost': 1})
|
15
|
+
v1_public_get_market_depth = v1PublicGetMarketDepth = Entry('market/depth', ['v1', 'public'], 'GET', {'cost': 1})
|
16
|
+
v1_public_get_market_deals = v1PublicGetMarketDeals = Entry('market/deals', ['v1', 'public'], 'GET', {'cost': 1})
|
17
|
+
v1_public_get_market_kline = v1PublicGetMarketKline = Entry('market/kline', ['v1', 'public'], 'GET', {'cost': 1})
|
18
|
+
v1_public_get_market_detail = v1PublicGetMarketDetail = Entry('market/detail', ['v1', 'public'], 'GET', {'cost': 1})
|
19
|
+
v1_private_get_account_amm_balance = v1PrivateGetAccountAmmBalance = Entry('account/amm/balance', ['v1', 'private'], 'GET', {'cost': 40})
|
20
|
+
v1_private_get_account_investment_balance = v1PrivateGetAccountInvestmentBalance = Entry('account/investment/balance', ['v1', 'private'], 'GET', {'cost': 40})
|
21
|
+
v1_private_get_account_balance_history = v1PrivateGetAccountBalanceHistory = Entry('account/balance/history', ['v1', 'private'], 'GET', {'cost': 40})
|
22
|
+
v1_private_get_account_market_fee = v1PrivateGetAccountMarketFee = Entry('account/market/fee', ['v1', 'private'], 'GET', {'cost': 40})
|
23
|
+
v1_private_get_balance_coin_deposit = v1PrivateGetBalanceCoinDeposit = Entry('balance/coin/deposit', ['v1', 'private'], 'GET', {'cost': 40})
|
24
|
+
v1_private_get_balance_coin_withdraw = v1PrivateGetBalanceCoinWithdraw = Entry('balance/coin/withdraw', ['v1', 'private'], 'GET', {'cost': 40})
|
25
|
+
v1_private_get_balance_info = v1PrivateGetBalanceInfo = Entry('balance/info', ['v1', 'private'], 'GET', {'cost': 40})
|
26
|
+
v1_private_get_balance_deposit_address_coin_type = v1PrivateGetBalanceDepositAddressCoinType = Entry('balance/deposit/address/{coin_type}', ['v1', 'private'], 'GET', {'cost': 40})
|
27
|
+
v1_private_get_contract_transfer_history = v1PrivateGetContractTransferHistory = Entry('contract/transfer/history', ['v1', 'private'], 'GET', {'cost': 40})
|
28
|
+
v1_private_get_credit_info = v1PrivateGetCreditInfo = Entry('credit/info', ['v1', 'private'], 'GET', {'cost': 40})
|
29
|
+
v1_private_get_credit_balance = v1PrivateGetCreditBalance = Entry('credit/balance', ['v1', 'private'], 'GET', {'cost': 40})
|
30
|
+
v1_private_get_investment_transfer_history = v1PrivateGetInvestmentTransferHistory = Entry('investment/transfer/history', ['v1', 'private'], 'GET', {'cost': 40})
|
31
|
+
v1_private_get_margin_account = v1PrivateGetMarginAccount = Entry('margin/account', ['v1', 'private'], 'GET', {'cost': 1})
|
32
|
+
v1_private_get_margin_config = v1PrivateGetMarginConfig = Entry('margin/config', ['v1', 'private'], 'GET', {'cost': 1})
|
33
|
+
v1_private_get_margin_loan_history = v1PrivateGetMarginLoanHistory = Entry('margin/loan/history', ['v1', 'private'], 'GET', {'cost': 40})
|
34
|
+
v1_private_get_margin_transfer_history = v1PrivateGetMarginTransferHistory = Entry('margin/transfer/history', ['v1', 'private'], 'GET', {'cost': 40})
|
35
|
+
v1_private_get_order_deals = v1PrivateGetOrderDeals = Entry('order/deals', ['v1', 'private'], 'GET', {'cost': 40})
|
36
|
+
v1_private_get_order_finished = v1PrivateGetOrderFinished = Entry('order/finished', ['v1', 'private'], 'GET', {'cost': 40})
|
37
|
+
v1_private_get_order_pending = v1PrivateGetOrderPending = Entry('order/pending', ['v1', 'private'], 'GET', {'cost': 8})
|
38
|
+
v1_private_get_order_status = v1PrivateGetOrderStatus = Entry('order/status', ['v1', 'private'], 'GET', {'cost': 8})
|
39
|
+
v1_private_get_order_status_batch = v1PrivateGetOrderStatusBatch = Entry('order/status/batch', ['v1', 'private'], 'GET', {'cost': 8})
|
40
|
+
v1_private_get_order_user_deals = v1PrivateGetOrderUserDeals = Entry('order/user/deals', ['v1', 'private'], 'GET', {'cost': 40})
|
41
|
+
v1_private_get_order_stop_finished = v1PrivateGetOrderStopFinished = Entry('order/stop/finished', ['v1', 'private'], 'GET', {'cost': 40})
|
42
|
+
v1_private_get_order_stop_pending = v1PrivateGetOrderStopPending = Entry('order/stop/pending', ['v1', 'private'], 'GET', {'cost': 8})
|
43
|
+
v1_private_get_order_user_trade_fee = v1PrivateGetOrderUserTradeFee = Entry('order/user/trade/fee', ['v1', 'private'], 'GET', {'cost': 1})
|
44
|
+
v1_private_get_order_market_trade_info = v1PrivateGetOrderMarketTradeInfo = Entry('order/market/trade/info', ['v1', 'private'], 'GET', {'cost': 1})
|
45
|
+
v1_private_get_sub_account_balance = v1PrivateGetSubAccountBalance = Entry('sub_account/balance', ['v1', 'private'], 'GET', {'cost': 1})
|
46
|
+
v1_private_get_sub_account_transfer_history = v1PrivateGetSubAccountTransferHistory = Entry('sub_account/transfer/history', ['v1', 'private'], 'GET', {'cost': 40})
|
47
|
+
v1_private_get_sub_account_auth_api = v1PrivateGetSubAccountAuthApi = Entry('sub_account/auth/api', ['v1', 'private'], 'GET', {'cost': 40})
|
48
|
+
v1_private_get_sub_account_auth_api_user_auth_id = v1PrivateGetSubAccountAuthApiUserAuthId = Entry('sub_account/auth/api/{user_auth_id}', ['v1', 'private'], 'GET', {'cost': 40})
|
49
|
+
v1_private_post_balance_coin_withdraw = v1PrivatePostBalanceCoinWithdraw = Entry('balance/coin/withdraw', ['v1', 'private'], 'POST', {'cost': 40})
|
50
|
+
v1_private_post_contract_balance_transfer = v1PrivatePostContractBalanceTransfer = Entry('contract/balance/transfer', ['v1', 'private'], 'POST', {'cost': 40})
|
51
|
+
v1_private_post_margin_flat = v1PrivatePostMarginFlat = Entry('margin/flat', ['v1', 'private'], 'POST', {'cost': 40})
|
52
|
+
v1_private_post_margin_loan = v1PrivatePostMarginLoan = Entry('margin/loan', ['v1', 'private'], 'POST', {'cost': 40})
|
53
|
+
v1_private_post_margin_transfer = v1PrivatePostMarginTransfer = Entry('margin/transfer', ['v1', 'private'], 'POST', {'cost': 40})
|
54
|
+
v1_private_post_order_limit_batch = v1PrivatePostOrderLimitBatch = Entry('order/limit/batch', ['v1', 'private'], 'POST', {'cost': 40})
|
55
|
+
v1_private_post_order_ioc = v1PrivatePostOrderIoc = Entry('order/ioc', ['v1', 'private'], 'POST', {'cost': 13.334})
|
56
|
+
v1_private_post_order_limit = v1PrivatePostOrderLimit = Entry('order/limit', ['v1', 'private'], 'POST', {'cost': 13.334})
|
57
|
+
v1_private_post_order_market = v1PrivatePostOrderMarket = Entry('order/market', ['v1', 'private'], 'POST', {'cost': 13.334})
|
58
|
+
v1_private_post_order_modify = v1PrivatePostOrderModify = Entry('order/modify', ['v1', 'private'], 'POST', {'cost': 13.334})
|
59
|
+
v1_private_post_order_stop_limit = v1PrivatePostOrderStopLimit = Entry('order/stop/limit', ['v1', 'private'], 'POST', {'cost': 13.334})
|
60
|
+
v1_private_post_order_stop_market = v1PrivatePostOrderStopMarket = Entry('order/stop/market', ['v1', 'private'], 'POST', {'cost': 13.334})
|
61
|
+
v1_private_post_order_stop_modify = v1PrivatePostOrderStopModify = Entry('order/stop/modify', ['v1', 'private'], 'POST', {'cost': 13.334})
|
62
|
+
v1_private_post_sub_account_transfer = v1PrivatePostSubAccountTransfer = Entry('sub_account/transfer', ['v1', 'private'], 'POST', {'cost': 40})
|
63
|
+
v1_private_post_sub_account_register = v1PrivatePostSubAccountRegister = Entry('sub_account/register', ['v1', 'private'], 'POST', {'cost': 1})
|
64
|
+
v1_private_post_sub_account_unfrozen = v1PrivatePostSubAccountUnfrozen = Entry('sub_account/unfrozen', ['v1', 'private'], 'POST', {'cost': 40})
|
65
|
+
v1_private_post_sub_account_frozen = v1PrivatePostSubAccountFrozen = Entry('sub_account/frozen', ['v1', 'private'], 'POST', {'cost': 40})
|
66
|
+
v1_private_post_sub_account_auth_api = v1PrivatePostSubAccountAuthApi = Entry('sub_account/auth/api', ['v1', 'private'], 'POST', {'cost': 40})
|
67
|
+
v1_private_put_balance_deposit_address_coin_type = v1PrivatePutBalanceDepositAddressCoinType = Entry('balance/deposit/address/{coin_type}', ['v1', 'private'], 'PUT', {'cost': 40})
|
68
|
+
v1_private_put_sub_account_unfrozen = v1PrivatePutSubAccountUnfrozen = Entry('sub_account/unfrozen', ['v1', 'private'], 'PUT', {'cost': 40})
|
69
|
+
v1_private_put_sub_account_frozen = v1PrivatePutSubAccountFrozen = Entry('sub_account/frozen', ['v1', 'private'], 'PUT', {'cost': 40})
|
70
|
+
v1_private_put_sub_account_auth_api_user_auth_id = v1PrivatePutSubAccountAuthApiUserAuthId = Entry('sub_account/auth/api/{user_auth_id}', ['v1', 'private'], 'PUT', {'cost': 40})
|
71
|
+
v1_private_put_v1_account_settings = v1PrivatePutV1AccountSettings = Entry('v1/account/settings', ['v1', 'private'], 'PUT', {'cost': 40})
|
72
|
+
v1_private_delete_balance_coin_withdraw = v1PrivateDeleteBalanceCoinWithdraw = Entry('balance/coin/withdraw', ['v1', 'private'], 'DELETE', {'cost': 40})
|
73
|
+
v1_private_delete_order_pending_batch = v1PrivateDeleteOrderPendingBatch = Entry('order/pending/batch', ['v1', 'private'], 'DELETE', {'cost': 40})
|
74
|
+
v1_private_delete_order_pending = v1PrivateDeleteOrderPending = Entry('order/pending', ['v1', 'private'], 'DELETE', {'cost': 13.334})
|
75
|
+
v1_private_delete_order_stop_pending = v1PrivateDeleteOrderStopPending = Entry('order/stop/pending', ['v1', 'private'], 'DELETE', {'cost': 40})
|
76
|
+
v1_private_delete_order_stop_pending_id = v1PrivateDeleteOrderStopPendingId = Entry('order/stop/pending/{id}', ['v1', 'private'], 'DELETE', {'cost': 13.334})
|
77
|
+
v1_private_delete_order_pending_by_client_id = v1PrivateDeleteOrderPendingByClientId = Entry('order/pending/by_client_id', ['v1', 'private'], 'DELETE', {'cost': 40})
|
78
|
+
v1_private_delete_order_stop_pending_by_client_id = v1PrivateDeleteOrderStopPendingByClientId = Entry('order/stop/pending/by_client_id', ['v1', 'private'], 'DELETE', {'cost': 40})
|
79
|
+
v1_private_delete_sub_account_auth_api_user_auth_id = v1PrivateDeleteSubAccountAuthApiUserAuthId = Entry('sub_account/auth/api/{user_auth_id}', ['v1', 'private'], 'DELETE', {'cost': 40})
|
80
|
+
v1_private_delete_sub_account_authorize_id = v1PrivateDeleteSubAccountAuthorizeId = Entry('sub_account/authorize/{id}', ['v1', 'private'], 'DELETE', {'cost': 40})
|
81
|
+
v1_perpetualpublic_get_ping = v1PerpetualPublicGetPing = Entry('ping', ['v1', 'perpetualPublic'], 'GET', {'cost': 1})
|
82
|
+
v1_perpetualpublic_get_time = v1PerpetualPublicGetTime = Entry('time', ['v1', 'perpetualPublic'], 'GET', {'cost': 1})
|
83
|
+
v1_perpetualpublic_get_market_list = v1PerpetualPublicGetMarketList = Entry('market/list', ['v1', 'perpetualPublic'], 'GET', {'cost': 1})
|
84
|
+
v1_perpetualpublic_get_market_limit_config = v1PerpetualPublicGetMarketLimitConfig = Entry('market/limit_config', ['v1', 'perpetualPublic'], 'GET', {'cost': 1})
|
85
|
+
v1_perpetualpublic_get_market_ticker = v1PerpetualPublicGetMarketTicker = Entry('market/ticker', ['v1', 'perpetualPublic'], 'GET', {'cost': 1})
|
86
|
+
v1_perpetualpublic_get_market_ticker_all = v1PerpetualPublicGetMarketTickerAll = Entry('market/ticker/all', ['v1', 'perpetualPublic'], 'GET', {'cost': 1})
|
87
|
+
v1_perpetualpublic_get_market_depth = v1PerpetualPublicGetMarketDepth = Entry('market/depth', ['v1', 'perpetualPublic'], 'GET', {'cost': 1})
|
88
|
+
v1_perpetualpublic_get_market_deals = v1PerpetualPublicGetMarketDeals = Entry('market/deals', ['v1', 'perpetualPublic'], 'GET', {'cost': 1})
|
89
|
+
v1_perpetualpublic_get_market_funding_history = v1PerpetualPublicGetMarketFundingHistory = Entry('market/funding_history', ['v1', 'perpetualPublic'], 'GET', {'cost': 1})
|
90
|
+
v1_perpetualpublic_get_market_kline = v1PerpetualPublicGetMarketKline = Entry('market/kline', ['v1', 'perpetualPublic'], 'GET', {'cost': 1})
|
91
|
+
v1_perpetualprivate_get_market_user_deals = v1PerpetualPrivateGetMarketUserDeals = Entry('market/user_deals', ['v1', 'perpetualPrivate'], 'GET', {'cost': 1})
|
92
|
+
v1_perpetualprivate_get_asset_query = v1PerpetualPrivateGetAssetQuery = Entry('asset/query', ['v1', 'perpetualPrivate'], 'GET', {'cost': 40})
|
93
|
+
v1_perpetualprivate_get_order_pending = v1PerpetualPrivateGetOrderPending = Entry('order/pending', ['v1', 'perpetualPrivate'], 'GET', {'cost': 8})
|
94
|
+
v1_perpetualprivate_get_order_finished = v1PerpetualPrivateGetOrderFinished = Entry('order/finished', ['v1', 'perpetualPrivate'], 'GET', {'cost': 40})
|
95
|
+
v1_perpetualprivate_get_order_stop_finished = v1PerpetualPrivateGetOrderStopFinished = Entry('order/stop_finished', ['v1', 'perpetualPrivate'], 'GET', {'cost': 40})
|
96
|
+
v1_perpetualprivate_get_order_stop_pending = v1PerpetualPrivateGetOrderStopPending = Entry('order/stop_pending', ['v1', 'perpetualPrivate'], 'GET', {'cost': 8})
|
97
|
+
v1_perpetualprivate_get_order_status = v1PerpetualPrivateGetOrderStatus = Entry('order/status', ['v1', 'perpetualPrivate'], 'GET', {'cost': 8})
|
98
|
+
v1_perpetualprivate_get_order_stop_status = v1PerpetualPrivateGetOrderStopStatus = Entry('order/stop_status', ['v1', 'perpetualPrivate'], 'GET', {'cost': 8})
|
99
|
+
v1_perpetualprivate_get_position_finished = v1PerpetualPrivateGetPositionFinished = Entry('position/finished', ['v1', 'perpetualPrivate'], 'GET', {'cost': 40})
|
100
|
+
v1_perpetualprivate_get_position_pending = v1PerpetualPrivateGetPositionPending = Entry('position/pending', ['v1', 'perpetualPrivate'], 'GET', {'cost': 40})
|
101
|
+
v1_perpetualprivate_get_position_funding = v1PerpetualPrivateGetPositionFunding = Entry('position/funding', ['v1', 'perpetualPrivate'], 'GET', {'cost': 40})
|
102
|
+
v1_perpetualprivate_get_position_adl_history = v1PerpetualPrivateGetPositionAdlHistory = Entry('position/adl_history', ['v1', 'perpetualPrivate'], 'GET', {'cost': 40})
|
103
|
+
v1_perpetualprivate_get_market_preference = v1PerpetualPrivateGetMarketPreference = Entry('market/preference', ['v1', 'perpetualPrivate'], 'GET', {'cost': 40})
|
104
|
+
v1_perpetualprivate_get_position_margin_history = v1PerpetualPrivateGetPositionMarginHistory = Entry('position/margin_history', ['v1', 'perpetualPrivate'], 'GET', {'cost': 40})
|
105
|
+
v1_perpetualprivate_get_position_settle_history = v1PerpetualPrivateGetPositionSettleHistory = Entry('position/settle_history', ['v1', 'perpetualPrivate'], 'GET', {'cost': 40})
|
106
|
+
v1_perpetualprivate_post_market_adjust_leverage = v1PerpetualPrivatePostMarketAdjustLeverage = Entry('market/adjust_leverage', ['v1', 'perpetualPrivate'], 'POST', {'cost': 1})
|
107
|
+
v1_perpetualprivate_post_market_position_expect = v1PerpetualPrivatePostMarketPositionExpect = Entry('market/position_expect', ['v1', 'perpetualPrivate'], 'POST', {'cost': 1})
|
108
|
+
v1_perpetualprivate_post_order_put_limit = v1PerpetualPrivatePostOrderPutLimit = Entry('order/put_limit', ['v1', 'perpetualPrivate'], 'POST', {'cost': 20})
|
109
|
+
v1_perpetualprivate_post_order_put_market = v1PerpetualPrivatePostOrderPutMarket = Entry('order/put_market', ['v1', 'perpetualPrivate'], 'POST', {'cost': 20})
|
110
|
+
v1_perpetualprivate_post_order_put_stop_limit = v1PerpetualPrivatePostOrderPutStopLimit = Entry('order/put_stop_limit', ['v1', 'perpetualPrivate'], 'POST', {'cost': 20})
|
111
|
+
v1_perpetualprivate_post_order_put_stop_market = v1PerpetualPrivatePostOrderPutStopMarket = Entry('order/put_stop_market', ['v1', 'perpetualPrivate'], 'POST', {'cost': 20})
|
112
|
+
v1_perpetualprivate_post_order_modify = v1PerpetualPrivatePostOrderModify = Entry('order/modify', ['v1', 'perpetualPrivate'], 'POST', {'cost': 20})
|
113
|
+
v1_perpetualprivate_post_order_modify_stop = v1PerpetualPrivatePostOrderModifyStop = Entry('order/modify_stop', ['v1', 'perpetualPrivate'], 'POST', {'cost': 20})
|
114
|
+
v1_perpetualprivate_post_order_cancel = v1PerpetualPrivatePostOrderCancel = Entry('order/cancel', ['v1', 'perpetualPrivate'], 'POST', {'cost': 20})
|
115
|
+
v1_perpetualprivate_post_order_cancel_all = v1PerpetualPrivatePostOrderCancelAll = Entry('order/cancel_all', ['v1', 'perpetualPrivate'], 'POST', {'cost': 40})
|
116
|
+
v1_perpetualprivate_post_order_cancel_batch = v1PerpetualPrivatePostOrderCancelBatch = Entry('order/cancel_batch', ['v1', 'perpetualPrivate'], 'POST', {'cost': 40})
|
117
|
+
v1_perpetualprivate_post_order_cancel_stop = v1PerpetualPrivatePostOrderCancelStop = Entry('order/cancel_stop', ['v1', 'perpetualPrivate'], 'POST', {'cost': 20})
|
118
|
+
v1_perpetualprivate_post_order_cancel_stop_all = v1PerpetualPrivatePostOrderCancelStopAll = Entry('order/cancel_stop_all', ['v1', 'perpetualPrivate'], 'POST', {'cost': 40})
|
119
|
+
v1_perpetualprivate_post_order_close_limit = v1PerpetualPrivatePostOrderCloseLimit = Entry('order/close_limit', ['v1', 'perpetualPrivate'], 'POST', {'cost': 20})
|
120
|
+
v1_perpetualprivate_post_order_close_market = v1PerpetualPrivatePostOrderCloseMarket = Entry('order/close_market', ['v1', 'perpetualPrivate'], 'POST', {'cost': 20})
|
121
|
+
v1_perpetualprivate_post_position_adjust_margin = v1PerpetualPrivatePostPositionAdjustMargin = Entry('position/adjust_margin', ['v1', 'perpetualPrivate'], 'POST', {'cost': 20})
|
122
|
+
v1_perpetualprivate_post_position_stop_loss = v1PerpetualPrivatePostPositionStopLoss = Entry('position/stop_loss', ['v1', 'perpetualPrivate'], 'POST', {'cost': 20})
|
123
|
+
v1_perpetualprivate_post_position_take_profit = v1PerpetualPrivatePostPositionTakeProfit = Entry('position/take_profit', ['v1', 'perpetualPrivate'], 'POST', {'cost': 20})
|
124
|
+
v1_perpetualprivate_post_position_market_close = v1PerpetualPrivatePostPositionMarketClose = Entry('position/market_close', ['v1', 'perpetualPrivate'], 'POST', {'cost': 20})
|
125
|
+
v1_perpetualprivate_post_order_cancel_by_client_id = v1PerpetualPrivatePostOrderCancelByClientId = Entry('order/cancel/by_client_id', ['v1', 'perpetualPrivate'], 'POST', {'cost': 20})
|
126
|
+
v1_perpetualprivate_post_order_cancel_stop_by_client_id = v1PerpetualPrivatePostOrderCancelStopByClientId = Entry('order/cancel_stop/by_client_id', ['v1', 'perpetualPrivate'], 'POST', {'cost': 20})
|
127
|
+
v1_perpetualprivate_post_market_preference = v1PerpetualPrivatePostMarketPreference = Entry('market/preference', ['v1', 'perpetualPrivate'], 'POST', {'cost': 20})
|
128
|
+
v2_public_get_maintain_info = v2PublicGetMaintainInfo = Entry('maintain/info', ['v2', 'public'], 'GET', {'cost': 1})
|
129
|
+
v2_public_get_ping = v2PublicGetPing = Entry('ping', ['v2', 'public'], 'GET', {'cost': 1})
|
130
|
+
v2_public_get_time = v2PublicGetTime = Entry('time', ['v2', 'public'], 'GET', {'cost': 1})
|
131
|
+
v2_public_get_spot_market = v2PublicGetSpotMarket = Entry('spot/market', ['v2', 'public'], 'GET', {'cost': 1})
|
132
|
+
v2_public_get_spot_ticker = v2PublicGetSpotTicker = Entry('spot/ticker', ['v2', 'public'], 'GET', {'cost': 1})
|
133
|
+
v2_public_get_spot_depth = v2PublicGetSpotDepth = Entry('spot/depth', ['v2', 'public'], 'GET', {'cost': 1})
|
134
|
+
v2_public_get_spot_deals = v2PublicGetSpotDeals = Entry('spot/deals', ['v2', 'public'], 'GET', {'cost': 1})
|
135
|
+
v2_public_get_spot_kline = v2PublicGetSpotKline = Entry('spot/kline', ['v2', 'public'], 'GET', {'cost': 1})
|
136
|
+
v2_public_get_spot_index = v2PublicGetSpotIndex = Entry('spot/index', ['v2', 'public'], 'GET', {'cost': 1})
|
137
|
+
v2_public_get_futures_market = v2PublicGetFuturesMarket = Entry('futures/market', ['v2', 'public'], 'GET', {'cost': 1})
|
138
|
+
v2_public_get_futures_ticker = v2PublicGetFuturesTicker = Entry('futures/ticker', ['v2', 'public'], 'GET', {'cost': 1})
|
139
|
+
v2_public_get_futures_depth = v2PublicGetFuturesDepth = Entry('futures/depth', ['v2', 'public'], 'GET', {'cost': 1})
|
140
|
+
v2_public_get_futures_deals = v2PublicGetFuturesDeals = Entry('futures/deals', ['v2', 'public'], 'GET', {'cost': 1})
|
141
|
+
v2_public_get_futures_kline = v2PublicGetFuturesKline = Entry('futures/kline', ['v2', 'public'], 'GET', {'cost': 1})
|
142
|
+
v2_public_get_futures_index = v2PublicGetFuturesIndex = Entry('futures/index', ['v2', 'public'], 'GET', {'cost': 1})
|
143
|
+
v2_public_get_futures_funding_rate = v2PublicGetFuturesFundingRate = Entry('futures/funding-rate', ['v2', 'public'], 'GET', {'cost': 1})
|
144
|
+
v2_public_get_futures_funding_rate_history = v2PublicGetFuturesFundingRateHistory = Entry('futures/funding-rate-history', ['v2', 'public'], 'GET', {'cost': 1})
|
145
|
+
v2_public_get_futures_position_level = v2PublicGetFuturesPositionLevel = Entry('futures/position-level', ['v2', 'public'], 'GET', {'cost': 1})
|
146
|
+
v2_public_get_futures_liquidation_history = v2PublicGetFuturesLiquidationHistory = Entry('futures/liquidation-history', ['v2', 'public'], 'GET', {'cost': 1})
|
147
|
+
v2_public_get_futures_basis_history = v2PublicGetFuturesBasisHistory = Entry('futures/basis-history', ['v2', 'public'], 'GET', {'cost': 1})
|
148
|
+
v2_public_get_assets_deposit_withdraw_config = v2PublicGetAssetsDepositWithdrawConfig = Entry('assets/deposit-withdraw-config', ['v2', 'public'], 'GET', {'cost': 1})
|
149
|
+
v2_public_get_assets_all_deposit_withdraw_config = v2PublicGetAssetsAllDepositWithdrawConfig = Entry('assets/all-deposit-withdraw-config', ['v2', 'public'], 'GET', {'cost': 1})
|
150
|
+
v2_private_get_account_subs = v2PrivateGetAccountSubs = Entry('account/subs', ['v2', 'private'], 'GET', {'cost': 1})
|
151
|
+
v2_private_get_account_subs_api_detail = v2PrivateGetAccountSubsApiDetail = Entry('account/subs/api-detail', ['v2', 'private'], 'GET', {'cost': 40})
|
152
|
+
v2_private_get_account_subs_info = v2PrivateGetAccountSubsInfo = Entry('account/subs/info', ['v2', 'private'], 'GET', {'cost': 1})
|
153
|
+
v2_private_get_account_subs_api = v2PrivateGetAccountSubsApi = Entry('account/subs/api', ['v2', 'private'], 'GET', {'cost': 40})
|
154
|
+
v2_private_get_account_subs_transfer_history = v2PrivateGetAccountSubsTransferHistory = Entry('account/subs/transfer-history', ['v2', 'private'], 'GET', {'cost': 40})
|
155
|
+
v2_private_get_account_subs_spot_balance = v2PrivateGetAccountSubsSpotBalance = Entry('account/subs/spot-balance', ['v2', 'private'], 'GET', {'cost': 1})
|
156
|
+
v2_private_get_account_trade_fee_rate = v2PrivateGetAccountTradeFeeRate = Entry('account/trade-fee-rate', ['v2', 'private'], 'GET', {'cost': 40})
|
157
|
+
v2_private_get_assets_spot_balance = v2PrivateGetAssetsSpotBalance = Entry('assets/spot/balance', ['v2', 'private'], 'GET', {'cost': 40})
|
158
|
+
v2_private_get_assets_futures_balance = v2PrivateGetAssetsFuturesBalance = Entry('assets/futures/balance', ['v2', 'private'], 'GET', {'cost': 40})
|
159
|
+
v2_private_get_assets_margin_balance = v2PrivateGetAssetsMarginBalance = Entry('assets/margin/balance', ['v2', 'private'], 'GET', {'cost': 1})
|
160
|
+
v2_private_get_assets_financial_balance = v2PrivateGetAssetsFinancialBalance = Entry('assets/financial/balance', ['v2', 'private'], 'GET', {'cost': 40})
|
161
|
+
v2_private_get_assets_amm_liquidity = v2PrivateGetAssetsAmmLiquidity = Entry('assets/amm/liquidity', ['v2', 'private'], 'GET', {'cost': 40})
|
162
|
+
v2_private_get_assets_credit_info = v2PrivateGetAssetsCreditInfo = Entry('assets/credit/info', ['v2', 'private'], 'GET', {'cost': 40})
|
163
|
+
v2_private_get_assets_margin_borrow_history = v2PrivateGetAssetsMarginBorrowHistory = Entry('assets/margin/borrow-history', ['v2', 'private'], 'GET', {'cost': 40})
|
164
|
+
v2_private_get_assets_margin_interest_limit = v2PrivateGetAssetsMarginInterestLimit = Entry('assets/margin/interest-limit', ['v2', 'private'], 'GET', {'cost': 1})
|
165
|
+
v2_private_get_assets_deposit_address = v2PrivateGetAssetsDepositAddress = Entry('assets/deposit-address', ['v2', 'private'], 'GET', {'cost': 40})
|
166
|
+
v2_private_get_assets_deposit_history = v2PrivateGetAssetsDepositHistory = Entry('assets/deposit-history', ['v2', 'private'], 'GET', {'cost': 40})
|
167
|
+
v2_private_get_assets_withdraw = v2PrivateGetAssetsWithdraw = Entry('assets/withdraw', ['v2', 'private'], 'GET', {'cost': 40})
|
168
|
+
v2_private_get_assets_transfer_history = v2PrivateGetAssetsTransferHistory = Entry('assets/transfer-history', ['v2', 'private'], 'GET', {'cost': 40})
|
169
|
+
v2_private_get_spot_order_status = v2PrivateGetSpotOrderStatus = Entry('spot/order-status', ['v2', 'private'], 'GET', {'cost': 8})
|
170
|
+
v2_private_get_spot_batch_order_status = v2PrivateGetSpotBatchOrderStatus = Entry('spot/batch-order-status', ['v2', 'private'], 'GET', {'cost': 8})
|
171
|
+
v2_private_get_spot_pending_order = v2PrivateGetSpotPendingOrder = Entry('spot/pending-order', ['v2', 'private'], 'GET', {'cost': 8})
|
172
|
+
v2_private_get_spot_finished_order = v2PrivateGetSpotFinishedOrder = Entry('spot/finished-order', ['v2', 'private'], 'GET', {'cost': 40})
|
173
|
+
v2_private_get_spot_pending_stop_order = v2PrivateGetSpotPendingStopOrder = Entry('spot/pending-stop-order', ['v2', 'private'], 'GET', {'cost': 8})
|
174
|
+
v2_private_get_spot_finished_stop_order = v2PrivateGetSpotFinishedStopOrder = Entry('spot/finished-stop-order', ['v2', 'private'], 'GET', {'cost': 40})
|
175
|
+
v2_private_get_spot_user_deals = v2PrivateGetSpotUserDeals = Entry('spot/user-deals', ['v2', 'private'], 'GET', {'cost': 40})
|
176
|
+
v2_private_get_spot_order_deals = v2PrivateGetSpotOrderDeals = Entry('spot/order-deals', ['v2', 'private'], 'GET', {'cost': 40})
|
177
|
+
v2_private_get_futures_order_status = v2PrivateGetFuturesOrderStatus = Entry('futures/order-status', ['v2', 'private'], 'GET', {'cost': 8})
|
178
|
+
v2_private_get_futures_batch_order_status = v2PrivateGetFuturesBatchOrderStatus = Entry('futures/batch-order-status', ['v2', 'private'], 'GET', {'cost': 1})
|
179
|
+
v2_private_get_futures_pending_order = v2PrivateGetFuturesPendingOrder = Entry('futures/pending-order', ['v2', 'private'], 'GET', {'cost': 8})
|
180
|
+
v2_private_get_futures_finished_order = v2PrivateGetFuturesFinishedOrder = Entry('futures/finished-order', ['v2', 'private'], 'GET', {'cost': 40})
|
181
|
+
v2_private_get_futures_pending_stop_order = v2PrivateGetFuturesPendingStopOrder = Entry('futures/pending-stop-order', ['v2', 'private'], 'GET', {'cost': 8})
|
182
|
+
v2_private_get_futures_finished_stop_order = v2PrivateGetFuturesFinishedStopOrder = Entry('futures/finished-stop-order', ['v2', 'private'], 'GET', {'cost': 40})
|
183
|
+
v2_private_get_futures_user_deals = v2PrivateGetFuturesUserDeals = Entry('futures/user-deals', ['v2', 'private'], 'GET', {'cost': 1})
|
184
|
+
v2_private_get_futures_order_deals = v2PrivateGetFuturesOrderDeals = Entry('futures/order-deals', ['v2', 'private'], 'GET', {'cost': 1})
|
185
|
+
v2_private_get_futures_pending_position = v2PrivateGetFuturesPendingPosition = Entry('futures/pending-position', ['v2', 'private'], 'GET', {'cost': 40})
|
186
|
+
v2_private_get_futures_finished_position = v2PrivateGetFuturesFinishedPosition = Entry('futures/finished-position', ['v2', 'private'], 'GET', {'cost': 1})
|
187
|
+
v2_private_get_futures_position_margin_history = v2PrivateGetFuturesPositionMarginHistory = Entry('futures/position-margin-history', ['v2', 'private'], 'GET', {'cost': 1})
|
188
|
+
v2_private_get_futures_position_funding_history = v2PrivateGetFuturesPositionFundingHistory = Entry('futures/position-funding-history', ['v2', 'private'], 'GET', {'cost': 40})
|
189
|
+
v2_private_get_futures_position_adl_history = v2PrivateGetFuturesPositionAdlHistory = Entry('futures/position-adl-history', ['v2', 'private'], 'GET', {'cost': 1})
|
190
|
+
v2_private_get_futures_position_settle_history = v2PrivateGetFuturesPositionSettleHistory = Entry('futures/position-settle-history', ['v2', 'private'], 'GET', {'cost': 1})
|
191
|
+
v2_private_post_account_subs = v2PrivatePostAccountSubs = Entry('account/subs', ['v2', 'private'], 'POST', {'cost': 40})
|
192
|
+
v2_private_post_account_subs_frozen = v2PrivatePostAccountSubsFrozen = Entry('account/subs/frozen', ['v2', 'private'], 'POST', {'cost': 40})
|
193
|
+
v2_private_post_account_subs_unfrozen = v2PrivatePostAccountSubsUnfrozen = Entry('account/subs/unfrozen', ['v2', 'private'], 'POST', {'cost': 40})
|
194
|
+
v2_private_post_account_subs_api = v2PrivatePostAccountSubsApi = Entry('account/subs/api', ['v2', 'private'], 'POST', {'cost': 40})
|
195
|
+
v2_private_post_account_subs_edit_api = v2PrivatePostAccountSubsEditApi = Entry('account/subs/edit-api', ['v2', 'private'], 'POST', {'cost': 40})
|
196
|
+
v2_private_post_account_subs_delete_api = v2PrivatePostAccountSubsDeleteApi = Entry('account/subs/delete-api', ['v2', 'private'], 'POST', {'cost': 40})
|
197
|
+
v2_private_post_account_subs_transfer = v2PrivatePostAccountSubsTransfer = Entry('account/subs/transfer', ['v2', 'private'], 'POST', {'cost': 40})
|
198
|
+
v2_private_post_account_settings = v2PrivatePostAccountSettings = Entry('account/settings', ['v2', 'private'], 'POST', {'cost': 40})
|
199
|
+
v2_private_post_assets_margin_borrow = v2PrivatePostAssetsMarginBorrow = Entry('assets/margin/borrow', ['v2', 'private'], 'POST', {'cost': 40})
|
200
|
+
v2_private_post_assets_margin_repay = v2PrivatePostAssetsMarginRepay = Entry('assets/margin/repay', ['v2', 'private'], 'POST', {'cost': 40})
|
201
|
+
v2_private_post_assets_renewal_deposit_address = v2PrivatePostAssetsRenewalDepositAddress = Entry('assets/renewal-deposit-address', ['v2', 'private'], 'POST', {'cost': 40})
|
202
|
+
v2_private_post_assets_withdraw = v2PrivatePostAssetsWithdraw = Entry('assets/withdraw', ['v2', 'private'], 'POST', {'cost': 40})
|
203
|
+
v2_private_post_assets_cancel_withdraw = v2PrivatePostAssetsCancelWithdraw = Entry('assets/cancel-withdraw', ['v2', 'private'], 'POST', {'cost': 40})
|
204
|
+
v2_private_post_assets_transfer = v2PrivatePostAssetsTransfer = Entry('assets/transfer', ['v2', 'private'], 'POST', {'cost': 40})
|
205
|
+
v2_private_post_assets_amm_add_liquidity = v2PrivatePostAssetsAmmAddLiquidity = Entry('assets/amm/add-liquidity', ['v2', 'private'], 'POST', {'cost': 1})
|
206
|
+
v2_private_post_assets_amm_remove_liquidity = v2PrivatePostAssetsAmmRemoveLiquidity = Entry('assets/amm/remove-liquidity', ['v2', 'private'], 'POST', {'cost': 1})
|
207
|
+
v2_private_post_spot_order = v2PrivatePostSpotOrder = Entry('spot/order', ['v2', 'private'], 'POST', {'cost': 13.334})
|
208
|
+
v2_private_post_spot_stop_order = v2PrivatePostSpotStopOrder = Entry('spot/stop-order', ['v2', 'private'], 'POST', {'cost': 13.334})
|
209
|
+
v2_private_post_spot_batch_order = v2PrivatePostSpotBatchOrder = Entry('spot/batch-order', ['v2', 'private'], 'POST', {'cost': 40})
|
210
|
+
v2_private_post_spot_batch_stop_order = v2PrivatePostSpotBatchStopOrder = Entry('spot/batch-stop-order', ['v2', 'private'], 'POST', {'cost': 1})
|
211
|
+
v2_private_post_spot_modify_order = v2PrivatePostSpotModifyOrder = Entry('spot/modify-order', ['v2', 'private'], 'POST', {'cost': 13.334})
|
212
|
+
v2_private_post_spot_modify_stop_order = v2PrivatePostSpotModifyStopOrder = Entry('spot/modify-stop-order', ['v2', 'private'], 'POST', {'cost': 13.334})
|
213
|
+
v2_private_post_spot_cancel_all_order = v2PrivatePostSpotCancelAllOrder = Entry('spot/cancel-all-order', ['v2', 'private'], 'POST', {'cost': 1})
|
214
|
+
v2_private_post_spot_cancel_order = v2PrivatePostSpotCancelOrder = Entry('spot/cancel-order', ['v2', 'private'], 'POST', {'cost': 6.667})
|
215
|
+
v2_private_post_spot_cancel_stop_order = v2PrivatePostSpotCancelStopOrder = Entry('spot/cancel-stop-order', ['v2', 'private'], 'POST', {'cost': 6.667})
|
216
|
+
v2_private_post_spot_cancel_batch_order = v2PrivatePostSpotCancelBatchOrder = Entry('spot/cancel-batch-order', ['v2', 'private'], 'POST', {'cost': 10})
|
217
|
+
v2_private_post_spot_cancel_batch_stop_order = v2PrivatePostSpotCancelBatchStopOrder = Entry('spot/cancel-batch-stop-order', ['v2', 'private'], 'POST', {'cost': 10})
|
218
|
+
v2_private_post_spot_cancel_order_by_client_id = v2PrivatePostSpotCancelOrderByClientId = Entry('spot/cancel-order-by-client-id', ['v2', 'private'], 'POST', {'cost': 1})
|
219
|
+
v2_private_post_spot_cancel_stop_order_by_client_id = v2PrivatePostSpotCancelStopOrderByClientId = Entry('spot/cancel-stop-order-by-client-id', ['v2', 'private'], 'POST', {'cost': 1})
|
220
|
+
v2_private_post_futures_order = v2PrivatePostFuturesOrder = Entry('futures/order', ['v2', 'private'], 'POST', {'cost': 20})
|
221
|
+
v2_private_post_futures_stop_order = v2PrivatePostFuturesStopOrder = Entry('futures/stop-order', ['v2', 'private'], 'POST', {'cost': 20})
|
222
|
+
v2_private_post_futures_batch_order = v2PrivatePostFuturesBatchOrder = Entry('futures/batch-order', ['v2', 'private'], 'POST', {'cost': 1})
|
223
|
+
v2_private_post_futures_batch_stop_order = v2PrivatePostFuturesBatchStopOrder = Entry('futures/batch-stop-order', ['v2', 'private'], 'POST', {'cost': 1})
|
224
|
+
v2_private_post_futures_modify_order = v2PrivatePostFuturesModifyOrder = Entry('futures/modify-order', ['v2', 'private'], 'POST', {'cost': 20})
|
225
|
+
v2_private_post_futures_modify_stop_order = v2PrivatePostFuturesModifyStopOrder = Entry('futures/modify-stop-order', ['v2', 'private'], 'POST', {'cost': 20})
|
226
|
+
v2_private_post_futures_cancel_all_order = v2PrivatePostFuturesCancelAllOrder = Entry('futures/cancel-all-order', ['v2', 'private'], 'POST', {'cost': 1})
|
227
|
+
v2_private_post_futures_cancel_order = v2PrivatePostFuturesCancelOrder = Entry('futures/cancel-order', ['v2', 'private'], 'POST', {'cost': 10})
|
228
|
+
v2_private_post_futures_cancel_stop_order = v2PrivatePostFuturesCancelStopOrder = Entry('futures/cancel-stop-order', ['v2', 'private'], 'POST', {'cost': 10})
|
229
|
+
v2_private_post_futures_cancel_batch_order = v2PrivatePostFuturesCancelBatchOrder = Entry('futures/cancel-batch-order', ['v2', 'private'], 'POST', {'cost': 20})
|
230
|
+
v2_private_post_futures_cancel_batch_stop_order = v2PrivatePostFuturesCancelBatchStopOrder = Entry('futures/cancel-batch-stop-order', ['v2', 'private'], 'POST', {'cost': 20})
|
231
|
+
v2_private_post_futures_cancel_order_by_client_id = v2PrivatePostFuturesCancelOrderByClientId = Entry('futures/cancel-order-by-client-id', ['v2', 'private'], 'POST', {'cost': 1})
|
232
|
+
v2_private_post_futures_cancel_stop_order_by_client_id = v2PrivatePostFuturesCancelStopOrderByClientId = Entry('futures/cancel-stop-order-by-client-id', ['v2', 'private'], 'POST', {'cost': 1})
|
233
|
+
v2_private_post_futures_close_position = v2PrivatePostFuturesClosePosition = Entry('futures/close-position', ['v2', 'private'], 'POST', {'cost': 20})
|
234
|
+
v2_private_post_futures_adjust_position_margin = v2PrivatePostFuturesAdjustPositionMargin = Entry('futures/adjust-position-margin', ['v2', 'private'], 'POST', {'cost': 20})
|
235
|
+
v2_private_post_futures_adjust_position_leverage = v2PrivatePostFuturesAdjustPositionLeverage = Entry('futures/adjust-position-leverage', ['v2', 'private'], 'POST', {'cost': 20})
|
236
|
+
v2_private_post_futures_set_position_stop_loss = v2PrivatePostFuturesSetPositionStopLoss = Entry('futures/set-position-stop-loss', ['v2', 'private'], 'POST', {'cost': 20})
|
237
|
+
v2_private_post_futures_set_position_take_profit = v2PrivatePostFuturesSetPositionTakeProfit = Entry('futures/set-position-take-profit', ['v2', 'private'], 'POST', {'cost': 20})
|
@@ -0,0 +1,80 @@
|
|
1
|
+
import sys
|
2
|
+
import coinex.ccxt as ccxt_module
|
3
|
+
sys.modules['ccxt'] = ccxt_module
|
4
|
+
|
5
|
+
# -*- coding: utf-8 -*-
|
6
|
+
|
7
|
+
"""CCXT: CryptoCurrency eXchange Trading Library (Async)"""
|
8
|
+
|
9
|
+
# -----------------------------------------------------------------------------
|
10
|
+
|
11
|
+
__version__ = '4.4.69'
|
12
|
+
|
13
|
+
# -----------------------------------------------------------------------------
|
14
|
+
|
15
|
+
from ccxt.async_support.base.exchange import Exchange # noqa: F401
|
16
|
+
|
17
|
+
from ccxt.base.decimal_to_precision import decimal_to_precision # noqa: F401
|
18
|
+
from ccxt.base.decimal_to_precision import TRUNCATE # noqa: F401
|
19
|
+
from ccxt.base.decimal_to_precision import ROUND # noqa: F401
|
20
|
+
from ccxt.base.decimal_to_precision import TICK_SIZE # noqa: F401
|
21
|
+
from ccxt.base.decimal_to_precision import DECIMAL_PLACES # noqa: F401
|
22
|
+
from ccxt.base.decimal_to_precision import SIGNIFICANT_DIGITS # noqa: F401
|
23
|
+
from ccxt.base.decimal_to_precision import NO_PADDING # noqa: F401
|
24
|
+
from ccxt.base.decimal_to_precision import PAD_WITH_ZERO # noqa: F401
|
25
|
+
|
26
|
+
from ccxt.base import errors # noqa: F401
|
27
|
+
from ccxt.base.errors import BaseError # noqa: F401
|
28
|
+
from ccxt.base.errors import ExchangeError # noqa: F401
|
29
|
+
from ccxt.base.errors import AuthenticationError # noqa: F401
|
30
|
+
from ccxt.base.errors import PermissionDenied # noqa: F401
|
31
|
+
from ccxt.base.errors import AccountNotEnabled # noqa: F401
|
32
|
+
from ccxt.base.errors import AccountSuspended # noqa: F401
|
33
|
+
from ccxt.base.errors import ArgumentsRequired # noqa: F401
|
34
|
+
from ccxt.base.errors import BadRequest # noqa: F401
|
35
|
+
from ccxt.base.errors import BadSymbol # noqa: F401
|
36
|
+
from ccxt.base.errors import OperationRejected # noqa: F401
|
37
|
+
from ccxt.base.errors import NoChange # noqa: F401
|
38
|
+
from ccxt.base.errors import MarginModeAlreadySet # noqa: F401
|
39
|
+
from ccxt.base.errors import MarketClosed # noqa: F401
|
40
|
+
from ccxt.base.errors import ManualInteractionNeeded # noqa: F401
|
41
|
+
from ccxt.base.errors import InsufficientFunds # noqa: F401
|
42
|
+
from ccxt.base.errors import InvalidAddress # noqa: F401
|
43
|
+
from ccxt.base.errors import AddressPending # noqa: F401
|
44
|
+
from ccxt.base.errors import InvalidOrder # noqa: F401
|
45
|
+
from ccxt.base.errors import OrderNotFound # noqa: F401
|
46
|
+
from ccxt.base.errors import OrderNotCached # noqa: F401
|
47
|
+
from ccxt.base.errors import OrderImmediatelyFillable # noqa: F401
|
48
|
+
from ccxt.base.errors import OrderNotFillable # noqa: F401
|
49
|
+
from ccxt.base.errors import DuplicateOrderId # noqa: F401
|
50
|
+
from ccxt.base.errors import ContractUnavailable # noqa: F401
|
51
|
+
from ccxt.base.errors import NotSupported # noqa: F401
|
52
|
+
from ccxt.base.errors import InvalidProxySettings # noqa: F401
|
53
|
+
from ccxt.base.errors import ExchangeClosedByUser # noqa: F401
|
54
|
+
from ccxt.base.errors import OperationFailed # noqa: F401
|
55
|
+
from ccxt.base.errors import NetworkError # noqa: F401
|
56
|
+
from ccxt.base.errors import DDoSProtection # noqa: F401
|
57
|
+
from ccxt.base.errors import RateLimitExceeded # noqa: F401
|
58
|
+
from ccxt.base.errors import ExchangeNotAvailable # noqa: F401
|
59
|
+
from ccxt.base.errors import OnMaintenance # noqa: F401
|
60
|
+
from ccxt.base.errors import InvalidNonce # noqa: F401
|
61
|
+
from ccxt.base.errors import ChecksumError # noqa: F401
|
62
|
+
from ccxt.base.errors import RequestTimeout # noqa: F401
|
63
|
+
from ccxt.base.errors import BadResponse # noqa: F401
|
64
|
+
from ccxt.base.errors import NullResponse # noqa: F401
|
65
|
+
from ccxt.base.errors import CancelPending # noqa: F401
|
66
|
+
from ccxt.base.errors import UnsubscribeError # noqa: F401
|
67
|
+
from ccxt.base.errors import error_hierarchy # noqa: F401
|
68
|
+
|
69
|
+
|
70
|
+
from ccxt.async_support.coinex import coinex # noqa: F401
|
71
|
+
|
72
|
+
exchanges = [ 'coinex',]
|
73
|
+
|
74
|
+
base = [
|
75
|
+
'Exchange',
|
76
|
+
'exchanges',
|
77
|
+
'decimal_to_precision',
|
78
|
+
]
|
79
|
+
|
80
|
+
__all__ = base + errors.__all__ + exchanges
|
@@ -0,0 +1 @@
|
|
1
|
+
# this file is a stub so that files inside of ccxt/rest are loaded
|