injectivejs 1.11.13 → 1.11.15
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.
- package/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/auth/v1beta1/auth.d.ts +70 -6
- package/cosmos/auth/v1beta1/auth.js +28 -0
- package/cosmos/auth/v1beta1/query.d.ts +362 -32
- package/cosmos/auth/v1beta1/query.js +148 -0
- package/cosmos/auth/v1beta1/query.rpc.func.d.ts +77 -0
- package/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +27 -0
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +40 -0
- package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +24 -0
- package/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
- package/cosmos/bank/v1beta1/bank.d.ts +136 -18
- package/cosmos/bank/v1beta1/bank.js +48 -0
- package/cosmos/bank/v1beta1/query.d.ts +619 -86
- package/cosmos/bank/v1beta1/query.js +199 -0
- package/cosmos/bank/v1beta1/query.rpc.func.d.ts +115 -0
- package/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
- package/cosmos/bank/v1beta1/tx.d.ts +151 -14
- package/cosmos/bank/v1beta1/tx.js +61 -0
- package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +32 -0
- package/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -68
- package/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -0
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/bundle.d.ts +8 -8
- package/cosmos/bundle.js +15 -15
- package/cosmos/crypto/ed25519/keys.d.ts +29 -0
- package/cosmos/crypto/ed25519/keys.js +17 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
- package/cosmos/crypto/secp256k1/keys.js +16 -0
- package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
- package/cosmos/crypto/secp256r1/keys.js +12 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/cosmos/distribution/v1beta1/tx.d.ts +223 -10
- package/cosmos/distribution/v1beta1/tx.js +109 -0
- package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +57 -0
- package/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
- package/cosmos/feegrant/v1beta1/tx.d.ts +135 -19
- package/cosmos/feegrant/v1beta1/tx.js +41 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +22 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
- package/cosmos/gov/v1/gov.d.ts +343 -80
- package/cosmos/gov/v1/gov.js +61 -0
- package/cosmos/gov/v1/tx.d.ts +376 -65
- package/cosmos/gov/v1/tx.js +96 -0
- package/cosmos/gov/v1/tx.rpc.func.d.ts +48 -0
- package/cosmos/gov/v1/tx.rpc.func.js +48 -13
- package/cosmos/gov/v1beta1/gov.d.ts +293 -61
- package/cosmos/gov/v1beta1/gov.js +59 -0
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +97 -0
- package/cosmos/gov/v1beta1/query.rpc.func.d.ts +48 -0
- package/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
- package/cosmos/gov/v1beta1/tx.d.ts +213 -37
- package/cosmos/gov/v1beta1/tx.js +53 -0
- package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +26 -0
- package/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
- package/cosmos/group/v1/tx.d.ts +804 -155
- package/cosmos/group/v1/tx.js +168 -0
- package/cosmos/group/v1/tx.rpc.func.d.ts +84 -0
- package/cosmos/group/v1/tx.rpc.func.js +84 -14
- package/cosmos/group/v1/types.d.ts +398 -83
- package/cosmos/group/v1/types.js +82 -0
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +138 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +186 -0
- package/cosmos/staking/v1beta1/query.rpc.func.d.ts +109 -0
- package/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
- package/cosmos/staking/v1beta1/staking.d.ts +631 -117
- package/cosmos/staking/v1beta1/staking.js +153 -0
- package/cosmos/staking/v1beta1/tx.d.ts +242 -22
- package/cosmos/staking/v1beta1/tx.js +96 -0
- package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +50 -0
- package/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/cosmos/tx/v1beta1/service.d.ts +375 -46
- package/cosmos/tx/v1beta1/service.js +145 -0
- package/cosmos/tx/v1beta1/service.rpc.func.d.ts +64 -0
- package/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
- package/cosmos/tx/v1beta1/tx.d.ts +303 -46
- package/cosmos/tx/v1beta1/tx.js +99 -0
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
- package/cosmos/upgrade/v1beta1/upgrade.js +34 -0
- package/cosmos/vesting/v1beta1/tx.d.ts +102 -6
- package/cosmos/vesting/v1beta1/tx.js +48 -0
- package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +25 -0
- package/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
- package/cosmos/vesting/v1beta1/vesting.d.ts +105 -8
- package/cosmos/vesting/v1beta1/vesting.js +45 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/cosmwasm/bundle.d.ts +2 -2
- package/cosmwasm/bundle.js +3 -3
- package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
- package/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
- package/cosmwasm/wasm/v1/query.d.ts +615 -82
- package/cosmwasm/wasm/v1/query.js +195 -0
- package/cosmwasm/wasm/v1/query.rpc.func.d.ts +85 -0
- package/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
- package/cosmwasm/wasm/v1/tx.d.ts +956 -170
- package/cosmwasm/wasm/v1/tx.js +242 -0
- package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +128 -0
- package/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
- package/cosmwasm/wasm/v1/types.d.ts +217 -40
- package/cosmwasm/wasm/v1/types.js +49 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/auth/v1beta1/auth.js +28 -0
- package/esm/cosmos/auth/v1beta1/query.js +148 -0
- package/esm/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
- package/esm/cosmos/authz/v1beta1/authz.js +27 -0
- package/esm/cosmos/authz/v1beta1/tx.js +40 -0
- package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
- package/esm/cosmos/bank/v1beta1/bank.js +48 -0
- package/esm/cosmos/bank/v1beta1/query.js +199 -0
- package/esm/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
- package/esm/cosmos/bank/v1beta1/tx.js +61 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
- package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/bundle.js +8 -8
- package/esm/cosmos/crypto/ed25519/keys.js +17 -0
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
- package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/esm/cosmos/distribution/v1beta1/tx.js +109 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
- package/esm/cosmos/feegrant/v1beta1/tx.js +41 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
- package/esm/cosmos/gov/v1/gov.js +61 -0
- package/esm/cosmos/gov/v1/tx.js +96 -0
- package/esm/cosmos/gov/v1/tx.rpc.func.js +48 -13
- package/esm/cosmos/gov/v1beta1/gov.js +59 -0
- package/esm/cosmos/gov/v1beta1/query.js +97 -0
- package/esm/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
- package/esm/cosmos/gov/v1beta1/tx.js +53 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
- package/esm/cosmos/group/v1/tx.js +168 -0
- package/esm/cosmos/group/v1/tx.rpc.func.js +84 -14
- package/esm/cosmos/group/v1/types.js +82 -0
- package/esm/cosmos/ics23/v1/proofs.js +138 -0
- package/esm/cosmos/staking/v1beta1/query.js +186 -0
- package/esm/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
- package/esm/cosmos/staking/v1beta1/staking.js +153 -0
- package/esm/cosmos/staking/v1beta1/tx.js +96 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
- package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/esm/cosmos/tx/v1beta1/service.js +145 -0
- package/esm/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
- package/esm/cosmos/tx/v1beta1/tx.js +99 -0
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +34 -0
- package/esm/cosmos/vesting/v1beta1/tx.js +48 -0
- package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
- package/esm/cosmos/vesting/v1beta1/vesting.js +45 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/cosmwasm/bundle.js +2 -2
- package/esm/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
- package/esm/cosmwasm/wasm/v1/query.js +195 -0
- package/esm/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
- package/esm/cosmwasm/wasm/v1/tx.js +242 -0
- package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
- package/esm/cosmwasm/wasm/v1/types.js +49 -0
- package/esm/extern.js +1 -1
- package/esm/google/api/http.js +283 -0
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +215 -0
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helper-func-types.js +1 -1
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/transfer/v1/transfer.js +24 -0
- package/esm/ibc/applications/transfer/v1/tx.js +27 -0
- package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
- package/esm/ibc/bundle.js +1 -1
- package/esm/ibc/core/channel/v1/channel.js +70 -0
- package/esm/ibc/core/channel/v1/tx.js +242 -0
- package/esm/ibc/core/channel/v1/tx.rpc.func.js +115 -20
- package/esm/ibc/core/channel/v1/upgrade.js +25 -0
- package/esm/ibc/core/client/v1/client.js +45 -0
- package/esm/ibc/core/client/v1/tx.js +90 -0
- package/esm/ibc/core/client/v1/tx.rpc.func.js +42 -7
- package/esm/ibc/core/commitment/v1/commitment.js +25 -0
- package/esm/ibc/core/connection/v1/connection.js +47 -0
- package/esm/ibc/core/connection/v1/tx.js +66 -0
- package/esm/ibc/core/connection/v1/tx.rpc.func.js +32 -7
- package/esm/index.js +1 -1
- package/esm/injective/auction/v1beta1/auction.js +30 -0
- package/esm/injective/auction/v1beta1/genesis.js +6 -0
- package/esm/injective/auction/v1beta1/query.js +52 -0
- package/esm/injective/auction/v1beta1/query.rpc.func.js +23 -3
- package/esm/injective/auction/v1beta1/tx.js +21 -0
- package/esm/injective/auction/v1beta1/tx.rpc.func.js +11 -1
- package/esm/injective/bundle.js +14 -14
- package/esm/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
- package/esm/injective/exchange/v1beta1/authz.js +58 -0
- package/esm/injective/exchange/v1beta1/events.js +180 -0
- package/esm/injective/exchange/v1beta1/exchange.js +263 -0
- package/esm/injective/exchange/v1beta1/genesis.js +89 -0
- package/esm/injective/exchange/v1beta1/proposal.js +113 -0
- package/esm/injective/exchange/v1beta1/query.js +864 -0
- package/esm/injective/exchange/v1beta1/query.rpc.func.js +364 -64
- package/esm/injective/exchange/v1beta1/tx.js +487 -0
- package/esm/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
- package/esm/injective/insurance/v1beta1/events.js +25 -0
- package/esm/injective/insurance/v1beta1/genesis.js +6 -0
- package/esm/injective/insurance/v1beta1/insurance.js +15 -0
- package/esm/injective/insurance/v1beta1/query.js +84 -0
- package/esm/injective/insurance/v1beta1/query.rpc.func.js +37 -7
- package/esm/injective/insurance/v1beta1/tx.js +46 -0
- package/esm/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
- package/esm/injective/ocr/v1beta1/genesis.js +41 -0
- package/esm/injective/ocr/v1beta1/ocr.js +108 -0
- package/esm/injective/ocr/v1beta1/query.js +70 -0
- package/esm/injective/ocr/v1beta1/query.rpc.func.js +42 -7
- package/esm/injective/ocr/v1beta1/tx.js +90 -0
- package/esm/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
- package/esm/injective/oracle/v1beta1/events.js +56 -0
- package/esm/injective/oracle/v1beta1/genesis.js +11 -0
- package/esm/injective/oracle/v1beta1/oracle.js +122 -0
- package/esm/injective/oracle/v1beta1/proposal.js +55 -0
- package/esm/injective/oracle/v1beta1/query.js +240 -0
- package/esm/injective/oracle/v1beta1/query.rpc.func.js +98 -13
- package/esm/injective/oracle/v1beta1/tx.js +93 -0
- package/esm/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
- package/esm/injective/peggy/v1/attestation.js +31 -0
- package/esm/injective/peggy/v1/batch.js +12 -0
- package/esm/injective/peggy/v1/events.js +85 -0
- package/esm/injective/peggy/v1/genesis.js +6 -0
- package/esm/injective/peggy/v1/msgs.js +223 -0
- package/esm/injective/peggy/v1/msgs.rpc.func.js +73 -3
- package/esm/injective/peggy/v1/params.js +5 -0
- package/esm/injective/peggy/v1/pool.js +11 -0
- package/esm/injective/peggy/v1/proposal.js +10 -0
- package/esm/injective/peggy/v1/query.js +214 -0
- package/esm/injective/peggy/v1/query.rpc.func.js +110 -5
- package/esm/injective/peggy/v1/types.js +37 -0
- package/esm/injective/permissions/v1beta1/events.js +5 -0
- package/esm/injective/permissions/v1beta1/genesis.js +6 -0
- package/esm/injective/permissions/v1beta1/params.js +6 -0
- package/esm/injective/permissions/v1beta1/permissions.js +33 -0
- package/esm/injective/permissions/v1beta1/query.js +74 -0
- package/esm/injective/permissions/v1beta1/query.rpc.func.js +43 -13
- package/esm/injective/permissions/v1beta1/tx.js +90 -0
- package/esm/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
- package/esm/injective/stream/v1beta1/query.js +110 -0
- package/esm/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
- package/esm/injective/tokenfactory/v1beta1/events.js +25 -0
- package/esm/injective/tokenfactory/v1beta1/genesis.js +14 -0
- package/esm/injective/tokenfactory/v1beta1/params.js +6 -0
- package/esm/injective/tokenfactory/v1beta1/query.js +54 -0
- package/esm/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
- package/esm/injective/tokenfactory/v1beta1/tx.js +83 -0
- package/esm/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
- package/esm/injective/types/v1beta1/account.js +7 -0
- package/esm/injective/types/v1beta1/tx_ext.js +5 -0
- package/esm/injective/types/v1beta1/tx_response.js +13 -0
- package/esm/injective/wasmx/v1/events.js +15 -0
- package/esm/injective/wasmx/v1/genesis.js +11 -0
- package/esm/injective/wasmx/v1/proposal.js +25 -0
- package/esm/injective/wasmx/v1/query.js +39 -0
- package/esm/injective/wasmx/v1/query.rpc.func.js +18 -3
- package/esm/injective/wasmx/v1/tx.js +63 -0
- package/esm/injective/wasmx/v1/tx.rpc.func.js +30 -0
- package/esm/injective/wasmx/v1/wasmx.js +10 -0
- package/esm/registry.js +1 -1
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +29 -0
- package/esm/tendermint/types/block.js +5 -0
- package/esm/tendermint/types/evidence.js +22 -0
- package/esm/tendermint/types/params.js +46 -0
- package/esm/tendermint/types/types.js +87 -0
- package/esm/tendermint/types/validator.js +15 -0
- package/esm/tendermint/version/types.js +16 -0
- package/esm/types.js +1 -1
- package/esm/utf8.js +1 -1
- package/esm/varint.js +1 -1
- package/extern.d.ts +1 -1
- package/extern.js +1 -1
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +283 -0
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +715 -86
- package/google/protobuf/descriptor.js +215 -0
- package/google/protobuf/duration.d.ts +69 -0
- package/google/protobuf/duration.js +63 -0
- package/google/protobuf/timestamp.d.ts +100 -0
- package/google/protobuf/timestamp.js +94 -0
- package/helper-func-types.d.ts +1 -1
- package/helper-func-types.js +1 -1
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/transfer/v1/transfer.d.ts +54 -4
- package/ibc/applications/transfer/v1/transfer.js +24 -0
- package/ibc/applications/transfer/v1/tx.d.ts +125 -26
- package/ibc/applications/transfer/v1/tx.js +27 -0
- package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +12 -0
- package/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
- package/ibc/bundle.d.ts +1 -1
- package/ibc/bundle.js +2 -2
- package/ibc/core/channel/v1/channel.d.ts +316 -64
- package/ibc/core/channel/v1/channel.js +70 -0
- package/ibc/core/channel/v1/tx.d.ts +676 -70
- package/ibc/core/channel/v1/tx.js +242 -0
- package/ibc/core/channel/v1/tx.rpc.func.d.ts +115 -0
- package/ibc/core/channel/v1/tx.rpc.func.js +115 -20
- package/ibc/core/channel/v1/upgrade.d.ts +55 -4
- package/ibc/core/channel/v1/upgrade.js +25 -0
- package/ibc/core/client/v1/client.d.ts +129 -18
- package/ibc/core/client/v1/client.js +45 -0
- package/ibc/core/client/v1/tx.d.ts +338 -56
- package/ibc/core/client/v1/tx.js +90 -0
- package/ibc/core/client/v1/tx.rpc.func.d.ts +42 -0
- package/ibc/core/client/v1/tx.rpc.func.js +42 -7
- package/ibc/core/commitment/v1/commitment.d.ts +43 -0
- package/ibc/core/commitment/v1/commitment.js +25 -0
- package/ibc/core/connection/v1/connection.d.ts +197 -36
- package/ibc/core/connection/v1/connection.js +47 -0
- package/ibc/core/connection/v1/tx.d.ts +250 -56
- package/ibc/core/connection/v1/tx.js +66 -0
- package/ibc/core/connection/v1/tx.rpc.func.d.ts +32 -0
- package/ibc/core/connection/v1/tx.rpc.func.js +32 -7
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/injective/auction/v1beta1/auction.d.ts +168 -26
- package/injective/auction/v1beta1/auction.js +30 -0
- package/injective/auction/v1beta1/genesis.d.ts +48 -12
- package/injective/auction/v1beta1/genesis.js +6 -0
- package/injective/auction/v1beta1/query.d.ts +138 -10
- package/injective/auction/v1beta1/query.js +52 -0
- package/injective/auction/v1beta1/query.rpc.func.d.ts +23 -0
- package/injective/auction/v1beta1/query.rpc.func.js +23 -3
- package/injective/auction/v1beta1/tx.d.ts +81 -8
- package/injective/auction/v1beta1/tx.js +21 -0
- package/injective/auction/v1beta1/tx.rpc.func.d.ts +11 -0
- package/injective/auction/v1beta1/tx.rpc.func.js +11 -1
- package/injective/bundle.d.ts +14 -14
- package/injective/bundle.js +18 -18
- package/injective/crypto/v1beta1/ethsecp256k1/keys.d.ts +27 -0
- package/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
- package/injective/exchange/v1beta1/authz.d.ts +174 -6
- package/injective/exchange/v1beta1/authz.js +58 -0
- package/injective/exchange/v1beta1/events.d.ts +546 -2
- package/injective/exchange/v1beta1/events.js +180 -0
- package/injective/exchange/v1beta1/exchange.d.ts +1305 -188
- package/injective/exchange/v1beta1/exchange.js +263 -0
- package/injective/exchange/v1beta1/genesis.d.ts +357 -38
- package/injective/exchange/v1beta1/genesis.js +89 -0
- package/injective/exchange/v1beta1/proposal.d.ts +589 -94
- package/injective/exchange/v1beta1/proposal.js +113 -0
- package/injective/exchange/v1beta1/query.d.ts +2162 -136
- package/injective/exchange/v1beta1/query.js +864 -0
- package/injective/exchange/v1beta1/query.rpc.func.d.ts +364 -0
- package/injective/exchange/v1beta1/query.rpc.func.js +364 -64
- package/injective/exchange/v1beta1/tx.d.ts +1503 -170
- package/injective/exchange/v1beta1/tx.js +487 -0
- package/injective/exchange/v1beta1/tx.rpc.func.d.ts +228 -0
- package/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
- package/injective/insurance/v1beta1/events.d.ts +111 -12
- package/injective/insurance/v1beta1/events.js +25 -0
- package/injective/insurance/v1beta1/genesis.d.ts +30 -6
- package/injective/insurance/v1beta1/genesis.js +6 -0
- package/injective/insurance/v1beta1/insurance.d.ts +117 -24
- package/injective/insurance/v1beta1/insurance.js +15 -0
- package/injective/insurance/v1beta1/query.d.ts +162 -2
- package/injective/insurance/v1beta1/query.js +84 -0
- package/injective/insurance/v1beta1/query.rpc.func.d.ts +37 -0
- package/injective/insurance/v1beta1/query.rpc.func.js +37 -7
- package/injective/insurance/v1beta1/tx.d.ts +186 -24
- package/injective/insurance/v1beta1/tx.js +46 -0
- package/injective/insurance/v1beta1/tx.rpc.func.d.ts +25 -0
- package/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
- package/injective/ocr/v1beta1/genesis.d.ts +171 -18
- package/injective/ocr/v1beta1/genesis.js +41 -0
- package/injective/ocr/v1beta1/ocr.d.ts +514 -68
- package/injective/ocr/v1beta1/ocr.js +108 -0
- package/injective/ocr/v1beta1/query.d.ts +210 -0
- package/injective/ocr/v1beta1/query.js +70 -0
- package/injective/ocr/v1beta1/query.rpc.func.d.ts +42 -0
- package/injective/ocr/v1beta1/query.rpc.func.js +42 -7
- package/injective/ocr/v1beta1/tx.d.ts +360 -30
- package/injective/ocr/v1beta1/tx.js +90 -0
- package/injective/ocr/v1beta1/tx.rpc.func.d.ts +57 -0
- package/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
- package/injective/oracle/v1beta1/events.d.ts +174 -4
- package/injective/oracle/v1beta1/events.js +56 -0
- package/injective/oracle/v1beta1/genesis.d.ts +39 -4
- package/injective/oracle/v1beta1/genesis.js +11 -0
- package/injective/oracle/v1beta1/oracle.d.ts +514 -52
- package/injective/oracle/v1beta1/oracle.js +122 -0
- package/injective/oracle/v1beta1/proposal.d.ts +165 -0
- package/injective/oracle/v1beta1/proposal.js +55 -0
- package/injective/oracle/v1beta1/query.d.ts +502 -0
- package/injective/oracle/v1beta1/query.js +240 -0
- package/injective/oracle/v1beta1/query.rpc.func.d.ts +98 -0
- package/injective/oracle/v1beta1/query.rpc.func.js +98 -13
- package/injective/oracle/v1beta1/tx.d.ts +251 -10
- package/injective/oracle/v1beta1/tx.js +93 -0
- package/injective/oracle/v1beta1/tx.rpc.func.d.ts +52 -0
- package/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
- package/injective/peggy/v1/attestation.d.ts +43 -0
- package/injective/peggy/v1/attestation.js +31 -0
- package/injective/peggy/v1/batch.d.ts +36 -4
- package/injective/peggy/v1/batch.js +12 -0
- package/injective/peggy/v1/events.d.ts +255 -0
- package/injective/peggy/v1/events.js +85 -0
- package/injective/peggy/v1/genesis.d.ts +18 -2
- package/injective/peggy/v1/genesis.js +6 -0
- package/injective/peggy/v1/msgs.d.ts +473 -10
- package/injective/peggy/v1/msgs.js +223 -0
- package/injective/peggy/v1/msgs.rpc.func.d.ts +73 -0
- package/injective/peggy/v1/msgs.rpc.func.js +73 -3
- package/injective/peggy/v1/params.d.ts +15 -0
- package/injective/peggy/v1/params.js +5 -0
- package/injective/peggy/v1/pool.d.ts +33 -2
- package/injective/peggy/v1/pool.js +11 -0
- package/injective/peggy/v1/proposal.d.ts +30 -0
- package/injective/peggy/v1/proposal.js +10 -0
- package/injective/peggy/v1/query.d.ts +626 -0
- package/injective/peggy/v1/query.js +214 -0
- package/injective/peggy/v1/query.rpc.func.d.ts +110 -0
- package/injective/peggy/v1/query.rpc.func.js +110 -5
- package/injective/peggy/v1/types.d.ts +85 -6
- package/injective/peggy/v1/types.js +37 -0
- package/injective/permissions/v1beta1/events.d.ts +15 -0
- package/injective/permissions/v1beta1/events.js +5 -0
- package/injective/permissions/v1beta1/genesis.d.ts +24 -4
- package/injective/permissions/v1beta1/genesis.js +6 -0
- package/injective/permissions/v1beta1/params.d.ts +18 -2
- package/injective/permissions/v1beta1/params.js +6 -0
- package/injective/permissions/v1beta1/permissions.d.ts +117 -12
- package/injective/permissions/v1beta1/permissions.js +33 -0
- package/injective/permissions/v1beta1/query.d.ts +180 -6
- package/injective/permissions/v1beta1/query.js +74 -0
- package/injective/permissions/v1beta1/query.rpc.func.d.ts +43 -0
- package/injective/permissions/v1beta1/query.rpc.func.js +43 -13
- package/injective/permissions/v1beta1/tx.d.ts +318 -16
- package/injective/permissions/v1beta1/tx.js +90 -0
- package/injective/permissions/v1beta1/tx.rpc.func.d.ts +35 -0
- package/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
- package/injective/stream/v1beta1/query.d.ts +336 -2
- package/injective/stream/v1beta1/query.js +110 -0
- package/injective/tokenfactory/v1beta1/authorityMetadata.d.ts +20 -2
- package/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
- package/injective/tokenfactory/v1beta1/events.d.ts +75 -0
- package/injective/tokenfactory/v1beta1/events.js +25 -0
- package/injective/tokenfactory/v1beta1/genesis.d.ts +38 -4
- package/injective/tokenfactory/v1beta1/genesis.js +14 -0
- package/injective/tokenfactory/v1beta1/params.d.ts +18 -2
- package/injective/tokenfactory/v1beta1/params.js +6 -0
- package/injective/tokenfactory/v1beta1/query.d.ts +120 -6
- package/injective/tokenfactory/v1beta1/query.js +54 -0
- package/injective/tokenfactory/v1beta1/query.rpc.func.d.ts +27 -0
- package/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
- package/injective/tokenfactory/v1beta1/tx.d.ts +183 -4
- package/injective/tokenfactory/v1beta1/tx.js +83 -0
- package/injective/tokenfactory/v1beta1/tx.rpc.func.d.ts +30 -0
- package/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
- package/injective/types/v1beta1/account.d.ts +13 -0
- package/injective/types/v1beta1/account.js +7 -0
- package/injective/types/v1beta1/tx_ext.d.ts +15 -0
- package/injective/types/v1beta1/tx_ext.js +5 -0
- package/injective/types/v1beta1/tx_response.d.ts +31 -2
- package/injective/types/v1beta1/tx_response.js +13 -0
- package/injective/wasmx/v1/events.d.ts +45 -0
- package/injective/wasmx/v1/events.js +15 -0
- package/injective/wasmx/v1/genesis.d.ts +39 -4
- package/injective/wasmx/v1/genesis.js +11 -0
- package/injective/wasmx/v1/proposal.d.ts +99 -8
- package/injective/wasmx/v1/proposal.js +25 -0
- package/injective/wasmx/v1/query.d.ts +85 -2
- package/injective/wasmx/v1/query.js +39 -0
- package/injective/wasmx/v1/query.rpc.func.d.ts +18 -0
- package/injective/wasmx/v1/query.rpc.func.js +18 -3
- package/injective/wasmx/v1/tx.d.ts +253 -26
- package/injective/wasmx/v1/tx.js +63 -0
- package/injective/wasmx/v1/tx.rpc.func.d.ts +30 -0
- package/injective/wasmx/v1/tx.rpc.func.js +30 -0
- package/injective/wasmx/v1/wasmx.d.ts +60 -10
- package/injective/wasmx/v1/wasmx.js +10 -0
- package/package.json +9 -9
- package/registry.d.ts +1 -1
- package/registry.js +1 -1
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -0
- package/tendermint/crypto/keys.d.ts +18 -2
- package/tendermint/crypto/keys.js +6 -0
- package/tendermint/crypto/proof.d.ts +89 -6
- package/tendermint/crypto/proof.js +29 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +5 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +22 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +46 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +87 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +15 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +1 -1
- package/types.js +1 -1
- package/utf8.d.ts +1 -1
- package/utf8.js +1 -1
- package/varint.d.ts +1 -1
- package/varint.js +1 -1
|
@@ -92,6 +92,11 @@ function createBaseSubaccount() {
|
|
|
92
92
|
subaccountNonce: 0
|
|
93
93
|
};
|
|
94
94
|
}
|
|
95
|
+
/**
|
|
96
|
+
* @name Subaccount
|
|
97
|
+
* @package injective.exchange.v1beta1
|
|
98
|
+
* @see proto type: injective.exchange.v1beta1.Subaccount
|
|
99
|
+
*/
|
|
95
100
|
export const Subaccount = {
|
|
96
101
|
typeUrl: "/injective.exchange.v1beta1.Subaccount",
|
|
97
102
|
is(o) {
|
|
@@ -174,6 +179,11 @@ function createBaseQuerySubaccountOrdersRequest() {
|
|
|
174
179
|
marketId: ""
|
|
175
180
|
};
|
|
176
181
|
}
|
|
182
|
+
/**
|
|
183
|
+
* @name QuerySubaccountOrdersRequest
|
|
184
|
+
* @package injective.exchange.v1beta1
|
|
185
|
+
* @see proto type: injective.exchange.v1beta1.QuerySubaccountOrdersRequest
|
|
186
|
+
*/
|
|
177
187
|
export const QuerySubaccountOrdersRequest = {
|
|
178
188
|
typeUrl: "/injective.exchange.v1beta1.QuerySubaccountOrdersRequest",
|
|
179
189
|
is(o) {
|
|
@@ -256,6 +266,11 @@ function createBaseQuerySubaccountOrdersResponse() {
|
|
|
256
266
|
sellOrders: []
|
|
257
267
|
};
|
|
258
268
|
}
|
|
269
|
+
/**
|
|
270
|
+
* @name QuerySubaccountOrdersResponse
|
|
271
|
+
* @package injective.exchange.v1beta1
|
|
272
|
+
* @see proto type: injective.exchange.v1beta1.QuerySubaccountOrdersResponse
|
|
273
|
+
*/
|
|
259
274
|
export const QuerySubaccountOrdersResponse = {
|
|
260
275
|
typeUrl: "/injective.exchange.v1beta1.QuerySubaccountOrdersResponse",
|
|
261
276
|
is(o) {
|
|
@@ -350,6 +365,11 @@ function createBaseSubaccountOrderbookMetadataWithMarket() {
|
|
|
350
365
|
isBuy: false
|
|
351
366
|
};
|
|
352
367
|
}
|
|
368
|
+
/**
|
|
369
|
+
* @name SubaccountOrderbookMetadataWithMarket
|
|
370
|
+
* @package injective.exchange.v1beta1
|
|
371
|
+
* @see proto type: injective.exchange.v1beta1.SubaccountOrderbookMetadataWithMarket
|
|
372
|
+
*/
|
|
353
373
|
export const SubaccountOrderbookMetadataWithMarket = {
|
|
354
374
|
typeUrl: "/injective.exchange.v1beta1.SubaccountOrderbookMetadataWithMarket",
|
|
355
375
|
is(o) {
|
|
@@ -445,6 +465,13 @@ export const SubaccountOrderbookMetadataWithMarket = {
|
|
|
445
465
|
function createBaseQueryExchangeParamsRequest() {
|
|
446
466
|
return {};
|
|
447
467
|
}
|
|
468
|
+
/**
|
|
469
|
+
* QueryExchangeParamsRequest is the request type for the Query/ExchangeParams
|
|
470
|
+
* RPC method.
|
|
471
|
+
* @name QueryExchangeParamsRequest
|
|
472
|
+
* @package injective.exchange.v1beta1
|
|
473
|
+
* @see proto type: injective.exchange.v1beta1.QueryExchangeParamsRequest
|
|
474
|
+
*/
|
|
448
475
|
export const QueryExchangeParamsRequest = {
|
|
449
476
|
typeUrl: "/injective.exchange.v1beta1.QueryExchangeParamsRequest",
|
|
450
477
|
is(o) {
|
|
@@ -504,6 +531,13 @@ function createBaseQueryExchangeParamsResponse() {
|
|
|
504
531
|
params: Params.fromPartial({})
|
|
505
532
|
};
|
|
506
533
|
}
|
|
534
|
+
/**
|
|
535
|
+
* QueryExchangeParamsRequest is the response type for the Query/ExchangeParams
|
|
536
|
+
* RPC method.
|
|
537
|
+
* @name QueryExchangeParamsResponse
|
|
538
|
+
* @package injective.exchange.v1beta1
|
|
539
|
+
* @see proto type: injective.exchange.v1beta1.QueryExchangeParamsResponse
|
|
540
|
+
*/
|
|
507
541
|
export const QueryExchangeParamsResponse = {
|
|
508
542
|
typeUrl: "/injective.exchange.v1beta1.QueryExchangeParamsResponse",
|
|
509
543
|
is(o) {
|
|
@@ -580,6 +614,13 @@ function createBaseQuerySubaccountDepositsRequest() {
|
|
|
580
614
|
subaccount: undefined
|
|
581
615
|
};
|
|
582
616
|
}
|
|
617
|
+
/**
|
|
618
|
+
* QuerySubaccountDepositsRequest is the request type for the
|
|
619
|
+
* Query/SubaccountDeposits RPC method.
|
|
620
|
+
* @name QuerySubaccountDepositsRequest
|
|
621
|
+
* @package injective.exchange.v1beta1
|
|
622
|
+
* @see proto type: injective.exchange.v1beta1.QuerySubaccountDepositsRequest
|
|
623
|
+
*/
|
|
583
624
|
export const QuerySubaccountDepositsRequest = {
|
|
584
625
|
typeUrl: "/injective.exchange.v1beta1.QuerySubaccountDepositsRequest",
|
|
585
626
|
is(o) {
|
|
@@ -667,6 +708,11 @@ function createBaseQuerySubaccountDepositsResponse_DepositsEntry() {
|
|
|
667
708
|
value: undefined
|
|
668
709
|
};
|
|
669
710
|
}
|
|
711
|
+
/**
|
|
712
|
+
* @name QuerySubaccountDepositsResponse_DepositsEntry
|
|
713
|
+
* @package injective.exchange.v1beta1
|
|
714
|
+
* @see proto type: injective.exchange.v1beta1.undefined
|
|
715
|
+
*/
|
|
670
716
|
export const QuerySubaccountDepositsResponse_DepositsEntry = {
|
|
671
717
|
encode(message, writer = BinaryWriter.create()) {
|
|
672
718
|
if (message.key !== "") {
|
|
@@ -737,6 +783,13 @@ function createBaseQuerySubaccountDepositsResponse() {
|
|
|
737
783
|
deposits: {}
|
|
738
784
|
};
|
|
739
785
|
}
|
|
786
|
+
/**
|
|
787
|
+
* QuerySubaccountDepositsResponse is the response type for the
|
|
788
|
+
* Query/SubaccountDeposits RPC method.
|
|
789
|
+
* @name QuerySubaccountDepositsResponse
|
|
790
|
+
* @package injective.exchange.v1beta1
|
|
791
|
+
* @see proto type: injective.exchange.v1beta1.QuerySubaccountDepositsResponse
|
|
792
|
+
*/
|
|
740
793
|
export const QuerySubaccountDepositsResponse = {
|
|
741
794
|
typeUrl: "/injective.exchange.v1beta1.QuerySubaccountDepositsResponse",
|
|
742
795
|
is(o) {
|
|
@@ -829,6 +882,13 @@ export const QuerySubaccountDepositsResponse = {
|
|
|
829
882
|
function createBaseQueryExchangeBalancesRequest() {
|
|
830
883
|
return {};
|
|
831
884
|
}
|
|
885
|
+
/**
|
|
886
|
+
* QueryExchangeBalancesRequest is the request type for the
|
|
887
|
+
* Query/ExchangeBalances RPC method.
|
|
888
|
+
* @name QueryExchangeBalancesRequest
|
|
889
|
+
* @package injective.exchange.v1beta1
|
|
890
|
+
* @see proto type: injective.exchange.v1beta1.QueryExchangeBalancesRequest
|
|
891
|
+
*/
|
|
832
892
|
export const QueryExchangeBalancesRequest = {
|
|
833
893
|
typeUrl: "/injective.exchange.v1beta1.QueryExchangeBalancesRequest",
|
|
834
894
|
is(o) {
|
|
@@ -888,6 +948,13 @@ function createBaseQueryExchangeBalancesResponse() {
|
|
|
888
948
|
balances: []
|
|
889
949
|
};
|
|
890
950
|
}
|
|
951
|
+
/**
|
|
952
|
+
* QuerySubaccountDepositsResponse is the response type for the
|
|
953
|
+
* Query/SubaccountDeposits RPC method.
|
|
954
|
+
* @name QueryExchangeBalancesResponse
|
|
955
|
+
* @package injective.exchange.v1beta1
|
|
956
|
+
* @see proto type: injective.exchange.v1beta1.QueryExchangeBalancesResponse
|
|
957
|
+
*/
|
|
891
958
|
export const QueryExchangeBalancesResponse = {
|
|
892
959
|
typeUrl: "/injective.exchange.v1beta1.QueryExchangeBalancesResponse",
|
|
893
960
|
is(o) {
|
|
@@ -966,6 +1033,13 @@ function createBaseQueryAggregateVolumeRequest() {
|
|
|
966
1033
|
account: ""
|
|
967
1034
|
};
|
|
968
1035
|
}
|
|
1036
|
+
/**
|
|
1037
|
+
* QueryAggregateVolumeRequest is the request type for the Query/AggregateVolume
|
|
1038
|
+
* RPC method.
|
|
1039
|
+
* @name QueryAggregateVolumeRequest
|
|
1040
|
+
* @package injective.exchange.v1beta1
|
|
1041
|
+
* @see proto type: injective.exchange.v1beta1.QueryAggregateVolumeRequest
|
|
1042
|
+
*/
|
|
969
1043
|
export const QueryAggregateVolumeRequest = {
|
|
970
1044
|
typeUrl: "/injective.exchange.v1beta1.QueryAggregateVolumeRequest",
|
|
971
1045
|
is(o) {
|
|
@@ -1036,6 +1110,13 @@ function createBaseQueryAggregateVolumeResponse() {
|
|
|
1036
1110
|
aggregateVolumes: []
|
|
1037
1111
|
};
|
|
1038
1112
|
}
|
|
1113
|
+
/**
|
|
1114
|
+
* QueryAggregateVolumeResponse is the response type for the
|
|
1115
|
+
* Query/AggregateVolume RPC method.
|
|
1116
|
+
* @name QueryAggregateVolumeResponse
|
|
1117
|
+
* @package injective.exchange.v1beta1
|
|
1118
|
+
* @see proto type: injective.exchange.v1beta1.QueryAggregateVolumeResponse
|
|
1119
|
+
*/
|
|
1039
1120
|
export const QueryAggregateVolumeResponse = {
|
|
1040
1121
|
typeUrl: "/injective.exchange.v1beta1.QueryAggregateVolumeResponse",
|
|
1041
1122
|
is(o) {
|
|
@@ -1115,6 +1196,13 @@ function createBaseQueryAggregateVolumesRequest() {
|
|
|
1115
1196
|
marketIds: []
|
|
1116
1197
|
};
|
|
1117
1198
|
}
|
|
1199
|
+
/**
|
|
1200
|
+
* QueryAggregateVolumesRequest is the request type for the
|
|
1201
|
+
* Query/AggregateVolumes RPC method.
|
|
1202
|
+
* @name QueryAggregateVolumesRequest
|
|
1203
|
+
* @package injective.exchange.v1beta1
|
|
1204
|
+
* @see proto type: injective.exchange.v1beta1.QueryAggregateVolumesRequest
|
|
1205
|
+
*/
|
|
1118
1206
|
export const QueryAggregateVolumesRequest = {
|
|
1119
1207
|
typeUrl: "/injective.exchange.v1beta1.QueryAggregateVolumesRequest",
|
|
1120
1208
|
is(o) {
|
|
@@ -1203,6 +1291,13 @@ function createBaseQueryAggregateVolumesResponse() {
|
|
|
1203
1291
|
aggregateMarketVolumes: []
|
|
1204
1292
|
};
|
|
1205
1293
|
}
|
|
1294
|
+
/**
|
|
1295
|
+
* QueryAggregateVolumesResponse is the response type for the
|
|
1296
|
+
* Query/AggregateVolumes RPC method.
|
|
1297
|
+
* @name QueryAggregateVolumesResponse
|
|
1298
|
+
* @package injective.exchange.v1beta1
|
|
1299
|
+
* @see proto type: injective.exchange.v1beta1.QueryAggregateVolumesResponse
|
|
1300
|
+
*/
|
|
1206
1301
|
export const QueryAggregateVolumesResponse = {
|
|
1207
1302
|
typeUrl: "/injective.exchange.v1beta1.QueryAggregateVolumesResponse",
|
|
1208
1303
|
is(o) {
|
|
@@ -1296,6 +1391,13 @@ function createBaseQueryAggregateMarketVolumeRequest() {
|
|
|
1296
1391
|
marketId: ""
|
|
1297
1392
|
};
|
|
1298
1393
|
}
|
|
1394
|
+
/**
|
|
1395
|
+
* QueryAggregateMarketVolumeRequest is the request type for the
|
|
1396
|
+
* Query/AggregateMarketVolume RPC method.
|
|
1397
|
+
* @name QueryAggregateMarketVolumeRequest
|
|
1398
|
+
* @package injective.exchange.v1beta1
|
|
1399
|
+
* @see proto type: injective.exchange.v1beta1.QueryAggregateMarketVolumeRequest
|
|
1400
|
+
*/
|
|
1299
1401
|
export const QueryAggregateMarketVolumeRequest = {
|
|
1300
1402
|
typeUrl: "/injective.exchange.v1beta1.QueryAggregateMarketVolumeRequest",
|
|
1301
1403
|
is(o) {
|
|
@@ -1366,6 +1468,13 @@ function createBaseQueryAggregateMarketVolumeResponse() {
|
|
|
1366
1468
|
volume: VolumeRecord.fromPartial({})
|
|
1367
1469
|
};
|
|
1368
1470
|
}
|
|
1471
|
+
/**
|
|
1472
|
+
* QueryAggregateMarketVolumeResponse is the response type for the
|
|
1473
|
+
* Query/AggregateMarketVolume RPC method.
|
|
1474
|
+
* @name QueryAggregateMarketVolumeResponse
|
|
1475
|
+
* @package injective.exchange.v1beta1
|
|
1476
|
+
* @see proto type: injective.exchange.v1beta1.QueryAggregateMarketVolumeResponse
|
|
1477
|
+
*/
|
|
1369
1478
|
export const QueryAggregateMarketVolumeResponse = {
|
|
1370
1479
|
typeUrl: "/injective.exchange.v1beta1.QueryAggregateMarketVolumeResponse",
|
|
1371
1480
|
is(o) {
|
|
@@ -1441,6 +1550,13 @@ function createBaseQueryDenomDecimalRequest() {
|
|
|
1441
1550
|
denom: ""
|
|
1442
1551
|
};
|
|
1443
1552
|
}
|
|
1553
|
+
/**
|
|
1554
|
+
* QueryDenomDecimalRequest is the request type for the Query/DenomDecimal RPC
|
|
1555
|
+
* method.
|
|
1556
|
+
* @name QueryDenomDecimalRequest
|
|
1557
|
+
* @package injective.exchange.v1beta1
|
|
1558
|
+
* @see proto type: injective.exchange.v1beta1.QueryDenomDecimalRequest
|
|
1559
|
+
*/
|
|
1444
1560
|
export const QueryDenomDecimalRequest = {
|
|
1445
1561
|
typeUrl: "/injective.exchange.v1beta1.QueryDenomDecimalRequest",
|
|
1446
1562
|
is(o) {
|
|
@@ -1511,6 +1627,13 @@ function createBaseQueryDenomDecimalResponse() {
|
|
|
1511
1627
|
decimal: BigInt(0)
|
|
1512
1628
|
};
|
|
1513
1629
|
}
|
|
1630
|
+
/**
|
|
1631
|
+
* QueryDenomDecimalResponse is the response type for the Query/DenomDecimal RPC
|
|
1632
|
+
* method.
|
|
1633
|
+
* @name QueryDenomDecimalResponse
|
|
1634
|
+
* @package injective.exchange.v1beta1
|
|
1635
|
+
* @see proto type: injective.exchange.v1beta1.QueryDenomDecimalResponse
|
|
1636
|
+
*/
|
|
1514
1637
|
export const QueryDenomDecimalResponse = {
|
|
1515
1638
|
typeUrl: "/injective.exchange.v1beta1.QueryDenomDecimalResponse",
|
|
1516
1639
|
is(o) {
|
|
@@ -1581,6 +1704,13 @@ function createBaseQueryDenomDecimalsRequest() {
|
|
|
1581
1704
|
denoms: []
|
|
1582
1705
|
};
|
|
1583
1706
|
}
|
|
1707
|
+
/**
|
|
1708
|
+
* QueryDenomDecimalsRequest is the request type for the Query/DenomDecimals RPC
|
|
1709
|
+
* method.
|
|
1710
|
+
* @name QueryDenomDecimalsRequest
|
|
1711
|
+
* @package injective.exchange.v1beta1
|
|
1712
|
+
* @see proto type: injective.exchange.v1beta1.QueryDenomDecimalsRequest
|
|
1713
|
+
*/
|
|
1584
1714
|
export const QueryDenomDecimalsRequest = {
|
|
1585
1715
|
typeUrl: "/injective.exchange.v1beta1.QueryDenomDecimalsRequest",
|
|
1586
1716
|
is(o) {
|
|
@@ -1654,6 +1784,13 @@ function createBaseQueryDenomDecimalsResponse() {
|
|
|
1654
1784
|
denomDecimals: []
|
|
1655
1785
|
};
|
|
1656
1786
|
}
|
|
1787
|
+
/**
|
|
1788
|
+
* QueryDenomDecimalsRequest is the response type for the Query/DenomDecimals
|
|
1789
|
+
* RPC method.
|
|
1790
|
+
* @name QueryDenomDecimalsResponse
|
|
1791
|
+
* @package injective.exchange.v1beta1
|
|
1792
|
+
* @see proto type: injective.exchange.v1beta1.QueryDenomDecimalsResponse
|
|
1793
|
+
*/
|
|
1657
1794
|
export const QueryDenomDecimalsResponse = {
|
|
1658
1795
|
typeUrl: "/injective.exchange.v1beta1.QueryDenomDecimalsResponse",
|
|
1659
1796
|
is(o) {
|
|
@@ -1732,6 +1869,13 @@ function createBaseQueryAggregateMarketVolumesRequest() {
|
|
|
1732
1869
|
marketIds: []
|
|
1733
1870
|
};
|
|
1734
1871
|
}
|
|
1872
|
+
/**
|
|
1873
|
+
* QueryAggregateMarketVolumesRequest is the request type for the
|
|
1874
|
+
* Query/AggregateMarketVolumes RPC method.
|
|
1875
|
+
* @name QueryAggregateMarketVolumesRequest
|
|
1876
|
+
* @package injective.exchange.v1beta1
|
|
1877
|
+
* @see proto type: injective.exchange.v1beta1.QueryAggregateMarketVolumesRequest
|
|
1878
|
+
*/
|
|
1735
1879
|
export const QueryAggregateMarketVolumesRequest = {
|
|
1736
1880
|
typeUrl: "/injective.exchange.v1beta1.QueryAggregateMarketVolumesRequest",
|
|
1737
1881
|
is(o) {
|
|
@@ -1805,6 +1949,13 @@ function createBaseQueryAggregateMarketVolumesResponse() {
|
|
|
1805
1949
|
volumes: []
|
|
1806
1950
|
};
|
|
1807
1951
|
}
|
|
1952
|
+
/**
|
|
1953
|
+
* QueryAggregateMarketVolumesResponse is the response type for the
|
|
1954
|
+
* Query/AggregateMarketVolumes RPC method.
|
|
1955
|
+
* @name QueryAggregateMarketVolumesResponse
|
|
1956
|
+
* @package injective.exchange.v1beta1
|
|
1957
|
+
* @see proto type: injective.exchange.v1beta1.QueryAggregateMarketVolumesResponse
|
|
1958
|
+
*/
|
|
1808
1959
|
export const QueryAggregateMarketVolumesResponse = {
|
|
1809
1960
|
typeUrl: "/injective.exchange.v1beta1.QueryAggregateMarketVolumesResponse",
|
|
1810
1961
|
is(o) {
|
|
@@ -1884,6 +2035,13 @@ function createBaseQuerySubaccountDepositRequest() {
|
|
|
1884
2035
|
denom: ""
|
|
1885
2036
|
};
|
|
1886
2037
|
}
|
|
2038
|
+
/**
|
|
2039
|
+
* QuerySubaccountDepositsRequest is the request type for the
|
|
2040
|
+
* Query/SubaccountDeposits RPC method.
|
|
2041
|
+
* @name QuerySubaccountDepositRequest
|
|
2042
|
+
* @package injective.exchange.v1beta1
|
|
2043
|
+
* @see proto type: injective.exchange.v1beta1.QuerySubaccountDepositRequest
|
|
2044
|
+
*/
|
|
1887
2045
|
export const QuerySubaccountDepositRequest = {
|
|
1888
2046
|
typeUrl: "/injective.exchange.v1beta1.QuerySubaccountDepositRequest",
|
|
1889
2047
|
is(o) {
|
|
@@ -1965,6 +2123,13 @@ function createBaseQuerySubaccountDepositResponse() {
|
|
|
1965
2123
|
deposits: undefined
|
|
1966
2124
|
};
|
|
1967
2125
|
}
|
|
2126
|
+
/**
|
|
2127
|
+
* QuerySubaccountDepositsResponse is the response type for the
|
|
2128
|
+
* Query/SubaccountDeposits RPC method.
|
|
2129
|
+
* @name QuerySubaccountDepositResponse
|
|
2130
|
+
* @package injective.exchange.v1beta1
|
|
2131
|
+
* @see proto type: injective.exchange.v1beta1.QuerySubaccountDepositResponse
|
|
2132
|
+
*/
|
|
1968
2133
|
export const QuerySubaccountDepositResponse = {
|
|
1969
2134
|
typeUrl: "/injective.exchange.v1beta1.QuerySubaccountDepositResponse",
|
|
1970
2135
|
is(o) {
|
|
@@ -2041,6 +2206,13 @@ function createBaseQuerySpotMarketsRequest() {
|
|
|
2041
2206
|
marketIds: []
|
|
2042
2207
|
};
|
|
2043
2208
|
}
|
|
2209
|
+
/**
|
|
2210
|
+
* QuerySpotMarketsRequest is the request type for the Query/SpotMarkets RPC
|
|
2211
|
+
* method.
|
|
2212
|
+
* @name QuerySpotMarketsRequest
|
|
2213
|
+
* @package injective.exchange.v1beta1
|
|
2214
|
+
* @see proto type: injective.exchange.v1beta1.QuerySpotMarketsRequest
|
|
2215
|
+
*/
|
|
2044
2216
|
export const QuerySpotMarketsRequest = {
|
|
2045
2217
|
typeUrl: "/injective.exchange.v1beta1.QuerySpotMarketsRequest",
|
|
2046
2218
|
is(o) {
|
|
@@ -2125,6 +2297,13 @@ function createBaseQuerySpotMarketsResponse() {
|
|
|
2125
2297
|
markets: []
|
|
2126
2298
|
};
|
|
2127
2299
|
}
|
|
2300
|
+
/**
|
|
2301
|
+
* QuerySpotMarketsResponse is the response type for the Query/SpotMarkets RPC
|
|
2302
|
+
* method.
|
|
2303
|
+
* @name QuerySpotMarketsResponse
|
|
2304
|
+
* @package injective.exchange.v1beta1
|
|
2305
|
+
* @see proto type: injective.exchange.v1beta1.QuerySpotMarketsResponse
|
|
2306
|
+
*/
|
|
2128
2307
|
export const QuerySpotMarketsResponse = {
|
|
2129
2308
|
typeUrl: "/injective.exchange.v1beta1.QuerySpotMarketsResponse",
|
|
2130
2309
|
is(o) {
|
|
@@ -2203,6 +2382,13 @@ function createBaseQuerySpotMarketRequest() {
|
|
|
2203
2382
|
marketId: ""
|
|
2204
2383
|
};
|
|
2205
2384
|
}
|
|
2385
|
+
/**
|
|
2386
|
+
* QuerySpotMarketRequest is the request type for the Query/SpotMarket RPC
|
|
2387
|
+
* method.
|
|
2388
|
+
* @name QuerySpotMarketRequest
|
|
2389
|
+
* @package injective.exchange.v1beta1
|
|
2390
|
+
* @see proto type: injective.exchange.v1beta1.QuerySpotMarketRequest
|
|
2391
|
+
*/
|
|
2206
2392
|
export const QuerySpotMarketRequest = {
|
|
2207
2393
|
typeUrl: "/injective.exchange.v1beta1.QuerySpotMarketRequest",
|
|
2208
2394
|
is(o) {
|
|
@@ -2273,6 +2459,13 @@ function createBaseQuerySpotMarketResponse() {
|
|
|
2273
2459
|
market: undefined
|
|
2274
2460
|
};
|
|
2275
2461
|
}
|
|
2462
|
+
/**
|
|
2463
|
+
* QuerySpotMarketResponse is the response type for the Query/SpotMarket RPC
|
|
2464
|
+
* method.
|
|
2465
|
+
* @name QuerySpotMarketResponse
|
|
2466
|
+
* @package injective.exchange.v1beta1
|
|
2467
|
+
* @see proto type: injective.exchange.v1beta1.QuerySpotMarketResponse
|
|
2468
|
+
*/
|
|
2276
2469
|
export const QuerySpotMarketResponse = {
|
|
2277
2470
|
typeUrl: "/injective.exchange.v1beta1.QuerySpotMarketResponse",
|
|
2278
2471
|
is(o) {
|
|
@@ -2352,6 +2545,13 @@ function createBaseQuerySpotOrderbookRequest() {
|
|
|
2352
2545
|
limitCumulativeQuantity: undefined
|
|
2353
2546
|
};
|
|
2354
2547
|
}
|
|
2548
|
+
/**
|
|
2549
|
+
* QuerySpotOrderbookRequest is the request type for the Query/SpotOrderbook RPC
|
|
2550
|
+
* method.
|
|
2551
|
+
* @name QuerySpotOrderbookRequest
|
|
2552
|
+
* @package injective.exchange.v1beta1
|
|
2553
|
+
* @see proto type: injective.exchange.v1beta1.QuerySpotOrderbookRequest
|
|
2554
|
+
*/
|
|
2355
2555
|
export const QuerySpotOrderbookRequest = {
|
|
2356
2556
|
typeUrl: "/injective.exchange.v1beta1.QuerySpotOrderbookRequest",
|
|
2357
2557
|
is(o) {
|
|
@@ -2467,6 +2667,13 @@ function createBaseQuerySpotOrderbookResponse() {
|
|
|
2467
2667
|
sellsPriceLevel: []
|
|
2468
2668
|
};
|
|
2469
2669
|
}
|
|
2670
|
+
/**
|
|
2671
|
+
* QuerySpotOrderbookResponse is the response type for the Query/SpotOrderbook
|
|
2672
|
+
* RPC method.
|
|
2673
|
+
* @name QuerySpotOrderbookResponse
|
|
2674
|
+
* @package injective.exchange.v1beta1
|
|
2675
|
+
* @see proto type: injective.exchange.v1beta1.QuerySpotOrderbookResponse
|
|
2676
|
+
*/
|
|
2470
2677
|
export const QuerySpotOrderbookResponse = {
|
|
2471
2678
|
typeUrl: "/injective.exchange.v1beta1.QuerySpotOrderbookResponse",
|
|
2472
2679
|
is(o) {
|
|
@@ -2560,6 +2767,11 @@ function createBaseFullSpotMarket() {
|
|
|
2560
2767
|
midPriceAndTob: undefined
|
|
2561
2768
|
};
|
|
2562
2769
|
}
|
|
2770
|
+
/**
|
|
2771
|
+
* @name FullSpotMarket
|
|
2772
|
+
* @package injective.exchange.v1beta1
|
|
2773
|
+
* @see proto type: injective.exchange.v1beta1.FullSpotMarket
|
|
2774
|
+
*/
|
|
2563
2775
|
export const FullSpotMarket = {
|
|
2564
2776
|
typeUrl: "/injective.exchange.v1beta1.FullSpotMarket",
|
|
2565
2777
|
is(o) {
|
|
@@ -2649,6 +2861,13 @@ function createBaseQueryFullSpotMarketsRequest() {
|
|
|
2649
2861
|
withMidPriceAndTob: false
|
|
2650
2862
|
};
|
|
2651
2863
|
}
|
|
2864
|
+
/**
|
|
2865
|
+
* QueryFullSpotMarketsRequest is the request type for the Query/FullSpotMarkets
|
|
2866
|
+
* RPC method.
|
|
2867
|
+
* @name QueryFullSpotMarketsRequest
|
|
2868
|
+
* @package injective.exchange.v1beta1
|
|
2869
|
+
* @see proto type: injective.exchange.v1beta1.QueryFullSpotMarketsRequest
|
|
2870
|
+
*/
|
|
2652
2871
|
export const QueryFullSpotMarketsRequest = {
|
|
2653
2872
|
typeUrl: "/injective.exchange.v1beta1.QueryFullSpotMarketsRequest",
|
|
2654
2873
|
is(o) {
|
|
@@ -2744,6 +2963,13 @@ function createBaseQueryFullSpotMarketsResponse() {
|
|
|
2744
2963
|
markets: []
|
|
2745
2964
|
};
|
|
2746
2965
|
}
|
|
2966
|
+
/**
|
|
2967
|
+
* QueryFullSpotMarketsResponse is the response type for the
|
|
2968
|
+
* Query/FullSpotMarkets RPC method.
|
|
2969
|
+
* @name QueryFullSpotMarketsResponse
|
|
2970
|
+
* @package injective.exchange.v1beta1
|
|
2971
|
+
* @see proto type: injective.exchange.v1beta1.QueryFullSpotMarketsResponse
|
|
2972
|
+
*/
|
|
2747
2973
|
export const QueryFullSpotMarketsResponse = {
|
|
2748
2974
|
typeUrl: "/injective.exchange.v1beta1.QueryFullSpotMarketsResponse",
|
|
2749
2975
|
is(o) {
|
|
@@ -2823,6 +3049,13 @@ function createBaseQueryFullSpotMarketRequest() {
|
|
|
2823
3049
|
withMidPriceAndTob: false
|
|
2824
3050
|
};
|
|
2825
3051
|
}
|
|
3052
|
+
/**
|
|
3053
|
+
* QuerySpotMarketRequest is the request type for the Query/SpotMarket RPC
|
|
3054
|
+
* method.
|
|
3055
|
+
* @name QueryFullSpotMarketRequest
|
|
3056
|
+
* @package injective.exchange.v1beta1
|
|
3057
|
+
* @see proto type: injective.exchange.v1beta1.QueryFullSpotMarketRequest
|
|
3058
|
+
*/
|
|
2826
3059
|
export const QueryFullSpotMarketRequest = {
|
|
2827
3060
|
typeUrl: "/injective.exchange.v1beta1.QueryFullSpotMarketRequest",
|
|
2828
3061
|
is(o) {
|
|
@@ -2904,6 +3137,13 @@ function createBaseQueryFullSpotMarketResponse() {
|
|
|
2904
3137
|
market: undefined
|
|
2905
3138
|
};
|
|
2906
3139
|
}
|
|
3140
|
+
/**
|
|
3141
|
+
* QuerySpotMarketResponse is the response type for the Query/SpotMarket RPC
|
|
3142
|
+
* method.
|
|
3143
|
+
* @name QueryFullSpotMarketResponse
|
|
3144
|
+
* @package injective.exchange.v1beta1
|
|
3145
|
+
* @see proto type: injective.exchange.v1beta1.QueryFullSpotMarketResponse
|
|
3146
|
+
*/
|
|
2907
3147
|
export const QueryFullSpotMarketResponse = {
|
|
2908
3148
|
typeUrl: "/injective.exchange.v1beta1.QueryFullSpotMarketResponse",
|
|
2909
3149
|
is(o) {
|
|
@@ -2981,6 +3221,13 @@ function createBaseQuerySpotOrdersByHashesRequest() {
|
|
|
2981
3221
|
orderHashes: []
|
|
2982
3222
|
};
|
|
2983
3223
|
}
|
|
3224
|
+
/**
|
|
3225
|
+
* QuerySpotOrdersByHashesRequest is the request type for the
|
|
3226
|
+
* Query/SpotOrdersByHashes RPC method.
|
|
3227
|
+
* @name QuerySpotOrdersByHashesRequest
|
|
3228
|
+
* @package injective.exchange.v1beta1
|
|
3229
|
+
* @see proto type: injective.exchange.v1beta1.QuerySpotOrdersByHashesRequest
|
|
3230
|
+
*/
|
|
2984
3231
|
export const QuerySpotOrdersByHashesRequest = {
|
|
2985
3232
|
typeUrl: "/injective.exchange.v1beta1.QuerySpotOrdersByHashesRequest",
|
|
2986
3233
|
is(o) {
|
|
@@ -3076,6 +3323,13 @@ function createBaseQuerySpotOrdersByHashesResponse() {
|
|
|
3076
3323
|
orders: []
|
|
3077
3324
|
};
|
|
3078
3325
|
}
|
|
3326
|
+
/**
|
|
3327
|
+
* QuerySpotOrdersByHashesResponse is the response type for the
|
|
3328
|
+
* Query/SpotOrdersByHashes RPC method.
|
|
3329
|
+
* @name QuerySpotOrdersByHashesResponse
|
|
3330
|
+
* @package injective.exchange.v1beta1
|
|
3331
|
+
* @see proto type: injective.exchange.v1beta1.QuerySpotOrdersByHashesResponse
|
|
3332
|
+
*/
|
|
3079
3333
|
export const QuerySpotOrdersByHashesResponse = {
|
|
3080
3334
|
typeUrl: "/injective.exchange.v1beta1.QuerySpotOrdersByHashesResponse",
|
|
3081
3335
|
is(o) {
|
|
@@ -3155,6 +3409,13 @@ function createBaseQueryTraderSpotOrdersRequest() {
|
|
|
3155
3409
|
subaccountId: ""
|
|
3156
3410
|
};
|
|
3157
3411
|
}
|
|
3412
|
+
/**
|
|
3413
|
+
* QueryTraderSpotOrdersRequest is the request type for the
|
|
3414
|
+
* Query/TraderSpotOrders RPC method.
|
|
3415
|
+
* @name QueryTraderSpotOrdersRequest
|
|
3416
|
+
* @package injective.exchange.v1beta1
|
|
3417
|
+
* @see proto type: injective.exchange.v1beta1.QueryTraderSpotOrdersRequest
|
|
3418
|
+
*/
|
|
3158
3419
|
export const QueryTraderSpotOrdersRequest = {
|
|
3159
3420
|
typeUrl: "/injective.exchange.v1beta1.QueryTraderSpotOrdersRequest",
|
|
3160
3421
|
is(o) {
|
|
@@ -3237,6 +3498,13 @@ function createBaseQueryAccountAddressSpotOrdersRequest() {
|
|
|
3237
3498
|
accountAddress: ""
|
|
3238
3499
|
};
|
|
3239
3500
|
}
|
|
3501
|
+
/**
|
|
3502
|
+
* QueryAccountAddressSpotOrdersRequest is the request type for the
|
|
3503
|
+
* Query/AccountAddressSpotOrders RPC method.
|
|
3504
|
+
* @name QueryAccountAddressSpotOrdersRequest
|
|
3505
|
+
* @package injective.exchange.v1beta1
|
|
3506
|
+
* @see proto type: injective.exchange.v1beta1.QueryAccountAddressSpotOrdersRequest
|
|
3507
|
+
*/
|
|
3240
3508
|
export const QueryAccountAddressSpotOrdersRequest = {
|
|
3241
3509
|
typeUrl: "/injective.exchange.v1beta1.QueryAccountAddressSpotOrdersRequest",
|
|
3242
3510
|
is(o) {
|
|
@@ -3323,6 +3591,11 @@ function createBaseTrimmedSpotLimitOrder() {
|
|
|
3323
3591
|
cid: ""
|
|
3324
3592
|
};
|
|
3325
3593
|
}
|
|
3594
|
+
/**
|
|
3595
|
+
* @name TrimmedSpotLimitOrder
|
|
3596
|
+
* @package injective.exchange.v1beta1
|
|
3597
|
+
* @see proto type: injective.exchange.v1beta1.TrimmedSpotLimitOrder
|
|
3598
|
+
*/
|
|
3326
3599
|
export const TrimmedSpotLimitOrder = {
|
|
3327
3600
|
typeUrl: "/injective.exchange.v1beta1.TrimmedSpotLimitOrder",
|
|
3328
3601
|
is(o) {
|
|
@@ -3448,6 +3721,13 @@ function createBaseQueryTraderSpotOrdersResponse() {
|
|
|
3448
3721
|
orders: []
|
|
3449
3722
|
};
|
|
3450
3723
|
}
|
|
3724
|
+
/**
|
|
3725
|
+
* QueryTraderSpotOrdersResponse is the response type for the
|
|
3726
|
+
* Query/TraderSpotOrders RPC method.
|
|
3727
|
+
* @name QueryTraderSpotOrdersResponse
|
|
3728
|
+
* @package injective.exchange.v1beta1
|
|
3729
|
+
* @see proto type: injective.exchange.v1beta1.QueryTraderSpotOrdersResponse
|
|
3730
|
+
*/
|
|
3451
3731
|
export const QueryTraderSpotOrdersResponse = {
|
|
3452
3732
|
typeUrl: "/injective.exchange.v1beta1.QueryTraderSpotOrdersResponse",
|
|
3453
3733
|
is(o) {
|
|
@@ -3526,6 +3806,13 @@ function createBaseQueryAccountAddressSpotOrdersResponse() {
|
|
|
3526
3806
|
orders: []
|
|
3527
3807
|
};
|
|
3528
3808
|
}
|
|
3809
|
+
/**
|
|
3810
|
+
* QueryAccountAddressSpotOrdersResponse is the response type for the
|
|
3811
|
+
* Query/AccountAddressSpotOrders RPC method.
|
|
3812
|
+
* @name QueryAccountAddressSpotOrdersResponse
|
|
3813
|
+
* @package injective.exchange.v1beta1
|
|
3814
|
+
* @see proto type: injective.exchange.v1beta1.QueryAccountAddressSpotOrdersResponse
|
|
3815
|
+
*/
|
|
3529
3816
|
export const QueryAccountAddressSpotOrdersResponse = {
|
|
3530
3817
|
typeUrl: "/injective.exchange.v1beta1.QueryAccountAddressSpotOrdersResponse",
|
|
3531
3818
|
is(o) {
|
|
@@ -3604,6 +3891,13 @@ function createBaseQuerySpotMidPriceAndTOBRequest() {
|
|
|
3604
3891
|
marketId: ""
|
|
3605
3892
|
};
|
|
3606
3893
|
}
|
|
3894
|
+
/**
|
|
3895
|
+
* QuerySpotMidPriceAndTOBRequest is the request type for the
|
|
3896
|
+
* Query/SpotMidPriceAndTOB RPC method.
|
|
3897
|
+
* @name QuerySpotMidPriceAndTOBRequest
|
|
3898
|
+
* @package injective.exchange.v1beta1
|
|
3899
|
+
* @see proto type: injective.exchange.v1beta1.QuerySpotMidPriceAndTOBRequest
|
|
3900
|
+
*/
|
|
3607
3901
|
export const QuerySpotMidPriceAndTOBRequest = {
|
|
3608
3902
|
typeUrl: "/injective.exchange.v1beta1.QuerySpotMidPriceAndTOBRequest",
|
|
3609
3903
|
is(o) {
|
|
@@ -3676,6 +3970,13 @@ function createBaseQuerySpotMidPriceAndTOBResponse() {
|
|
|
3676
3970
|
bestSellPrice: undefined
|
|
3677
3971
|
};
|
|
3678
3972
|
}
|
|
3973
|
+
/**
|
|
3974
|
+
* QuerySpotMidPriceAndTOBResponse is the response type for the
|
|
3975
|
+
* Query/SpotMidPriceAndTOB RPC method.
|
|
3976
|
+
* @name QuerySpotMidPriceAndTOBResponse
|
|
3977
|
+
* @package injective.exchange.v1beta1
|
|
3978
|
+
* @see proto type: injective.exchange.v1beta1.QuerySpotMidPriceAndTOBResponse
|
|
3979
|
+
*/
|
|
3679
3980
|
export const QuerySpotMidPriceAndTOBResponse = {
|
|
3680
3981
|
typeUrl: "/injective.exchange.v1beta1.QuerySpotMidPriceAndTOBResponse",
|
|
3681
3982
|
is(o) {
|
|
@@ -3768,6 +4069,13 @@ function createBaseQueryDerivativeMidPriceAndTOBRequest() {
|
|
|
3768
4069
|
marketId: ""
|
|
3769
4070
|
};
|
|
3770
4071
|
}
|
|
4072
|
+
/**
|
|
4073
|
+
* QueryDerivativeMidPriceAndTOBRequest is the request type for the
|
|
4074
|
+
* Query/GetDerivativeMidPriceAndTOB RPC method.
|
|
4075
|
+
* @name QueryDerivativeMidPriceAndTOBRequest
|
|
4076
|
+
* @package injective.exchange.v1beta1
|
|
4077
|
+
* @see proto type: injective.exchange.v1beta1.QueryDerivativeMidPriceAndTOBRequest
|
|
4078
|
+
*/
|
|
3771
4079
|
export const QueryDerivativeMidPriceAndTOBRequest = {
|
|
3772
4080
|
typeUrl: "/injective.exchange.v1beta1.QueryDerivativeMidPriceAndTOBRequest",
|
|
3773
4081
|
is(o) {
|
|
@@ -3840,6 +4148,13 @@ function createBaseQueryDerivativeMidPriceAndTOBResponse() {
|
|
|
3840
4148
|
bestSellPrice: undefined
|
|
3841
4149
|
};
|
|
3842
4150
|
}
|
|
4151
|
+
/**
|
|
4152
|
+
* QueryDerivativeMidPriceAndTOBResponse is the response type for the
|
|
4153
|
+
* Query/GetDerivativeMidPriceAndTOB RPC method.
|
|
4154
|
+
* @name QueryDerivativeMidPriceAndTOBResponse
|
|
4155
|
+
* @package injective.exchange.v1beta1
|
|
4156
|
+
* @see proto type: injective.exchange.v1beta1.QueryDerivativeMidPriceAndTOBResponse
|
|
4157
|
+
*/
|
|
3843
4158
|
export const QueryDerivativeMidPriceAndTOBResponse = {
|
|
3844
4159
|
typeUrl: "/injective.exchange.v1beta1.QueryDerivativeMidPriceAndTOBResponse",
|
|
3845
4160
|
is(o) {
|
|
@@ -3934,6 +4249,13 @@ function createBaseQueryDerivativeOrderbookRequest() {
|
|
|
3934
4249
|
limitCumulativeNotional: undefined
|
|
3935
4250
|
};
|
|
3936
4251
|
}
|
|
4252
|
+
/**
|
|
4253
|
+
* QueryDerivativeOrderbookRequest is the request type for the
|
|
4254
|
+
* Query/DerivativeOrderbook RPC method.
|
|
4255
|
+
* @name QueryDerivativeOrderbookRequest
|
|
4256
|
+
* @package injective.exchange.v1beta1
|
|
4257
|
+
* @see proto type: injective.exchange.v1beta1.QueryDerivativeOrderbookRequest
|
|
4258
|
+
*/
|
|
3937
4259
|
export const QueryDerivativeOrderbookRequest = {
|
|
3938
4260
|
typeUrl: "/injective.exchange.v1beta1.QueryDerivativeOrderbookRequest",
|
|
3939
4261
|
is(o) {
|
|
@@ -4027,6 +4349,13 @@ function createBaseQueryDerivativeOrderbookResponse() {
|
|
|
4027
4349
|
sellsPriceLevel: []
|
|
4028
4350
|
};
|
|
4029
4351
|
}
|
|
4352
|
+
/**
|
|
4353
|
+
* QueryDerivativeOrderbookResponse is the response type for the
|
|
4354
|
+
* Query/DerivativeOrderbook RPC method.
|
|
4355
|
+
* @name QueryDerivativeOrderbookResponse
|
|
4356
|
+
* @package injective.exchange.v1beta1
|
|
4357
|
+
* @see proto type: injective.exchange.v1beta1.QueryDerivativeOrderbookResponse
|
|
4358
|
+
*/
|
|
4030
4359
|
export const QueryDerivativeOrderbookResponse = {
|
|
4031
4360
|
typeUrl: "/injective.exchange.v1beta1.QueryDerivativeOrderbookResponse",
|
|
4032
4361
|
is(o) {
|
|
@@ -4124,6 +4453,13 @@ function createBaseQueryTraderSpotOrdersToCancelUpToAmountRequest() {
|
|
|
4124
4453
|
referencePrice: undefined
|
|
4125
4454
|
};
|
|
4126
4455
|
}
|
|
4456
|
+
/**
|
|
4457
|
+
* QueryTraderSpotOrdersToCancelUpToAmountRequest is the request type for the
|
|
4458
|
+
* Query/TraderSpotOrdersToCancelUpToAmountRequest RPC method.
|
|
4459
|
+
* @name QueryTraderSpotOrdersToCancelUpToAmountRequest
|
|
4460
|
+
* @package injective.exchange.v1beta1
|
|
4461
|
+
* @see proto type: injective.exchange.v1beta1.QueryTraderSpotOrdersToCancelUpToAmountRequest
|
|
4462
|
+
*/
|
|
4127
4463
|
export const QueryTraderSpotOrdersToCancelUpToAmountRequest = {
|
|
4128
4464
|
typeUrl: "/injective.exchange.v1beta1.QueryTraderSpotOrdersToCancelUpToAmountRequest",
|
|
4129
4465
|
is(o) {
|
|
@@ -4253,6 +4589,13 @@ function createBaseQueryTraderDerivativeOrdersToCancelUpToAmountRequest() {
|
|
|
4253
4589
|
referencePrice: undefined
|
|
4254
4590
|
};
|
|
4255
4591
|
}
|
|
4592
|
+
/**
|
|
4593
|
+
* QueryTraderDerivativeOrdersToCancelUpToAmountRequest is the request type for
|
|
4594
|
+
* the Query/TraderDerivativeOrdersToCancelUpToAmountRequest RPC method.
|
|
4595
|
+
* @name QueryTraderDerivativeOrdersToCancelUpToAmountRequest
|
|
4596
|
+
* @package injective.exchange.v1beta1
|
|
4597
|
+
* @see proto type: injective.exchange.v1beta1.QueryTraderDerivativeOrdersToCancelUpToAmountRequest
|
|
4598
|
+
*/
|
|
4256
4599
|
export const QueryTraderDerivativeOrdersToCancelUpToAmountRequest = {
|
|
4257
4600
|
typeUrl: "/injective.exchange.v1beta1.QueryTraderDerivativeOrdersToCancelUpToAmountRequest",
|
|
4258
4601
|
is(o) {
|
|
@@ -4368,6 +4711,13 @@ function createBaseQueryTraderDerivativeOrdersRequest() {
|
|
|
4368
4711
|
subaccountId: ""
|
|
4369
4712
|
};
|
|
4370
4713
|
}
|
|
4714
|
+
/**
|
|
4715
|
+
* QueryTraderDerivativeOrdersRequest is the request type for the
|
|
4716
|
+
* Query/TraderDerivativeOrders RPC method.
|
|
4717
|
+
* @name QueryTraderDerivativeOrdersRequest
|
|
4718
|
+
* @package injective.exchange.v1beta1
|
|
4719
|
+
* @see proto type: injective.exchange.v1beta1.QueryTraderDerivativeOrdersRequest
|
|
4720
|
+
*/
|
|
4371
4721
|
export const QueryTraderDerivativeOrdersRequest = {
|
|
4372
4722
|
typeUrl: "/injective.exchange.v1beta1.QueryTraderDerivativeOrdersRequest",
|
|
4373
4723
|
is(o) {
|
|
@@ -4450,6 +4800,13 @@ function createBaseQueryAccountAddressDerivativeOrdersRequest() {
|
|
|
4450
4800
|
accountAddress: ""
|
|
4451
4801
|
};
|
|
4452
4802
|
}
|
|
4803
|
+
/**
|
|
4804
|
+
* QueryAccountAddressSpotOrdersRequest is the request type for the
|
|
4805
|
+
* Query/AccountAddressDerivativeOrders RPC method.
|
|
4806
|
+
* @name QueryAccountAddressDerivativeOrdersRequest
|
|
4807
|
+
* @package injective.exchange.v1beta1
|
|
4808
|
+
* @see proto type: injective.exchange.v1beta1.QueryAccountAddressDerivativeOrdersRequest
|
|
4809
|
+
*/
|
|
4453
4810
|
export const QueryAccountAddressDerivativeOrdersRequest = {
|
|
4454
4811
|
typeUrl: "/injective.exchange.v1beta1.QueryAccountAddressDerivativeOrdersRequest",
|
|
4455
4812
|
is(o) {
|
|
@@ -4537,6 +4894,11 @@ function createBaseTrimmedDerivativeLimitOrder() {
|
|
|
4537
4894
|
cid: ""
|
|
4538
4895
|
};
|
|
4539
4896
|
}
|
|
4897
|
+
/**
|
|
4898
|
+
* @name TrimmedDerivativeLimitOrder
|
|
4899
|
+
* @package injective.exchange.v1beta1
|
|
4900
|
+
* @see proto type: injective.exchange.v1beta1.TrimmedDerivativeLimitOrder
|
|
4901
|
+
*/
|
|
4540
4902
|
export const TrimmedDerivativeLimitOrder = {
|
|
4541
4903
|
typeUrl: "/injective.exchange.v1beta1.TrimmedDerivativeLimitOrder",
|
|
4542
4904
|
is(o) {
|
|
@@ -4673,6 +5035,13 @@ function createBaseQueryTraderDerivativeOrdersResponse() {
|
|
|
4673
5035
|
orders: []
|
|
4674
5036
|
};
|
|
4675
5037
|
}
|
|
5038
|
+
/**
|
|
5039
|
+
* QueryTraderDerivativeOrdersResponse is the response type for the
|
|
5040
|
+
* Query/TraderDerivativeOrders RPC method.
|
|
5041
|
+
* @name QueryTraderDerivativeOrdersResponse
|
|
5042
|
+
* @package injective.exchange.v1beta1
|
|
5043
|
+
* @see proto type: injective.exchange.v1beta1.QueryTraderDerivativeOrdersResponse
|
|
5044
|
+
*/
|
|
4676
5045
|
export const QueryTraderDerivativeOrdersResponse = {
|
|
4677
5046
|
typeUrl: "/injective.exchange.v1beta1.QueryTraderDerivativeOrdersResponse",
|
|
4678
5047
|
is(o) {
|
|
@@ -4751,6 +5120,13 @@ function createBaseQueryAccountAddressDerivativeOrdersResponse() {
|
|
|
4751
5120
|
orders: []
|
|
4752
5121
|
};
|
|
4753
5122
|
}
|
|
5123
|
+
/**
|
|
5124
|
+
* QueryAccountAddressDerivativeOrdersResponse is the response type for the
|
|
5125
|
+
* Query/AccountAddressDerivativeOrders RPC method.
|
|
5126
|
+
* @name QueryAccountAddressDerivativeOrdersResponse
|
|
5127
|
+
* @package injective.exchange.v1beta1
|
|
5128
|
+
* @see proto type: injective.exchange.v1beta1.QueryAccountAddressDerivativeOrdersResponse
|
|
5129
|
+
*/
|
|
4754
5130
|
export const QueryAccountAddressDerivativeOrdersResponse = {
|
|
4755
5131
|
typeUrl: "/injective.exchange.v1beta1.QueryAccountAddressDerivativeOrdersResponse",
|
|
4756
5132
|
is(o) {
|
|
@@ -4831,6 +5207,13 @@ function createBaseQueryDerivativeOrdersByHashesRequest() {
|
|
|
4831
5207
|
orderHashes: []
|
|
4832
5208
|
};
|
|
4833
5209
|
}
|
|
5210
|
+
/**
|
|
5211
|
+
* QueryTraderDerivativeOrdersRequest is the request type for the
|
|
5212
|
+
* Query/TraderDerivativeOrders RPC method.
|
|
5213
|
+
* @name QueryDerivativeOrdersByHashesRequest
|
|
5214
|
+
* @package injective.exchange.v1beta1
|
|
5215
|
+
* @see proto type: injective.exchange.v1beta1.QueryDerivativeOrdersByHashesRequest
|
|
5216
|
+
*/
|
|
4834
5217
|
export const QueryDerivativeOrdersByHashesRequest = {
|
|
4835
5218
|
typeUrl: "/injective.exchange.v1beta1.QueryDerivativeOrdersByHashesRequest",
|
|
4836
5219
|
is(o) {
|
|
@@ -4926,6 +5309,13 @@ function createBaseQueryDerivativeOrdersByHashesResponse() {
|
|
|
4926
5309
|
orders: []
|
|
4927
5310
|
};
|
|
4928
5311
|
}
|
|
5312
|
+
/**
|
|
5313
|
+
* QueryDerivativeOrdersByHashesResponse is the response type for the
|
|
5314
|
+
* Query/DerivativeOrdersByHashes RPC method.
|
|
5315
|
+
* @name QueryDerivativeOrdersByHashesResponse
|
|
5316
|
+
* @package injective.exchange.v1beta1
|
|
5317
|
+
* @see proto type: injective.exchange.v1beta1.QueryDerivativeOrdersByHashesResponse
|
|
5318
|
+
*/
|
|
4929
5319
|
export const QueryDerivativeOrdersByHashesResponse = {
|
|
4930
5320
|
typeUrl: "/injective.exchange.v1beta1.QueryDerivativeOrdersByHashesResponse",
|
|
4931
5321
|
is(o) {
|
|
@@ -5006,6 +5396,13 @@ function createBaseQueryDerivativeMarketsRequest() {
|
|
|
5006
5396
|
withMidPriceAndTob: false
|
|
5007
5397
|
};
|
|
5008
5398
|
}
|
|
5399
|
+
/**
|
|
5400
|
+
* QueryDerivativeMarketsRequest is the request type for the
|
|
5401
|
+
* Query/DerivativeMarkets RPC method.
|
|
5402
|
+
* @name QueryDerivativeMarketsRequest
|
|
5403
|
+
* @package injective.exchange.v1beta1
|
|
5404
|
+
* @see proto type: injective.exchange.v1beta1.QueryDerivativeMarketsRequest
|
|
5405
|
+
*/
|
|
5009
5406
|
export const QueryDerivativeMarketsRequest = {
|
|
5010
5407
|
typeUrl: "/injective.exchange.v1beta1.QueryDerivativeMarketsRequest",
|
|
5011
5408
|
is(o) {
|
|
@@ -5102,6 +5499,11 @@ function createBasePriceLevel() {
|
|
|
5102
5499
|
quantity: ""
|
|
5103
5500
|
};
|
|
5104
5501
|
}
|
|
5502
|
+
/**
|
|
5503
|
+
* @name PriceLevel
|
|
5504
|
+
* @package injective.exchange.v1beta1
|
|
5505
|
+
* @see proto type: injective.exchange.v1beta1.PriceLevel
|
|
5506
|
+
*/
|
|
5105
5507
|
export const PriceLevel = {
|
|
5106
5508
|
typeUrl: "/injective.exchange.v1beta1.PriceLevel",
|
|
5107
5509
|
is(o) {
|
|
@@ -5184,6 +5586,11 @@ function createBasePerpetualMarketState() {
|
|
|
5184
5586
|
fundingInfo: undefined
|
|
5185
5587
|
};
|
|
5186
5588
|
}
|
|
5589
|
+
/**
|
|
5590
|
+
* @name PerpetualMarketState
|
|
5591
|
+
* @package injective.exchange.v1beta1
|
|
5592
|
+
* @see proto type: injective.exchange.v1beta1.PerpetualMarketState
|
|
5593
|
+
*/
|
|
5187
5594
|
export const PerpetualMarketState = {
|
|
5188
5595
|
typeUrl: "/injective.exchange.v1beta1.PerpetualMarketState",
|
|
5189
5596
|
is(o) {
|
|
@@ -5275,6 +5682,11 @@ function createBaseFullDerivativeMarket() {
|
|
|
5275
5682
|
midPriceAndTob: undefined
|
|
5276
5683
|
};
|
|
5277
5684
|
}
|
|
5685
|
+
/**
|
|
5686
|
+
* @name FullDerivativeMarket
|
|
5687
|
+
* @package injective.exchange.v1beta1
|
|
5688
|
+
* @see proto type: injective.exchange.v1beta1.FullDerivativeMarket
|
|
5689
|
+
*/
|
|
5278
5690
|
export const FullDerivativeMarket = {
|
|
5279
5691
|
typeUrl: "/injective.exchange.v1beta1.FullDerivativeMarket",
|
|
5280
5692
|
is(o) {
|
|
@@ -5397,6 +5809,13 @@ function createBaseQueryDerivativeMarketsResponse() {
|
|
|
5397
5809
|
markets: []
|
|
5398
5810
|
};
|
|
5399
5811
|
}
|
|
5812
|
+
/**
|
|
5813
|
+
* QueryDerivativeMarketsResponse is the response type for the
|
|
5814
|
+
* Query/DerivativeMarkets RPC method.
|
|
5815
|
+
* @name QueryDerivativeMarketsResponse
|
|
5816
|
+
* @package injective.exchange.v1beta1
|
|
5817
|
+
* @see proto type: injective.exchange.v1beta1.QueryDerivativeMarketsResponse
|
|
5818
|
+
*/
|
|
5400
5819
|
export const QueryDerivativeMarketsResponse = {
|
|
5401
5820
|
typeUrl: "/injective.exchange.v1beta1.QueryDerivativeMarketsResponse",
|
|
5402
5821
|
is(o) {
|
|
@@ -5475,6 +5894,13 @@ function createBaseQueryDerivativeMarketRequest() {
|
|
|
5475
5894
|
marketId: ""
|
|
5476
5895
|
};
|
|
5477
5896
|
}
|
|
5897
|
+
/**
|
|
5898
|
+
* QueryDerivativeMarketRequest is the request type for the
|
|
5899
|
+
* Query/DerivativeMarket RPC method.
|
|
5900
|
+
* @name QueryDerivativeMarketRequest
|
|
5901
|
+
* @package injective.exchange.v1beta1
|
|
5902
|
+
* @see proto type: injective.exchange.v1beta1.QueryDerivativeMarketRequest
|
|
5903
|
+
*/
|
|
5478
5904
|
export const QueryDerivativeMarketRequest = {
|
|
5479
5905
|
typeUrl: "/injective.exchange.v1beta1.QueryDerivativeMarketRequest",
|
|
5480
5906
|
is(o) {
|
|
@@ -5545,6 +5971,13 @@ function createBaseQueryDerivativeMarketResponse() {
|
|
|
5545
5971
|
market: undefined
|
|
5546
5972
|
};
|
|
5547
5973
|
}
|
|
5974
|
+
/**
|
|
5975
|
+
* QueryDerivativeMarketResponse is the response type for the
|
|
5976
|
+
* Query/DerivativeMarket RPC method.
|
|
5977
|
+
* @name QueryDerivativeMarketResponse
|
|
5978
|
+
* @package injective.exchange.v1beta1
|
|
5979
|
+
* @see proto type: injective.exchange.v1beta1.QueryDerivativeMarketResponse
|
|
5980
|
+
*/
|
|
5548
5981
|
export const QueryDerivativeMarketResponse = {
|
|
5549
5982
|
typeUrl: "/injective.exchange.v1beta1.QueryDerivativeMarketResponse",
|
|
5550
5983
|
is(o) {
|
|
@@ -5620,6 +6053,13 @@ function createBaseQueryDerivativeMarketAddressRequest() {
|
|
|
5620
6053
|
marketId: ""
|
|
5621
6054
|
};
|
|
5622
6055
|
}
|
|
6056
|
+
/**
|
|
6057
|
+
* QueryDerivativeMarketAddressRequest is the request type for the
|
|
6058
|
+
* Query/DerivativeMarketAddress RPC method.
|
|
6059
|
+
* @name QueryDerivativeMarketAddressRequest
|
|
6060
|
+
* @package injective.exchange.v1beta1
|
|
6061
|
+
* @see proto type: injective.exchange.v1beta1.QueryDerivativeMarketAddressRequest
|
|
6062
|
+
*/
|
|
5623
6063
|
export const QueryDerivativeMarketAddressRequest = {
|
|
5624
6064
|
typeUrl: "/injective.exchange.v1beta1.QueryDerivativeMarketAddressRequest",
|
|
5625
6065
|
is(o) {
|
|
@@ -5691,6 +6131,13 @@ function createBaseQueryDerivativeMarketAddressResponse() {
|
|
|
5691
6131
|
subaccountId: ""
|
|
5692
6132
|
};
|
|
5693
6133
|
}
|
|
6134
|
+
/**
|
|
6135
|
+
* QueryDerivativeMarketAddressResponse is the response type for the
|
|
6136
|
+
* Query/DerivativeMarketAddress RPC method.
|
|
6137
|
+
* @name QueryDerivativeMarketAddressResponse
|
|
6138
|
+
* @package injective.exchange.v1beta1
|
|
6139
|
+
* @see proto type: injective.exchange.v1beta1.QueryDerivativeMarketAddressResponse
|
|
6140
|
+
*/
|
|
5694
6141
|
export const QueryDerivativeMarketAddressResponse = {
|
|
5695
6142
|
typeUrl: "/injective.exchange.v1beta1.QueryDerivativeMarketAddressResponse",
|
|
5696
6143
|
is(o) {
|
|
@@ -5772,6 +6219,13 @@ function createBaseQuerySubaccountTradeNonceRequest() {
|
|
|
5772
6219
|
subaccountId: ""
|
|
5773
6220
|
};
|
|
5774
6221
|
}
|
|
6222
|
+
/**
|
|
6223
|
+
* QuerySubaccountTradeNonceRequest is the request type for the
|
|
6224
|
+
* Query/SubaccountTradeNonce RPC method.
|
|
6225
|
+
* @name QuerySubaccountTradeNonceRequest
|
|
6226
|
+
* @package injective.exchange.v1beta1
|
|
6227
|
+
* @see proto type: injective.exchange.v1beta1.QuerySubaccountTradeNonceRequest
|
|
6228
|
+
*/
|
|
5775
6229
|
export const QuerySubaccountTradeNonceRequest = {
|
|
5776
6230
|
typeUrl: "/injective.exchange.v1beta1.QuerySubaccountTradeNonceRequest",
|
|
5777
6231
|
is(o) {
|
|
@@ -5842,6 +6296,13 @@ function createBaseQuerySubaccountPositionsRequest() {
|
|
|
5842
6296
|
subaccountId: ""
|
|
5843
6297
|
};
|
|
5844
6298
|
}
|
|
6299
|
+
/**
|
|
6300
|
+
* QuerySubaccountPositionsRequest is the request type for the
|
|
6301
|
+
* Query/SubaccountPositions RPC method.
|
|
6302
|
+
* @name QuerySubaccountPositionsRequest
|
|
6303
|
+
* @package injective.exchange.v1beta1
|
|
6304
|
+
* @see proto type: injective.exchange.v1beta1.QuerySubaccountPositionsRequest
|
|
6305
|
+
*/
|
|
5845
6306
|
export const QuerySubaccountPositionsRequest = {
|
|
5846
6307
|
typeUrl: "/injective.exchange.v1beta1.QuerySubaccountPositionsRequest",
|
|
5847
6308
|
is(o) {
|
|
@@ -5913,6 +6374,13 @@ function createBaseQuerySubaccountPositionInMarketRequest() {
|
|
|
5913
6374
|
marketId: ""
|
|
5914
6375
|
};
|
|
5915
6376
|
}
|
|
6377
|
+
/**
|
|
6378
|
+
* QuerySubaccountPositionInMarketRequest is the request type for the
|
|
6379
|
+
* Query/SubaccountPositionInMarket RPC method.
|
|
6380
|
+
* @name QuerySubaccountPositionInMarketRequest
|
|
6381
|
+
* @package injective.exchange.v1beta1
|
|
6382
|
+
* @see proto type: injective.exchange.v1beta1.QuerySubaccountPositionInMarketRequest
|
|
6383
|
+
*/
|
|
5916
6384
|
export const QuerySubaccountPositionInMarketRequest = {
|
|
5917
6385
|
typeUrl: "/injective.exchange.v1beta1.QuerySubaccountPositionInMarketRequest",
|
|
5918
6386
|
is(o) {
|
|
@@ -5995,6 +6463,13 @@ function createBaseQuerySubaccountEffectivePositionInMarketRequest() {
|
|
|
5995
6463
|
marketId: ""
|
|
5996
6464
|
};
|
|
5997
6465
|
}
|
|
6466
|
+
/**
|
|
6467
|
+
* QuerySubaccountEffectivePositionInMarketRequest is the request type for the
|
|
6468
|
+
* Query/SubaccountEffectivePositionInMarket RPC method.
|
|
6469
|
+
* @name QuerySubaccountEffectivePositionInMarketRequest
|
|
6470
|
+
* @package injective.exchange.v1beta1
|
|
6471
|
+
* @see proto type: injective.exchange.v1beta1.QuerySubaccountEffectivePositionInMarketRequest
|
|
6472
|
+
*/
|
|
5998
6473
|
export const QuerySubaccountEffectivePositionInMarketRequest = {
|
|
5999
6474
|
typeUrl: "/injective.exchange.v1beta1.QuerySubaccountEffectivePositionInMarketRequest",
|
|
6000
6475
|
is(o) {
|
|
@@ -6076,6 +6551,13 @@ function createBaseQuerySubaccountOrderMetadataRequest() {
|
|
|
6076
6551
|
subaccountId: ""
|
|
6077
6552
|
};
|
|
6078
6553
|
}
|
|
6554
|
+
/**
|
|
6555
|
+
* QuerySubaccountOrderMetadataRequest is the request type for the
|
|
6556
|
+
* Query/SubaccountOrderMetadata RPC method.
|
|
6557
|
+
* @name QuerySubaccountOrderMetadataRequest
|
|
6558
|
+
* @package injective.exchange.v1beta1
|
|
6559
|
+
* @see proto type: injective.exchange.v1beta1.QuerySubaccountOrderMetadataRequest
|
|
6560
|
+
*/
|
|
6079
6561
|
export const QuerySubaccountOrderMetadataRequest = {
|
|
6080
6562
|
typeUrl: "/injective.exchange.v1beta1.QuerySubaccountOrderMetadataRequest",
|
|
6081
6563
|
is(o) {
|
|
@@ -6146,6 +6628,13 @@ function createBaseQuerySubaccountPositionsResponse() {
|
|
|
6146
6628
|
state: []
|
|
6147
6629
|
};
|
|
6148
6630
|
}
|
|
6631
|
+
/**
|
|
6632
|
+
* QuerySubaccountPositionsResponse is the response type for the
|
|
6633
|
+
* Query/SubaccountPositions RPC method.
|
|
6634
|
+
* @name QuerySubaccountPositionsResponse
|
|
6635
|
+
* @package injective.exchange.v1beta1
|
|
6636
|
+
* @see proto type: injective.exchange.v1beta1.QuerySubaccountPositionsResponse
|
|
6637
|
+
*/
|
|
6149
6638
|
export const QuerySubaccountPositionsResponse = {
|
|
6150
6639
|
typeUrl: "/injective.exchange.v1beta1.QuerySubaccountPositionsResponse",
|
|
6151
6640
|
is(o) {
|
|
@@ -6224,6 +6713,13 @@ function createBaseQuerySubaccountPositionInMarketResponse() {
|
|
|
6224
6713
|
state: undefined
|
|
6225
6714
|
};
|
|
6226
6715
|
}
|
|
6716
|
+
/**
|
|
6717
|
+
* QuerySubaccountPositionInMarketResponse is the response type for the
|
|
6718
|
+
* Query/SubaccountPositionInMarket RPC method.
|
|
6719
|
+
* @name QuerySubaccountPositionInMarketResponse
|
|
6720
|
+
* @package injective.exchange.v1beta1
|
|
6721
|
+
* @see proto type: injective.exchange.v1beta1.QuerySubaccountPositionInMarketResponse
|
|
6722
|
+
*/
|
|
6227
6723
|
export const QuerySubaccountPositionInMarketResponse = {
|
|
6228
6724
|
typeUrl: "/injective.exchange.v1beta1.QuerySubaccountPositionInMarketResponse",
|
|
6229
6725
|
is(o) {
|
|
@@ -6302,6 +6798,11 @@ function createBaseEffectivePosition() {
|
|
|
6302
6798
|
effectiveMargin: ""
|
|
6303
6799
|
};
|
|
6304
6800
|
}
|
|
6801
|
+
/**
|
|
6802
|
+
* @name EffectivePosition
|
|
6803
|
+
* @package injective.exchange.v1beta1
|
|
6804
|
+
* @see proto type: injective.exchange.v1beta1.EffectivePosition
|
|
6805
|
+
*/
|
|
6305
6806
|
export const EffectivePosition = {
|
|
6306
6807
|
typeUrl: "/injective.exchange.v1beta1.EffectivePosition",
|
|
6307
6808
|
is(o) {
|
|
@@ -6405,6 +6906,13 @@ function createBaseQuerySubaccountEffectivePositionInMarketResponse() {
|
|
|
6405
6906
|
state: undefined
|
|
6406
6907
|
};
|
|
6407
6908
|
}
|
|
6909
|
+
/**
|
|
6910
|
+
* QuerySubaccountEffectivePositionInMarketResponse is the response type for the
|
|
6911
|
+
* Query/SubaccountEffectivePositionInMarket RPC method.
|
|
6912
|
+
* @name QuerySubaccountEffectivePositionInMarketResponse
|
|
6913
|
+
* @package injective.exchange.v1beta1
|
|
6914
|
+
* @see proto type: injective.exchange.v1beta1.QuerySubaccountEffectivePositionInMarketResponse
|
|
6915
|
+
*/
|
|
6408
6916
|
export const QuerySubaccountEffectivePositionInMarketResponse = {
|
|
6409
6917
|
typeUrl: "/injective.exchange.v1beta1.QuerySubaccountEffectivePositionInMarketResponse",
|
|
6410
6918
|
is(o) {
|
|
@@ -6480,6 +6988,13 @@ function createBaseQueryPerpetualMarketInfoRequest() {
|
|
|
6480
6988
|
marketId: ""
|
|
6481
6989
|
};
|
|
6482
6990
|
}
|
|
6991
|
+
/**
|
|
6992
|
+
* QueryPerpetualMarketInfoRequest is the request type for the
|
|
6993
|
+
* Query/PerpetualMarketInfo RPC method.
|
|
6994
|
+
* @name QueryPerpetualMarketInfoRequest
|
|
6995
|
+
* @package injective.exchange.v1beta1
|
|
6996
|
+
* @see proto type: injective.exchange.v1beta1.QueryPerpetualMarketInfoRequest
|
|
6997
|
+
*/
|
|
6483
6998
|
export const QueryPerpetualMarketInfoRequest = {
|
|
6484
6999
|
typeUrl: "/injective.exchange.v1beta1.QueryPerpetualMarketInfoRequest",
|
|
6485
7000
|
is(o) {
|
|
@@ -6550,6 +7065,13 @@ function createBaseQueryPerpetualMarketInfoResponse() {
|
|
|
6550
7065
|
info: PerpetualMarketInfo.fromPartial({})
|
|
6551
7066
|
};
|
|
6552
7067
|
}
|
|
7068
|
+
/**
|
|
7069
|
+
* QueryPerpetualMarketInfoResponse is the response type for the
|
|
7070
|
+
* Query/PerpetualMarketInfo RPC method.
|
|
7071
|
+
* @name QueryPerpetualMarketInfoResponse
|
|
7072
|
+
* @package injective.exchange.v1beta1
|
|
7073
|
+
* @see proto type: injective.exchange.v1beta1.QueryPerpetualMarketInfoResponse
|
|
7074
|
+
*/
|
|
6553
7075
|
export const QueryPerpetualMarketInfoResponse = {
|
|
6554
7076
|
typeUrl: "/injective.exchange.v1beta1.QueryPerpetualMarketInfoResponse",
|
|
6555
7077
|
is(o) {
|
|
@@ -6625,6 +7147,13 @@ function createBaseQueryExpiryFuturesMarketInfoRequest() {
|
|
|
6625
7147
|
marketId: ""
|
|
6626
7148
|
};
|
|
6627
7149
|
}
|
|
7150
|
+
/**
|
|
7151
|
+
* QueryExpiryFuturesMarketInfoRequest is the request type for the Query/
|
|
7152
|
+
* ExpiryFuturesMarketInfo RPC method.
|
|
7153
|
+
* @name QueryExpiryFuturesMarketInfoRequest
|
|
7154
|
+
* @package injective.exchange.v1beta1
|
|
7155
|
+
* @see proto type: injective.exchange.v1beta1.QueryExpiryFuturesMarketInfoRequest
|
|
7156
|
+
*/
|
|
6628
7157
|
export const QueryExpiryFuturesMarketInfoRequest = {
|
|
6629
7158
|
typeUrl: "/injective.exchange.v1beta1.QueryExpiryFuturesMarketInfoRequest",
|
|
6630
7159
|
is(o) {
|
|
@@ -6695,6 +7224,13 @@ function createBaseQueryExpiryFuturesMarketInfoResponse() {
|
|
|
6695
7224
|
info: ExpiryFuturesMarketInfo.fromPartial({})
|
|
6696
7225
|
};
|
|
6697
7226
|
}
|
|
7227
|
+
/**
|
|
7228
|
+
* QueryExpiryFuturesMarketInfoResponse is the response type for the Query/
|
|
7229
|
+
* ExpiryFuturesMarketInfo RPC method.
|
|
7230
|
+
* @name QueryExpiryFuturesMarketInfoResponse
|
|
7231
|
+
* @package injective.exchange.v1beta1
|
|
7232
|
+
* @see proto type: injective.exchange.v1beta1.QueryExpiryFuturesMarketInfoResponse
|
|
7233
|
+
*/
|
|
6698
7234
|
export const QueryExpiryFuturesMarketInfoResponse = {
|
|
6699
7235
|
typeUrl: "/injective.exchange.v1beta1.QueryExpiryFuturesMarketInfoResponse",
|
|
6700
7236
|
is(o) {
|
|
@@ -6770,6 +7306,13 @@ function createBaseQueryPerpetualMarketFundingRequest() {
|
|
|
6770
7306
|
marketId: ""
|
|
6771
7307
|
};
|
|
6772
7308
|
}
|
|
7309
|
+
/**
|
|
7310
|
+
* QueryPerpetualMarketFundingRequest is the request type for the
|
|
7311
|
+
* Query/PerpetualMarketFunding RPC method.
|
|
7312
|
+
* @name QueryPerpetualMarketFundingRequest
|
|
7313
|
+
* @package injective.exchange.v1beta1
|
|
7314
|
+
* @see proto type: injective.exchange.v1beta1.QueryPerpetualMarketFundingRequest
|
|
7315
|
+
*/
|
|
6773
7316
|
export const QueryPerpetualMarketFundingRequest = {
|
|
6774
7317
|
typeUrl: "/injective.exchange.v1beta1.QueryPerpetualMarketFundingRequest",
|
|
6775
7318
|
is(o) {
|
|
@@ -6840,6 +7383,13 @@ function createBaseQueryPerpetualMarketFundingResponse() {
|
|
|
6840
7383
|
state: PerpetualMarketFunding.fromPartial({})
|
|
6841
7384
|
};
|
|
6842
7385
|
}
|
|
7386
|
+
/**
|
|
7387
|
+
* QueryPerpetualMarketFundingResponse is the response type for the
|
|
7388
|
+
* Query/PerpetualMarketFunding RPC method.
|
|
7389
|
+
* @name QueryPerpetualMarketFundingResponse
|
|
7390
|
+
* @package injective.exchange.v1beta1
|
|
7391
|
+
* @see proto type: injective.exchange.v1beta1.QueryPerpetualMarketFundingResponse
|
|
7392
|
+
*/
|
|
6843
7393
|
export const QueryPerpetualMarketFundingResponse = {
|
|
6844
7394
|
typeUrl: "/injective.exchange.v1beta1.QueryPerpetualMarketFundingResponse",
|
|
6845
7395
|
is(o) {
|
|
@@ -6915,6 +7465,13 @@ function createBaseQuerySubaccountOrderMetadataResponse() {
|
|
|
6915
7465
|
metadata: []
|
|
6916
7466
|
};
|
|
6917
7467
|
}
|
|
7468
|
+
/**
|
|
7469
|
+
* QuerySubaccountOrderMetadataResponse is the response type for the
|
|
7470
|
+
* Query/SubaccountOrderMetadata RPC method.
|
|
7471
|
+
* @name QuerySubaccountOrderMetadataResponse
|
|
7472
|
+
* @package injective.exchange.v1beta1
|
|
7473
|
+
* @see proto type: injective.exchange.v1beta1.QuerySubaccountOrderMetadataResponse
|
|
7474
|
+
*/
|
|
6918
7475
|
export const QuerySubaccountOrderMetadataResponse = {
|
|
6919
7476
|
typeUrl: "/injective.exchange.v1beta1.QuerySubaccountOrderMetadataResponse",
|
|
6920
7477
|
is(o) {
|
|
@@ -6993,6 +7550,13 @@ function createBaseQuerySubaccountTradeNonceResponse() {
|
|
|
6993
7550
|
nonce: 0
|
|
6994
7551
|
};
|
|
6995
7552
|
}
|
|
7553
|
+
/**
|
|
7554
|
+
* QuerySubaccountTradeNonceResponse is the response type for the
|
|
7555
|
+
* Query/SubaccountTradeNonce RPC method.
|
|
7556
|
+
* @name QuerySubaccountTradeNonceResponse
|
|
7557
|
+
* @package injective.exchange.v1beta1
|
|
7558
|
+
* @see proto type: injective.exchange.v1beta1.QuerySubaccountTradeNonceResponse
|
|
7559
|
+
*/
|
|
6996
7560
|
export const QuerySubaccountTradeNonceResponse = {
|
|
6997
7561
|
typeUrl: "/injective.exchange.v1beta1.QuerySubaccountTradeNonceResponse",
|
|
6998
7562
|
is(o) {
|
|
@@ -7061,6 +7625,13 @@ export const QuerySubaccountTradeNonceResponse = {
|
|
|
7061
7625
|
function createBaseQueryModuleStateRequest() {
|
|
7062
7626
|
return {};
|
|
7063
7627
|
}
|
|
7628
|
+
/**
|
|
7629
|
+
* QueryModuleStateRequest is the request type for the Query/ExchangeModuleState
|
|
7630
|
+
* RPC method.
|
|
7631
|
+
* @name QueryModuleStateRequest
|
|
7632
|
+
* @package injective.exchange.v1beta1
|
|
7633
|
+
* @see proto type: injective.exchange.v1beta1.QueryModuleStateRequest
|
|
7634
|
+
*/
|
|
7064
7635
|
export const QueryModuleStateRequest = {
|
|
7065
7636
|
typeUrl: "/injective.exchange.v1beta1.QueryModuleStateRequest",
|
|
7066
7637
|
is(o) {
|
|
@@ -7120,6 +7691,13 @@ function createBaseQueryModuleStateResponse() {
|
|
|
7120
7691
|
state: undefined
|
|
7121
7692
|
};
|
|
7122
7693
|
}
|
|
7694
|
+
/**
|
|
7695
|
+
* QueryModuleStateResponse is the response type for the
|
|
7696
|
+
* Query/ExchangeModuleState RPC method.
|
|
7697
|
+
* @name QueryModuleStateResponse
|
|
7698
|
+
* @package injective.exchange.v1beta1
|
|
7699
|
+
* @see proto type: injective.exchange.v1beta1.QueryModuleStateResponse
|
|
7700
|
+
*/
|
|
7123
7701
|
export const QueryModuleStateResponse = {
|
|
7124
7702
|
typeUrl: "/injective.exchange.v1beta1.QueryModuleStateResponse",
|
|
7125
7703
|
is(o) {
|
|
@@ -7193,6 +7771,12 @@ export const QueryModuleStateResponse = {
|
|
|
7193
7771
|
function createBaseQueryPositionsRequest() {
|
|
7194
7772
|
return {};
|
|
7195
7773
|
}
|
|
7774
|
+
/**
|
|
7775
|
+
* QueryPositionsRequest is the request type for the Query/Positions RPC method.
|
|
7776
|
+
* @name QueryPositionsRequest
|
|
7777
|
+
* @package injective.exchange.v1beta1
|
|
7778
|
+
* @see proto type: injective.exchange.v1beta1.QueryPositionsRequest
|
|
7779
|
+
*/
|
|
7196
7780
|
export const QueryPositionsRequest = {
|
|
7197
7781
|
typeUrl: "/injective.exchange.v1beta1.QueryPositionsRequest",
|
|
7198
7782
|
is(o) {
|
|
@@ -7252,6 +7836,13 @@ function createBaseQueryPositionsResponse() {
|
|
|
7252
7836
|
state: []
|
|
7253
7837
|
};
|
|
7254
7838
|
}
|
|
7839
|
+
/**
|
|
7840
|
+
* QueryPositionsResponse is the response type for the Query/Positions RPC
|
|
7841
|
+
* method.
|
|
7842
|
+
* @name QueryPositionsResponse
|
|
7843
|
+
* @package injective.exchange.v1beta1
|
|
7844
|
+
* @see proto type: injective.exchange.v1beta1.QueryPositionsResponse
|
|
7845
|
+
*/
|
|
7255
7846
|
export const QueryPositionsResponse = {
|
|
7256
7847
|
typeUrl: "/injective.exchange.v1beta1.QueryPositionsResponse",
|
|
7257
7848
|
is(o) {
|
|
@@ -7331,6 +7922,13 @@ function createBaseQueryTradeRewardPointsRequest() {
|
|
|
7331
7922
|
pendingPoolTimestamp: BigInt(0)
|
|
7332
7923
|
};
|
|
7333
7924
|
}
|
|
7925
|
+
/**
|
|
7926
|
+
* QueryTradeRewardPointsRequest is the request type for the
|
|
7927
|
+
* Query/TradeRewardPoints RPC method.
|
|
7928
|
+
* @name QueryTradeRewardPointsRequest
|
|
7929
|
+
* @package injective.exchange.v1beta1
|
|
7930
|
+
* @see proto type: injective.exchange.v1beta1.QueryTradeRewardPointsRequest
|
|
7931
|
+
*/
|
|
7334
7932
|
export const QueryTradeRewardPointsRequest = {
|
|
7335
7933
|
typeUrl: "/injective.exchange.v1beta1.QueryTradeRewardPointsRequest",
|
|
7336
7934
|
is(o) {
|
|
@@ -7415,6 +8013,13 @@ function createBaseQueryTradeRewardPointsResponse() {
|
|
|
7415
8013
|
accountTradeRewardPoints: []
|
|
7416
8014
|
};
|
|
7417
8015
|
}
|
|
8016
|
+
/**
|
|
8017
|
+
* QueryTradeRewardPointsResponse is the response type for the
|
|
8018
|
+
* Query/TradeRewardPoints RPC method.
|
|
8019
|
+
* @name QueryTradeRewardPointsResponse
|
|
8020
|
+
* @package injective.exchange.v1beta1
|
|
8021
|
+
* @see proto type: injective.exchange.v1beta1.QueryTradeRewardPointsResponse
|
|
8022
|
+
*/
|
|
7418
8023
|
export const QueryTradeRewardPointsResponse = {
|
|
7419
8024
|
typeUrl: "/injective.exchange.v1beta1.QueryTradeRewardPointsResponse",
|
|
7420
8025
|
is(o) {
|
|
@@ -7486,6 +8091,13 @@ export const QueryTradeRewardPointsResponse = {
|
|
|
7486
8091
|
function createBaseQueryTradeRewardCampaignRequest() {
|
|
7487
8092
|
return {};
|
|
7488
8093
|
}
|
|
8094
|
+
/**
|
|
8095
|
+
* QueryTradeRewardCampaignRequest is the request type for the
|
|
8096
|
+
* Query/TradeRewardCampaign RPC method.
|
|
8097
|
+
* @name QueryTradeRewardCampaignRequest
|
|
8098
|
+
* @package injective.exchange.v1beta1
|
|
8099
|
+
* @see proto type: injective.exchange.v1beta1.QueryTradeRewardCampaignRequest
|
|
8100
|
+
*/
|
|
7489
8101
|
export const QueryTradeRewardCampaignRequest = {
|
|
7490
8102
|
typeUrl: "/injective.exchange.v1beta1.QueryTradeRewardCampaignRequest",
|
|
7491
8103
|
is(o) {
|
|
@@ -7549,6 +8161,13 @@ function createBaseQueryTradeRewardCampaignResponse() {
|
|
|
7549
8161
|
pendingTotalTradeRewardPoints: []
|
|
7550
8162
|
};
|
|
7551
8163
|
}
|
|
8164
|
+
/**
|
|
8165
|
+
* QueryTradeRewardCampaignResponse is the response type for the
|
|
8166
|
+
* Query/TradeRewardCampaign RPC method.
|
|
8167
|
+
* @name QueryTradeRewardCampaignResponse
|
|
8168
|
+
* @package injective.exchange.v1beta1
|
|
8169
|
+
* @see proto type: injective.exchange.v1beta1.QueryTradeRewardCampaignResponse
|
|
8170
|
+
*/
|
|
7552
8171
|
export const QueryTradeRewardCampaignResponse = {
|
|
7553
8172
|
typeUrl: "/injective.exchange.v1beta1.QueryTradeRewardCampaignResponse",
|
|
7554
8173
|
is(o) {
|
|
@@ -7678,6 +8297,13 @@ function createBaseQueryIsOptedOutOfRewardsRequest() {
|
|
|
7678
8297
|
account: ""
|
|
7679
8298
|
};
|
|
7680
8299
|
}
|
|
8300
|
+
/**
|
|
8301
|
+
* QueryIsRegisteredDMMRequest is the request type for the Query/IsRegisteredDMM
|
|
8302
|
+
* RPC method.
|
|
8303
|
+
* @name QueryIsOptedOutOfRewardsRequest
|
|
8304
|
+
* @package injective.exchange.v1beta1
|
|
8305
|
+
* @see proto type: injective.exchange.v1beta1.QueryIsOptedOutOfRewardsRequest
|
|
8306
|
+
*/
|
|
7681
8307
|
export const QueryIsOptedOutOfRewardsRequest = {
|
|
7682
8308
|
typeUrl: "/injective.exchange.v1beta1.QueryIsOptedOutOfRewardsRequest",
|
|
7683
8309
|
is(o) {
|
|
@@ -7748,6 +8374,13 @@ function createBaseQueryIsOptedOutOfRewardsResponse() {
|
|
|
7748
8374
|
isOptedOut: false
|
|
7749
8375
|
};
|
|
7750
8376
|
}
|
|
8377
|
+
/**
|
|
8378
|
+
* QueryIsRegisteredDMMResponse is the response type for the
|
|
8379
|
+
* Query/IsRegisteredDMM RPC method.
|
|
8380
|
+
* @name QueryIsOptedOutOfRewardsResponse
|
|
8381
|
+
* @package injective.exchange.v1beta1
|
|
8382
|
+
* @see proto type: injective.exchange.v1beta1.QueryIsOptedOutOfRewardsResponse
|
|
8383
|
+
*/
|
|
7751
8384
|
export const QueryIsOptedOutOfRewardsResponse = {
|
|
7752
8385
|
typeUrl: "/injective.exchange.v1beta1.QueryIsOptedOutOfRewardsResponse",
|
|
7753
8386
|
is(o) {
|
|
@@ -7816,6 +8449,13 @@ export const QueryIsOptedOutOfRewardsResponse = {
|
|
|
7816
8449
|
function createBaseQueryOptedOutOfRewardsAccountsRequest() {
|
|
7817
8450
|
return {};
|
|
7818
8451
|
}
|
|
8452
|
+
/**
|
|
8453
|
+
* QueryRegisteredDMMsRequest is the request type for the Query/RegisteredDMMs
|
|
8454
|
+
* RPC method.
|
|
8455
|
+
* @name QueryOptedOutOfRewardsAccountsRequest
|
|
8456
|
+
* @package injective.exchange.v1beta1
|
|
8457
|
+
* @see proto type: injective.exchange.v1beta1.QueryOptedOutOfRewardsAccountsRequest
|
|
8458
|
+
*/
|
|
7819
8459
|
export const QueryOptedOutOfRewardsAccountsRequest = {
|
|
7820
8460
|
typeUrl: "/injective.exchange.v1beta1.QueryOptedOutOfRewardsAccountsRequest",
|
|
7821
8461
|
is(o) {
|
|
@@ -7875,6 +8515,13 @@ function createBaseQueryOptedOutOfRewardsAccountsResponse() {
|
|
|
7875
8515
|
accounts: []
|
|
7876
8516
|
};
|
|
7877
8517
|
}
|
|
8518
|
+
/**
|
|
8519
|
+
* QueryRegisteredDMMsResponse is the response type for the Query/RegisteredDMMs
|
|
8520
|
+
* RPC method.
|
|
8521
|
+
* @name QueryOptedOutOfRewardsAccountsResponse
|
|
8522
|
+
* @package injective.exchange.v1beta1
|
|
8523
|
+
* @see proto type: injective.exchange.v1beta1.QueryOptedOutOfRewardsAccountsResponse
|
|
8524
|
+
*/
|
|
7878
8525
|
export const QueryOptedOutOfRewardsAccountsResponse = {
|
|
7879
8526
|
typeUrl: "/injective.exchange.v1beta1.QueryOptedOutOfRewardsAccountsResponse",
|
|
7880
8527
|
is(o) {
|
|
@@ -7948,6 +8595,13 @@ function createBaseQueryFeeDiscountAccountInfoRequest() {
|
|
|
7948
8595
|
account: ""
|
|
7949
8596
|
};
|
|
7950
8597
|
}
|
|
8598
|
+
/**
|
|
8599
|
+
* QueryFeeDiscountAccountInfoRequest is the request type for the
|
|
8600
|
+
* Query/FeeDiscountAccountInfo RPC method.
|
|
8601
|
+
* @name QueryFeeDiscountAccountInfoRequest
|
|
8602
|
+
* @package injective.exchange.v1beta1
|
|
8603
|
+
* @see proto type: injective.exchange.v1beta1.QueryFeeDiscountAccountInfoRequest
|
|
8604
|
+
*/
|
|
7951
8605
|
export const QueryFeeDiscountAccountInfoRequest = {
|
|
7952
8606
|
typeUrl: "/injective.exchange.v1beta1.QueryFeeDiscountAccountInfoRequest",
|
|
7953
8607
|
is(o) {
|
|
@@ -8020,6 +8674,13 @@ function createBaseQueryFeeDiscountAccountInfoResponse() {
|
|
|
8020
8674
|
accountTtl: undefined
|
|
8021
8675
|
};
|
|
8022
8676
|
}
|
|
8677
|
+
/**
|
|
8678
|
+
* QueryFeeDiscountAccountInfoResponse is the response type for the
|
|
8679
|
+
* Query/FeeDiscountAccountInfo RPC method.
|
|
8680
|
+
* @name QueryFeeDiscountAccountInfoResponse
|
|
8681
|
+
* @package injective.exchange.v1beta1
|
|
8682
|
+
* @see proto type: injective.exchange.v1beta1.QueryFeeDiscountAccountInfoResponse
|
|
8683
|
+
*/
|
|
8023
8684
|
export const QueryFeeDiscountAccountInfoResponse = {
|
|
8024
8685
|
typeUrl: "/injective.exchange.v1beta1.QueryFeeDiscountAccountInfoResponse",
|
|
8025
8686
|
is(o) {
|
|
@@ -8116,6 +8777,13 @@ export const QueryFeeDiscountAccountInfoResponse = {
|
|
|
8116
8777
|
function createBaseQueryFeeDiscountScheduleRequest() {
|
|
8117
8778
|
return {};
|
|
8118
8779
|
}
|
|
8780
|
+
/**
|
|
8781
|
+
* QueryFeeDiscountScheduleRequest is the request type for the
|
|
8782
|
+
* Query/FeeDiscountSchedule RPC method.
|
|
8783
|
+
* @name QueryFeeDiscountScheduleRequest
|
|
8784
|
+
* @package injective.exchange.v1beta1
|
|
8785
|
+
* @see proto type: injective.exchange.v1beta1.QueryFeeDiscountScheduleRequest
|
|
8786
|
+
*/
|
|
8119
8787
|
export const QueryFeeDiscountScheduleRequest = {
|
|
8120
8788
|
typeUrl: "/injective.exchange.v1beta1.QueryFeeDiscountScheduleRequest",
|
|
8121
8789
|
is(o) {
|
|
@@ -8175,6 +8843,13 @@ function createBaseQueryFeeDiscountScheduleResponse() {
|
|
|
8175
8843
|
feeDiscountSchedule: undefined
|
|
8176
8844
|
};
|
|
8177
8845
|
}
|
|
8846
|
+
/**
|
|
8847
|
+
* QueryFeeDiscountScheduleResponse is the response type for the
|
|
8848
|
+
* Query/FeeDiscountSchedule RPC method.
|
|
8849
|
+
* @name QueryFeeDiscountScheduleResponse
|
|
8850
|
+
* @package injective.exchange.v1beta1
|
|
8851
|
+
* @see proto type: injective.exchange.v1beta1.QueryFeeDiscountScheduleResponse
|
|
8852
|
+
*/
|
|
8178
8853
|
export const QueryFeeDiscountScheduleResponse = {
|
|
8179
8854
|
typeUrl: "/injective.exchange.v1beta1.QueryFeeDiscountScheduleResponse",
|
|
8180
8855
|
is(o) {
|
|
@@ -8250,6 +8925,13 @@ function createBaseQueryBalanceMismatchesRequest() {
|
|
|
8250
8925
|
dustFactor: BigInt(0)
|
|
8251
8926
|
};
|
|
8252
8927
|
}
|
|
8928
|
+
/**
|
|
8929
|
+
* QueryBalanceMismatchesRequest is the request type for the
|
|
8930
|
+
* Query/QueryBalanceMismatches RPC method.
|
|
8931
|
+
* @name QueryBalanceMismatchesRequest
|
|
8932
|
+
* @package injective.exchange.v1beta1
|
|
8933
|
+
* @see proto type: injective.exchange.v1beta1.QueryBalanceMismatchesRequest
|
|
8934
|
+
*/
|
|
8253
8935
|
export const QueryBalanceMismatchesRequest = {
|
|
8254
8936
|
typeUrl: "/injective.exchange.v1beta1.QueryBalanceMismatchesRequest",
|
|
8255
8937
|
is(o) {
|
|
@@ -8326,6 +9008,11 @@ function createBaseBalanceMismatch() {
|
|
|
8326
9008
|
difference: ""
|
|
8327
9009
|
};
|
|
8328
9010
|
}
|
|
9011
|
+
/**
|
|
9012
|
+
* @name BalanceMismatch
|
|
9013
|
+
* @package injective.exchange.v1beta1
|
|
9014
|
+
* @see proto type: injective.exchange.v1beta1.BalanceMismatch
|
|
9015
|
+
*/
|
|
8329
9016
|
export const BalanceMismatch = {
|
|
8330
9017
|
typeUrl: "/injective.exchange.v1beta1.BalanceMismatch",
|
|
8331
9018
|
is(o) {
|
|
@@ -8462,6 +9149,13 @@ function createBaseQueryBalanceMismatchesResponse() {
|
|
|
8462
9149
|
balanceMismatches: []
|
|
8463
9150
|
};
|
|
8464
9151
|
}
|
|
9152
|
+
/**
|
|
9153
|
+
* QueryBalanceMismatchesResponse is the response type for the
|
|
9154
|
+
* Query/QueryBalanceMismatches RPC method.
|
|
9155
|
+
* @name QueryBalanceMismatchesResponse
|
|
9156
|
+
* @package injective.exchange.v1beta1
|
|
9157
|
+
* @see proto type: injective.exchange.v1beta1.QueryBalanceMismatchesResponse
|
|
9158
|
+
*/
|
|
8465
9159
|
export const QueryBalanceMismatchesResponse = {
|
|
8466
9160
|
typeUrl: "/injective.exchange.v1beta1.QueryBalanceMismatchesResponse",
|
|
8467
9161
|
is(o) {
|
|
@@ -8538,6 +9232,13 @@ export const QueryBalanceMismatchesResponse = {
|
|
|
8538
9232
|
function createBaseQueryBalanceWithBalanceHoldsRequest() {
|
|
8539
9233
|
return {};
|
|
8540
9234
|
}
|
|
9235
|
+
/**
|
|
9236
|
+
* QueryBalanceWithBalanceHoldsRequest is the request type for the
|
|
9237
|
+
* Query/QueryBalanceWithBalanceHolds RPC method.
|
|
9238
|
+
* @name QueryBalanceWithBalanceHoldsRequest
|
|
9239
|
+
* @package injective.exchange.v1beta1
|
|
9240
|
+
* @see proto type: injective.exchange.v1beta1.QueryBalanceWithBalanceHoldsRequest
|
|
9241
|
+
*/
|
|
8541
9242
|
export const QueryBalanceWithBalanceHoldsRequest = {
|
|
8542
9243
|
typeUrl: "/injective.exchange.v1beta1.QueryBalanceWithBalanceHoldsRequest",
|
|
8543
9244
|
is(o) {
|
|
@@ -8601,6 +9302,11 @@ function createBaseBalanceWithMarginHold() {
|
|
|
8601
9302
|
balanceHold: ""
|
|
8602
9303
|
};
|
|
8603
9304
|
}
|
|
9305
|
+
/**
|
|
9306
|
+
* @name BalanceWithMarginHold
|
|
9307
|
+
* @package injective.exchange.v1beta1
|
|
9308
|
+
* @see proto type: injective.exchange.v1beta1.BalanceWithMarginHold
|
|
9309
|
+
*/
|
|
8604
9310
|
export const BalanceWithMarginHold = {
|
|
8605
9311
|
typeUrl: "/injective.exchange.v1beta1.BalanceWithMarginHold",
|
|
8606
9312
|
is(o) {
|
|
@@ -8715,6 +9421,13 @@ function createBaseQueryBalanceWithBalanceHoldsResponse() {
|
|
|
8715
9421
|
balanceWithBalanceHolds: []
|
|
8716
9422
|
};
|
|
8717
9423
|
}
|
|
9424
|
+
/**
|
|
9425
|
+
* QueryBalanceWithBalanceHoldsResponse is the response type for the
|
|
9426
|
+
* Query/QueryBalanceWithBalanceHolds RPC method.
|
|
9427
|
+
* @name QueryBalanceWithBalanceHoldsResponse
|
|
9428
|
+
* @package injective.exchange.v1beta1
|
|
9429
|
+
* @see proto type: injective.exchange.v1beta1.QueryBalanceWithBalanceHoldsResponse
|
|
9430
|
+
*/
|
|
8718
9431
|
export const QueryBalanceWithBalanceHoldsResponse = {
|
|
8719
9432
|
typeUrl: "/injective.exchange.v1beta1.QueryBalanceWithBalanceHoldsResponse",
|
|
8720
9433
|
is(o) {
|
|
@@ -8791,6 +9504,13 @@ export const QueryBalanceWithBalanceHoldsResponse = {
|
|
|
8791
9504
|
function createBaseQueryFeeDiscountTierStatisticsRequest() {
|
|
8792
9505
|
return {};
|
|
8793
9506
|
}
|
|
9507
|
+
/**
|
|
9508
|
+
* QueryFeeDiscountTierStatisticsRequest is the request type for the
|
|
9509
|
+
* Query/QueryFeeDiscountTierStatistics RPC method.
|
|
9510
|
+
* @name QueryFeeDiscountTierStatisticsRequest
|
|
9511
|
+
* @package injective.exchange.v1beta1
|
|
9512
|
+
* @see proto type: injective.exchange.v1beta1.QueryFeeDiscountTierStatisticsRequest
|
|
9513
|
+
*/
|
|
8794
9514
|
export const QueryFeeDiscountTierStatisticsRequest = {
|
|
8795
9515
|
typeUrl: "/injective.exchange.v1beta1.QueryFeeDiscountTierStatisticsRequest",
|
|
8796
9516
|
is(o) {
|
|
@@ -8851,6 +9571,11 @@ function createBaseTierStatistic() {
|
|
|
8851
9571
|
count: BigInt(0)
|
|
8852
9572
|
};
|
|
8853
9573
|
}
|
|
9574
|
+
/**
|
|
9575
|
+
* @name TierStatistic
|
|
9576
|
+
* @package injective.exchange.v1beta1
|
|
9577
|
+
* @see proto type: injective.exchange.v1beta1.TierStatistic
|
|
9578
|
+
*/
|
|
8854
9579
|
export const TierStatistic = {
|
|
8855
9580
|
typeUrl: "/injective.exchange.v1beta1.TierStatistic",
|
|
8856
9581
|
is(o) {
|
|
@@ -8932,6 +9657,13 @@ function createBaseQueryFeeDiscountTierStatisticsResponse() {
|
|
|
8932
9657
|
statistics: []
|
|
8933
9658
|
};
|
|
8934
9659
|
}
|
|
9660
|
+
/**
|
|
9661
|
+
* QueryFeeDiscountTierStatisticsResponse is the response type for the
|
|
9662
|
+
* Query/QueryFeeDiscountTierStatistics RPC method.
|
|
9663
|
+
* @name QueryFeeDiscountTierStatisticsResponse
|
|
9664
|
+
* @package injective.exchange.v1beta1
|
|
9665
|
+
* @see proto type: injective.exchange.v1beta1.QueryFeeDiscountTierStatisticsResponse
|
|
9666
|
+
*/
|
|
8935
9667
|
export const QueryFeeDiscountTierStatisticsResponse = {
|
|
8936
9668
|
typeUrl: "/injective.exchange.v1beta1.QueryFeeDiscountTierStatisticsResponse",
|
|
8937
9669
|
is(o) {
|
|
@@ -9008,6 +9740,13 @@ export const QueryFeeDiscountTierStatisticsResponse = {
|
|
|
9008
9740
|
function createBaseMitoVaultInfosRequest() {
|
|
9009
9741
|
return {};
|
|
9010
9742
|
}
|
|
9743
|
+
/**
|
|
9744
|
+
* MitoVaultInfosRequest is the request type for the Query/MitoVaultInfos RPC
|
|
9745
|
+
* method.
|
|
9746
|
+
* @name MitoVaultInfosRequest
|
|
9747
|
+
* @package injective.exchange.v1beta1
|
|
9748
|
+
* @see proto type: injective.exchange.v1beta1.MitoVaultInfosRequest
|
|
9749
|
+
*/
|
|
9011
9750
|
export const MitoVaultInfosRequest = {
|
|
9012
9751
|
typeUrl: "/injective.exchange.v1beta1.MitoVaultInfosRequest",
|
|
9013
9752
|
is(o) {
|
|
@@ -9070,6 +9809,13 @@ function createBaseMitoVaultInfosResponse() {
|
|
|
9070
9809
|
cw20Addresses: []
|
|
9071
9810
|
};
|
|
9072
9811
|
}
|
|
9812
|
+
/**
|
|
9813
|
+
* MitoVaultInfosResponse is the response type for the Query/MitoVaultInfos RPC
|
|
9814
|
+
* method.
|
|
9815
|
+
* @name MitoVaultInfosResponse
|
|
9816
|
+
* @package injective.exchange.v1beta1
|
|
9817
|
+
* @see proto type: injective.exchange.v1beta1.MitoVaultInfosResponse
|
|
9818
|
+
*/
|
|
9073
9819
|
export const MitoVaultInfosResponse = {
|
|
9074
9820
|
typeUrl: "/injective.exchange.v1beta1.MitoVaultInfosResponse",
|
|
9075
9821
|
is(o) {
|
|
@@ -9185,6 +9931,13 @@ function createBaseQueryMarketIDFromVaultRequest() {
|
|
|
9185
9931
|
vaultAddress: ""
|
|
9186
9932
|
};
|
|
9187
9933
|
}
|
|
9934
|
+
/**
|
|
9935
|
+
* QueryMarketIDFromVaultRequest is the request type for the
|
|
9936
|
+
* Query/QueryMarketIDFromVault RPC method.
|
|
9937
|
+
* @name QueryMarketIDFromVaultRequest
|
|
9938
|
+
* @package injective.exchange.v1beta1
|
|
9939
|
+
* @see proto type: injective.exchange.v1beta1.QueryMarketIDFromVaultRequest
|
|
9940
|
+
*/
|
|
9188
9941
|
export const QueryMarketIDFromVaultRequest = {
|
|
9189
9942
|
typeUrl: "/injective.exchange.v1beta1.QueryMarketIDFromVaultRequest",
|
|
9190
9943
|
is(o) {
|
|
@@ -9255,6 +10008,13 @@ function createBaseQueryMarketIDFromVaultResponse() {
|
|
|
9255
10008
|
marketId: ""
|
|
9256
10009
|
};
|
|
9257
10010
|
}
|
|
10011
|
+
/**
|
|
10012
|
+
* QueryMarketIDFromVaultResponse is the response type for the
|
|
10013
|
+
* Query/QueryMarketIDFromVault RPC method.
|
|
10014
|
+
* @name QueryMarketIDFromVaultResponse
|
|
10015
|
+
* @package injective.exchange.v1beta1
|
|
10016
|
+
* @see proto type: injective.exchange.v1beta1.QueryMarketIDFromVaultResponse
|
|
10017
|
+
*/
|
|
9258
10018
|
export const QueryMarketIDFromVaultResponse = {
|
|
9259
10019
|
typeUrl: "/injective.exchange.v1beta1.QueryMarketIDFromVaultResponse",
|
|
9260
10020
|
is(o) {
|
|
@@ -9325,6 +10085,11 @@ function createBaseQueryHistoricalTradeRecordsRequest() {
|
|
|
9325
10085
|
marketId: ""
|
|
9326
10086
|
};
|
|
9327
10087
|
}
|
|
10088
|
+
/**
|
|
10089
|
+
* @name QueryHistoricalTradeRecordsRequest
|
|
10090
|
+
* @package injective.exchange.v1beta1
|
|
10091
|
+
* @see proto type: injective.exchange.v1beta1.QueryHistoricalTradeRecordsRequest
|
|
10092
|
+
*/
|
|
9328
10093
|
export const QueryHistoricalTradeRecordsRequest = {
|
|
9329
10094
|
typeUrl: "/injective.exchange.v1beta1.QueryHistoricalTradeRecordsRequest",
|
|
9330
10095
|
is(o) {
|
|
@@ -9395,6 +10160,11 @@ function createBaseQueryHistoricalTradeRecordsResponse() {
|
|
|
9395
10160
|
tradeRecords: []
|
|
9396
10161
|
};
|
|
9397
10162
|
}
|
|
10163
|
+
/**
|
|
10164
|
+
* @name QueryHistoricalTradeRecordsResponse
|
|
10165
|
+
* @package injective.exchange.v1beta1
|
|
10166
|
+
* @see proto type: injective.exchange.v1beta1.QueryHistoricalTradeRecordsResponse
|
|
10167
|
+
*/
|
|
9398
10168
|
export const QueryHistoricalTradeRecordsResponse = {
|
|
9399
10169
|
typeUrl: "/injective.exchange.v1beta1.QueryHistoricalTradeRecordsResponse",
|
|
9400
10170
|
is(o) {
|
|
@@ -9476,6 +10246,13 @@ function createBaseTradeHistoryOptions() {
|
|
|
9476
10246
|
includeMetadata: false
|
|
9477
10247
|
};
|
|
9478
10248
|
}
|
|
10249
|
+
/**
|
|
10250
|
+
* TradeHistoryOptions are the optional params for Query/MarketVolatility RPC
|
|
10251
|
+
* method.
|
|
10252
|
+
* @name TradeHistoryOptions
|
|
10253
|
+
* @package injective.exchange.v1beta1
|
|
10254
|
+
* @see proto type: injective.exchange.v1beta1.TradeHistoryOptions
|
|
10255
|
+
*/
|
|
9479
10256
|
export const TradeHistoryOptions = {
|
|
9480
10257
|
typeUrl: "/injective.exchange.v1beta1.TradeHistoryOptions",
|
|
9481
10258
|
is(o) {
|
|
@@ -9580,6 +10357,13 @@ function createBaseQueryMarketVolatilityRequest() {
|
|
|
9580
10357
|
tradeHistoryOptions: undefined
|
|
9581
10358
|
};
|
|
9582
10359
|
}
|
|
10360
|
+
/**
|
|
10361
|
+
* QueryMarketVolatilityRequest are the request params for the
|
|
10362
|
+
* Query/MarketVolatility RPC method.
|
|
10363
|
+
* @name QueryMarketVolatilityRequest
|
|
10364
|
+
* @package injective.exchange.v1beta1
|
|
10365
|
+
* @see proto type: injective.exchange.v1beta1.QueryMarketVolatilityRequest
|
|
10366
|
+
*/
|
|
9583
10367
|
export const QueryMarketVolatilityRequest = {
|
|
9584
10368
|
typeUrl: "/injective.exchange.v1beta1.QueryMarketVolatilityRequest",
|
|
9585
10369
|
is(o) {
|
|
@@ -9668,6 +10452,13 @@ function createBaseQueryMarketVolatilityResponse() {
|
|
|
9668
10452
|
rawHistory: []
|
|
9669
10453
|
};
|
|
9670
10454
|
}
|
|
10455
|
+
/**
|
|
10456
|
+
* QueryMarketVolatilityResponse is the response type for the
|
|
10457
|
+
* Query/MarketVolatility RPC method.
|
|
10458
|
+
* @name QueryMarketVolatilityResponse
|
|
10459
|
+
* @package injective.exchange.v1beta1
|
|
10460
|
+
* @see proto type: injective.exchange.v1beta1.QueryMarketVolatilityResponse
|
|
10461
|
+
*/
|
|
9671
10462
|
export const QueryMarketVolatilityResponse = {
|
|
9672
10463
|
typeUrl: "/injective.exchange.v1beta1.QueryMarketVolatilityResponse",
|
|
9673
10464
|
is(o) {
|
|
@@ -9769,6 +10560,13 @@ function createBaseQueryBinaryMarketsRequest() {
|
|
|
9769
10560
|
status: ""
|
|
9770
10561
|
};
|
|
9771
10562
|
}
|
|
10563
|
+
/**
|
|
10564
|
+
* QuerBinaryMarketsRequest is the request type for the Query/BinaryMarkets RPC
|
|
10565
|
+
* method.
|
|
10566
|
+
* @name QueryBinaryMarketsRequest
|
|
10567
|
+
* @package injective.exchange.v1beta1
|
|
10568
|
+
* @see proto type: injective.exchange.v1beta1.QueryBinaryMarketsRequest
|
|
10569
|
+
*/
|
|
9772
10570
|
export const QueryBinaryMarketsRequest = {
|
|
9773
10571
|
typeUrl: "/injective.exchange.v1beta1.QueryBinaryMarketsRequest",
|
|
9774
10572
|
is(o) {
|
|
@@ -9839,6 +10637,13 @@ function createBaseQueryBinaryMarketsResponse() {
|
|
|
9839
10637
|
markets: []
|
|
9840
10638
|
};
|
|
9841
10639
|
}
|
|
10640
|
+
/**
|
|
10641
|
+
* QueryBinaryMarketsResponse is the response type for the Query/BinaryMarkets
|
|
10642
|
+
* RPC method.
|
|
10643
|
+
* @name QueryBinaryMarketsResponse
|
|
10644
|
+
* @package injective.exchange.v1beta1
|
|
10645
|
+
* @see proto type: injective.exchange.v1beta1.QueryBinaryMarketsResponse
|
|
10646
|
+
*/
|
|
9842
10647
|
export const QueryBinaryMarketsResponse = {
|
|
9843
10648
|
typeUrl: "/injective.exchange.v1beta1.QueryBinaryMarketsResponse",
|
|
9844
10649
|
is(o) {
|
|
@@ -9918,6 +10723,13 @@ function createBaseQueryTraderDerivativeConditionalOrdersRequest() {
|
|
|
9918
10723
|
marketId: ""
|
|
9919
10724
|
};
|
|
9920
10725
|
}
|
|
10726
|
+
/**
|
|
10727
|
+
* QueryConditionalOrdersRequest is the request type for the
|
|
10728
|
+
* Query/ConditionalOrders RPC method.
|
|
10729
|
+
* @name QueryTraderDerivativeConditionalOrdersRequest
|
|
10730
|
+
* @package injective.exchange.v1beta1
|
|
10731
|
+
* @see proto type: injective.exchange.v1beta1.QueryTraderDerivativeConditionalOrdersRequest
|
|
10732
|
+
*/
|
|
9921
10733
|
export const QueryTraderDerivativeConditionalOrdersRequest = {
|
|
9922
10734
|
typeUrl: "/injective.exchange.v1beta1.QueryTraderDerivativeConditionalOrdersRequest",
|
|
9923
10735
|
is(o) {
|
|
@@ -10006,6 +10818,11 @@ function createBaseTrimmedDerivativeConditionalOrder() {
|
|
|
10006
10818
|
cid: ""
|
|
10007
10819
|
};
|
|
10008
10820
|
}
|
|
10821
|
+
/**
|
|
10822
|
+
* @name TrimmedDerivativeConditionalOrder
|
|
10823
|
+
* @package injective.exchange.v1beta1
|
|
10824
|
+
* @see proto type: injective.exchange.v1beta1.TrimmedDerivativeConditionalOrder
|
|
10825
|
+
*/
|
|
10009
10826
|
export const TrimmedDerivativeConditionalOrder = {
|
|
10010
10827
|
typeUrl: "/injective.exchange.v1beta1.TrimmedDerivativeConditionalOrder",
|
|
10011
10828
|
is(o) {
|
|
@@ -10153,6 +10970,13 @@ function createBaseQueryTraderDerivativeConditionalOrdersResponse() {
|
|
|
10153
10970
|
orders: []
|
|
10154
10971
|
};
|
|
10155
10972
|
}
|
|
10973
|
+
/**
|
|
10974
|
+
* QueryTraderDerivativeOrdersResponse is the response type for the
|
|
10975
|
+
* Query/TraderDerivativeOrders RPC method.
|
|
10976
|
+
* @name QueryTraderDerivativeConditionalOrdersResponse
|
|
10977
|
+
* @package injective.exchange.v1beta1
|
|
10978
|
+
* @see proto type: injective.exchange.v1beta1.QueryTraderDerivativeConditionalOrdersResponse
|
|
10979
|
+
*/
|
|
10156
10980
|
export const QueryTraderDerivativeConditionalOrdersResponse = {
|
|
10157
10981
|
typeUrl: "/injective.exchange.v1beta1.QueryTraderDerivativeConditionalOrdersResponse",
|
|
10158
10982
|
is(o) {
|
|
@@ -10231,6 +11055,11 @@ function createBaseQueryMarketAtomicExecutionFeeMultiplierRequest() {
|
|
|
10231
11055
|
marketId: ""
|
|
10232
11056
|
};
|
|
10233
11057
|
}
|
|
11058
|
+
/**
|
|
11059
|
+
* @name QueryMarketAtomicExecutionFeeMultiplierRequest
|
|
11060
|
+
* @package injective.exchange.v1beta1
|
|
11061
|
+
* @see proto type: injective.exchange.v1beta1.QueryMarketAtomicExecutionFeeMultiplierRequest
|
|
11062
|
+
*/
|
|
10234
11063
|
export const QueryMarketAtomicExecutionFeeMultiplierRequest = {
|
|
10235
11064
|
typeUrl: "/injective.exchange.v1beta1.QueryMarketAtomicExecutionFeeMultiplierRequest",
|
|
10236
11065
|
is(o) {
|
|
@@ -10301,6 +11130,11 @@ function createBaseQueryMarketAtomicExecutionFeeMultiplierResponse() {
|
|
|
10301
11130
|
multiplier: ""
|
|
10302
11131
|
};
|
|
10303
11132
|
}
|
|
11133
|
+
/**
|
|
11134
|
+
* @name QueryMarketAtomicExecutionFeeMultiplierResponse
|
|
11135
|
+
* @package injective.exchange.v1beta1
|
|
11136
|
+
* @see proto type: injective.exchange.v1beta1.QueryMarketAtomicExecutionFeeMultiplierResponse
|
|
11137
|
+
*/
|
|
10304
11138
|
export const QueryMarketAtomicExecutionFeeMultiplierResponse = {
|
|
10305
11139
|
typeUrl: "/injective.exchange.v1beta1.QueryMarketAtomicExecutionFeeMultiplierResponse",
|
|
10306
11140
|
is(o) {
|
|
@@ -10371,6 +11205,11 @@ function createBaseQueryActiveStakeGrantRequest() {
|
|
|
10371
11205
|
grantee: ""
|
|
10372
11206
|
};
|
|
10373
11207
|
}
|
|
11208
|
+
/**
|
|
11209
|
+
* @name QueryActiveStakeGrantRequest
|
|
11210
|
+
* @package injective.exchange.v1beta1
|
|
11211
|
+
* @see proto type: injective.exchange.v1beta1.QueryActiveStakeGrantRequest
|
|
11212
|
+
*/
|
|
10374
11213
|
export const QueryActiveStakeGrantRequest = {
|
|
10375
11214
|
typeUrl: "/injective.exchange.v1beta1.QueryActiveStakeGrantRequest",
|
|
10376
11215
|
is(o) {
|
|
@@ -10442,6 +11281,11 @@ function createBaseQueryActiveStakeGrantResponse() {
|
|
|
10442
11281
|
effectiveGrant: undefined
|
|
10443
11282
|
};
|
|
10444
11283
|
}
|
|
11284
|
+
/**
|
|
11285
|
+
* @name QueryActiveStakeGrantResponse
|
|
11286
|
+
* @package injective.exchange.v1beta1
|
|
11287
|
+
* @see proto type: injective.exchange.v1beta1.QueryActiveStakeGrantResponse
|
|
11288
|
+
*/
|
|
10445
11289
|
export const QueryActiveStakeGrantResponse = {
|
|
10446
11290
|
typeUrl: "/injective.exchange.v1beta1.QueryActiveStakeGrantResponse",
|
|
10447
11291
|
is(o) {
|
|
@@ -10530,6 +11374,11 @@ function createBaseQueryGrantAuthorizationRequest() {
|
|
|
10530
11374
|
grantee: ""
|
|
10531
11375
|
};
|
|
10532
11376
|
}
|
|
11377
|
+
/**
|
|
11378
|
+
* @name QueryGrantAuthorizationRequest
|
|
11379
|
+
* @package injective.exchange.v1beta1
|
|
11380
|
+
* @see proto type: injective.exchange.v1beta1.QueryGrantAuthorizationRequest
|
|
11381
|
+
*/
|
|
10533
11382
|
export const QueryGrantAuthorizationRequest = {
|
|
10534
11383
|
typeUrl: "/injective.exchange.v1beta1.QueryGrantAuthorizationRequest",
|
|
10535
11384
|
is(o) {
|
|
@@ -10611,6 +11460,11 @@ function createBaseQueryGrantAuthorizationResponse() {
|
|
|
10611
11460
|
amount: ""
|
|
10612
11461
|
};
|
|
10613
11462
|
}
|
|
11463
|
+
/**
|
|
11464
|
+
* @name QueryGrantAuthorizationResponse
|
|
11465
|
+
* @package injective.exchange.v1beta1
|
|
11466
|
+
* @see proto type: injective.exchange.v1beta1.QueryGrantAuthorizationResponse
|
|
11467
|
+
*/
|
|
10614
11468
|
export const QueryGrantAuthorizationResponse = {
|
|
10615
11469
|
typeUrl: "/injective.exchange.v1beta1.QueryGrantAuthorizationResponse",
|
|
10616
11470
|
is(o) {
|
|
@@ -10681,6 +11535,11 @@ function createBaseQueryGrantAuthorizationsRequest() {
|
|
|
10681
11535
|
granter: ""
|
|
10682
11536
|
};
|
|
10683
11537
|
}
|
|
11538
|
+
/**
|
|
11539
|
+
* @name QueryGrantAuthorizationsRequest
|
|
11540
|
+
* @package injective.exchange.v1beta1
|
|
11541
|
+
* @see proto type: injective.exchange.v1beta1.QueryGrantAuthorizationsRequest
|
|
11542
|
+
*/
|
|
10684
11543
|
export const QueryGrantAuthorizationsRequest = {
|
|
10685
11544
|
typeUrl: "/injective.exchange.v1beta1.QueryGrantAuthorizationsRequest",
|
|
10686
11545
|
is(o) {
|
|
@@ -10752,6 +11611,11 @@ function createBaseQueryGrantAuthorizationsResponse() {
|
|
|
10752
11611
|
grants: []
|
|
10753
11612
|
};
|
|
10754
11613
|
}
|
|
11614
|
+
/**
|
|
11615
|
+
* @name QueryGrantAuthorizationsResponse
|
|
11616
|
+
* @package injective.exchange.v1beta1
|
|
11617
|
+
* @see proto type: injective.exchange.v1beta1.QueryGrantAuthorizationsResponse
|
|
11618
|
+
*/
|
|
10755
11619
|
export const QueryGrantAuthorizationsResponse = {
|
|
10756
11620
|
typeUrl: "/injective.exchange.v1beta1.QueryGrantAuthorizationsResponse",
|
|
10757
11621
|
is(o) {
|