coinex-api 0.0.89__py3-none-any.whl → 0.0.110__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of coinex-api might be problematic. Click here for more details.
- coinex/ccxt/__init__.py +1 -1
- coinex/ccxt/async_support/__init__.py +1 -1
- coinex/ccxt/async_support/base/exchange.py +139 -10
- coinex/ccxt/async_support/base/throttler.py +1 -1
- coinex/ccxt/async_support/base/ws/cache.py +1 -0
- coinex/ccxt/async_support/base/ws/client.py +26 -4
- coinex/ccxt/async_support/coinex.py +2 -2
- coinex/ccxt/base/exchange.py +587 -91
- coinex/ccxt/base/types.py +11 -2
- coinex/ccxt/coinex.py +2 -2
- coinex/ccxt/pro/__init__.py +1 -1
- coinex/ccxt/pro/coinex.py +10 -7
- coinex/ccxt/static_dependencies/bip/__init__.py +6 -0
- coinex/ccxt/static_dependencies/bip/addr/P2PKH_addr.py +205 -0
- coinex/ccxt/static_dependencies/bip/addr/__init__.py +5 -0
- coinex/ccxt/static_dependencies/bip/addr/addr_dec_utils.py +125 -0
- coinex/ccxt/static_dependencies/bip/addr/addr_key_validator.py +162 -0
- coinex/ccxt/static_dependencies/bip/addr/iaddr_decoder.py +48 -0
- coinex/ccxt/static_dependencies/bip/addr/iaddr_encoder.py +50 -0
- coinex/ccxt/static_dependencies/bip/base58/__init__.py +3 -0
- coinex/ccxt/static_dependencies/bip/base58/base58.py +207 -0
- coinex/ccxt/static_dependencies/bip/base58/base58_ex.py +25 -0
- coinex/ccxt/static_dependencies/bip/base58/base58_xmr.py +155 -0
- coinex/ccxt/static_dependencies/bip/bech32/__init__.py +4 -0
- coinex/ccxt/static_dependencies/bip/bech32/bch_bech32.py +220 -0
- coinex/ccxt/static_dependencies/bip/bech32/bech32.py +235 -0
- coinex/ccxt/static_dependencies/bip/bech32/bech32_base.py +246 -0
- coinex/ccxt/static_dependencies/bip/bech32/bech32_ex.py +25 -0
- coinex/ccxt/static_dependencies/bip/bech32/segwit_bech32.py +173 -0
- coinex/ccxt/static_dependencies/bip/bip32/__init__.py +14 -0
- coinex/ccxt/static_dependencies/bip/bip32/base/__init__.py +3 -0
- coinex/ccxt/static_dependencies/bip/bip32/base/bip32_base.py +581 -0
- coinex/ccxt/static_dependencies/bip/bip32/base/ibip32_key_derivator.py +83 -0
- coinex/ccxt/static_dependencies/bip/bip32/base/ibip32_mst_key_generator.py +47 -0
- coinex/ccxt/static_dependencies/bip/bip32/bip32_const.py +35 -0
- coinex/ccxt/static_dependencies/bip/bip32/bip32_ex.py +29 -0
- coinex/ccxt/static_dependencies/bip/bip32/bip32_key_data.py +500 -0
- coinex/ccxt/static_dependencies/bip/bip32/bip32_key_net_ver.py +83 -0
- coinex/ccxt/static_dependencies/bip/bip32/bip32_key_ser.py +294 -0
- coinex/ccxt/static_dependencies/bip/bip32/bip32_keys.py +457 -0
- coinex/ccxt/static_dependencies/bip/bip32/bip32_path.py +247 -0
- coinex/ccxt/static_dependencies/bip/bip32/bip32_utils.py +72 -0
- coinex/ccxt/static_dependencies/bip/bip32/kholaw/__init__.py +4 -0
- coinex/ccxt/static_dependencies/bip/bip32/kholaw/bip32_kholaw_ed25519.py +82 -0
- coinex/ccxt/static_dependencies/bip/bip32/kholaw/bip32_kholaw_ed25519_key_derivator.py +118 -0
- coinex/ccxt/static_dependencies/bip/bip32/kholaw/bip32_kholaw_key_derivator_base.py +204 -0
- coinex/ccxt/static_dependencies/bip/bip32/kholaw/bip32_kholaw_mst_key_generator.py +119 -0
- coinex/ccxt/static_dependencies/bip/bip32/slip10/__init__.py +1 -0
- coinex/ccxt/static_dependencies/bip/bip32/slip10/bip32_slip10_key_derivator.py +200 -0
- coinex/ccxt/static_dependencies/bip/bip32/slip10/bip32_slip10_mst_key_generator.py +168 -0
- coinex/ccxt/static_dependencies/bip/bip32/slip10/bip32_slip10_secp256k1.py +82 -0
- coinex/ccxt/static_dependencies/bip/bip44/__init__.py +1 -0
- coinex/ccxt/static_dependencies/bip/bip44/bip44.py +265 -0
- coinex/ccxt/static_dependencies/bip/bip44_base/__init__.py +3 -0
- coinex/ccxt/static_dependencies/bip/bip44_base/bip44_base.py +624 -0
- coinex/ccxt/static_dependencies/bip/bip44_base/bip44_base_ex.py +25 -0
- coinex/ccxt/static_dependencies/bip/bip44_base/bip44_keys.py +225 -0
- coinex/ccxt/static_dependencies/bip/coin_conf/__init__.py +2 -0
- coinex/ccxt/static_dependencies/bip/coin_conf/coin_conf.py +68 -0
- coinex/ccxt/static_dependencies/bip/coin_conf/coins_conf.py +890 -0
- coinex/ccxt/static_dependencies/bip/conf/__init__.py +0 -0
- coinex/ccxt/static_dependencies/bip/conf/bip44/__init__.py +3 -0
- coinex/ccxt/static_dependencies/bip/conf/bip44/bip44_coins.py +126 -0
- coinex/ccxt/static_dependencies/bip/conf/bip44/bip44_conf.py +1360 -0
- coinex/ccxt/static_dependencies/bip/conf/bip44/bip44_conf_getter.py +153 -0
- coinex/ccxt/static_dependencies/bip/conf/bip49/__init__.py +3 -0
- coinex/ccxt/static_dependencies/bip/conf/bip49/bip49_coins.py +53 -0
- coinex/ccxt/static_dependencies/bip/conf/bip49/bip49_conf.py +366 -0
- coinex/ccxt/static_dependencies/bip/conf/bip49/bip49_conf_getter.py +80 -0
- coinex/ccxt/static_dependencies/bip/conf/bip84/__init__.py +3 -0
- coinex/ccxt/static_dependencies/bip/conf/bip84/bip84_coins.py +39 -0
- coinex/ccxt/static_dependencies/bip/conf/bip84/bip84_conf.py +113 -0
- coinex/ccxt/static_dependencies/bip/conf/bip84/bip84_conf_getter.py +66 -0
- coinex/ccxt/static_dependencies/bip/conf/bip86/__init__.py +3 -0
- coinex/ccxt/static_dependencies/bip/conf/bip86/bip86_coins.py +37 -0
- coinex/ccxt/static_dependencies/bip/conf/bip86/bip86_conf.py +83 -0
- coinex/ccxt/static_dependencies/bip/conf/bip86/bip86_conf_getter.py +64 -0
- coinex/ccxt/static_dependencies/bip/conf/common/__init__.py +8 -0
- coinex/ccxt/static_dependencies/bip/conf/common/atom_addr.py +104 -0
- coinex/ccxt/static_dependencies/bip/conf/common/bip_bitcoin_cash_conf.py +106 -0
- coinex/ccxt/static_dependencies/bip/conf/common/bip_coin_conf.py +217 -0
- coinex/ccxt/static_dependencies/bip/conf/common/bip_coins.py +28 -0
- coinex/ccxt/static_dependencies/bip/conf/common/bip_conf_const.py +30 -0
- coinex/ccxt/static_dependencies/bip/conf/common/bip_litecoin_conf.py +121 -0
- coinex/ccxt/static_dependencies/bip/ecc/__init__.py +42 -0
- coinex/ccxt/static_dependencies/bip/ecc/common/__init__.py +0 -0
- coinex/ccxt/static_dependencies/bip/ecc/common/dummy_point.py +219 -0
- coinex/ccxt/static_dependencies/bip/ecc/common/ikeys.py +263 -0
- coinex/ccxt/static_dependencies/bip/ecc/common/ipoint.py +190 -0
- coinex/ccxt/static_dependencies/bip/ecc/conf.py +28 -0
- coinex/ccxt/static_dependencies/bip/ecc/curve/__init__.py +0 -0
- coinex/ccxt/static_dependencies/bip/ecc/curve/elliptic_curve.py +121 -0
- coinex/ccxt/static_dependencies/bip/ecc/curve/elliptic_curve_getter.py +74 -0
- coinex/ccxt/static_dependencies/bip/ecc/curve/elliptic_curve_types.py +37 -0
- coinex/ccxt/static_dependencies/bip/ecc/ecdsa/__init__.py +0 -0
- coinex/ccxt/static_dependencies/bip/ecc/ecdsa/ecdsa_keys.py +36 -0
- coinex/ccxt/static_dependencies/bip/ecc/secp256k1/__init__.py +0 -0
- coinex/ccxt/static_dependencies/bip/ecc/secp256k1/secp256k1.py +36 -0
- coinex/ccxt/static_dependencies/bip/ecc/secp256k1/secp256k1_const.py +59 -0
- coinex/ccxt/static_dependencies/bip/ecc/secp256k1/secp256k1_keys_ecdsa.py +248 -0
- coinex/ccxt/static_dependencies/bip/ecc/secp256k1/secp256k1_point_ecdsa.py +234 -0
- coinex/ccxt/static_dependencies/bip/slip/__init__.py +0 -0
- coinex/ccxt/static_dependencies/bip/slip/slip173/__init__.py +1 -0
- coinex/ccxt/static_dependencies/bip/slip/slip173/slip173.py +60 -0
- coinex/ccxt/static_dependencies/bip/slip/slip32/__init__.py +4 -0
- coinex/ccxt/static_dependencies/bip/slip/slip32/slip32.py +322 -0
- coinex/ccxt/static_dependencies/bip/slip/slip32/slip32_key_net_ver.py +62 -0
- coinex/ccxt/static_dependencies/bip/slip/slip44/__init__.py +1 -0
- coinex/ccxt/static_dependencies/bip/slip/slip44/slip44.py +81 -0
- coinex/ccxt/static_dependencies/bip/utils/__init__.py +0 -0
- coinex/ccxt/static_dependencies/bip/utils/conf/__init__.py +1 -0
- coinex/ccxt/static_dependencies/bip/utils/conf/coin_names.py +59 -0
- coinex/ccxt/static_dependencies/bip/utils/crypto/__init__.py +10 -0
- coinex/ccxt/static_dependencies/bip/utils/crypto/aes_ecb.py +152 -0
- coinex/ccxt/static_dependencies/bip/utils/crypto/blake2.py +191 -0
- coinex/ccxt/static_dependencies/bip/utils/crypto/chacha20_poly1305.py +101 -0
- coinex/ccxt/static_dependencies/bip/utils/crypto/hash160.py +57 -0
- coinex/ccxt/static_dependencies/bip/utils/crypto/hmac.py +118 -0
- coinex/ccxt/static_dependencies/bip/utils/crypto/pbkdf2.py +66 -0
- coinex/ccxt/static_dependencies/bip/utils/crypto/ripemd.py +58 -0
- coinex/ccxt/static_dependencies/bip/utils/crypto/scrypt.py +66 -0
- coinex/ccxt/static_dependencies/bip/utils/crypto/sha2.py +182 -0
- coinex/ccxt/static_dependencies/bip/utils/crypto/sha3.py +99 -0
- coinex/ccxt/static_dependencies/bip/utils/misc/__init__.py +7 -0
- coinex/ccxt/static_dependencies/bip/utils/misc/algo.py +108 -0
- coinex/ccxt/static_dependencies/bip/utils/misc/base32.py +151 -0
- coinex/ccxt/static_dependencies/bip/utils/misc/bit.py +115 -0
- coinex/ccxt/static_dependencies/bip/utils/misc/bytes.py +200 -0
- coinex/ccxt/static_dependencies/bip/utils/misc/data_bytes.py +181 -0
- coinex/ccxt/static_dependencies/bip/utils/misc/integer.py +97 -0
- coinex/ccxt/static_dependencies/bip/utils/misc/string.py +54 -0
- coinex/ccxt/static_dependencies/bip/utils/typing/__init__.py +1 -0
- coinex/ccxt/static_dependencies/bip/utils/typing/literal.py +27 -0
- coinex/ccxt/static_dependencies/bip/wif/__init__.py +1 -0
- coinex/ccxt/static_dependencies/bip/wif/wif.py +144 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/amino/amino_pb2.py +31 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/cosmos/base/v1beta1/coin_pb2.py +47 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/cosmos/crypto/multisig/keys_pb2.py +33 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/cosmos/crypto/multisig/v1beta1/multisig_pb2.py +33 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/cosmos/crypto/secp256k1/keys_pb2.py +34 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/cosmos/msg/v1/msg_pb2.py +27 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/cosmos/tx/signing/v1beta1/signing_pb2.py +38 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/cosmos/tx/v1beta1/tx_pb2.py +75 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/cosmos_proto/cosmos_pb2.py +36 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/accountplus/accountplus_pb2.py +31 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/accountplus/genesis_pb2.py +40 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/accountplus/models_pb2.py +26 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/accountplus/params_pb2.py +29 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/accountplus/query_pb2.py +57 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/accountplus/tx_pb2.py +51 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/block_rate_limit_config_pb2.py +37 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/clob_pair_pb2.py +41 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/equity_tier_limit_config_pb2.py +35 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/finalize_block_pb2.py +27 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/liquidations_config_pb2.py +39 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/liquidations_pb2.py +38 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/matches_pb2.py +55 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/mev_pb2.py +49 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/operation_pb2.py +32 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/order_pb2.py +86 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/order_removals_pb2.py +32 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/process_proposer_matches_events_pb2.py +42 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/query_pb2.py +124 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/streaming_pb2.py +29 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/tx_pb2.py +117 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/sending/genesis_pb2.py +26 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/sending/query_pb2.py +26 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/sending/transfer_pb2.py +61 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/sending/tx_pb2.py +37 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/subaccounts/asset_position_pb2.py +29 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/subaccounts/genesis_pb2.py +30 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/subaccounts/perpetual_position_pb2.py +33 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/subaccounts/query_pb2.py +63 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/subaccounts/streaming_pb2.py +31 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/subaccounts/subaccount_pb2.py +33 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/gogoproto/gogo_pb2.py +102 -0
- coinex/ccxt/static_dependencies/dydx_v4_client/registry.py +38 -0
- coinex/ccxt/static_dependencies/ecdsa/ellipticcurve.py +842 -0
- coinex/ccxt/static_dependencies/ecdsa/keys.py +15 -4
- coinex/ccxt/static_dependencies/mnemonic/__init__.py +4 -0
- coinex/ccxt/static_dependencies/mnemonic/mnemonic.py +282 -0
- coinex/ccxt/static_dependencies/mnemonic/py.typed +1 -0
- coinex/ccxt/static_dependencies/mnemonic/wordlist/chinese_simplified.txt +2048 -0
- coinex/ccxt/static_dependencies/mnemonic/wordlist/chinese_traditional.txt +2048 -0
- coinex/ccxt/static_dependencies/mnemonic/wordlist/czech.txt +2048 -0
- coinex/ccxt/static_dependencies/mnemonic/wordlist/english.txt +2048 -0
- coinex/ccxt/static_dependencies/mnemonic/wordlist/french.txt +2048 -0
- coinex/ccxt/static_dependencies/mnemonic/wordlist/italian.txt +2048 -0
- coinex/ccxt/static_dependencies/mnemonic/wordlist/japanese.txt +2048 -0
- coinex/ccxt/static_dependencies/mnemonic/wordlist/korean.txt +2048 -0
- coinex/ccxt/static_dependencies/mnemonic/wordlist/portuguese.txt +2048 -0
- coinex/ccxt/static_dependencies/mnemonic/wordlist/russian.txt +2048 -0
- coinex/ccxt/static_dependencies/mnemonic/wordlist/spanish.txt +2048 -0
- coinex/ccxt/static_dependencies/mnemonic/wordlist/turkish.txt +2048 -0
- {coinex_api-0.0.89.dist-info → coinex_api-0.0.110.dist-info}/METADATA +3 -3
- {coinex_api-0.0.89.dist-info → coinex_api-0.0.110.dist-info}/RECORD +197 -17
- {coinex_api-0.0.89.dist-info → coinex_api-0.0.110.dist-info}/WHEEL +1 -1
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: dydxprotocol/accountplus/params.proto
|
|
4
|
+
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf.internal import builder as _builder
|
|
6
|
+
from google.protobuf import descriptor as _descriptor
|
|
7
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
8
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
9
|
+
# @@protoc_insertion_point(imports)
|
|
10
|
+
|
|
11
|
+
_sym_db = _symbol_database.Default()
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
from v4_proto.gogoproto import gogo_pb2 as gogoproto_dot_gogo__pb2
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n%dydxprotocol/accountplus/params.proto\x12\x18\x64ydxprotocol.accountplus\x1a\x14gogoproto/gogo.proto\"M\n\x06Params\x12\x43\n\x17is_smart_account_active\x18\x01 \x01(\x08\x42\"\xf2\xde\x1f\x1eyaml:\"is_smart_account_active\"B?Z=github.com/dydxprotocol/v4-chain/protocol/x/accountplus/typesb\x06proto3')
|
|
18
|
+
|
|
19
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
20
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dydxprotocol.accountplus.params_pb2', globals())
|
|
21
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
22
|
+
|
|
23
|
+
DESCRIPTOR._options = None
|
|
24
|
+
DESCRIPTOR._serialized_options = b'Z=github.com/dydxprotocol/v4-chain/protocol/x/accountplus/types'
|
|
25
|
+
_PARAMS.fields_by_name['is_smart_account_active']._options = None
|
|
26
|
+
_PARAMS.fields_by_name['is_smart_account_active']._serialized_options = b'\362\336\037\036yaml:\"is_smart_account_active\"'
|
|
27
|
+
_PARAMS._serialized_start=89
|
|
28
|
+
_PARAMS._serialized_end=166
|
|
29
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: dydxprotocol/accountplus/query.proto
|
|
4
|
+
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf.internal import builder as _builder
|
|
6
|
+
from google.protobuf import descriptor as _descriptor
|
|
7
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
8
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
9
|
+
# @@protoc_insertion_point(imports)
|
|
10
|
+
|
|
11
|
+
_sym_db = _symbol_database.Default()
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
from v4_proto.gogoproto import gogo_pb2 as gogoproto_dot_gogo__pb2
|
|
15
|
+
from v4_proto.google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
|
|
16
|
+
from v4_proto.dydxprotocol.accountplus import accountplus_pb2 as dydxprotocol_dot_accountplus_dot_accountplus__pb2
|
|
17
|
+
from v4_proto.dydxprotocol.accountplus import models_pb2 as dydxprotocol_dot_accountplus_dot_models__pb2
|
|
18
|
+
from v4_proto.dydxprotocol.accountplus import params_pb2 as dydxprotocol_dot_accountplus_dot_params__pb2
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n$dydxprotocol/accountplus/query.proto\x12\x18\x64ydxprotocol.accountplus\x1a\x14gogoproto/gogo.proto\x1a\x1cgoogle/api/annotations.proto\x1a*dydxprotocol/accountplus/accountplus.proto\x1a%dydxprotocol/accountplus/models.proto\x1a%dydxprotocol/accountplus/params.proto\"&\n\x13\x41\x63\x63ountStateRequest\x12\x0f\n\x07\x61\x64\x64ress\x18\x01 \x01(\t\"U\n\x14\x41\x63\x63ountStateResponse\x12=\n\raccount_state\x18\x01 \x01(\x0b\x32&.dydxprotocol.accountplus.AccountState\"\x14\n\x12QueryParamsRequest\"M\n\x13QueryParamsResponse\x12\x36\n\x06params\x18\x01 \x01(\x0b\x32 .dydxprotocol.accountplus.ParamsB\x04\xc8\xde\x1f\x00\"+\n\x18GetAuthenticatorsRequest\x12\x0f\n\x07\x61\x63\x63ount\x18\x01 \x01(\t\"k\n\x19GetAuthenticatorsResponse\x12N\n\x16\x61\x63\x63ount_authenticators\x18\x01 \x03(\x0b\x32..dydxprotocol.accountplus.AccountAuthenticator\"D\n\x17GetAuthenticatorRequest\x12\x0f\n\x07\x61\x63\x63ount\x18\x01 \x01(\t\x12\x18\n\x10\x61uthenticator_id\x18\x02 \x01(\x04\"i\n\x18GetAuthenticatorResponse\x12M\n\x15\x61\x63\x63ount_authenticator\x18\x01 \x01(\x0b\x32..dydxprotocol.accountplus.AccountAuthenticator2\xc9\x05\n\x05Query\x12\x8f\x01\n\x06Params\x12,.dydxprotocol.accountplus.QueryParamsRequest\x1a-.dydxprotocol.accountplus.QueryParamsResponse\"(\x82\xd3\xe4\x93\x02\"\x12 /dydxprotocol/accountplus/params\x12\xc7\x01\n\x10GetAuthenticator\x12\x31.dydxprotocol.accountplus.GetAuthenticatorRequest\x1a\x32.dydxprotocol.accountplus.GetAuthenticatorResponse\"L\x82\xd3\xe4\x93\x02\x46\x12\x44/dydxprotocol/accountplus/authenticator/{account}/{authenticator_id}\x12\xb8\x01\n\x11GetAuthenticators\x12\x32.dydxprotocol.accountplus.GetAuthenticatorsRequest\x1a\x33.dydxprotocol.accountplus.GetAuthenticatorsResponse\":\x82\xd3\xe4\x93\x02\x34\x12\x32/dydxprotocol/accountplus/authenticators/{account}\x12\xa8\x01\n\x0c\x41\x63\x63ountState\x12-.dydxprotocol.accountplus.AccountStateRequest\x1a..dydxprotocol.accountplus.AccountStateResponse\"9\x82\xd3\xe4\x93\x02\x33\x12\x31/dydxprotocol/accountplus/account_state/{address}B?Z=github.com/dydxprotocol/v4-chain/protocol/x/accountplus/typesb\x06proto3')
|
|
22
|
+
|
|
23
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
24
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dydxprotocol.accountplus.query_pb2', globals())
|
|
25
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
26
|
+
|
|
27
|
+
DESCRIPTOR._options = None
|
|
28
|
+
DESCRIPTOR._serialized_options = b'Z=github.com/dydxprotocol/v4-chain/protocol/x/accountplus/types'
|
|
29
|
+
_QUERYPARAMSRESPONSE.fields_by_name['params']._options = None
|
|
30
|
+
_QUERYPARAMSRESPONSE.fields_by_name['params']._serialized_options = b'\310\336\037\000'
|
|
31
|
+
_QUERY.methods_by_name['Params']._options = None
|
|
32
|
+
_QUERY.methods_by_name['Params']._serialized_options = b'\202\323\344\223\002\"\022 /dydxprotocol/accountplus/params'
|
|
33
|
+
_QUERY.methods_by_name['GetAuthenticator']._options = None
|
|
34
|
+
_QUERY.methods_by_name['GetAuthenticator']._serialized_options = b'\202\323\344\223\002F\022D/dydxprotocol/accountplus/authenticator/{account}/{authenticator_id}'
|
|
35
|
+
_QUERY.methods_by_name['GetAuthenticators']._options = None
|
|
36
|
+
_QUERY.methods_by_name['GetAuthenticators']._serialized_options = b'\202\323\344\223\0024\0222/dydxprotocol/accountplus/authenticators/{account}'
|
|
37
|
+
_QUERY.methods_by_name['AccountState']._options = None
|
|
38
|
+
_QUERY.methods_by_name['AccountState']._serialized_options = b'\202\323\344\223\0023\0221/dydxprotocol/accountplus/account_state/{address}'
|
|
39
|
+
_ACCOUNTSTATEREQUEST._serialized_start=240
|
|
40
|
+
_ACCOUNTSTATEREQUEST._serialized_end=278
|
|
41
|
+
_ACCOUNTSTATERESPONSE._serialized_start=280
|
|
42
|
+
_ACCOUNTSTATERESPONSE._serialized_end=365
|
|
43
|
+
_QUERYPARAMSREQUEST._serialized_start=367
|
|
44
|
+
_QUERYPARAMSREQUEST._serialized_end=387
|
|
45
|
+
_QUERYPARAMSRESPONSE._serialized_start=389
|
|
46
|
+
_QUERYPARAMSRESPONSE._serialized_end=466
|
|
47
|
+
_GETAUTHENTICATORSREQUEST._serialized_start=468
|
|
48
|
+
_GETAUTHENTICATORSREQUEST._serialized_end=511
|
|
49
|
+
_GETAUTHENTICATORSRESPONSE._serialized_start=513
|
|
50
|
+
_GETAUTHENTICATORSRESPONSE._serialized_end=620
|
|
51
|
+
_GETAUTHENTICATORREQUEST._serialized_start=622
|
|
52
|
+
_GETAUTHENTICATORREQUEST._serialized_end=690
|
|
53
|
+
_GETAUTHENTICATORRESPONSE._serialized_start=692
|
|
54
|
+
_GETAUTHENTICATORRESPONSE._serialized_end=797
|
|
55
|
+
_QUERY._serialized_start=800
|
|
56
|
+
_QUERY._serialized_end=1513
|
|
57
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: dydxprotocol/accountplus/tx.proto
|
|
4
|
+
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf.internal import builder as _builder
|
|
6
|
+
from google.protobuf import descriptor as _descriptor
|
|
7
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
8
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
9
|
+
# @@protoc_insertion_point(imports)
|
|
10
|
+
|
|
11
|
+
_sym_db = _symbol_database.Default()
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
from ...cosmos_proto import cosmos_pb2 as cosmos__proto_dot_cosmos__pb2
|
|
15
|
+
from ...cosmos.msg.v1 import msg_pb2 as cosmos_dot_msg_dot_v1_dot_msg__pb2
|
|
16
|
+
from ...amino import amino_pb2 as amino_dot_amino__pb2
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n!dydxprotocol/accountplus/tx.proto\x12\x18\x64ydxprotocol.accountplus\x1a\x19\x63osmos_proto/cosmos.proto\x1a\x17\x63osmos/msg/v1/msg.proto\x1a\x11\x61mino/amino.proto\"\x8b\x01\n\x13MsgAddAuthenticator\x12\x0e\n\x06sender\x18\x01 \x01(\t\x12\x1a\n\x12\x61uthenticator_type\x18\x02 \x01(\t\x12\x0c\n\x04\x64\x61ta\x18\x03 \x01(\x0c::\x8a\xe7\xb0**dydxprotocol/accountplus/add-authenticator\x82\xe7\xb0*\x06sender\".\n\x1bMsgAddAuthenticatorResponse\x12\x0f\n\x07success\x18\x01 \x01(\x08\"s\n\x16MsgRemoveAuthenticator\x12\x0e\n\x06sender\x18\x01 \x01(\t\x12\n\n\x02id\x18\x02 \x01(\x04:=\x8a\xe7\xb0*-dydxprotocol/accountplus/remove-authenticator\x82\xe7\xb0*\x06sender\"1\n\x1eMsgRemoveAuthenticatorResponse\x12\x0f\n\x07success\x18\x01 \x01(\x08\"\x8e\x01\n\x11MsgSetActiveState\x12+\n\tauthority\x18\x01 \x01(\tB\x18\xd2\xb4-\x14\x63osmos.AddressString\x12\x0e\n\x06\x61\x63tive\x18\x02 \x01(\x08:<\x8a\xe7\xb0*)dydxprotocol/accountplus/set-active-state\x82\xe7\xb0*\tauthority\"\x1b\n\x19MsgSetActiveStateResponse\".\n\x0bTxExtension\x12\x1f\n\x17selected_authenticators\x18\x01 \x03(\x04\x32\xf7\x02\n\x03Msg\x12x\n\x10\x41\x64\x64\x41uthenticator\x12-.dydxprotocol.accountplus.MsgAddAuthenticator\x1a\x35.dydxprotocol.accountplus.MsgAddAuthenticatorResponse\x12\x81\x01\n\x13RemoveAuthenticator\x12\x30.dydxprotocol.accountplus.MsgRemoveAuthenticator\x1a\x38.dydxprotocol.accountplus.MsgRemoveAuthenticatorResponse\x12r\n\x0eSetActiveState\x12+.dydxprotocol.accountplus.MsgSetActiveState\x1a\x33.dydxprotocol.accountplus.MsgSetActiveStateResponseB?Z=github.com/dydxprotocol/v4-chain/protocol/x/accountplus/typesb\x06proto3')
|
|
20
|
+
|
|
21
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
22
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dydxprotocol.accountplus.tx_pb2', globals())
|
|
23
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
24
|
+
|
|
25
|
+
DESCRIPTOR._options = None
|
|
26
|
+
DESCRIPTOR._serialized_options = b'Z=github.com/dydxprotocol/v4-chain/protocol/x/accountplus/types'
|
|
27
|
+
_MSGADDAUTHENTICATOR._options = None
|
|
28
|
+
_MSGADDAUTHENTICATOR._serialized_options = b'\212\347\260**dydxprotocol/accountplus/add-authenticator\202\347\260*\006sender'
|
|
29
|
+
_MSGREMOVEAUTHENTICATOR._options = None
|
|
30
|
+
_MSGREMOVEAUTHENTICATOR._serialized_options = b'\212\347\260*-dydxprotocol/accountplus/remove-authenticator\202\347\260*\006sender'
|
|
31
|
+
_MSGSETACTIVESTATE.fields_by_name['authority']._options = None
|
|
32
|
+
_MSGSETACTIVESTATE.fields_by_name['authority']._serialized_options = b'\322\264-\024cosmos.AddressString'
|
|
33
|
+
_MSGSETACTIVESTATE._options = None
|
|
34
|
+
_MSGSETACTIVESTATE._serialized_options = b'\212\347\260*)dydxprotocol/accountplus/set-active-state\202\347\260*\tauthority'
|
|
35
|
+
_MSGADDAUTHENTICATOR._serialized_start=135
|
|
36
|
+
_MSGADDAUTHENTICATOR._serialized_end=274
|
|
37
|
+
_MSGADDAUTHENTICATORRESPONSE._serialized_start=276
|
|
38
|
+
_MSGADDAUTHENTICATORRESPONSE._serialized_end=322
|
|
39
|
+
_MSGREMOVEAUTHENTICATOR._serialized_start=324
|
|
40
|
+
_MSGREMOVEAUTHENTICATOR._serialized_end=439
|
|
41
|
+
_MSGREMOVEAUTHENTICATORRESPONSE._serialized_start=441
|
|
42
|
+
_MSGREMOVEAUTHENTICATORRESPONSE._serialized_end=490
|
|
43
|
+
_MSGSETACTIVESTATE._serialized_start=493
|
|
44
|
+
_MSGSETACTIVESTATE._serialized_end=635
|
|
45
|
+
_MSGSETACTIVESTATERESPONSE._serialized_start=637
|
|
46
|
+
_MSGSETACTIVESTATERESPONSE._serialized_end=664
|
|
47
|
+
_TXEXTENSION._serialized_start=666
|
|
48
|
+
_TXEXTENSION._serialized_end=712
|
|
49
|
+
_MSG._serialized_start=715
|
|
50
|
+
_MSG._serialized_end=1090
|
|
51
|
+
# @@protoc_insertion_point(module_scope)
|
coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/block_rate_limit_config_pb2.py
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: dydxprotocol/clob/block_rate_limit_config.proto
|
|
4
|
+
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf.internal import builder as _builder
|
|
6
|
+
from google.protobuf import descriptor as _descriptor
|
|
7
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
8
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
9
|
+
# @@protoc_insertion_point(imports)
|
|
10
|
+
|
|
11
|
+
_sym_db = _symbol_database.Default()
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
from ...gogoproto import gogo_pb2 as gogoproto_dot_gogo__pb2
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n/dydxprotocol/clob/block_rate_limit_config.proto\x12\x11\x64ydxprotocol.clob\x1a\x14gogoproto/gogo.proto\"\xac\x03\n\x1b\x42lockRateLimitConfiguration\x12]\n\"max_short_term_orders_per_n_blocks\x18\x01 \x03(\x0b\x32).dydxprotocol.clob.MaxPerNBlocksRateLimitB\x06\x18\x01\xc8\xde\x1f\x00\x12Y\n max_stateful_orders_per_n_blocks\x18\x02 \x03(\x0b\x32).dydxprotocol.clob.MaxPerNBlocksRateLimitB\x04\xc8\xde\x1f\x00\x12j\n/max_short_term_order_cancellations_per_n_blocks\x18\x03 \x03(\x0b\x32).dydxprotocol.clob.MaxPerNBlocksRateLimitB\x06\x18\x01\xc8\xde\x1f\x00\x12g\n.max_short_term_orders_and_cancels_per_n_blocks\x18\x04 \x03(\x0b\x32).dydxprotocol.clob.MaxPerNBlocksRateLimitB\x04\xc8\xde\x1f\x00\";\n\x16MaxPerNBlocksRateLimit\x12\x12\n\nnum_blocks\x18\x01 \x01(\r\x12\r\n\x05limit\x18\x02 \x01(\rB8Z6github.com/dydxprotocol/v4-chain/protocol/x/clob/typesb\x06proto3')
|
|
18
|
+
|
|
19
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
20
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dydxprotocol.clob.block_rate_limit_config_pb2', globals())
|
|
21
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
22
|
+
|
|
23
|
+
DESCRIPTOR._options = None
|
|
24
|
+
DESCRIPTOR._serialized_options = b'Z6github.com/dydxprotocol/v4-chain/protocol/x/clob/types'
|
|
25
|
+
_BLOCKRATELIMITCONFIGURATION.fields_by_name['max_short_term_orders_per_n_blocks']._options = None
|
|
26
|
+
_BLOCKRATELIMITCONFIGURATION.fields_by_name['max_short_term_orders_per_n_blocks']._serialized_options = b'\030\001\310\336\037\000'
|
|
27
|
+
_BLOCKRATELIMITCONFIGURATION.fields_by_name['max_stateful_orders_per_n_blocks']._options = None
|
|
28
|
+
_BLOCKRATELIMITCONFIGURATION.fields_by_name['max_stateful_orders_per_n_blocks']._serialized_options = b'\310\336\037\000'
|
|
29
|
+
_BLOCKRATELIMITCONFIGURATION.fields_by_name['max_short_term_order_cancellations_per_n_blocks']._options = None
|
|
30
|
+
_BLOCKRATELIMITCONFIGURATION.fields_by_name['max_short_term_order_cancellations_per_n_blocks']._serialized_options = b'\030\001\310\336\037\000'
|
|
31
|
+
_BLOCKRATELIMITCONFIGURATION.fields_by_name['max_short_term_orders_and_cancels_per_n_blocks']._options = None
|
|
32
|
+
_BLOCKRATELIMITCONFIGURATION.fields_by_name['max_short_term_orders_and_cancels_per_n_blocks']._serialized_options = b'\310\336\037\000'
|
|
33
|
+
_BLOCKRATELIMITCONFIGURATION._serialized_start=93
|
|
34
|
+
_BLOCKRATELIMITCONFIGURATION._serialized_end=521
|
|
35
|
+
_MAXPERNBLOCKSRATELIMIT._serialized_start=523
|
|
36
|
+
_MAXPERNBLOCKSRATELIMIT._serialized_end=582
|
|
37
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: dydxprotocol/clob/clob_pair.proto
|
|
4
|
+
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf.internal import builder as _builder
|
|
6
|
+
from google.protobuf import descriptor as _descriptor
|
|
7
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
8
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
9
|
+
# @@protoc_insertion_point(imports)
|
|
10
|
+
|
|
11
|
+
_sym_db = _symbol_database.Default()
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
from ...amino import amino_pb2 as amino_dot_amino__pb2
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n!dydxprotocol/clob/clob_pair.proto\x12\x11\x64ydxprotocol.clob\x1a\x11\x61mino/amino.proto\"[\n\x15PerpetualClobMetadata\x12\x14\n\x0cperpetual_id\x18\x01 \x01(\r:,\x8a\xe7\xb0*\'dydxprotocol/clob/PerpetualClobMetadata\"j\n\x10SpotClobMetadata\x12\x15\n\rbase_asset_id\x18\x01 \x01(\r\x12\x16\n\x0equote_asset_id\x18\x02 \x01(\r:\'\x8a\xe7\xb0*\"dydxprotocol/clob/SpotClobMetadata\"\xc6\x04\n\x08\x43lobPair\x12\n\n\x02id\x18\x01 \x01(\r\x12y\n\x17perpetual_clob_metadata\x18\x02 \x01(\x0b\x32(.dydxprotocol.clob.PerpetualClobMetadataB,\xb2\xe7\xb0*\'dydxprotocol/clob/PerpetualClobMetadataH\x00\x12j\n\x12spot_clob_metadata\x18\x03 \x01(\x0b\x32#.dydxprotocol.clob.SpotClobMetadataB\'\xb2\xe7\xb0*\"dydxprotocol/clob/SpotClobMetadataH\x00\x12\x1a\n\x12step_base_quantums\x18\x04 \x01(\x04\x12\x19\n\x11subticks_per_tick\x18\x05 \x01(\r\x12#\n\x1bquantum_conversion_exponent\x18\x06 \x01(\x11\x12\x32\n\x06status\x18\x07 \x01(\x0e\x32\".dydxprotocol.clob.ClobPair.Status\"\xaa\x01\n\x06Status\x12\x16\n\x12STATUS_UNSPECIFIED\x10\x00\x12\x11\n\rSTATUS_ACTIVE\x10\x01\x12\x11\n\rSTATUS_PAUSED\x10\x02\x12\x16\n\x12STATUS_CANCEL_ONLY\x10\x03\x12\x14\n\x10STATUS_POST_ONLY\x10\x04\x12\x17\n\x13STATUS_INITIALIZING\x10\x05\x12\x1b\n\x17STATUS_FINAL_SETTLEMENT\x10\x06\x42\n\n\x08metadataB8Z6github.com/dydxprotocol/v4-chain/protocol/x/clob/typesb\x06proto3')
|
|
18
|
+
|
|
19
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
20
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dydxprotocol.clob.clob_pair_pb2', globals())
|
|
21
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
22
|
+
|
|
23
|
+
DESCRIPTOR._options = None
|
|
24
|
+
DESCRIPTOR._serialized_options = b'Z6github.com/dydxprotocol/v4-chain/protocol/x/clob/types'
|
|
25
|
+
_PERPETUALCLOBMETADATA._options = None
|
|
26
|
+
_PERPETUALCLOBMETADATA._serialized_options = b'\212\347\260*\'dydxprotocol/clob/PerpetualClobMetadata'
|
|
27
|
+
_SPOTCLOBMETADATA._options = None
|
|
28
|
+
_SPOTCLOBMETADATA._serialized_options = b'\212\347\260*\"dydxprotocol/clob/SpotClobMetadata'
|
|
29
|
+
_CLOBPAIR.fields_by_name['perpetual_clob_metadata']._options = None
|
|
30
|
+
_CLOBPAIR.fields_by_name['perpetual_clob_metadata']._serialized_options = b'\262\347\260*\'dydxprotocol/clob/PerpetualClobMetadata'
|
|
31
|
+
_CLOBPAIR.fields_by_name['spot_clob_metadata']._options = None
|
|
32
|
+
_CLOBPAIR.fields_by_name['spot_clob_metadata']._serialized_options = b'\262\347\260*\"dydxprotocol/clob/SpotClobMetadata'
|
|
33
|
+
_PERPETUALCLOBMETADATA._serialized_start=75
|
|
34
|
+
_PERPETUALCLOBMETADATA._serialized_end=166
|
|
35
|
+
_SPOTCLOBMETADATA._serialized_start=168
|
|
36
|
+
_SPOTCLOBMETADATA._serialized_end=274
|
|
37
|
+
_CLOBPAIR._serialized_start=277
|
|
38
|
+
_CLOBPAIR._serialized_end=859
|
|
39
|
+
_CLOBPAIR_STATUS._serialized_start=677
|
|
40
|
+
_CLOBPAIR_STATUS._serialized_end=847
|
|
41
|
+
# @@protoc_insertion_point(module_scope)
|
coinex/ccxt/static_dependencies/dydx_v4_client/dydxprotocol/clob/equity_tier_limit_config_pb2.py
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: dydxprotocol/clob/equity_tier_limit_config.proto
|
|
4
|
+
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf.internal import builder as _builder
|
|
6
|
+
from google.protobuf import descriptor as _descriptor
|
|
7
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
8
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
9
|
+
# @@protoc_insertion_point(imports)
|
|
10
|
+
|
|
11
|
+
_sym_db = _symbol_database.Default()
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
from ...gogoproto import gogo_pb2 as gogoproto_dot_gogo__pb2
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n0dydxprotocol/clob/equity_tier_limit_config.proto\x12\x11\x64ydxprotocol.clob\x1a\x14gogoproto/gogo.proto\"\xbe\x01\n\x1c\x45quityTierLimitConfiguration\x12O\n\x1dshort_term_order_equity_tiers\x18\x01 \x03(\x0b\x32\".dydxprotocol.clob.EquityTierLimitB\x04\xc8\xde\x1f\x00\x12M\n\x1bstateful_order_equity_tiers\x18\x02 \x03(\x0b\x32\".dydxprotocol.clob.EquityTierLimitB\x04\xc8\xde\x1f\x00\"\x84\x01\n\x0f\x45quityTierLimit\x12\x62\n\x10usd_tnc_required\x18\x01 \x01(\x0c\x42H\xda\xde\x1f@github.com/dydxprotocol/v4-chain/protocol/dtypes.SerializableInt\xc8\xde\x1f\x00\x12\r\n\x05limit\x18\x02 \x01(\rB8Z6github.com/dydxprotocol/v4-chain/protocol/x/clob/typesb\x06proto3')
|
|
18
|
+
|
|
19
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
20
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dydxprotocol.clob.equity_tier_limit_config_pb2', globals())
|
|
21
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
22
|
+
|
|
23
|
+
DESCRIPTOR._options = None
|
|
24
|
+
DESCRIPTOR._serialized_options = b'Z6github.com/dydxprotocol/v4-chain/protocol/x/clob/types'
|
|
25
|
+
_EQUITYTIERLIMITCONFIGURATION.fields_by_name['short_term_order_equity_tiers']._options = None
|
|
26
|
+
_EQUITYTIERLIMITCONFIGURATION.fields_by_name['short_term_order_equity_tiers']._serialized_options = b'\310\336\037\000'
|
|
27
|
+
_EQUITYTIERLIMITCONFIGURATION.fields_by_name['stateful_order_equity_tiers']._options = None
|
|
28
|
+
_EQUITYTIERLIMITCONFIGURATION.fields_by_name['stateful_order_equity_tiers']._serialized_options = b'\310\336\037\000'
|
|
29
|
+
_EQUITYTIERLIMIT.fields_by_name['usd_tnc_required']._options = None
|
|
30
|
+
_EQUITYTIERLIMIT.fields_by_name['usd_tnc_required']._serialized_options = b'\332\336\037@github.com/dydxprotocol/v4-chain/protocol/dtypes.SerializableInt\310\336\037\000'
|
|
31
|
+
_EQUITYTIERLIMITCONFIGURATION._serialized_start=94
|
|
32
|
+
_EQUITYTIERLIMITCONFIGURATION._serialized_end=284
|
|
33
|
+
_EQUITYTIERLIMIT._serialized_start=287
|
|
34
|
+
_EQUITYTIERLIMIT._serialized_end=419
|
|
35
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: dydxprotocol/clob/finalize_block.proto
|
|
4
|
+
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf.internal import builder as _builder
|
|
6
|
+
from google.protobuf import descriptor as _descriptor
|
|
7
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
8
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
9
|
+
# @@protoc_insertion_point(imports)
|
|
10
|
+
|
|
11
|
+
_sym_db = _symbol_database.Default()
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
from ..clob import clob_pair_pb2 as dydxprotocol_dot_clob_dot_clob__pair__pb2
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n&dydxprotocol/clob/finalize_block.proto\x12\x11\x64ydxprotocol.clob\x1a!dydxprotocol/clob/clob_pair.proto\"`\n\x1c\x43lobStagedFinalizeBlockEvent\x12\x37\n\x10\x63reate_clob_pair\x18\x01 \x01(\x0b\x32\x1b.dydxprotocol.clob.ClobPairH\x00\x42\x07\n\x05\x65ventB8Z6github.com/dydxprotocol/v4-chain/protocol/x/clob/typesb\x06proto3')
|
|
18
|
+
|
|
19
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
20
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dydxprotocol.clob.finalize_block_pb2', globals())
|
|
21
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
22
|
+
|
|
23
|
+
DESCRIPTOR._options = None
|
|
24
|
+
DESCRIPTOR._serialized_options = b'Z6github.com/dydxprotocol/v4-chain/protocol/x/clob/types'
|
|
25
|
+
_CLOBSTAGEDFINALIZEBLOCKEVENT._serialized_start=96
|
|
26
|
+
_CLOBSTAGEDFINALIZEBLOCKEVENT._serialized_end=192
|
|
27
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: dydxprotocol/clob/liquidations_config.proto
|
|
4
|
+
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf.internal import builder as _builder
|
|
6
|
+
from google.protobuf import descriptor as _descriptor
|
|
7
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
8
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
9
|
+
# @@protoc_insertion_point(imports)
|
|
10
|
+
|
|
11
|
+
_sym_db = _symbol_database.Default()
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
from ...gogoproto import gogo_pb2 as gogoproto_dot_gogo__pb2
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n+dydxprotocol/clob/liquidations_config.proto\x12\x11\x64ydxprotocol.clob\x1a\x14gogoproto/gogo.proto\"\xa0\x02\n\x12LiquidationsConfig\x12\x1f\n\x17max_liquidation_fee_ppm\x18\x01 \x01(\r\x12K\n\x15position_block_limits\x18\x02 \x01(\x0b\x32&.dydxprotocol.clob.PositionBlockLimitsB\x04\xc8\xde\x1f\x00\x12O\n\x17subaccount_block_limits\x18\x03 \x01(\x0b\x32(.dydxprotocol.clob.SubaccountBlockLimitsB\x04\xc8\xde\x1f\x00\x12K\n\x15\x66illable_price_config\x18\x04 \x01(\x0b\x32&.dydxprotocol.clob.FillablePriceConfigB\x04\xc8\xde\x1f\x00\"l\n\x13PositionBlockLimits\x12(\n min_position_notional_liquidated\x18\x01 \x01(\x04\x12+\n#max_position_portion_liquidated_ppm\x18\x02 \x01(\r\"]\n\x15SubaccountBlockLimits\x12\x1f\n\x17max_notional_liquidated\x18\x01 \x01(\x04\x12#\n\x1bmax_quantums_insurance_lost\x18\x02 \x01(\x04\"h\n\x13\x46illablePriceConfig\x12!\n\x19\x62\x61nkruptcy_adjustment_ppm\x18\x01 \x01(\r\x12.\n&spread_to_maintenance_margin_ratio_ppm\x18\x02 \x01(\rB8Z6github.com/dydxprotocol/v4-chain/protocol/x/clob/typesb\x06proto3')
|
|
18
|
+
|
|
19
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
20
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dydxprotocol.clob.liquidations_config_pb2', globals())
|
|
21
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
22
|
+
|
|
23
|
+
DESCRIPTOR._options = None
|
|
24
|
+
DESCRIPTOR._serialized_options = b'Z6github.com/dydxprotocol/v4-chain/protocol/x/clob/types'
|
|
25
|
+
_LIQUIDATIONSCONFIG.fields_by_name['position_block_limits']._options = None
|
|
26
|
+
_LIQUIDATIONSCONFIG.fields_by_name['position_block_limits']._serialized_options = b'\310\336\037\000'
|
|
27
|
+
_LIQUIDATIONSCONFIG.fields_by_name['subaccount_block_limits']._options = None
|
|
28
|
+
_LIQUIDATIONSCONFIG.fields_by_name['subaccount_block_limits']._serialized_options = b'\310\336\037\000'
|
|
29
|
+
_LIQUIDATIONSCONFIG.fields_by_name['fillable_price_config']._options = None
|
|
30
|
+
_LIQUIDATIONSCONFIG.fields_by_name['fillable_price_config']._serialized_options = b'\310\336\037\000'
|
|
31
|
+
_LIQUIDATIONSCONFIG._serialized_start=89
|
|
32
|
+
_LIQUIDATIONSCONFIG._serialized_end=377
|
|
33
|
+
_POSITIONBLOCKLIMITS._serialized_start=379
|
|
34
|
+
_POSITIONBLOCKLIMITS._serialized_end=487
|
|
35
|
+
_SUBACCOUNTBLOCKLIMITS._serialized_start=489
|
|
36
|
+
_SUBACCOUNTBLOCKLIMITS._serialized_end=582
|
|
37
|
+
_FILLABLEPRICECONFIG._serialized_start=584
|
|
38
|
+
_FILLABLEPRICECONFIG._serialized_end=688
|
|
39
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: dydxprotocol/clob/liquidations.proto
|
|
4
|
+
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf.internal import builder as _builder
|
|
6
|
+
from google.protobuf import descriptor as _descriptor
|
|
7
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
8
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
9
|
+
# @@protoc_insertion_point(imports)
|
|
10
|
+
|
|
11
|
+
_sym_db = _symbol_database.Default()
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
from ...gogoproto import gogo_pb2 as gogoproto_dot_gogo__pb2
|
|
15
|
+
from ..subaccounts import subaccount_pb2 as dydxprotocol_dot_subaccounts_dot_subaccount__pb2
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n$dydxprotocol/clob/liquidations.proto\x12\x11\x64ydxprotocol.clob\x1a\x14gogoproto/gogo.proto\x1a)dydxprotocol/subaccounts/subaccount.proto\"u\n\x18PerpetualLiquidationInfo\x12\x43\n\rsubaccount_id\x18\x01 \x01(\x0b\x32&.dydxprotocol.subaccounts.SubaccountIdB\x04\xc8\xde\x1f\x00\x12\x14\n\x0cperpetual_id\x18\x02 \x01(\r\"x\n\x19SubaccountLiquidationInfo\x12\x1d\n\x15perpetuals_liquidated\x18\x01 \x03(\r\x12\x1b\n\x13notional_liquidated\x18\x02 \x01(\x04\x12\x1f\n\x17quantums_insurance_lost\x18\x03 \x01(\x04\"\xdf\x01\n\x1aSubaccountOpenPositionInfo\x12\x14\n\x0cperpetual_id\x18\x01 \x01(\r\x12T\n\x1esubaccounts_with_long_position\x18\x02 \x03(\x0b\x32&.dydxprotocol.subaccounts.SubaccountIdB\x04\xc8\xde\x1f\x00\x12U\n\x1fsubaccounts_with_short_position\x18\x03 \x03(\x0b\x32&.dydxprotocol.subaccounts.SubaccountIdB\x04\xc8\xde\x1f\x00\x42\x38Z6github.com/dydxprotocol/v4-chain/protocol/x/clob/typesb\x06proto3')
|
|
19
|
+
|
|
20
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
21
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dydxprotocol.clob.liquidations_pb2', globals())
|
|
22
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
23
|
+
|
|
24
|
+
DESCRIPTOR._options = None
|
|
25
|
+
DESCRIPTOR._serialized_options = b'Z6github.com/dydxprotocol/v4-chain/protocol/x/clob/types'
|
|
26
|
+
_PERPETUALLIQUIDATIONINFO.fields_by_name['subaccount_id']._options = None
|
|
27
|
+
_PERPETUALLIQUIDATIONINFO.fields_by_name['subaccount_id']._serialized_options = b'\310\336\037\000'
|
|
28
|
+
_SUBACCOUNTOPENPOSITIONINFO.fields_by_name['subaccounts_with_long_position']._options = None
|
|
29
|
+
_SUBACCOUNTOPENPOSITIONINFO.fields_by_name['subaccounts_with_long_position']._serialized_options = b'\310\336\037\000'
|
|
30
|
+
_SUBACCOUNTOPENPOSITIONINFO.fields_by_name['subaccounts_with_short_position']._options = None
|
|
31
|
+
_SUBACCOUNTOPENPOSITIONINFO.fields_by_name['subaccounts_with_short_position']._serialized_options = b'\310\336\037\000'
|
|
32
|
+
_PERPETUALLIQUIDATIONINFO._serialized_start=124
|
|
33
|
+
_PERPETUALLIQUIDATIONINFO._serialized_end=241
|
|
34
|
+
_SUBACCOUNTLIQUIDATIONINFO._serialized_start=243
|
|
35
|
+
_SUBACCOUNTLIQUIDATIONINFO._serialized_end=363
|
|
36
|
+
_SUBACCOUNTOPENPOSITIONINFO._serialized_start=366
|
|
37
|
+
_SUBACCOUNTOPENPOSITIONINFO._serialized_end=589
|
|
38
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: dydxprotocol/clob/matches.proto
|
|
4
|
+
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf.internal import builder as _builder
|
|
6
|
+
from google.protobuf import descriptor as _descriptor
|
|
7
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
8
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
9
|
+
# @@protoc_insertion_point(imports)
|
|
10
|
+
|
|
11
|
+
_sym_db = _symbol_database.Default()
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
from ...gogoproto import gogo_pb2 as gogoproto_dot_gogo__pb2
|
|
15
|
+
from ..subaccounts import subaccount_pb2 as dydxprotocol_dot_subaccounts_dot_subaccount__pb2
|
|
16
|
+
from ..clob import order_pb2 as dydxprotocol_dot_clob_dot_order__pb2
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1f\x64ydxprotocol/clob/matches.proto\x12\x11\x64ydxprotocol.clob\x1a\x14gogoproto/gogo.proto\x1a)dydxprotocol/subaccounts/subaccount.proto\x1a\x1d\x64ydxprotocol/clob/order.proto\"\xf8\x01\n\tClobMatch\x12\x36\n\x0cmatch_orders\x18\x01 \x01(\x0b\x32\x1e.dydxprotocol.clob.MatchOrdersH\x00\x12S\n\x1bmatch_perpetual_liquidation\x18\x02 \x01(\x0b\x32,.dydxprotocol.clob.MatchPerpetualLiquidationH\x00\x12U\n\x1cmatch_perpetual_deleveraging\x18\x03 \x01(\x0b\x32-.dydxprotocol.clob.MatchPerpetualDeleveragingH\x00\x42\x07\n\x05match\"Z\n\tMakerFill\x12\x13\n\x0b\x66ill_amount\x18\x01 \x01(\x04\x12\x38\n\x0emaker_order_id\x18\x02 \x01(\x0b\x32\x1a.dydxprotocol.clob.OrderIdB\x04\xc8\xde\x1f\x00\"z\n\x0bMatchOrders\x12\x38\n\x0etaker_order_id\x18\x01 \x01(\x0b\x32\x1a.dydxprotocol.clob.OrderIdB\x04\xc8\xde\x1f\x00\x12\x31\n\x05\x66ills\x18\x02 \x03(\x0b\x32\x1c.dydxprotocol.clob.MakerFillB\x04\xc8\xde\x1f\x00\"\xe0\x01\n\x19MatchPerpetualLiquidation\x12@\n\nliquidated\x18\x01 \x01(\x0b\x32&.dydxprotocol.subaccounts.SubaccountIdB\x04\xc8\xde\x1f\x00\x12\x14\n\x0c\x63lob_pair_id\x18\x02 \x01(\r\x12\x14\n\x0cperpetual_id\x18\x03 \x01(\r\x12\x12\n\ntotal_size\x18\x04 \x01(\x04\x12\x0e\n\x06is_buy\x18\x05 \x01(\x08\x12\x31\n\x05\x66ills\x18\x06 \x03(\x0b\x32\x1c.dydxprotocol.clob.MakerFillB\x04\xc8\xde\x1f\x00\"\xc7\x02\n\x1aMatchPerpetualDeleveraging\x12@\n\nliquidated\x18\x01 \x01(\x0b\x32&.dydxprotocol.subaccounts.SubaccountIdB\x04\xc8\xde\x1f\x00\x12\x14\n\x0cperpetual_id\x18\x02 \x01(\r\x12G\n\x05\x66ills\x18\x03 \x03(\x0b\x32\x32.dydxprotocol.clob.MatchPerpetualDeleveraging.FillB\x04\xc8\xde\x1f\x00\x12\x1b\n\x13is_final_settlement\x18\x04 \x01(\x08\x1ak\n\x04\x46ill\x12N\n\x18offsetting_subaccount_id\x18\x01 \x01(\x0b\x32&.dydxprotocol.subaccounts.SubaccountIdB\x04\xc8\xde\x1f\x00\x12\x13\n\x0b\x66ill_amount\x18\x02 \x01(\x04\x42\x38Z6github.com/dydxprotocol/v4-chain/protocol/x/clob/typesb\x06proto3')
|
|
20
|
+
|
|
21
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
22
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dydxprotocol.clob.matches_pb2', globals())
|
|
23
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
24
|
+
|
|
25
|
+
DESCRIPTOR._options = None
|
|
26
|
+
DESCRIPTOR._serialized_options = b'Z6github.com/dydxprotocol/v4-chain/protocol/x/clob/types'
|
|
27
|
+
_MAKERFILL.fields_by_name['maker_order_id']._options = None
|
|
28
|
+
_MAKERFILL.fields_by_name['maker_order_id']._serialized_options = b'\310\336\037\000'
|
|
29
|
+
_MATCHORDERS.fields_by_name['taker_order_id']._options = None
|
|
30
|
+
_MATCHORDERS.fields_by_name['taker_order_id']._serialized_options = b'\310\336\037\000'
|
|
31
|
+
_MATCHORDERS.fields_by_name['fills']._options = None
|
|
32
|
+
_MATCHORDERS.fields_by_name['fills']._serialized_options = b'\310\336\037\000'
|
|
33
|
+
_MATCHPERPETUALLIQUIDATION.fields_by_name['liquidated']._options = None
|
|
34
|
+
_MATCHPERPETUALLIQUIDATION.fields_by_name['liquidated']._serialized_options = b'\310\336\037\000'
|
|
35
|
+
_MATCHPERPETUALLIQUIDATION.fields_by_name['fills']._options = None
|
|
36
|
+
_MATCHPERPETUALLIQUIDATION.fields_by_name['fills']._serialized_options = b'\310\336\037\000'
|
|
37
|
+
_MATCHPERPETUALDELEVERAGING_FILL.fields_by_name['offsetting_subaccount_id']._options = None
|
|
38
|
+
_MATCHPERPETUALDELEVERAGING_FILL.fields_by_name['offsetting_subaccount_id']._serialized_options = b'\310\336\037\000'
|
|
39
|
+
_MATCHPERPETUALDELEVERAGING.fields_by_name['liquidated']._options = None
|
|
40
|
+
_MATCHPERPETUALDELEVERAGING.fields_by_name['liquidated']._serialized_options = b'\310\336\037\000'
|
|
41
|
+
_MATCHPERPETUALDELEVERAGING.fields_by_name['fills']._options = None
|
|
42
|
+
_MATCHPERPETUALDELEVERAGING.fields_by_name['fills']._serialized_options = b'\310\336\037\000'
|
|
43
|
+
_CLOBMATCH._serialized_start=151
|
|
44
|
+
_CLOBMATCH._serialized_end=399
|
|
45
|
+
_MAKERFILL._serialized_start=401
|
|
46
|
+
_MAKERFILL._serialized_end=491
|
|
47
|
+
_MATCHORDERS._serialized_start=493
|
|
48
|
+
_MATCHORDERS._serialized_end=615
|
|
49
|
+
_MATCHPERPETUALLIQUIDATION._serialized_start=618
|
|
50
|
+
_MATCHPERPETUALLIQUIDATION._serialized_end=842
|
|
51
|
+
_MATCHPERPETUALDELEVERAGING._serialized_start=845
|
|
52
|
+
_MATCHPERPETUALDELEVERAGING._serialized_end=1172
|
|
53
|
+
_MATCHPERPETUALDELEVERAGING_FILL._serialized_start=1065
|
|
54
|
+
_MATCHPERPETUALDELEVERAGING_FILL._serialized_end=1172
|
|
55
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: dydxprotocol/clob/mev.proto
|
|
4
|
+
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf.internal import builder as _builder
|
|
6
|
+
from google.protobuf import descriptor as _descriptor
|
|
7
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
8
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
9
|
+
# @@protoc_insertion_point(imports)
|
|
10
|
+
|
|
11
|
+
_sym_db = _symbol_database.Default()
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
from v4_proto.gogoproto import gogo_pb2 as gogoproto_dot_gogo__pb2
|
|
15
|
+
from v4_proto.dydxprotocol.subaccounts import subaccount_pb2 as dydxprotocol_dot_subaccounts_dot_subaccount__pb2
|
|
16
|
+
from v4_proto.dydxprotocol.clob import clob_pair_pb2 as dydxprotocol_dot_clob_dot_clob__pair__pb2
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1b\x64ydxprotocol/clob/mev.proto\x12\x11\x64ydxprotocol.clob\x1a\x14gogoproto/gogo.proto\x1a)dydxprotocol/subaccounts/subaccount.proto\x1a!dydxprotocol/clob/clob_pair.proto\"\xb3\x02\n\x08MEVMatch\x12I\n\x19taker_order_subaccount_id\x18\x01 \x01(\x0b\x32&.dydxprotocol.subaccounts.SubaccountId\x12\x15\n\rtaker_fee_ppm\x18\x02 \x01(\x05\x12I\n\x19maker_order_subaccount_id\x18\x03 \x01(\x0b\x32&.dydxprotocol.subaccounts.SubaccountId\x12\x1c\n\x14maker_order_subticks\x18\x04 \x01(\x04\x12\x1a\n\x12maker_order_is_buy\x18\x05 \x01(\x08\x12\x15\n\rmaker_fee_ppm\x18\x06 \x01(\x05\x12\x14\n\x0c\x63lob_pair_id\x18\x07 \x01(\r\x12\x13\n\x0b\x66ill_amount\x18\x08 \x01(\x04\"\xdf\x02\n\x13MEVLiquidationMatch\x12N\n\x18liquidated_subaccount_id\x18\x01 \x01(\x0b\x32&.dydxprotocol.subaccounts.SubaccountIdB\x04\xc8\xde\x1f\x00\x12+\n#insurance_fund_delta_quote_quantums\x18\x02 \x01(\x03\x12O\n\x19maker_order_subaccount_id\x18\x03 \x01(\x0b\x32&.dydxprotocol.subaccounts.SubaccountIdB\x04\xc8\xde\x1f\x00\x12\x1c\n\x14maker_order_subticks\x18\x04 \x01(\x04\x12\x1a\n\x12maker_order_is_buy\x18\x05 \x01(\x08\x12\x15\n\rmaker_fee_ppm\x18\x06 \x01(\x05\x12\x14\n\x0c\x63lob_pair_id\x18\x07 \x01(\r\x12\x13\n\x0b\x66ill_amount\x18\x08 \x01(\x04\"V\n\x0c\x43lobMidPrice\x12\x34\n\tclob_pair\x18\x01 \x01(\x0b\x32\x1b.dydxprotocol.clob.ClobPairB\x04\xc8\xde\x1f\x00\x12\x10\n\x08subticks\x18\x02 \x01(\x04\"\x94\x01\n\x13ValidatorMevMatches\x12\x32\n\x07matches\x18\x01 \x03(\x0b\x32\x1b.dydxprotocol.clob.MEVMatchB\x04\xc8\xde\x1f\x00\x12I\n\x13liquidation_matches\x18\x02 \x03(\x0b\x32&.dydxprotocol.clob.MEVLiquidationMatchB\x04\xc8\xde\x1f\x00\"\xfc\x01\n\x14MevNodeToNodeMetrics\x12\x45\n\x15validator_mev_matches\x18\x01 \x01(\x0b\x32&.dydxprotocol.clob.ValidatorMevMatches\x12>\n\x0f\x63lob_mid_prices\x18\x02 \x03(\x0b\x32\x1f.dydxprotocol.clob.ClobMidPriceB\x04\xc8\xde\x1f\x00\x12>\n\x0e\x62p_mev_matches\x18\x03 \x01(\x0b\x32&.dydxprotocol.clob.ValidatorMevMatches\x12\x1d\n\x15proposal_receive_time\x18\x04 \x01(\x04\x42\x38Z6github.com/dydxprotocol/v4-chain/protocol/x/clob/typesb\x06proto3')
|
|
20
|
+
|
|
21
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
22
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dydxprotocol.clob.mev_pb2', globals())
|
|
23
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
24
|
+
|
|
25
|
+
DESCRIPTOR._options = None
|
|
26
|
+
DESCRIPTOR._serialized_options = b'Z6github.com/dydxprotocol/v4-chain/protocol/x/clob/types'
|
|
27
|
+
_MEVLIQUIDATIONMATCH.fields_by_name['liquidated_subaccount_id']._options = None
|
|
28
|
+
_MEVLIQUIDATIONMATCH.fields_by_name['liquidated_subaccount_id']._serialized_options = b'\310\336\037\000'
|
|
29
|
+
_MEVLIQUIDATIONMATCH.fields_by_name['maker_order_subaccount_id']._options = None
|
|
30
|
+
_MEVLIQUIDATIONMATCH.fields_by_name['maker_order_subaccount_id']._serialized_options = b'\310\336\037\000'
|
|
31
|
+
_CLOBMIDPRICE.fields_by_name['clob_pair']._options = None
|
|
32
|
+
_CLOBMIDPRICE.fields_by_name['clob_pair']._serialized_options = b'\310\336\037\000'
|
|
33
|
+
_VALIDATORMEVMATCHES.fields_by_name['matches']._options = None
|
|
34
|
+
_VALIDATORMEVMATCHES.fields_by_name['matches']._serialized_options = b'\310\336\037\000'
|
|
35
|
+
_VALIDATORMEVMATCHES.fields_by_name['liquidation_matches']._options = None
|
|
36
|
+
_VALIDATORMEVMATCHES.fields_by_name['liquidation_matches']._serialized_options = b'\310\336\037\000'
|
|
37
|
+
_MEVNODETONODEMETRICS.fields_by_name['clob_mid_prices']._options = None
|
|
38
|
+
_MEVNODETONODEMETRICS.fields_by_name['clob_mid_prices']._serialized_options = b'\310\336\037\000'
|
|
39
|
+
_MEVMATCH._serialized_start=151
|
|
40
|
+
_MEVMATCH._serialized_end=458
|
|
41
|
+
_MEVLIQUIDATIONMATCH._serialized_start=461
|
|
42
|
+
_MEVLIQUIDATIONMATCH._serialized_end=812
|
|
43
|
+
_CLOBMIDPRICE._serialized_start=814
|
|
44
|
+
_CLOBMIDPRICE._serialized_end=900
|
|
45
|
+
_VALIDATORMEVMATCHES._serialized_start=903
|
|
46
|
+
_VALIDATORMEVMATCHES._serialized_end=1051
|
|
47
|
+
_MEVNODETONODEMETRICS._serialized_start=1054
|
|
48
|
+
_MEVNODETONODEMETRICS._serialized_end=1306
|
|
49
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: dydxprotocol/clob/operation.proto
|
|
4
|
+
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf.internal import builder as _builder
|
|
6
|
+
from google.protobuf import descriptor as _descriptor
|
|
7
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
8
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
9
|
+
# @@protoc_insertion_point(imports)
|
|
10
|
+
|
|
11
|
+
_sym_db = _symbol_database.Default()
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
from v4_proto.dydxprotocol.clob import matches_pb2 as dydxprotocol_dot_clob_dot_matches__pb2
|
|
15
|
+
from v4_proto.dydxprotocol.clob import order_pb2 as dydxprotocol_dot_clob_dot_order__pb2
|
|
16
|
+
from v4_proto.dydxprotocol.clob import order_removals_pb2 as dydxprotocol_dot_clob_dot_order__removals__pb2
|
|
17
|
+
from v4_proto.dydxprotocol.clob import tx_pb2 as dydxprotocol_dot_clob_dot_tx__pb2
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n!dydxprotocol/clob/operation.proto\x12\x11\x64ydxprotocol.clob\x1a\x1f\x64ydxprotocol/clob/matches.proto\x1a\x1d\x64ydxprotocol/clob/order.proto\x1a&dydxprotocol/clob/order_removals.proto\x1a\x1a\x64ydxprotocol/clob/tx.proto\"\x9d\x02\n\tOperation\x12-\n\x05match\x18\x01 \x01(\x0b\x32\x1c.dydxprotocol.clob.ClobMatchH\x00\x12\x46\n\x1ashort_term_order_placement\x18\x02 \x01(\x0b\x32 .dydxprotocol.clob.MsgPlaceOrderH\x00\x12J\n\x1dshort_term_order_cancellation\x18\x03 \x01(\x0b\x32!.dydxprotocol.clob.MsgCancelOrderH\x00\x12@\n\x1apreexisting_stateful_order\x18\x04 \x01(\x0b\x32\x1a.dydxprotocol.clob.OrderIdH\x00\x42\x0b\n\toperation\"\x93\x02\n\x11InternalOperation\x12-\n\x05match\x18\x01 \x01(\x0b\x32\x1c.dydxprotocol.clob.ClobMatchH\x00\x12\x46\n\x1ashort_term_order_placement\x18\x02 \x01(\x0b\x32 .dydxprotocol.clob.MsgPlaceOrderH\x00\x12@\n\x1apreexisting_stateful_order\x18\x03 \x01(\x0b\x32\x1a.dydxprotocol.clob.OrderIdH\x00\x12\x38\n\rorder_removal\x18\x04 \x01(\x0b\x32\x1f.dydxprotocol.clob.OrderRemovalH\x00\x42\x0b\n\toperationB8Z6github.com/dydxprotocol/v4-chain/protocol/x/clob/typesb\x06proto3')
|
|
21
|
+
|
|
22
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
23
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dydxprotocol.clob.operation_pb2', globals())
|
|
24
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
25
|
+
|
|
26
|
+
DESCRIPTOR._options = None
|
|
27
|
+
DESCRIPTOR._serialized_options = b'Z6github.com/dydxprotocol/v4-chain/protocol/x/clob/types'
|
|
28
|
+
_OPERATION._serialized_start=189
|
|
29
|
+
_OPERATION._serialized_end=474
|
|
30
|
+
_INTERNALOPERATION._serialized_start=477
|
|
31
|
+
_INTERNALOPERATION._serialized_end=752
|
|
32
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: dydxprotocol/clob/order.proto
|
|
4
|
+
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf.internal import builder as _builder
|
|
6
|
+
from google.protobuf import descriptor as _descriptor
|
|
7
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
8
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
9
|
+
# @@protoc_insertion_point(imports)
|
|
10
|
+
|
|
11
|
+
_sym_db = _symbol_database.Default()
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
from ...cosmos_proto import cosmos_pb2 as cosmos__proto_dot_cosmos__pb2
|
|
15
|
+
from ...gogoproto import gogo_pb2 as gogoproto_dot_gogo__pb2
|
|
16
|
+
from ..subaccounts import subaccount_pb2 as dydxprotocol_dot_subaccounts_dot_subaccount__pb2
|
|
17
|
+
from ..clob import liquidations_pb2 as dydxprotocol_dot_clob_dot_liquidations__pb2
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1d\x64ydxprotocol/clob/order.proto\x12\x11\x64ydxprotocol.clob\x1a\x19\x63osmos_proto/cosmos.proto\x1a\x14gogoproto/gogo.proto\x1a)dydxprotocol/subaccounts/subaccount.proto\x1a$dydxprotocol/clob/liquidations.proto\"\x8c\x01\n\x07OrderId\x12\x43\n\rsubaccount_id\x18\x01 \x01(\x0b\x32&.dydxprotocol.subaccounts.SubaccountIdB\x04\xc8\xde\x1f\x00\x12\x11\n\tclient_id\x18\x02 \x01(\x07\x12\x13\n\x0border_flags\x18\x03 \x01(\r\x12\x14\n\x0c\x63lob_pair_id\x18\x04 \x01(\r\"T\n\x1dOrdersFilledDuringLatestBlock\x12\x33\n\torder_ids\x18\x01 \x03(\x0b\x32\x1a.dydxprotocol.clob.OrderIdB\x04\xc8\xde\x1f\x00\"P\n\x19PotentiallyPrunableOrders\x12\x33\n\torder_ids\x18\x01 \x03(\x0b\x32\x1a.dydxprotocol.clob.OrderIdB\x04\xc8\xde\x1f\x00\"D\n\x0eOrderFillState\x12\x13\n\x0b\x66ill_amount\x18\x01 \x01(\x04\x12\x1d\n\x15prunable_block_height\x18\x02 \x01(\r\"R\n\x1bStatefulOrderTimeSliceValue\x12\x33\n\torder_ids\x18\x01 \x03(\x0b\x32\x1a.dydxprotocol.clob.OrderIdB\x04\xc8\xde\x1f\x00\"\x8e\x01\n\x16LongTermOrderPlacement\x12-\n\x05order\x18\x01 \x01(\x0b\x32\x18.dydxprotocol.clob.OrderB\x04\xc8\xde\x1f\x00\x12\x45\n\x0fplacement_index\x18\x02 \x01(\x0b\x32&.dydxprotocol.clob.TransactionOrderingB\x04\xc8\xde\x1f\x00\"w\n\x12TwapOrderPlacement\x12-\n\x05order\x18\x01 \x01(\x0b\x32\x18.dydxprotocol.clob.OrderB\x04\xc8\xde\x1f\x00\x12\x16\n\x0eremaining_legs\x18\x02 \x01(\r\x12\x1a\n\x12remaining_quantums\x18\x03 \x01(\x04\"\xd0\x01\n\x19\x43onditionalOrderPlacement\x12-\n\x05order\x18\x01 \x01(\x0b\x32\x18.dydxprotocol.clob.OrderB\x04\xc8\xde\x1f\x00\x12\x45\n\x0fplacement_index\x18\x02 \x01(\x0b\x32&.dydxprotocol.clob.TransactionOrderingB\x04\xc8\xde\x1f\x00\x12=\n\rtrigger_index\x18\x03 \x01(\x0b\x32&.dydxprotocol.clob.TransactionOrdering\"\x9e\x07\n\x05Order\x12\x32\n\x08order_id\x18\x01 \x01(\x0b\x32\x1a.dydxprotocol.clob.OrderIdB\x04\xc8\xde\x1f\x00\x12+\n\x04side\x18\x02 \x01(\x0e\x32\x1d.dydxprotocol.clob.Order.Side\x12\x10\n\x08quantums\x18\x03 \x01(\x04\x12\x10\n\x08subticks\x18\x04 \x01(\x04\x12\x18\n\x0egood_til_block\x18\x05 \x01(\rH\x00\x12\x1d\n\x13good_til_block_time\x18\x06 \x01(\x07H\x00\x12;\n\rtime_in_force\x18\x07 \x01(\x0e\x32$.dydxprotocol.clob.Order.TimeInForce\x12\x13\n\x0breduce_only\x18\x08 \x01(\x08\x12\x17\n\x0f\x63lient_metadata\x18\t \x01(\r\x12>\n\x0e\x63ondition_type\x18\n \x01(\x0e\x32&.dydxprotocol.clob.Order.ConditionType\x12*\n\"conditional_order_trigger_subticks\x18\x0b \x01(\x04\x12:\n\x0ftwap_parameters\x18\x0c \x01(\x0b\x32!.dydxprotocol.clob.TwapParameters\x12I\n\x17\x62uilder_code_parameters\x18\r \x01(\x0b\x32(.dydxprotocol.clob.BuilderCodeParameters\x12\x36\n\x14order_router_address\x18\x0e \x01(\tB\x18\xd2\xb4-\x14\x63osmos.AddressString\"9\n\x04Side\x12\x14\n\x10SIDE_UNSPECIFIED\x10\x00\x12\x0c\n\x08SIDE_BUY\x10\x01\x12\r\n\tSIDE_SELL\x10\x02\"\x84\x01\n\x0bTimeInForce\x12\x1d\n\x19TIME_IN_FORCE_UNSPECIFIED\x10\x00\x12\x15\n\x11TIME_IN_FORCE_IOC\x10\x01\x12\x1b\n\x17TIME_IN_FORCE_POST_ONLY\x10\x02\x12\"\n\x1aTIME_IN_FORCE_FILL_OR_KILL\x10\x03\x1a\x02\x08\x01\"m\n\rConditionType\x12\x1e\n\x1a\x43ONDITION_TYPE_UNSPECIFIED\x10\x00\x12\x1c\n\x18\x43ONDITION_TYPE_STOP_LOSS\x10\x01\x12\x1e\n\x1a\x43ONDITION_TYPE_TAKE_PROFIT\x10\x02\x42\x10\n\x0egood_til_oneof\"M\n\x0eTwapParameters\x12\x10\n\x08\x64uration\x18\x01 \x01(\r\x12\x10\n\x08interval\x18\x02 \x01(\r\x12\x17\n\x0fprice_tolerance\x18\x03 \x01(\r\"[\n\x15\x42uilderCodeParameters\x12\x31\n\x0f\x62uilder_address\x18\x01 \x01(\tB\x18\xd2\xb4-\x14\x63osmos.AddressString\x12\x0f\n\x07\x66\x65\x65_ppm\x18\x02 \x01(\r\"F\n\x13TransactionOrdering\x12\x14\n\x0c\x62lock_height\x18\x01 \x01(\r\x12\x19\n\x11transaction_index\x18\x02 \x01(\r\"\xa9\x01\n\x16StreamLiquidationOrder\x12\x45\n\x10liquidation_info\x18\x01 \x01(\x0b\x32+.dydxprotocol.clob.PerpetualLiquidationInfo\x12\x14\n\x0c\x63lob_pair_id\x18\x02 \x01(\r\x12\x0e\n\x06is_buy\x18\x03 \x01(\x08\x12\x10\n\x08quantums\x18\x04 \x01(\x04\x12\x10\n\x08subticks\x18\x05 \x01(\x04\x42\x38Z6github.com/dydxprotocol/v4-chain/protocol/x/clob/typesb\x06proto3')
|
|
21
|
+
|
|
22
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
23
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dydxprotocol.clob.order_pb2', globals())
|
|
24
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
25
|
+
|
|
26
|
+
DESCRIPTOR._options = None
|
|
27
|
+
DESCRIPTOR._serialized_options = b'Z6github.com/dydxprotocol/v4-chain/protocol/x/clob/types'
|
|
28
|
+
_ORDERID.fields_by_name['subaccount_id']._options = None
|
|
29
|
+
_ORDERID.fields_by_name['subaccount_id']._serialized_options = b'\310\336\037\000'
|
|
30
|
+
_ORDERSFILLEDDURINGLATESTBLOCK.fields_by_name['order_ids']._options = None
|
|
31
|
+
_ORDERSFILLEDDURINGLATESTBLOCK.fields_by_name['order_ids']._serialized_options = b'\310\336\037\000'
|
|
32
|
+
_POTENTIALLYPRUNABLEORDERS.fields_by_name['order_ids']._options = None
|
|
33
|
+
_POTENTIALLYPRUNABLEORDERS.fields_by_name['order_ids']._serialized_options = b'\310\336\037\000'
|
|
34
|
+
_STATEFULORDERTIMESLICEVALUE.fields_by_name['order_ids']._options = None
|
|
35
|
+
_STATEFULORDERTIMESLICEVALUE.fields_by_name['order_ids']._serialized_options = b'\310\336\037\000'
|
|
36
|
+
_LONGTERMORDERPLACEMENT.fields_by_name['order']._options = None
|
|
37
|
+
_LONGTERMORDERPLACEMENT.fields_by_name['order']._serialized_options = b'\310\336\037\000'
|
|
38
|
+
_LONGTERMORDERPLACEMENT.fields_by_name['placement_index']._options = None
|
|
39
|
+
_LONGTERMORDERPLACEMENT.fields_by_name['placement_index']._serialized_options = b'\310\336\037\000'
|
|
40
|
+
_TWAPORDERPLACEMENT.fields_by_name['order']._options = None
|
|
41
|
+
_TWAPORDERPLACEMENT.fields_by_name['order']._serialized_options = b'\310\336\037\000'
|
|
42
|
+
_CONDITIONALORDERPLACEMENT.fields_by_name['order']._options = None
|
|
43
|
+
_CONDITIONALORDERPLACEMENT.fields_by_name['order']._serialized_options = b'\310\336\037\000'
|
|
44
|
+
_CONDITIONALORDERPLACEMENT.fields_by_name['placement_index']._options = None
|
|
45
|
+
_CONDITIONALORDERPLACEMENT.fields_by_name['placement_index']._serialized_options = b'\310\336\037\000'
|
|
46
|
+
_ORDER_TIMEINFORCE.values_by_name["TIME_IN_FORCE_FILL_OR_KILL"]._options = None
|
|
47
|
+
_ORDER_TIMEINFORCE.values_by_name["TIME_IN_FORCE_FILL_OR_KILL"]._serialized_options = b'\010\001'
|
|
48
|
+
_ORDER.fields_by_name['order_id']._options = None
|
|
49
|
+
_ORDER.fields_by_name['order_id']._serialized_options = b'\310\336\037\000'
|
|
50
|
+
_ORDER.fields_by_name['order_router_address']._options = None
|
|
51
|
+
_ORDER.fields_by_name['order_router_address']._serialized_options = b'\322\264-\024cosmos.AddressString'
|
|
52
|
+
_BUILDERCODEPARAMETERS.fields_by_name['builder_address']._options = None
|
|
53
|
+
_BUILDERCODEPARAMETERS.fields_by_name['builder_address']._serialized_options = b'\322\264-\024cosmos.AddressString'
|
|
54
|
+
_ORDERID._serialized_start=183
|
|
55
|
+
_ORDERID._serialized_end=323
|
|
56
|
+
_ORDERSFILLEDDURINGLATESTBLOCK._serialized_start=325
|
|
57
|
+
_ORDERSFILLEDDURINGLATESTBLOCK._serialized_end=409
|
|
58
|
+
_POTENTIALLYPRUNABLEORDERS._serialized_start=411
|
|
59
|
+
_POTENTIALLYPRUNABLEORDERS._serialized_end=491
|
|
60
|
+
_ORDERFILLSTATE._serialized_start=493
|
|
61
|
+
_ORDERFILLSTATE._serialized_end=561
|
|
62
|
+
_STATEFULORDERTIMESLICEVALUE._serialized_start=563
|
|
63
|
+
_STATEFULORDERTIMESLICEVALUE._serialized_end=645
|
|
64
|
+
_LONGTERMORDERPLACEMENT._serialized_start=648
|
|
65
|
+
_LONGTERMORDERPLACEMENT._serialized_end=790
|
|
66
|
+
_TWAPORDERPLACEMENT._serialized_start=792
|
|
67
|
+
_TWAPORDERPLACEMENT._serialized_end=911
|
|
68
|
+
_CONDITIONALORDERPLACEMENT._serialized_start=914
|
|
69
|
+
_CONDITIONALORDERPLACEMENT._serialized_end=1122
|
|
70
|
+
_ORDER._serialized_start=1125
|
|
71
|
+
_ORDER._serialized_end=2051
|
|
72
|
+
_ORDER_SIDE._serialized_start=1730
|
|
73
|
+
_ORDER_SIDE._serialized_end=1787
|
|
74
|
+
_ORDER_TIMEINFORCE._serialized_start=1790
|
|
75
|
+
_ORDER_TIMEINFORCE._serialized_end=1922
|
|
76
|
+
_ORDER_CONDITIONTYPE._serialized_start=1924
|
|
77
|
+
_ORDER_CONDITIONTYPE._serialized_end=2033
|
|
78
|
+
_TWAPPARAMETERS._serialized_start=2053
|
|
79
|
+
_TWAPPARAMETERS._serialized_end=2130
|
|
80
|
+
_BUILDERCODEPARAMETERS._serialized_start=2132
|
|
81
|
+
_BUILDERCODEPARAMETERS._serialized_end=2223
|
|
82
|
+
_TRANSACTIONORDERING._serialized_start=2225
|
|
83
|
+
_TRANSACTIONORDERING._serialized_end=2295
|
|
84
|
+
_STREAMLIQUIDATIONORDER._serialized_start=2298
|
|
85
|
+
_STREAMLIQUIDATIONORDER._serialized_end=2467
|
|
86
|
+
# @@protoc_insertion_point(module_scope)
|