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
|
@@ -19,6 +19,11 @@ function createBaseMsgUpdateSpotMarket() {
|
|
|
19
19
|
newMinNotional: ""
|
|
20
20
|
};
|
|
21
21
|
}
|
|
22
|
+
/**
|
|
23
|
+
* @name MsgUpdateSpotMarket
|
|
24
|
+
* @package injective.exchange.v1beta1
|
|
25
|
+
* @see proto type: injective.exchange.v1beta1.MsgUpdateSpotMarket
|
|
26
|
+
*/
|
|
22
27
|
exports.MsgUpdateSpotMarket = {
|
|
23
28
|
typeUrl: "/injective.exchange.v1beta1.MsgUpdateSpotMarket",
|
|
24
29
|
aminoType: "exchange/MsgUpdateSpotMarket",
|
|
@@ -149,6 +154,11 @@ exports.MsgUpdateSpotMarket = {
|
|
|
149
154
|
function createBaseMsgUpdateSpotMarketResponse() {
|
|
150
155
|
return {};
|
|
151
156
|
}
|
|
157
|
+
/**
|
|
158
|
+
* @name MsgUpdateSpotMarketResponse
|
|
159
|
+
* @package injective.exchange.v1beta1
|
|
160
|
+
* @see proto type: injective.exchange.v1beta1.MsgUpdateSpotMarketResponse
|
|
161
|
+
*/
|
|
152
162
|
exports.MsgUpdateSpotMarketResponse = {
|
|
153
163
|
typeUrl: "/injective.exchange.v1beta1.MsgUpdateSpotMarketResponse",
|
|
154
164
|
is(o) {
|
|
@@ -215,6 +225,11 @@ function createBaseMsgUpdateDerivativeMarket() {
|
|
|
215
225
|
newMaintenanceMarginRatio: ""
|
|
216
226
|
};
|
|
217
227
|
}
|
|
228
|
+
/**
|
|
229
|
+
* @name MsgUpdateDerivativeMarket
|
|
230
|
+
* @package injective.exchange.v1beta1
|
|
231
|
+
* @see proto type: injective.exchange.v1beta1.MsgUpdateDerivativeMarket
|
|
232
|
+
*/
|
|
218
233
|
exports.MsgUpdateDerivativeMarket = {
|
|
219
234
|
typeUrl: "/injective.exchange.v1beta1.MsgUpdateDerivativeMarket",
|
|
220
235
|
aminoType: "exchange/MsgUpdateDerivativeMarket",
|
|
@@ -367,6 +382,11 @@ exports.MsgUpdateDerivativeMarket = {
|
|
|
367
382
|
function createBaseMsgUpdateDerivativeMarketResponse() {
|
|
368
383
|
return {};
|
|
369
384
|
}
|
|
385
|
+
/**
|
|
386
|
+
* @name MsgUpdateDerivativeMarketResponse
|
|
387
|
+
* @package injective.exchange.v1beta1
|
|
388
|
+
* @see proto type: injective.exchange.v1beta1.MsgUpdateDerivativeMarketResponse
|
|
389
|
+
*/
|
|
370
390
|
exports.MsgUpdateDerivativeMarketResponse = {
|
|
371
391
|
typeUrl: "/injective.exchange.v1beta1.MsgUpdateDerivativeMarketResponse",
|
|
372
392
|
is(o) {
|
|
@@ -427,6 +447,11 @@ function createBaseMsgUpdateParams() {
|
|
|
427
447
|
params: distribution_1.Params.fromPartial({})
|
|
428
448
|
};
|
|
429
449
|
}
|
|
450
|
+
/**
|
|
451
|
+
* @name MsgUpdateParams
|
|
452
|
+
* @package injective.exchange.v1beta1
|
|
453
|
+
* @see proto type: injective.exchange.v1beta1.MsgUpdateParams
|
|
454
|
+
*/
|
|
430
455
|
exports.MsgUpdateParams = {
|
|
431
456
|
typeUrl: "/injective.exchange.v1beta1.MsgUpdateParams",
|
|
432
457
|
aminoType: "exchange/MsgUpdateParams",
|
|
@@ -518,6 +543,11 @@ exports.MsgUpdateParams = {
|
|
|
518
543
|
function createBaseMsgUpdateParamsResponse() {
|
|
519
544
|
return {};
|
|
520
545
|
}
|
|
546
|
+
/**
|
|
547
|
+
* @name MsgUpdateParamsResponse
|
|
548
|
+
* @package injective.exchange.v1beta1
|
|
549
|
+
* @see proto type: injective.exchange.v1beta1.MsgUpdateParamsResponse
|
|
550
|
+
*/
|
|
521
551
|
exports.MsgUpdateParamsResponse = {
|
|
522
552
|
typeUrl: "/injective.exchange.v1beta1.MsgUpdateParamsResponse",
|
|
523
553
|
is(o) {
|
|
@@ -579,6 +609,13 @@ function createBaseMsgDeposit() {
|
|
|
579
609
|
amount: coin_1.Coin.fromPartial({})
|
|
580
610
|
};
|
|
581
611
|
}
|
|
612
|
+
/**
|
|
613
|
+
* MsgDeposit defines a SDK message for transferring coins from the sender's
|
|
614
|
+
* bank balance into the subaccount's exchange deposits
|
|
615
|
+
* @name MsgDeposit
|
|
616
|
+
* @package injective.exchange.v1beta1
|
|
617
|
+
* @see proto type: injective.exchange.v1beta1.MsgDeposit
|
|
618
|
+
*/
|
|
582
619
|
exports.MsgDeposit = {
|
|
583
620
|
typeUrl: "/injective.exchange.v1beta1.MsgDeposit",
|
|
584
621
|
aminoType: "exchange/MsgDeposit",
|
|
@@ -681,6 +718,12 @@ exports.MsgDeposit = {
|
|
|
681
718
|
function createBaseMsgDepositResponse() {
|
|
682
719
|
return {};
|
|
683
720
|
}
|
|
721
|
+
/**
|
|
722
|
+
* MsgDepositResponse defines the Msg/Deposit response type.
|
|
723
|
+
* @name MsgDepositResponse
|
|
724
|
+
* @package injective.exchange.v1beta1
|
|
725
|
+
* @see proto type: injective.exchange.v1beta1.MsgDepositResponse
|
|
726
|
+
*/
|
|
684
727
|
exports.MsgDepositResponse = {
|
|
685
728
|
typeUrl: "/injective.exchange.v1beta1.MsgDepositResponse",
|
|
686
729
|
is(o) {
|
|
@@ -742,6 +785,13 @@ function createBaseMsgWithdraw() {
|
|
|
742
785
|
amount: coin_1.Coin.fromPartial({})
|
|
743
786
|
};
|
|
744
787
|
}
|
|
788
|
+
/**
|
|
789
|
+
* MsgWithdraw defines a SDK message for withdrawing coins from a subaccount's
|
|
790
|
+
* deposits to the user's bank balance
|
|
791
|
+
* @name MsgWithdraw
|
|
792
|
+
* @package injective.exchange.v1beta1
|
|
793
|
+
* @see proto type: injective.exchange.v1beta1.MsgWithdraw
|
|
794
|
+
*/
|
|
745
795
|
exports.MsgWithdraw = {
|
|
746
796
|
typeUrl: "/injective.exchange.v1beta1.MsgWithdraw",
|
|
747
797
|
aminoType: "exchange/MsgWithdraw",
|
|
@@ -844,6 +894,12 @@ exports.MsgWithdraw = {
|
|
|
844
894
|
function createBaseMsgWithdrawResponse() {
|
|
845
895
|
return {};
|
|
846
896
|
}
|
|
897
|
+
/**
|
|
898
|
+
* MsgWithdraw defines the Msg/Withdraw response type.
|
|
899
|
+
* @name MsgWithdrawResponse
|
|
900
|
+
* @package injective.exchange.v1beta1
|
|
901
|
+
* @see proto type: injective.exchange.v1beta1.MsgWithdrawResponse
|
|
902
|
+
*/
|
|
847
903
|
exports.MsgWithdrawResponse = {
|
|
848
904
|
typeUrl: "/injective.exchange.v1beta1.MsgWithdrawResponse",
|
|
849
905
|
is(o) {
|
|
@@ -904,6 +960,13 @@ function createBaseMsgCreateSpotLimitOrder() {
|
|
|
904
960
|
order: exchange_1.SpotOrder.fromPartial({})
|
|
905
961
|
};
|
|
906
962
|
}
|
|
963
|
+
/**
|
|
964
|
+
* MsgCreateSpotLimitOrder defines a SDK message for creating a new spot limit
|
|
965
|
+
* order.
|
|
966
|
+
* @name MsgCreateSpotLimitOrder
|
|
967
|
+
* @package injective.exchange.v1beta1
|
|
968
|
+
* @see proto type: injective.exchange.v1beta1.MsgCreateSpotLimitOrder
|
|
969
|
+
*/
|
|
907
970
|
exports.MsgCreateSpotLimitOrder = {
|
|
908
971
|
typeUrl: "/injective.exchange.v1beta1.MsgCreateSpotLimitOrder",
|
|
909
972
|
aminoType: "exchange/MsgCreateSpotLimitOrder",
|
|
@@ -998,6 +1061,13 @@ function createBaseMsgCreateSpotLimitOrderResponse() {
|
|
|
998
1061
|
cid: ""
|
|
999
1062
|
};
|
|
1000
1063
|
}
|
|
1064
|
+
/**
|
|
1065
|
+
* MsgCreateSpotLimitOrderResponse defines the Msg/CreateSpotOrder response
|
|
1066
|
+
* type.
|
|
1067
|
+
* @name MsgCreateSpotLimitOrderResponse
|
|
1068
|
+
* @package injective.exchange.v1beta1
|
|
1069
|
+
* @see proto type: injective.exchange.v1beta1.MsgCreateSpotLimitOrderResponse
|
|
1070
|
+
*/
|
|
1001
1071
|
exports.MsgCreateSpotLimitOrderResponse = {
|
|
1002
1072
|
typeUrl: "/injective.exchange.v1beta1.MsgCreateSpotLimitOrderResponse",
|
|
1003
1073
|
is(o) {
|
|
@@ -1080,6 +1150,13 @@ function createBaseMsgBatchCreateSpotLimitOrders() {
|
|
|
1080
1150
|
orders: []
|
|
1081
1151
|
};
|
|
1082
1152
|
}
|
|
1153
|
+
/**
|
|
1154
|
+
* MsgBatchCreateSpotLimitOrders defines a SDK message for creating a new batch
|
|
1155
|
+
* of spot limit orders.
|
|
1156
|
+
* @name MsgBatchCreateSpotLimitOrders
|
|
1157
|
+
* @package injective.exchange.v1beta1
|
|
1158
|
+
* @see proto type: injective.exchange.v1beta1.MsgBatchCreateSpotLimitOrders
|
|
1159
|
+
*/
|
|
1083
1160
|
exports.MsgBatchCreateSpotLimitOrders = {
|
|
1084
1161
|
typeUrl: "/injective.exchange.v1beta1.MsgBatchCreateSpotLimitOrders",
|
|
1085
1162
|
aminoType: "exchange/MsgBatchCreateSpotLimitOrders",
|
|
@@ -1178,6 +1255,13 @@ function createBaseMsgBatchCreateSpotLimitOrdersResponse() {
|
|
|
1178
1255
|
failedOrdersCids: []
|
|
1179
1256
|
};
|
|
1180
1257
|
}
|
|
1258
|
+
/**
|
|
1259
|
+
* MsgBatchCreateSpotLimitOrdersResponse defines the
|
|
1260
|
+
* Msg/BatchCreateSpotLimitOrders response type.
|
|
1261
|
+
* @name MsgBatchCreateSpotLimitOrdersResponse
|
|
1262
|
+
* @package injective.exchange.v1beta1
|
|
1263
|
+
* @see proto type: injective.exchange.v1beta1.MsgBatchCreateSpotLimitOrdersResponse
|
|
1264
|
+
*/
|
|
1181
1265
|
exports.MsgBatchCreateSpotLimitOrdersResponse = {
|
|
1182
1266
|
typeUrl: "/injective.exchange.v1beta1.MsgBatchCreateSpotLimitOrdersResponse",
|
|
1183
1267
|
is(o) {
|
|
@@ -1285,6 +1369,13 @@ function createBaseMsgInstantSpotMarketLaunch() {
|
|
|
1285
1369
|
minNotional: ""
|
|
1286
1370
|
};
|
|
1287
1371
|
}
|
|
1372
|
+
/**
|
|
1373
|
+
* MsgInstantSpotMarketLaunch defines a SDK message for creating a new spot
|
|
1374
|
+
* market by paying listing fee without governance
|
|
1375
|
+
* @name MsgInstantSpotMarketLaunch
|
|
1376
|
+
* @package injective.exchange.v1beta1
|
|
1377
|
+
* @see proto type: injective.exchange.v1beta1.MsgInstantSpotMarketLaunch
|
|
1378
|
+
*/
|
|
1288
1379
|
exports.MsgInstantSpotMarketLaunch = {
|
|
1289
1380
|
typeUrl: "/injective.exchange.v1beta1.MsgInstantSpotMarketLaunch",
|
|
1290
1381
|
aminoType: "exchange/MsgInstantSpotMarketLaunch",
|
|
@@ -1426,6 +1517,13 @@ exports.MsgInstantSpotMarketLaunch = {
|
|
|
1426
1517
|
function createBaseMsgInstantSpotMarketLaunchResponse() {
|
|
1427
1518
|
return {};
|
|
1428
1519
|
}
|
|
1520
|
+
/**
|
|
1521
|
+
* MsgInstantSpotMarketLaunchResponse defines the Msg/InstantSpotMarketLaunch
|
|
1522
|
+
* response type.
|
|
1523
|
+
* @name MsgInstantSpotMarketLaunchResponse
|
|
1524
|
+
* @package injective.exchange.v1beta1
|
|
1525
|
+
* @see proto type: injective.exchange.v1beta1.MsgInstantSpotMarketLaunchResponse
|
|
1526
|
+
*/
|
|
1429
1527
|
exports.MsgInstantSpotMarketLaunchResponse = {
|
|
1430
1528
|
typeUrl: "/injective.exchange.v1beta1.MsgInstantSpotMarketLaunchResponse",
|
|
1431
1529
|
is(o) {
|
|
@@ -1498,6 +1596,13 @@ function createBaseMsgInstantPerpetualMarketLaunch() {
|
|
|
1498
1596
|
minNotional: ""
|
|
1499
1597
|
};
|
|
1500
1598
|
}
|
|
1599
|
+
/**
|
|
1600
|
+
* MsgInstantPerpetualMarketLaunch defines a SDK message for creating a new
|
|
1601
|
+
* perpetual futures market by paying listing fee without governance
|
|
1602
|
+
* @name MsgInstantPerpetualMarketLaunch
|
|
1603
|
+
* @package injective.exchange.v1beta1
|
|
1604
|
+
* @see proto type: injective.exchange.v1beta1.MsgInstantPerpetualMarketLaunch
|
|
1605
|
+
*/
|
|
1501
1606
|
exports.MsgInstantPerpetualMarketLaunch = {
|
|
1502
1607
|
typeUrl: "/injective.exchange.v1beta1.MsgInstantPerpetualMarketLaunch",
|
|
1503
1608
|
aminoType: "exchange/MsgInstantPerpetualMarketLaunch",
|
|
@@ -1716,6 +1821,13 @@ exports.MsgInstantPerpetualMarketLaunch = {
|
|
|
1716
1821
|
function createBaseMsgInstantPerpetualMarketLaunchResponse() {
|
|
1717
1822
|
return {};
|
|
1718
1823
|
}
|
|
1824
|
+
/**
|
|
1825
|
+
* MsgInstantPerpetualMarketLaunchResponse defines the
|
|
1826
|
+
* Msg/InstantPerpetualMarketLaunchResponse response type.
|
|
1827
|
+
* @name MsgInstantPerpetualMarketLaunchResponse
|
|
1828
|
+
* @package injective.exchange.v1beta1
|
|
1829
|
+
* @see proto type: injective.exchange.v1beta1.MsgInstantPerpetualMarketLaunchResponse
|
|
1830
|
+
*/
|
|
1719
1831
|
exports.MsgInstantPerpetualMarketLaunchResponse = {
|
|
1720
1832
|
typeUrl: "/injective.exchange.v1beta1.MsgInstantPerpetualMarketLaunchResponse",
|
|
1721
1833
|
is(o) {
|
|
@@ -1789,6 +1901,13 @@ function createBaseMsgInstantBinaryOptionsMarketLaunch() {
|
|
|
1789
1901
|
minNotional: ""
|
|
1790
1902
|
};
|
|
1791
1903
|
}
|
|
1904
|
+
/**
|
|
1905
|
+
* MsgInstantBinaryOptionsMarketLaunch defines a SDK message for creating a new
|
|
1906
|
+
* perpetual futures market by paying listing fee without governance
|
|
1907
|
+
* @name MsgInstantBinaryOptionsMarketLaunch
|
|
1908
|
+
* @package injective.exchange.v1beta1
|
|
1909
|
+
* @see proto type: injective.exchange.v1beta1.MsgInstantBinaryOptionsMarketLaunch
|
|
1910
|
+
*/
|
|
1792
1911
|
exports.MsgInstantBinaryOptionsMarketLaunch = {
|
|
1793
1912
|
typeUrl: "/injective.exchange.v1beta1.MsgInstantBinaryOptionsMarketLaunch",
|
|
1794
1913
|
aminoType: "exchange/MsgInstantBinaryOptionsMarketLaunch",
|
|
@@ -2018,6 +2137,13 @@ exports.MsgInstantBinaryOptionsMarketLaunch = {
|
|
|
2018
2137
|
function createBaseMsgInstantBinaryOptionsMarketLaunchResponse() {
|
|
2019
2138
|
return {};
|
|
2020
2139
|
}
|
|
2140
|
+
/**
|
|
2141
|
+
* MsgInstantBinaryOptionsMarketLaunchResponse defines the
|
|
2142
|
+
* Msg/InstantBinaryOptionsMarketLaunchResponse response type.
|
|
2143
|
+
* @name MsgInstantBinaryOptionsMarketLaunchResponse
|
|
2144
|
+
* @package injective.exchange.v1beta1
|
|
2145
|
+
* @see proto type: injective.exchange.v1beta1.MsgInstantBinaryOptionsMarketLaunchResponse
|
|
2146
|
+
*/
|
|
2021
2147
|
exports.MsgInstantBinaryOptionsMarketLaunchResponse = {
|
|
2022
2148
|
typeUrl: "/injective.exchange.v1beta1.MsgInstantBinaryOptionsMarketLaunchResponse",
|
|
2023
2149
|
is(o) {
|
|
@@ -2091,6 +2217,13 @@ function createBaseMsgInstantExpiryFuturesMarketLaunch() {
|
|
|
2091
2217
|
minNotional: ""
|
|
2092
2218
|
};
|
|
2093
2219
|
}
|
|
2220
|
+
/**
|
|
2221
|
+
* MsgInstantExpiryFuturesMarketLaunch defines a SDK message for creating a new
|
|
2222
|
+
* expiry futures market by paying listing fee without governance
|
|
2223
|
+
* @name MsgInstantExpiryFuturesMarketLaunch
|
|
2224
|
+
* @package injective.exchange.v1beta1
|
|
2225
|
+
* @see proto type: injective.exchange.v1beta1.MsgInstantExpiryFuturesMarketLaunch
|
|
2226
|
+
*/
|
|
2094
2227
|
exports.MsgInstantExpiryFuturesMarketLaunch = {
|
|
2095
2228
|
typeUrl: "/injective.exchange.v1beta1.MsgInstantExpiryFuturesMarketLaunch",
|
|
2096
2229
|
aminoType: "exchange/MsgInstantExpiryFuturesMarketLaunch",
|
|
@@ -2320,6 +2453,13 @@ exports.MsgInstantExpiryFuturesMarketLaunch = {
|
|
|
2320
2453
|
function createBaseMsgInstantExpiryFuturesMarketLaunchResponse() {
|
|
2321
2454
|
return {};
|
|
2322
2455
|
}
|
|
2456
|
+
/**
|
|
2457
|
+
* MsgInstantExpiryFuturesMarketLaunchResponse defines the
|
|
2458
|
+
* Msg/InstantExpiryFuturesMarketLaunch response type.
|
|
2459
|
+
* @name MsgInstantExpiryFuturesMarketLaunchResponse
|
|
2460
|
+
* @package injective.exchange.v1beta1
|
|
2461
|
+
* @see proto type: injective.exchange.v1beta1.MsgInstantExpiryFuturesMarketLaunchResponse
|
|
2462
|
+
*/
|
|
2323
2463
|
exports.MsgInstantExpiryFuturesMarketLaunchResponse = {
|
|
2324
2464
|
typeUrl: "/injective.exchange.v1beta1.MsgInstantExpiryFuturesMarketLaunchResponse",
|
|
2325
2465
|
is(o) {
|
|
@@ -2380,6 +2520,13 @@ function createBaseMsgCreateSpotMarketOrder() {
|
|
|
2380
2520
|
order: exchange_1.SpotOrder.fromPartial({})
|
|
2381
2521
|
};
|
|
2382
2522
|
}
|
|
2523
|
+
/**
|
|
2524
|
+
* MsgCreateSpotMarketOrder defines a SDK message for creating a new spot market
|
|
2525
|
+
* order.
|
|
2526
|
+
* @name MsgCreateSpotMarketOrder
|
|
2527
|
+
* @package injective.exchange.v1beta1
|
|
2528
|
+
* @see proto type: injective.exchange.v1beta1.MsgCreateSpotMarketOrder
|
|
2529
|
+
*/
|
|
2383
2530
|
exports.MsgCreateSpotMarketOrder = {
|
|
2384
2531
|
typeUrl: "/injective.exchange.v1beta1.MsgCreateSpotMarketOrder",
|
|
2385
2532
|
aminoType: "exchange/MsgCreateSpotMarketOrder",
|
|
@@ -2475,6 +2622,13 @@ function createBaseMsgCreateSpotMarketOrderResponse() {
|
|
|
2475
2622
|
cid: ""
|
|
2476
2623
|
};
|
|
2477
2624
|
}
|
|
2625
|
+
/**
|
|
2626
|
+
* MsgCreateSpotMarketOrderResponse defines the Msg/CreateSpotMarketLimitOrder
|
|
2627
|
+
* response type.
|
|
2628
|
+
* @name MsgCreateSpotMarketOrderResponse
|
|
2629
|
+
* @package injective.exchange.v1beta1
|
|
2630
|
+
* @see proto type: injective.exchange.v1beta1.MsgCreateSpotMarketOrderResponse
|
|
2631
|
+
*/
|
|
2478
2632
|
exports.MsgCreateSpotMarketOrderResponse = {
|
|
2479
2633
|
typeUrl: "/injective.exchange.v1beta1.MsgCreateSpotMarketOrderResponse",
|
|
2480
2634
|
is(o) {
|
|
@@ -2574,6 +2728,11 @@ function createBaseSpotMarketOrderResults() {
|
|
|
2574
2728
|
fee: ""
|
|
2575
2729
|
};
|
|
2576
2730
|
}
|
|
2731
|
+
/**
|
|
2732
|
+
* @name SpotMarketOrderResults
|
|
2733
|
+
* @package injective.exchange.v1beta1
|
|
2734
|
+
* @see proto type: injective.exchange.v1beta1.SpotMarketOrderResults
|
|
2735
|
+
*/
|
|
2577
2736
|
exports.SpotMarketOrderResults = {
|
|
2578
2737
|
typeUrl: "/injective.exchange.v1beta1.SpotMarketOrderResults",
|
|
2579
2738
|
is(o) {
|
|
@@ -2667,6 +2826,12 @@ function createBaseMsgCreateDerivativeLimitOrder() {
|
|
|
2667
2826
|
order: exchange_1.DerivativeOrder.fromPartial({})
|
|
2668
2827
|
};
|
|
2669
2828
|
}
|
|
2829
|
+
/**
|
|
2830
|
+
* A Cosmos-SDK MsgCreateDerivativeLimitOrder
|
|
2831
|
+
* @name MsgCreateDerivativeLimitOrder
|
|
2832
|
+
* @package injective.exchange.v1beta1
|
|
2833
|
+
* @see proto type: injective.exchange.v1beta1.MsgCreateDerivativeLimitOrder
|
|
2834
|
+
*/
|
|
2670
2835
|
exports.MsgCreateDerivativeLimitOrder = {
|
|
2671
2836
|
typeUrl: "/injective.exchange.v1beta1.MsgCreateDerivativeLimitOrder",
|
|
2672
2837
|
aminoType: "exchange/MsgCreateDerivativeLimitOrder",
|
|
@@ -2761,6 +2926,13 @@ function createBaseMsgCreateDerivativeLimitOrderResponse() {
|
|
|
2761
2926
|
cid: ""
|
|
2762
2927
|
};
|
|
2763
2928
|
}
|
|
2929
|
+
/**
|
|
2930
|
+
* MsgCreateDerivativeLimitOrderResponse defines the
|
|
2931
|
+
* Msg/CreateDerivativeMarketOrder response type.
|
|
2932
|
+
* @name MsgCreateDerivativeLimitOrderResponse
|
|
2933
|
+
* @package injective.exchange.v1beta1
|
|
2934
|
+
* @see proto type: injective.exchange.v1beta1.MsgCreateDerivativeLimitOrderResponse
|
|
2935
|
+
*/
|
|
2764
2936
|
exports.MsgCreateDerivativeLimitOrderResponse = {
|
|
2765
2937
|
typeUrl: "/injective.exchange.v1beta1.MsgCreateDerivativeLimitOrderResponse",
|
|
2766
2938
|
is(o) {
|
|
@@ -2843,6 +3015,12 @@ function createBaseMsgCreateBinaryOptionsLimitOrder() {
|
|
|
2843
3015
|
order: exchange_1.DerivativeOrder.fromPartial({})
|
|
2844
3016
|
};
|
|
2845
3017
|
}
|
|
3018
|
+
/**
|
|
3019
|
+
* A Cosmos-SDK MsgCreateBinaryOptionsLimitOrder
|
|
3020
|
+
* @name MsgCreateBinaryOptionsLimitOrder
|
|
3021
|
+
* @package injective.exchange.v1beta1
|
|
3022
|
+
* @see proto type: injective.exchange.v1beta1.MsgCreateBinaryOptionsLimitOrder
|
|
3023
|
+
*/
|
|
2846
3024
|
exports.MsgCreateBinaryOptionsLimitOrder = {
|
|
2847
3025
|
typeUrl: "/injective.exchange.v1beta1.MsgCreateBinaryOptionsLimitOrder",
|
|
2848
3026
|
aminoType: "exchange/MsgCreateBinaryOptionsLimitOrder",
|
|
@@ -2937,6 +3115,13 @@ function createBaseMsgCreateBinaryOptionsLimitOrderResponse() {
|
|
|
2937
3115
|
cid: ""
|
|
2938
3116
|
};
|
|
2939
3117
|
}
|
|
3118
|
+
/**
|
|
3119
|
+
* MsgCreateBinaryOptionsLimitOrderResponse defines the
|
|
3120
|
+
* Msg/CreateBinaryOptionsLimitOrder response type.
|
|
3121
|
+
* @name MsgCreateBinaryOptionsLimitOrderResponse
|
|
3122
|
+
* @package injective.exchange.v1beta1
|
|
3123
|
+
* @see proto type: injective.exchange.v1beta1.MsgCreateBinaryOptionsLimitOrderResponse
|
|
3124
|
+
*/
|
|
2940
3125
|
exports.MsgCreateBinaryOptionsLimitOrderResponse = {
|
|
2941
3126
|
typeUrl: "/injective.exchange.v1beta1.MsgCreateBinaryOptionsLimitOrderResponse",
|
|
2942
3127
|
is(o) {
|
|
@@ -3019,6 +3204,12 @@ function createBaseMsgBatchCreateDerivativeLimitOrders() {
|
|
|
3019
3204
|
orders: []
|
|
3020
3205
|
};
|
|
3021
3206
|
}
|
|
3207
|
+
/**
|
|
3208
|
+
* A Cosmos-SDK MsgBatchCreateDerivativeLimitOrders
|
|
3209
|
+
* @name MsgBatchCreateDerivativeLimitOrders
|
|
3210
|
+
* @package injective.exchange.v1beta1
|
|
3211
|
+
* @see proto type: injective.exchange.v1beta1.MsgBatchCreateDerivativeLimitOrders
|
|
3212
|
+
*/
|
|
3022
3213
|
exports.MsgBatchCreateDerivativeLimitOrders = {
|
|
3023
3214
|
typeUrl: "/injective.exchange.v1beta1.MsgBatchCreateDerivativeLimitOrders",
|
|
3024
3215
|
aminoType: "exchange/MsgBatchCreateDerivativeLimitOrders",
|
|
@@ -3117,6 +3308,13 @@ function createBaseMsgBatchCreateDerivativeLimitOrdersResponse() {
|
|
|
3117
3308
|
failedOrdersCids: []
|
|
3118
3309
|
};
|
|
3119
3310
|
}
|
|
3311
|
+
/**
|
|
3312
|
+
* MsgBatchCreateDerivativeLimitOrdersResponse defines the
|
|
3313
|
+
* Msg/BatchCreateDerivativeLimitOrders response type.
|
|
3314
|
+
* @name MsgBatchCreateDerivativeLimitOrdersResponse
|
|
3315
|
+
* @package injective.exchange.v1beta1
|
|
3316
|
+
* @see proto type: injective.exchange.v1beta1.MsgBatchCreateDerivativeLimitOrdersResponse
|
|
3317
|
+
*/
|
|
3120
3318
|
exports.MsgBatchCreateDerivativeLimitOrdersResponse = {
|
|
3121
3319
|
typeUrl: "/injective.exchange.v1beta1.MsgBatchCreateDerivativeLimitOrdersResponse",
|
|
3122
3320
|
is(o) {
|
|
@@ -3222,6 +3420,12 @@ function createBaseMsgCancelSpotOrder() {
|
|
|
3222
3420
|
cid: ""
|
|
3223
3421
|
};
|
|
3224
3422
|
}
|
|
3423
|
+
/**
|
|
3424
|
+
* MsgCancelSpotOrder defines the Msg/CancelSpotOrder response type.
|
|
3425
|
+
* @name MsgCancelSpotOrder
|
|
3426
|
+
* @package injective.exchange.v1beta1
|
|
3427
|
+
* @see proto type: injective.exchange.v1beta1.MsgCancelSpotOrder
|
|
3428
|
+
*/
|
|
3225
3429
|
exports.MsgCancelSpotOrder = {
|
|
3226
3430
|
typeUrl: "/injective.exchange.v1beta1.MsgCancelSpotOrder",
|
|
3227
3431
|
aminoType: "exchange/MsgCancelSpotOrder",
|
|
@@ -3341,6 +3545,12 @@ exports.MsgCancelSpotOrder = {
|
|
|
3341
3545
|
function createBaseMsgCancelSpotOrderResponse() {
|
|
3342
3546
|
return {};
|
|
3343
3547
|
}
|
|
3548
|
+
/**
|
|
3549
|
+
* MsgCancelSpotOrderResponse defines the Msg/CancelSpotOrder response type.
|
|
3550
|
+
* @name MsgCancelSpotOrderResponse
|
|
3551
|
+
* @package injective.exchange.v1beta1
|
|
3552
|
+
* @see proto type: injective.exchange.v1beta1.MsgCancelSpotOrderResponse
|
|
3553
|
+
*/
|
|
3344
3554
|
exports.MsgCancelSpotOrderResponse = {
|
|
3345
3555
|
typeUrl: "/injective.exchange.v1beta1.MsgCancelSpotOrderResponse",
|
|
3346
3556
|
is(o) {
|
|
@@ -3401,6 +3611,12 @@ function createBaseMsgBatchCancelSpotOrders() {
|
|
|
3401
3611
|
data: []
|
|
3402
3612
|
};
|
|
3403
3613
|
}
|
|
3614
|
+
/**
|
|
3615
|
+
* MsgBatchCancelSpotOrders defines the Msg/BatchCancelSpotOrders response type.
|
|
3616
|
+
* @name MsgBatchCancelSpotOrders
|
|
3617
|
+
* @package injective.exchange.v1beta1
|
|
3618
|
+
* @see proto type: injective.exchange.v1beta1.MsgBatchCancelSpotOrders
|
|
3619
|
+
*/
|
|
3404
3620
|
exports.MsgBatchCancelSpotOrders = {
|
|
3405
3621
|
typeUrl: "/injective.exchange.v1beta1.MsgBatchCancelSpotOrders",
|
|
3406
3622
|
aminoType: "exchange/MsgBatchCancelSpotOrders",
|
|
@@ -3497,6 +3713,13 @@ function createBaseMsgBatchCancelSpotOrdersResponse() {
|
|
|
3497
3713
|
success: []
|
|
3498
3714
|
};
|
|
3499
3715
|
}
|
|
3716
|
+
/**
|
|
3717
|
+
* MsgBatchCancelSpotOrdersResponse defines the Msg/BatchCancelSpotOrders
|
|
3718
|
+
* response type.
|
|
3719
|
+
* @name MsgBatchCancelSpotOrdersResponse
|
|
3720
|
+
* @package injective.exchange.v1beta1
|
|
3721
|
+
* @see proto type: injective.exchange.v1beta1.MsgBatchCancelSpotOrdersResponse
|
|
3722
|
+
*/
|
|
3500
3723
|
exports.MsgBatchCancelSpotOrdersResponse = {
|
|
3501
3724
|
typeUrl: "/injective.exchange.v1beta1.MsgBatchCancelSpotOrdersResponse",
|
|
3502
3725
|
is(o) {
|
|
@@ -3581,6 +3804,13 @@ function createBaseMsgBatchCancelBinaryOptionsOrders() {
|
|
|
3581
3804
|
data: []
|
|
3582
3805
|
};
|
|
3583
3806
|
}
|
|
3807
|
+
/**
|
|
3808
|
+
* MsgBatchCancelBinaryOptionsOrders defines the
|
|
3809
|
+
* Msg/BatchCancelBinaryOptionsOrders response type.
|
|
3810
|
+
* @name MsgBatchCancelBinaryOptionsOrders
|
|
3811
|
+
* @package injective.exchange.v1beta1
|
|
3812
|
+
* @see proto type: injective.exchange.v1beta1.MsgBatchCancelBinaryOptionsOrders
|
|
3813
|
+
*/
|
|
3584
3814
|
exports.MsgBatchCancelBinaryOptionsOrders = {
|
|
3585
3815
|
typeUrl: "/injective.exchange.v1beta1.MsgBatchCancelBinaryOptionsOrders",
|
|
3586
3816
|
aminoType: "exchange/MsgBatchCancelBinaryOptionsOrders",
|
|
@@ -3677,6 +3907,13 @@ function createBaseMsgBatchCancelBinaryOptionsOrdersResponse() {
|
|
|
3677
3907
|
success: []
|
|
3678
3908
|
};
|
|
3679
3909
|
}
|
|
3910
|
+
/**
|
|
3911
|
+
* BatchCancelBinaryOptionsOrdersResponse defines the
|
|
3912
|
+
* Msg/BatchCancelBinaryOptionsOrders response type.
|
|
3913
|
+
* @name MsgBatchCancelBinaryOptionsOrdersResponse
|
|
3914
|
+
* @package injective.exchange.v1beta1
|
|
3915
|
+
* @see proto type: injective.exchange.v1beta1.MsgBatchCancelBinaryOptionsOrdersResponse
|
|
3916
|
+
*/
|
|
3680
3917
|
exports.MsgBatchCancelBinaryOptionsOrdersResponse = {
|
|
3681
3918
|
typeUrl: "/injective.exchange.v1beta1.MsgBatchCancelBinaryOptionsOrdersResponse",
|
|
3682
3919
|
is(o) {
|
|
@@ -3770,6 +4007,12 @@ function createBaseMsgBatchUpdateOrders() {
|
|
|
3770
4007
|
binaryOptionsOrdersToCreate: []
|
|
3771
4008
|
};
|
|
3772
4009
|
}
|
|
4010
|
+
/**
|
|
4011
|
+
* MsgBatchUpdateOrders defines the Msg/BatchUpdateOrders response type.
|
|
4012
|
+
* @name MsgBatchUpdateOrders
|
|
4013
|
+
* @package injective.exchange.v1beta1
|
|
4014
|
+
* @see proto type: injective.exchange.v1beta1.MsgBatchUpdateOrders
|
|
4015
|
+
*/
|
|
3773
4016
|
exports.MsgBatchUpdateOrders = {
|
|
3774
4017
|
typeUrl: "/injective.exchange.v1beta1.MsgBatchUpdateOrders",
|
|
3775
4018
|
aminoType: "exchange/MsgBatchUpdateOrders",
|
|
@@ -4002,6 +4245,12 @@ function createBaseMsgBatchUpdateOrdersResponse() {
|
|
|
4002
4245
|
failedBinaryOptionsOrdersCids: []
|
|
4003
4246
|
};
|
|
4004
4247
|
}
|
|
4248
|
+
/**
|
|
4249
|
+
* MsgBatchUpdateOrdersResponse defines the Msg/BatchUpdateOrders response type.
|
|
4250
|
+
* @name MsgBatchUpdateOrdersResponse
|
|
4251
|
+
* @package injective.exchange.v1beta1
|
|
4252
|
+
* @see proto type: injective.exchange.v1beta1.MsgBatchUpdateOrdersResponse
|
|
4253
|
+
*/
|
|
4005
4254
|
exports.MsgBatchUpdateOrdersResponse = {
|
|
4006
4255
|
typeUrl: "/injective.exchange.v1beta1.MsgBatchUpdateOrdersResponse",
|
|
4007
4256
|
is(o) {
|
|
@@ -4260,6 +4509,12 @@ function createBaseMsgCreateDerivativeMarketOrder() {
|
|
|
4260
4509
|
order: exchange_1.DerivativeOrder.fromPartial({})
|
|
4261
4510
|
};
|
|
4262
4511
|
}
|
|
4512
|
+
/**
|
|
4513
|
+
* A Cosmos-SDK MsgCreateDerivativeMarketOrder
|
|
4514
|
+
* @name MsgCreateDerivativeMarketOrder
|
|
4515
|
+
* @package injective.exchange.v1beta1
|
|
4516
|
+
* @see proto type: injective.exchange.v1beta1.MsgCreateDerivativeMarketOrder
|
|
4517
|
+
*/
|
|
4263
4518
|
exports.MsgCreateDerivativeMarketOrder = {
|
|
4264
4519
|
typeUrl: "/injective.exchange.v1beta1.MsgCreateDerivativeMarketOrder",
|
|
4265
4520
|
aminoType: "exchange/MsgCreateDerivativeMarketOrder",
|
|
@@ -4355,6 +4610,13 @@ function createBaseMsgCreateDerivativeMarketOrderResponse() {
|
|
|
4355
4610
|
cid: ""
|
|
4356
4611
|
};
|
|
4357
4612
|
}
|
|
4613
|
+
/**
|
|
4614
|
+
* MsgCreateDerivativeMarketOrderResponse defines the
|
|
4615
|
+
* Msg/CreateDerivativeMarketOrder response type.
|
|
4616
|
+
* @name MsgCreateDerivativeMarketOrderResponse
|
|
4617
|
+
* @package injective.exchange.v1beta1
|
|
4618
|
+
* @see proto type: injective.exchange.v1beta1.MsgCreateDerivativeMarketOrderResponse
|
|
4619
|
+
*/
|
|
4358
4620
|
exports.MsgCreateDerivativeMarketOrderResponse = {
|
|
4359
4621
|
typeUrl: "/injective.exchange.v1beta1.MsgCreateDerivativeMarketOrderResponse",
|
|
4360
4622
|
is(o) {
|
|
@@ -4456,6 +4718,11 @@ function createBaseDerivativeMarketOrderResults() {
|
|
|
4456
4718
|
payout: ""
|
|
4457
4719
|
};
|
|
4458
4720
|
}
|
|
4721
|
+
/**
|
|
4722
|
+
* @name DerivativeMarketOrderResults
|
|
4723
|
+
* @package injective.exchange.v1beta1
|
|
4724
|
+
* @see proto type: injective.exchange.v1beta1.DerivativeMarketOrderResults
|
|
4725
|
+
*/
|
|
4459
4726
|
exports.DerivativeMarketOrderResults = {
|
|
4460
4727
|
typeUrl: "/injective.exchange.v1beta1.DerivativeMarketOrderResults",
|
|
4461
4728
|
is(o) {
|
|
@@ -4576,6 +4843,12 @@ function createBaseMsgCreateBinaryOptionsMarketOrder() {
|
|
|
4576
4843
|
order: exchange_1.DerivativeOrder.fromPartial({})
|
|
4577
4844
|
};
|
|
4578
4845
|
}
|
|
4846
|
+
/**
|
|
4847
|
+
* A Cosmos-SDK MsgCreateBinaryOptionsMarketOrder
|
|
4848
|
+
* @name MsgCreateBinaryOptionsMarketOrder
|
|
4849
|
+
* @package injective.exchange.v1beta1
|
|
4850
|
+
* @see proto type: injective.exchange.v1beta1.MsgCreateBinaryOptionsMarketOrder
|
|
4851
|
+
*/
|
|
4579
4852
|
exports.MsgCreateBinaryOptionsMarketOrder = {
|
|
4580
4853
|
typeUrl: "/injective.exchange.v1beta1.MsgCreateBinaryOptionsMarketOrder",
|
|
4581
4854
|
aminoType: "exchange/MsgCreateBinaryOptionsMarketOrder",
|
|
@@ -4671,6 +4944,13 @@ function createBaseMsgCreateBinaryOptionsMarketOrderResponse() {
|
|
|
4671
4944
|
cid: ""
|
|
4672
4945
|
};
|
|
4673
4946
|
}
|
|
4947
|
+
/**
|
|
4948
|
+
* MsgCreateBinaryOptionsMarketOrderResponse defines the
|
|
4949
|
+
* Msg/CreateBinaryOptionsMarketOrder response type.
|
|
4950
|
+
* @name MsgCreateBinaryOptionsMarketOrderResponse
|
|
4951
|
+
* @package injective.exchange.v1beta1
|
|
4952
|
+
* @see proto type: injective.exchange.v1beta1.MsgCreateBinaryOptionsMarketOrderResponse
|
|
4953
|
+
*/
|
|
4674
4954
|
exports.MsgCreateBinaryOptionsMarketOrderResponse = {
|
|
4675
4955
|
typeUrl: "/injective.exchange.v1beta1.MsgCreateBinaryOptionsMarketOrderResponse",
|
|
4676
4956
|
is(o) {
|
|
@@ -4773,6 +5053,12 @@ function createBaseMsgCancelDerivativeOrder() {
|
|
|
4773
5053
|
cid: ""
|
|
4774
5054
|
};
|
|
4775
5055
|
}
|
|
5056
|
+
/**
|
|
5057
|
+
* MsgCancelDerivativeOrder defines the Msg/CancelDerivativeOrder response type.
|
|
5058
|
+
* @name MsgCancelDerivativeOrder
|
|
5059
|
+
* @package injective.exchange.v1beta1
|
|
5060
|
+
* @see proto type: injective.exchange.v1beta1.MsgCancelDerivativeOrder
|
|
5061
|
+
*/
|
|
4776
5062
|
exports.MsgCancelDerivativeOrder = {
|
|
4777
5063
|
typeUrl: "/injective.exchange.v1beta1.MsgCancelDerivativeOrder",
|
|
4778
5064
|
aminoType: "exchange/MsgCancelDerivativeOrder",
|
|
@@ -4903,6 +5189,13 @@ exports.MsgCancelDerivativeOrder = {
|
|
|
4903
5189
|
function createBaseMsgCancelDerivativeOrderResponse() {
|
|
4904
5190
|
return {};
|
|
4905
5191
|
}
|
|
5192
|
+
/**
|
|
5193
|
+
* MsgCancelDerivativeOrderResponse defines the
|
|
5194
|
+
* Msg/CancelDerivativeOrderResponse response type.
|
|
5195
|
+
* @name MsgCancelDerivativeOrderResponse
|
|
5196
|
+
* @package injective.exchange.v1beta1
|
|
5197
|
+
* @see proto type: injective.exchange.v1beta1.MsgCancelDerivativeOrderResponse
|
|
5198
|
+
*/
|
|
4906
5199
|
exports.MsgCancelDerivativeOrderResponse = {
|
|
4907
5200
|
typeUrl: "/injective.exchange.v1beta1.MsgCancelDerivativeOrderResponse",
|
|
4908
5201
|
is(o) {
|
|
@@ -4967,6 +5260,13 @@ function createBaseMsgCancelBinaryOptionsOrder() {
|
|
|
4967
5260
|
cid: ""
|
|
4968
5261
|
};
|
|
4969
5262
|
}
|
|
5263
|
+
/**
|
|
5264
|
+
* MsgCancelBinaryOptionsOrder defines the Msg/CancelBinaryOptionsOrder response
|
|
5265
|
+
* type.
|
|
5266
|
+
* @name MsgCancelBinaryOptionsOrder
|
|
5267
|
+
* @package injective.exchange.v1beta1
|
|
5268
|
+
* @see proto type: injective.exchange.v1beta1.MsgCancelBinaryOptionsOrder
|
|
5269
|
+
*/
|
|
4970
5270
|
exports.MsgCancelBinaryOptionsOrder = {
|
|
4971
5271
|
typeUrl: "/injective.exchange.v1beta1.MsgCancelBinaryOptionsOrder",
|
|
4972
5272
|
aminoType: "exchange/MsgCancelBinaryOptionsOrder",
|
|
@@ -5097,6 +5397,13 @@ exports.MsgCancelBinaryOptionsOrder = {
|
|
|
5097
5397
|
function createBaseMsgCancelBinaryOptionsOrderResponse() {
|
|
5098
5398
|
return {};
|
|
5099
5399
|
}
|
|
5400
|
+
/**
|
|
5401
|
+
* MsgCancelBinaryOptionsOrderResponse defines the
|
|
5402
|
+
* Msg/CancelBinaryOptionsOrderResponse response type.
|
|
5403
|
+
* @name MsgCancelBinaryOptionsOrderResponse
|
|
5404
|
+
* @package injective.exchange.v1beta1
|
|
5405
|
+
* @see proto type: injective.exchange.v1beta1.MsgCancelBinaryOptionsOrderResponse
|
|
5406
|
+
*/
|
|
5100
5407
|
exports.MsgCancelBinaryOptionsOrderResponse = {
|
|
5101
5408
|
typeUrl: "/injective.exchange.v1beta1.MsgCancelBinaryOptionsOrderResponse",
|
|
5102
5409
|
is(o) {
|
|
@@ -5160,6 +5467,11 @@ function createBaseOrderData() {
|
|
|
5160
5467
|
cid: ""
|
|
5161
5468
|
};
|
|
5162
5469
|
}
|
|
5470
|
+
/**
|
|
5471
|
+
* @name OrderData
|
|
5472
|
+
* @package injective.exchange.v1beta1
|
|
5473
|
+
* @see proto type: injective.exchange.v1beta1.OrderData
|
|
5474
|
+
*/
|
|
5163
5475
|
exports.OrderData = {
|
|
5164
5476
|
typeUrl: "/injective.exchange.v1beta1.OrderData",
|
|
5165
5477
|
is(o) {
|
|
@@ -5275,6 +5587,13 @@ function createBaseMsgBatchCancelDerivativeOrders() {
|
|
|
5275
5587
|
data: []
|
|
5276
5588
|
};
|
|
5277
5589
|
}
|
|
5590
|
+
/**
|
|
5591
|
+
* MsgBatchCancelDerivativeOrders defines the Msg/CancelDerivativeOrders
|
|
5592
|
+
* response type.
|
|
5593
|
+
* @name MsgBatchCancelDerivativeOrders
|
|
5594
|
+
* @package injective.exchange.v1beta1
|
|
5595
|
+
* @see proto type: injective.exchange.v1beta1.MsgBatchCancelDerivativeOrders
|
|
5596
|
+
*/
|
|
5278
5597
|
exports.MsgBatchCancelDerivativeOrders = {
|
|
5279
5598
|
typeUrl: "/injective.exchange.v1beta1.MsgBatchCancelDerivativeOrders",
|
|
5280
5599
|
aminoType: "exchange/MsgBatchCancelDerivativeOrders",
|
|
@@ -5371,6 +5690,13 @@ function createBaseMsgBatchCancelDerivativeOrdersResponse() {
|
|
|
5371
5690
|
success: []
|
|
5372
5691
|
};
|
|
5373
5692
|
}
|
|
5693
|
+
/**
|
|
5694
|
+
* MsgBatchCancelDerivativeOrdersResponse defines the
|
|
5695
|
+
* Msg/CancelDerivativeOrderResponse response type.
|
|
5696
|
+
* @name MsgBatchCancelDerivativeOrdersResponse
|
|
5697
|
+
* @package injective.exchange.v1beta1
|
|
5698
|
+
* @see proto type: injective.exchange.v1beta1.MsgBatchCancelDerivativeOrdersResponse
|
|
5699
|
+
*/
|
|
5374
5700
|
exports.MsgBatchCancelDerivativeOrdersResponse = {
|
|
5375
5701
|
typeUrl: "/injective.exchange.v1beta1.MsgBatchCancelDerivativeOrdersResponse",
|
|
5376
5702
|
is(o) {
|
|
@@ -5457,6 +5783,12 @@ function createBaseMsgSubaccountTransfer() {
|
|
|
5457
5783
|
amount: coin_1.Coin.fromPartial({})
|
|
5458
5784
|
};
|
|
5459
5785
|
}
|
|
5786
|
+
/**
|
|
5787
|
+
* A Cosmos-SDK MsgSubaccountTransfer
|
|
5788
|
+
* @name MsgSubaccountTransfer
|
|
5789
|
+
* @package injective.exchange.v1beta1
|
|
5790
|
+
* @see proto type: injective.exchange.v1beta1.MsgSubaccountTransfer
|
|
5791
|
+
*/
|
|
5460
5792
|
exports.MsgSubaccountTransfer = {
|
|
5461
5793
|
typeUrl: "/injective.exchange.v1beta1.MsgSubaccountTransfer",
|
|
5462
5794
|
aminoType: "exchange/MsgSubaccountTransfer",
|
|
@@ -5570,6 +5902,13 @@ exports.MsgSubaccountTransfer = {
|
|
|
5570
5902
|
function createBaseMsgSubaccountTransferResponse() {
|
|
5571
5903
|
return {};
|
|
5572
5904
|
}
|
|
5905
|
+
/**
|
|
5906
|
+
* MsgSubaccountTransferResponse defines the Msg/SubaccountTransfer response
|
|
5907
|
+
* type.
|
|
5908
|
+
* @name MsgSubaccountTransferResponse
|
|
5909
|
+
* @package injective.exchange.v1beta1
|
|
5910
|
+
* @see proto type: injective.exchange.v1beta1.MsgSubaccountTransferResponse
|
|
5911
|
+
*/
|
|
5573
5912
|
exports.MsgSubaccountTransferResponse = {
|
|
5574
5913
|
typeUrl: "/injective.exchange.v1beta1.MsgSubaccountTransferResponse",
|
|
5575
5914
|
is(o) {
|
|
@@ -5632,6 +5971,12 @@ function createBaseMsgExternalTransfer() {
|
|
|
5632
5971
|
amount: coin_1.Coin.fromPartial({})
|
|
5633
5972
|
};
|
|
5634
5973
|
}
|
|
5974
|
+
/**
|
|
5975
|
+
* A Cosmos-SDK MsgExternalTransfer
|
|
5976
|
+
* @name MsgExternalTransfer
|
|
5977
|
+
* @package injective.exchange.v1beta1
|
|
5978
|
+
* @see proto type: injective.exchange.v1beta1.MsgExternalTransfer
|
|
5979
|
+
*/
|
|
5635
5980
|
exports.MsgExternalTransfer = {
|
|
5636
5981
|
typeUrl: "/injective.exchange.v1beta1.MsgExternalTransfer",
|
|
5637
5982
|
aminoType: "exchange/MsgExternalTransfer",
|
|
@@ -5745,6 +6090,12 @@ exports.MsgExternalTransfer = {
|
|
|
5745
6090
|
function createBaseMsgExternalTransferResponse() {
|
|
5746
6091
|
return {};
|
|
5747
6092
|
}
|
|
6093
|
+
/**
|
|
6094
|
+
* MsgExternalTransferResponse defines the Msg/ExternalTransfer response type.
|
|
6095
|
+
* @name MsgExternalTransferResponse
|
|
6096
|
+
* @package injective.exchange.v1beta1
|
|
6097
|
+
* @see proto type: injective.exchange.v1beta1.MsgExternalTransferResponse
|
|
6098
|
+
*/
|
|
5748
6099
|
exports.MsgExternalTransferResponse = {
|
|
5749
6100
|
typeUrl: "/injective.exchange.v1beta1.MsgExternalTransferResponse",
|
|
5750
6101
|
is(o) {
|
|
@@ -5807,6 +6158,12 @@ function createBaseMsgLiquidatePosition() {
|
|
|
5807
6158
|
order: undefined
|
|
5808
6159
|
};
|
|
5809
6160
|
}
|
|
6161
|
+
/**
|
|
6162
|
+
* A Cosmos-SDK MsgLiquidatePosition
|
|
6163
|
+
* @name MsgLiquidatePosition
|
|
6164
|
+
* @package injective.exchange.v1beta1
|
|
6165
|
+
* @see proto type: injective.exchange.v1beta1.MsgLiquidatePosition
|
|
6166
|
+
*/
|
|
5810
6167
|
exports.MsgLiquidatePosition = {
|
|
5811
6168
|
typeUrl: "/injective.exchange.v1beta1.MsgLiquidatePosition",
|
|
5812
6169
|
aminoType: "exchange/MsgLiquidatePosition",
|
|
@@ -5920,6 +6277,12 @@ exports.MsgLiquidatePosition = {
|
|
|
5920
6277
|
function createBaseMsgLiquidatePositionResponse() {
|
|
5921
6278
|
return {};
|
|
5922
6279
|
}
|
|
6280
|
+
/**
|
|
6281
|
+
* MsgLiquidatePositionResponse defines the Msg/LiquidatePosition response type.
|
|
6282
|
+
* @name MsgLiquidatePositionResponse
|
|
6283
|
+
* @package injective.exchange.v1beta1
|
|
6284
|
+
* @see proto type: injective.exchange.v1beta1.MsgLiquidatePositionResponse
|
|
6285
|
+
*/
|
|
5923
6286
|
exports.MsgLiquidatePositionResponse = {
|
|
5924
6287
|
typeUrl: "/injective.exchange.v1beta1.MsgLiquidatePositionResponse",
|
|
5925
6288
|
is(o) {
|
|
@@ -5981,6 +6344,12 @@ function createBaseMsgEmergencySettleMarket() {
|
|
|
5981
6344
|
marketId: ""
|
|
5982
6345
|
};
|
|
5983
6346
|
}
|
|
6347
|
+
/**
|
|
6348
|
+
* A Cosmos-SDK MsgEmergencySettleMarket
|
|
6349
|
+
* @name MsgEmergencySettleMarket
|
|
6350
|
+
* @package injective.exchange.v1beta1
|
|
6351
|
+
* @see proto type: injective.exchange.v1beta1.MsgEmergencySettleMarket
|
|
6352
|
+
*/
|
|
5984
6353
|
exports.MsgEmergencySettleMarket = {
|
|
5985
6354
|
typeUrl: "/injective.exchange.v1beta1.MsgEmergencySettleMarket",
|
|
5986
6355
|
aminoType: "exchange/MsgEmergencySettleMarket",
|
|
@@ -6078,6 +6447,13 @@ exports.MsgEmergencySettleMarket = {
|
|
|
6078
6447
|
function createBaseMsgEmergencySettleMarketResponse() {
|
|
6079
6448
|
return {};
|
|
6080
6449
|
}
|
|
6450
|
+
/**
|
|
6451
|
+
* MsgEmergencySettleMarketResponse defines the Msg/EmergencySettleMarket
|
|
6452
|
+
* response type.
|
|
6453
|
+
* @name MsgEmergencySettleMarketResponse
|
|
6454
|
+
* @package injective.exchange.v1beta1
|
|
6455
|
+
* @see proto type: injective.exchange.v1beta1.MsgEmergencySettleMarketResponse
|
|
6456
|
+
*/
|
|
6081
6457
|
exports.MsgEmergencySettleMarketResponse = {
|
|
6082
6458
|
typeUrl: "/injective.exchange.v1beta1.MsgEmergencySettleMarketResponse",
|
|
6083
6459
|
is(o) {
|
|
@@ -6141,6 +6517,12 @@ function createBaseMsgIncreasePositionMargin() {
|
|
|
6141
6517
|
amount: ""
|
|
6142
6518
|
};
|
|
6143
6519
|
}
|
|
6520
|
+
/**
|
|
6521
|
+
* A Cosmos-SDK MsgIncreasePositionMargin
|
|
6522
|
+
* @name MsgIncreasePositionMargin
|
|
6523
|
+
* @package injective.exchange.v1beta1
|
|
6524
|
+
* @see proto type: injective.exchange.v1beta1.MsgIncreasePositionMargin
|
|
6525
|
+
*/
|
|
6144
6526
|
exports.MsgIncreasePositionMargin = {
|
|
6145
6527
|
typeUrl: "/injective.exchange.v1beta1.MsgIncreasePositionMargin",
|
|
6146
6528
|
aminoType: "exchange/MsgIncreasePositionMargin",
|
|
@@ -6260,6 +6642,13 @@ exports.MsgIncreasePositionMargin = {
|
|
|
6260
6642
|
function createBaseMsgIncreasePositionMarginResponse() {
|
|
6261
6643
|
return {};
|
|
6262
6644
|
}
|
|
6645
|
+
/**
|
|
6646
|
+
* MsgIncreasePositionMarginResponse defines the Msg/IncreasePositionMargin
|
|
6647
|
+
* response type.
|
|
6648
|
+
* @name MsgIncreasePositionMarginResponse
|
|
6649
|
+
* @package injective.exchange.v1beta1
|
|
6650
|
+
* @see proto type: injective.exchange.v1beta1.MsgIncreasePositionMarginResponse
|
|
6651
|
+
*/
|
|
6263
6652
|
exports.MsgIncreasePositionMarginResponse = {
|
|
6264
6653
|
typeUrl: "/injective.exchange.v1beta1.MsgIncreasePositionMarginResponse",
|
|
6265
6654
|
is(o) {
|
|
@@ -6323,6 +6712,12 @@ function createBaseMsgDecreasePositionMargin() {
|
|
|
6323
6712
|
amount: ""
|
|
6324
6713
|
};
|
|
6325
6714
|
}
|
|
6715
|
+
/**
|
|
6716
|
+
* A Cosmos-SDK MsgDecreasePositionMargin
|
|
6717
|
+
* @name MsgDecreasePositionMargin
|
|
6718
|
+
* @package injective.exchange.v1beta1
|
|
6719
|
+
* @see proto type: injective.exchange.v1beta1.MsgDecreasePositionMargin
|
|
6720
|
+
*/
|
|
6326
6721
|
exports.MsgDecreasePositionMargin = {
|
|
6327
6722
|
typeUrl: "/injective.exchange.v1beta1.MsgDecreasePositionMargin",
|
|
6328
6723
|
aminoType: "exchange/MsgDecreasePositionMargin",
|
|
@@ -6442,6 +6837,13 @@ exports.MsgDecreasePositionMargin = {
|
|
|
6442
6837
|
function createBaseMsgDecreasePositionMarginResponse() {
|
|
6443
6838
|
return {};
|
|
6444
6839
|
}
|
|
6840
|
+
/**
|
|
6841
|
+
* MsgDecreasePositionMarginResponse defines the Msg/MsgDecreasePositionMargin
|
|
6842
|
+
* response type.
|
|
6843
|
+
* @name MsgDecreasePositionMarginResponse
|
|
6844
|
+
* @package injective.exchange.v1beta1
|
|
6845
|
+
* @see proto type: injective.exchange.v1beta1.MsgDecreasePositionMarginResponse
|
|
6846
|
+
*/
|
|
6445
6847
|
exports.MsgDecreasePositionMarginResponse = {
|
|
6446
6848
|
typeUrl: "/injective.exchange.v1beta1.MsgDecreasePositionMarginResponse",
|
|
6447
6849
|
is(o) {
|
|
@@ -6504,6 +6906,12 @@ function createBaseMsgPrivilegedExecuteContract() {
|
|
|
6504
6906
|
data: ""
|
|
6505
6907
|
};
|
|
6506
6908
|
}
|
|
6909
|
+
/**
|
|
6910
|
+
* MsgPrivilegedExecuteContract defines the Msg/Exec message type
|
|
6911
|
+
* @name MsgPrivilegedExecuteContract
|
|
6912
|
+
* @package injective.exchange.v1beta1
|
|
6913
|
+
* @see proto type: injective.exchange.v1beta1.MsgPrivilegedExecuteContract
|
|
6914
|
+
*/
|
|
6507
6915
|
exports.MsgPrivilegedExecuteContract = {
|
|
6508
6916
|
typeUrl: "/injective.exchange.v1beta1.MsgPrivilegedExecuteContract",
|
|
6509
6917
|
aminoType: "exchange/MsgPrivilegedExecuteContract",
|
|
@@ -6614,6 +7022,12 @@ function createBaseMsgPrivilegedExecuteContractResponse() {
|
|
|
6614
7022
|
fundsDiff: []
|
|
6615
7023
|
};
|
|
6616
7024
|
}
|
|
7025
|
+
/**
|
|
7026
|
+
* MsgPrivilegedExecuteContractResponse defines the Msg/Exec response type.
|
|
7027
|
+
* @name MsgPrivilegedExecuteContractResponse
|
|
7028
|
+
* @package injective.exchange.v1beta1
|
|
7029
|
+
* @see proto type: injective.exchange.v1beta1.MsgPrivilegedExecuteContractResponse
|
|
7030
|
+
*/
|
|
6617
7031
|
exports.MsgPrivilegedExecuteContractResponse = {
|
|
6618
7032
|
typeUrl: "/injective.exchange.v1beta1.MsgPrivilegedExecuteContractResponse",
|
|
6619
7033
|
is(o) {
|
|
@@ -6692,6 +7106,12 @@ function createBaseMsgRewardsOptOut() {
|
|
|
6692
7106
|
sender: ""
|
|
6693
7107
|
};
|
|
6694
7108
|
}
|
|
7109
|
+
/**
|
|
7110
|
+
* A Cosmos-SDK MsgRewardsOptOut
|
|
7111
|
+
* @name MsgRewardsOptOut
|
|
7112
|
+
* @package injective.exchange.v1beta1
|
|
7113
|
+
* @see proto type: injective.exchange.v1beta1.MsgRewardsOptOut
|
|
7114
|
+
*/
|
|
6695
7115
|
exports.MsgRewardsOptOut = {
|
|
6696
7116
|
typeUrl: "/injective.exchange.v1beta1.MsgRewardsOptOut",
|
|
6697
7117
|
aminoType: "exchange/MsgRewardsOptOut",
|
|
@@ -6767,6 +7187,12 @@ exports.MsgRewardsOptOut = {
|
|
|
6767
7187
|
function createBaseMsgRewardsOptOutResponse() {
|
|
6768
7188
|
return {};
|
|
6769
7189
|
}
|
|
7190
|
+
/**
|
|
7191
|
+
* MsgRewardsOptOutResponse defines the Msg/RewardsOptOut response type.
|
|
7192
|
+
* @name MsgRewardsOptOutResponse
|
|
7193
|
+
* @package injective.exchange.v1beta1
|
|
7194
|
+
* @see proto type: injective.exchange.v1beta1.MsgRewardsOptOutResponse
|
|
7195
|
+
*/
|
|
6770
7196
|
exports.MsgRewardsOptOutResponse = {
|
|
6771
7197
|
typeUrl: "/injective.exchange.v1beta1.MsgRewardsOptOutResponse",
|
|
6772
7198
|
is(o) {
|
|
@@ -6828,6 +7254,12 @@ function createBaseMsgReclaimLockedFunds() {
|
|
|
6828
7254
|
signature: new Uint8Array()
|
|
6829
7255
|
};
|
|
6830
7256
|
}
|
|
7257
|
+
/**
|
|
7258
|
+
* A Cosmos-SDK MsgReclaimLockedFunds
|
|
7259
|
+
* @name MsgReclaimLockedFunds
|
|
7260
|
+
* @package injective.exchange.v1beta1
|
|
7261
|
+
* @see proto type: injective.exchange.v1beta1.MsgReclaimLockedFunds
|
|
7262
|
+
*/
|
|
6831
7263
|
exports.MsgReclaimLockedFunds = {
|
|
6832
7264
|
typeUrl: "/injective.exchange.v1beta1.MsgReclaimLockedFunds",
|
|
6833
7265
|
aminoType: "exchange/MsgReclaimLockedFunds",
|
|
@@ -6925,6 +7357,13 @@ exports.MsgReclaimLockedFunds = {
|
|
|
6925
7357
|
function createBaseMsgReclaimLockedFundsResponse() {
|
|
6926
7358
|
return {};
|
|
6927
7359
|
}
|
|
7360
|
+
/**
|
|
7361
|
+
* MsgReclaimLockedFundsResponse defines the Msg/ReclaimLockedFunds response
|
|
7362
|
+
* type.
|
|
7363
|
+
* @name MsgReclaimLockedFundsResponse
|
|
7364
|
+
* @package injective.exchange.v1beta1
|
|
7365
|
+
* @see proto type: injective.exchange.v1beta1.MsgReclaimLockedFundsResponse
|
|
7366
|
+
*/
|
|
6928
7367
|
exports.MsgReclaimLockedFundsResponse = {
|
|
6929
7368
|
typeUrl: "/injective.exchange.v1beta1.MsgReclaimLockedFundsResponse",
|
|
6930
7369
|
is(o) {
|
|
@@ -6985,6 +7424,12 @@ function createBaseMsgSignData() {
|
|
|
6985
7424
|
data: new Uint8Array()
|
|
6986
7425
|
};
|
|
6987
7426
|
}
|
|
7427
|
+
/**
|
|
7428
|
+
* MsgSignData defines an arbitrary, general-purpose, off-chain message
|
|
7429
|
+
* @name MsgSignData
|
|
7430
|
+
* @package injective.exchange.v1beta1
|
|
7431
|
+
* @see proto type: injective.exchange.v1beta1.MsgSignData
|
|
7432
|
+
*/
|
|
6988
7433
|
exports.MsgSignData = {
|
|
6989
7434
|
typeUrl: "/injective.exchange.v1beta1.MsgSignData",
|
|
6990
7435
|
is(o) {
|
|
@@ -7067,6 +7512,12 @@ function createBaseMsgSignDoc() {
|
|
|
7067
7512
|
value: exports.MsgSignData.fromPartial({})
|
|
7068
7513
|
};
|
|
7069
7514
|
}
|
|
7515
|
+
/**
|
|
7516
|
+
* MsgSignDoc defines an arbitrary, general-purpose, off-chain message
|
|
7517
|
+
* @name MsgSignDoc
|
|
7518
|
+
* @package injective.exchange.v1beta1
|
|
7519
|
+
* @see proto type: injective.exchange.v1beta1.MsgSignDoc
|
|
7520
|
+
*/
|
|
7070
7521
|
exports.MsgSignDoc = {
|
|
7071
7522
|
typeUrl: "/injective.exchange.v1beta1.MsgSignDoc",
|
|
7072
7523
|
is(o) {
|
|
@@ -7158,6 +7609,13 @@ function createBaseMsgAdminUpdateBinaryOptionsMarket() {
|
|
|
7158
7609
|
status: 0
|
|
7159
7610
|
};
|
|
7160
7611
|
}
|
|
7612
|
+
/**
|
|
7613
|
+
* MsgAdminUpdateBinaryOptionsMarket is used by the market Admin to operate the
|
|
7614
|
+
* market
|
|
7615
|
+
* @name MsgAdminUpdateBinaryOptionsMarket
|
|
7616
|
+
* @package injective.exchange.v1beta1
|
|
7617
|
+
* @see proto type: injective.exchange.v1beta1.MsgAdminUpdateBinaryOptionsMarket
|
|
7618
|
+
*/
|
|
7161
7619
|
exports.MsgAdminUpdateBinaryOptionsMarket = {
|
|
7162
7620
|
typeUrl: "/injective.exchange.v1beta1.MsgAdminUpdateBinaryOptionsMarket",
|
|
7163
7621
|
aminoType: "exchange/MsgAdminUpdateBinaryOptionsMarket",
|
|
@@ -7288,6 +7746,13 @@ exports.MsgAdminUpdateBinaryOptionsMarket = {
|
|
|
7288
7746
|
function createBaseMsgAdminUpdateBinaryOptionsMarketResponse() {
|
|
7289
7747
|
return {};
|
|
7290
7748
|
}
|
|
7749
|
+
/**
|
|
7750
|
+
* MsgAdminUpdateBinaryOptionsMarketResponse is the response for
|
|
7751
|
+
* AdminUpdateBinaryOptionsMarket rpc method
|
|
7752
|
+
* @name MsgAdminUpdateBinaryOptionsMarketResponse
|
|
7753
|
+
* @package injective.exchange.v1beta1
|
|
7754
|
+
* @see proto type: injective.exchange.v1beta1.MsgAdminUpdateBinaryOptionsMarketResponse
|
|
7755
|
+
*/
|
|
7291
7756
|
exports.MsgAdminUpdateBinaryOptionsMarketResponse = {
|
|
7292
7757
|
typeUrl: "/injective.exchange.v1beta1.MsgAdminUpdateBinaryOptionsMarketResponse",
|
|
7293
7758
|
is(o) {
|
|
@@ -7348,6 +7813,12 @@ function createBaseMsgAuthorizeStakeGrants() {
|
|
|
7348
7813
|
grants: []
|
|
7349
7814
|
};
|
|
7350
7815
|
}
|
|
7816
|
+
/**
|
|
7817
|
+
* MsgAuthorizeStakeGrants grants stakes to grantees.
|
|
7818
|
+
* @name MsgAuthorizeStakeGrants
|
|
7819
|
+
* @package injective.exchange.v1beta1
|
|
7820
|
+
* @see proto type: injective.exchange.v1beta1.MsgAuthorizeStakeGrants
|
|
7821
|
+
*/
|
|
7351
7822
|
exports.MsgAuthorizeStakeGrants = {
|
|
7352
7823
|
typeUrl: "/injective.exchange.v1beta1.MsgAuthorizeStakeGrants",
|
|
7353
7824
|
aminoType: "exchange/MsgAuthorizeStakeGrants",
|
|
@@ -7442,6 +7913,11 @@ exports.MsgAuthorizeStakeGrants = {
|
|
|
7442
7913
|
function createBaseMsgAuthorizeStakeGrantsResponse() {
|
|
7443
7914
|
return {};
|
|
7444
7915
|
}
|
|
7916
|
+
/**
|
|
7917
|
+
* @name MsgAuthorizeStakeGrantsResponse
|
|
7918
|
+
* @package injective.exchange.v1beta1
|
|
7919
|
+
* @see proto type: injective.exchange.v1beta1.MsgAuthorizeStakeGrantsResponse
|
|
7920
|
+
*/
|
|
7445
7921
|
exports.MsgAuthorizeStakeGrantsResponse = {
|
|
7446
7922
|
typeUrl: "/injective.exchange.v1beta1.MsgAuthorizeStakeGrantsResponse",
|
|
7447
7923
|
is(o) {
|
|
@@ -7502,6 +7978,12 @@ function createBaseMsgActivateStakeGrant() {
|
|
|
7502
7978
|
granter: ""
|
|
7503
7979
|
};
|
|
7504
7980
|
}
|
|
7981
|
+
/**
|
|
7982
|
+
* MsgActivateStakeGrant allows a grantee to activate a stake grant.
|
|
7983
|
+
* @name MsgActivateStakeGrant
|
|
7984
|
+
* @package injective.exchange.v1beta1
|
|
7985
|
+
* @see proto type: injective.exchange.v1beta1.MsgActivateStakeGrant
|
|
7986
|
+
*/
|
|
7505
7987
|
exports.MsgActivateStakeGrant = {
|
|
7506
7988
|
typeUrl: "/injective.exchange.v1beta1.MsgActivateStakeGrant",
|
|
7507
7989
|
aminoType: "exchange/MsgActivateStakeGrant",
|
|
@@ -7588,6 +8070,11 @@ exports.MsgActivateStakeGrant = {
|
|
|
7588
8070
|
function createBaseMsgActivateStakeGrantResponse() {
|
|
7589
8071
|
return {};
|
|
7590
8072
|
}
|
|
8073
|
+
/**
|
|
8074
|
+
* @name MsgActivateStakeGrantResponse
|
|
8075
|
+
* @package injective.exchange.v1beta1
|
|
8076
|
+
* @see proto type: injective.exchange.v1beta1.MsgActivateStakeGrantResponse
|
|
8077
|
+
*/
|
|
7591
8078
|
exports.MsgActivateStakeGrantResponse = {
|
|
7592
8079
|
typeUrl: "/injective.exchange.v1beta1.MsgActivateStakeGrantResponse",
|
|
7593
8080
|
is(o) {
|