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
|
@@ -15,6 +15,11 @@ function createBaseMsgUpdateSpotMarket() {
|
|
|
15
15
|
newMinNotional: ""
|
|
16
16
|
};
|
|
17
17
|
}
|
|
18
|
+
/**
|
|
19
|
+
* @name MsgUpdateSpotMarket
|
|
20
|
+
* @package injective.exchange.v1beta1
|
|
21
|
+
* @see proto type: injective.exchange.v1beta1.MsgUpdateSpotMarket
|
|
22
|
+
*/
|
|
18
23
|
export const MsgUpdateSpotMarket = {
|
|
19
24
|
typeUrl: "/injective.exchange.v1beta1.MsgUpdateSpotMarket",
|
|
20
25
|
aminoType: "exchange/MsgUpdateSpotMarket",
|
|
@@ -145,6 +150,11 @@ export const MsgUpdateSpotMarket = {
|
|
|
145
150
|
function createBaseMsgUpdateSpotMarketResponse() {
|
|
146
151
|
return {};
|
|
147
152
|
}
|
|
153
|
+
/**
|
|
154
|
+
* @name MsgUpdateSpotMarketResponse
|
|
155
|
+
* @package injective.exchange.v1beta1
|
|
156
|
+
* @see proto type: injective.exchange.v1beta1.MsgUpdateSpotMarketResponse
|
|
157
|
+
*/
|
|
148
158
|
export const MsgUpdateSpotMarketResponse = {
|
|
149
159
|
typeUrl: "/injective.exchange.v1beta1.MsgUpdateSpotMarketResponse",
|
|
150
160
|
is(o) {
|
|
@@ -211,6 +221,11 @@ function createBaseMsgUpdateDerivativeMarket() {
|
|
|
211
221
|
newMaintenanceMarginRatio: ""
|
|
212
222
|
};
|
|
213
223
|
}
|
|
224
|
+
/**
|
|
225
|
+
* @name MsgUpdateDerivativeMarket
|
|
226
|
+
* @package injective.exchange.v1beta1
|
|
227
|
+
* @see proto type: injective.exchange.v1beta1.MsgUpdateDerivativeMarket
|
|
228
|
+
*/
|
|
214
229
|
export const MsgUpdateDerivativeMarket = {
|
|
215
230
|
typeUrl: "/injective.exchange.v1beta1.MsgUpdateDerivativeMarket",
|
|
216
231
|
aminoType: "exchange/MsgUpdateDerivativeMarket",
|
|
@@ -363,6 +378,11 @@ export const MsgUpdateDerivativeMarket = {
|
|
|
363
378
|
function createBaseMsgUpdateDerivativeMarketResponse() {
|
|
364
379
|
return {};
|
|
365
380
|
}
|
|
381
|
+
/**
|
|
382
|
+
* @name MsgUpdateDerivativeMarketResponse
|
|
383
|
+
* @package injective.exchange.v1beta1
|
|
384
|
+
* @see proto type: injective.exchange.v1beta1.MsgUpdateDerivativeMarketResponse
|
|
385
|
+
*/
|
|
366
386
|
export const MsgUpdateDerivativeMarketResponse = {
|
|
367
387
|
typeUrl: "/injective.exchange.v1beta1.MsgUpdateDerivativeMarketResponse",
|
|
368
388
|
is(o) {
|
|
@@ -423,6 +443,11 @@ function createBaseMsgUpdateParams() {
|
|
|
423
443
|
params: Params.fromPartial({})
|
|
424
444
|
};
|
|
425
445
|
}
|
|
446
|
+
/**
|
|
447
|
+
* @name MsgUpdateParams
|
|
448
|
+
* @package injective.exchange.v1beta1
|
|
449
|
+
* @see proto type: injective.exchange.v1beta1.MsgUpdateParams
|
|
450
|
+
*/
|
|
426
451
|
export const MsgUpdateParams = {
|
|
427
452
|
typeUrl: "/injective.exchange.v1beta1.MsgUpdateParams",
|
|
428
453
|
aminoType: "exchange/MsgUpdateParams",
|
|
@@ -514,6 +539,11 @@ export const MsgUpdateParams = {
|
|
|
514
539
|
function createBaseMsgUpdateParamsResponse() {
|
|
515
540
|
return {};
|
|
516
541
|
}
|
|
542
|
+
/**
|
|
543
|
+
* @name MsgUpdateParamsResponse
|
|
544
|
+
* @package injective.exchange.v1beta1
|
|
545
|
+
* @see proto type: injective.exchange.v1beta1.MsgUpdateParamsResponse
|
|
546
|
+
*/
|
|
517
547
|
export const MsgUpdateParamsResponse = {
|
|
518
548
|
typeUrl: "/injective.exchange.v1beta1.MsgUpdateParamsResponse",
|
|
519
549
|
is(o) {
|
|
@@ -575,6 +605,13 @@ function createBaseMsgDeposit() {
|
|
|
575
605
|
amount: Coin.fromPartial({})
|
|
576
606
|
};
|
|
577
607
|
}
|
|
608
|
+
/**
|
|
609
|
+
* MsgDeposit defines a SDK message for transferring coins from the sender's
|
|
610
|
+
* bank balance into the subaccount's exchange deposits
|
|
611
|
+
* @name MsgDeposit
|
|
612
|
+
* @package injective.exchange.v1beta1
|
|
613
|
+
* @see proto type: injective.exchange.v1beta1.MsgDeposit
|
|
614
|
+
*/
|
|
578
615
|
export const MsgDeposit = {
|
|
579
616
|
typeUrl: "/injective.exchange.v1beta1.MsgDeposit",
|
|
580
617
|
aminoType: "exchange/MsgDeposit",
|
|
@@ -677,6 +714,12 @@ export const MsgDeposit = {
|
|
|
677
714
|
function createBaseMsgDepositResponse() {
|
|
678
715
|
return {};
|
|
679
716
|
}
|
|
717
|
+
/**
|
|
718
|
+
* MsgDepositResponse defines the Msg/Deposit response type.
|
|
719
|
+
* @name MsgDepositResponse
|
|
720
|
+
* @package injective.exchange.v1beta1
|
|
721
|
+
* @see proto type: injective.exchange.v1beta1.MsgDepositResponse
|
|
722
|
+
*/
|
|
680
723
|
export const MsgDepositResponse = {
|
|
681
724
|
typeUrl: "/injective.exchange.v1beta1.MsgDepositResponse",
|
|
682
725
|
is(o) {
|
|
@@ -738,6 +781,13 @@ function createBaseMsgWithdraw() {
|
|
|
738
781
|
amount: Coin.fromPartial({})
|
|
739
782
|
};
|
|
740
783
|
}
|
|
784
|
+
/**
|
|
785
|
+
* MsgWithdraw defines a SDK message for withdrawing coins from a subaccount's
|
|
786
|
+
* deposits to the user's bank balance
|
|
787
|
+
* @name MsgWithdraw
|
|
788
|
+
* @package injective.exchange.v1beta1
|
|
789
|
+
* @see proto type: injective.exchange.v1beta1.MsgWithdraw
|
|
790
|
+
*/
|
|
741
791
|
export const MsgWithdraw = {
|
|
742
792
|
typeUrl: "/injective.exchange.v1beta1.MsgWithdraw",
|
|
743
793
|
aminoType: "exchange/MsgWithdraw",
|
|
@@ -840,6 +890,12 @@ export const MsgWithdraw = {
|
|
|
840
890
|
function createBaseMsgWithdrawResponse() {
|
|
841
891
|
return {};
|
|
842
892
|
}
|
|
893
|
+
/**
|
|
894
|
+
* MsgWithdraw defines the Msg/Withdraw response type.
|
|
895
|
+
* @name MsgWithdrawResponse
|
|
896
|
+
* @package injective.exchange.v1beta1
|
|
897
|
+
* @see proto type: injective.exchange.v1beta1.MsgWithdrawResponse
|
|
898
|
+
*/
|
|
843
899
|
export const MsgWithdrawResponse = {
|
|
844
900
|
typeUrl: "/injective.exchange.v1beta1.MsgWithdrawResponse",
|
|
845
901
|
is(o) {
|
|
@@ -900,6 +956,13 @@ function createBaseMsgCreateSpotLimitOrder() {
|
|
|
900
956
|
order: SpotOrder.fromPartial({})
|
|
901
957
|
};
|
|
902
958
|
}
|
|
959
|
+
/**
|
|
960
|
+
* MsgCreateSpotLimitOrder defines a SDK message for creating a new spot limit
|
|
961
|
+
* order.
|
|
962
|
+
* @name MsgCreateSpotLimitOrder
|
|
963
|
+
* @package injective.exchange.v1beta1
|
|
964
|
+
* @see proto type: injective.exchange.v1beta1.MsgCreateSpotLimitOrder
|
|
965
|
+
*/
|
|
903
966
|
export const MsgCreateSpotLimitOrder = {
|
|
904
967
|
typeUrl: "/injective.exchange.v1beta1.MsgCreateSpotLimitOrder",
|
|
905
968
|
aminoType: "exchange/MsgCreateSpotLimitOrder",
|
|
@@ -994,6 +1057,13 @@ function createBaseMsgCreateSpotLimitOrderResponse() {
|
|
|
994
1057
|
cid: ""
|
|
995
1058
|
};
|
|
996
1059
|
}
|
|
1060
|
+
/**
|
|
1061
|
+
* MsgCreateSpotLimitOrderResponse defines the Msg/CreateSpotOrder response
|
|
1062
|
+
* type.
|
|
1063
|
+
* @name MsgCreateSpotLimitOrderResponse
|
|
1064
|
+
* @package injective.exchange.v1beta1
|
|
1065
|
+
* @see proto type: injective.exchange.v1beta1.MsgCreateSpotLimitOrderResponse
|
|
1066
|
+
*/
|
|
997
1067
|
export const MsgCreateSpotLimitOrderResponse = {
|
|
998
1068
|
typeUrl: "/injective.exchange.v1beta1.MsgCreateSpotLimitOrderResponse",
|
|
999
1069
|
is(o) {
|
|
@@ -1076,6 +1146,13 @@ function createBaseMsgBatchCreateSpotLimitOrders() {
|
|
|
1076
1146
|
orders: []
|
|
1077
1147
|
};
|
|
1078
1148
|
}
|
|
1149
|
+
/**
|
|
1150
|
+
* MsgBatchCreateSpotLimitOrders defines a SDK message for creating a new batch
|
|
1151
|
+
* of spot limit orders.
|
|
1152
|
+
* @name MsgBatchCreateSpotLimitOrders
|
|
1153
|
+
* @package injective.exchange.v1beta1
|
|
1154
|
+
* @see proto type: injective.exchange.v1beta1.MsgBatchCreateSpotLimitOrders
|
|
1155
|
+
*/
|
|
1079
1156
|
export const MsgBatchCreateSpotLimitOrders = {
|
|
1080
1157
|
typeUrl: "/injective.exchange.v1beta1.MsgBatchCreateSpotLimitOrders",
|
|
1081
1158
|
aminoType: "exchange/MsgBatchCreateSpotLimitOrders",
|
|
@@ -1174,6 +1251,13 @@ function createBaseMsgBatchCreateSpotLimitOrdersResponse() {
|
|
|
1174
1251
|
failedOrdersCids: []
|
|
1175
1252
|
};
|
|
1176
1253
|
}
|
|
1254
|
+
/**
|
|
1255
|
+
* MsgBatchCreateSpotLimitOrdersResponse defines the
|
|
1256
|
+
* Msg/BatchCreateSpotLimitOrders response type.
|
|
1257
|
+
* @name MsgBatchCreateSpotLimitOrdersResponse
|
|
1258
|
+
* @package injective.exchange.v1beta1
|
|
1259
|
+
* @see proto type: injective.exchange.v1beta1.MsgBatchCreateSpotLimitOrdersResponse
|
|
1260
|
+
*/
|
|
1177
1261
|
export const MsgBatchCreateSpotLimitOrdersResponse = {
|
|
1178
1262
|
typeUrl: "/injective.exchange.v1beta1.MsgBatchCreateSpotLimitOrdersResponse",
|
|
1179
1263
|
is(o) {
|
|
@@ -1281,6 +1365,13 @@ function createBaseMsgInstantSpotMarketLaunch() {
|
|
|
1281
1365
|
minNotional: ""
|
|
1282
1366
|
};
|
|
1283
1367
|
}
|
|
1368
|
+
/**
|
|
1369
|
+
* MsgInstantSpotMarketLaunch defines a SDK message for creating a new spot
|
|
1370
|
+
* market by paying listing fee without governance
|
|
1371
|
+
* @name MsgInstantSpotMarketLaunch
|
|
1372
|
+
* @package injective.exchange.v1beta1
|
|
1373
|
+
* @see proto type: injective.exchange.v1beta1.MsgInstantSpotMarketLaunch
|
|
1374
|
+
*/
|
|
1284
1375
|
export const MsgInstantSpotMarketLaunch = {
|
|
1285
1376
|
typeUrl: "/injective.exchange.v1beta1.MsgInstantSpotMarketLaunch",
|
|
1286
1377
|
aminoType: "exchange/MsgInstantSpotMarketLaunch",
|
|
@@ -1422,6 +1513,13 @@ export const MsgInstantSpotMarketLaunch = {
|
|
|
1422
1513
|
function createBaseMsgInstantSpotMarketLaunchResponse() {
|
|
1423
1514
|
return {};
|
|
1424
1515
|
}
|
|
1516
|
+
/**
|
|
1517
|
+
* MsgInstantSpotMarketLaunchResponse defines the Msg/InstantSpotMarketLaunch
|
|
1518
|
+
* response type.
|
|
1519
|
+
* @name MsgInstantSpotMarketLaunchResponse
|
|
1520
|
+
* @package injective.exchange.v1beta1
|
|
1521
|
+
* @see proto type: injective.exchange.v1beta1.MsgInstantSpotMarketLaunchResponse
|
|
1522
|
+
*/
|
|
1425
1523
|
export const MsgInstantSpotMarketLaunchResponse = {
|
|
1426
1524
|
typeUrl: "/injective.exchange.v1beta1.MsgInstantSpotMarketLaunchResponse",
|
|
1427
1525
|
is(o) {
|
|
@@ -1494,6 +1592,13 @@ function createBaseMsgInstantPerpetualMarketLaunch() {
|
|
|
1494
1592
|
minNotional: ""
|
|
1495
1593
|
};
|
|
1496
1594
|
}
|
|
1595
|
+
/**
|
|
1596
|
+
* MsgInstantPerpetualMarketLaunch defines a SDK message for creating a new
|
|
1597
|
+
* perpetual futures market by paying listing fee without governance
|
|
1598
|
+
* @name MsgInstantPerpetualMarketLaunch
|
|
1599
|
+
* @package injective.exchange.v1beta1
|
|
1600
|
+
* @see proto type: injective.exchange.v1beta1.MsgInstantPerpetualMarketLaunch
|
|
1601
|
+
*/
|
|
1497
1602
|
export const MsgInstantPerpetualMarketLaunch = {
|
|
1498
1603
|
typeUrl: "/injective.exchange.v1beta1.MsgInstantPerpetualMarketLaunch",
|
|
1499
1604
|
aminoType: "exchange/MsgInstantPerpetualMarketLaunch",
|
|
@@ -1712,6 +1817,13 @@ export const MsgInstantPerpetualMarketLaunch = {
|
|
|
1712
1817
|
function createBaseMsgInstantPerpetualMarketLaunchResponse() {
|
|
1713
1818
|
return {};
|
|
1714
1819
|
}
|
|
1820
|
+
/**
|
|
1821
|
+
* MsgInstantPerpetualMarketLaunchResponse defines the
|
|
1822
|
+
* Msg/InstantPerpetualMarketLaunchResponse response type.
|
|
1823
|
+
* @name MsgInstantPerpetualMarketLaunchResponse
|
|
1824
|
+
* @package injective.exchange.v1beta1
|
|
1825
|
+
* @see proto type: injective.exchange.v1beta1.MsgInstantPerpetualMarketLaunchResponse
|
|
1826
|
+
*/
|
|
1715
1827
|
export const MsgInstantPerpetualMarketLaunchResponse = {
|
|
1716
1828
|
typeUrl: "/injective.exchange.v1beta1.MsgInstantPerpetualMarketLaunchResponse",
|
|
1717
1829
|
is(o) {
|
|
@@ -1785,6 +1897,13 @@ function createBaseMsgInstantBinaryOptionsMarketLaunch() {
|
|
|
1785
1897
|
minNotional: ""
|
|
1786
1898
|
};
|
|
1787
1899
|
}
|
|
1900
|
+
/**
|
|
1901
|
+
* MsgInstantBinaryOptionsMarketLaunch defines a SDK message for creating a new
|
|
1902
|
+
* perpetual futures market by paying listing fee without governance
|
|
1903
|
+
* @name MsgInstantBinaryOptionsMarketLaunch
|
|
1904
|
+
* @package injective.exchange.v1beta1
|
|
1905
|
+
* @see proto type: injective.exchange.v1beta1.MsgInstantBinaryOptionsMarketLaunch
|
|
1906
|
+
*/
|
|
1788
1907
|
export const MsgInstantBinaryOptionsMarketLaunch = {
|
|
1789
1908
|
typeUrl: "/injective.exchange.v1beta1.MsgInstantBinaryOptionsMarketLaunch",
|
|
1790
1909
|
aminoType: "exchange/MsgInstantBinaryOptionsMarketLaunch",
|
|
@@ -2014,6 +2133,13 @@ export const MsgInstantBinaryOptionsMarketLaunch = {
|
|
|
2014
2133
|
function createBaseMsgInstantBinaryOptionsMarketLaunchResponse() {
|
|
2015
2134
|
return {};
|
|
2016
2135
|
}
|
|
2136
|
+
/**
|
|
2137
|
+
* MsgInstantBinaryOptionsMarketLaunchResponse defines the
|
|
2138
|
+
* Msg/InstantBinaryOptionsMarketLaunchResponse response type.
|
|
2139
|
+
* @name MsgInstantBinaryOptionsMarketLaunchResponse
|
|
2140
|
+
* @package injective.exchange.v1beta1
|
|
2141
|
+
* @see proto type: injective.exchange.v1beta1.MsgInstantBinaryOptionsMarketLaunchResponse
|
|
2142
|
+
*/
|
|
2017
2143
|
export const MsgInstantBinaryOptionsMarketLaunchResponse = {
|
|
2018
2144
|
typeUrl: "/injective.exchange.v1beta1.MsgInstantBinaryOptionsMarketLaunchResponse",
|
|
2019
2145
|
is(o) {
|
|
@@ -2087,6 +2213,13 @@ function createBaseMsgInstantExpiryFuturesMarketLaunch() {
|
|
|
2087
2213
|
minNotional: ""
|
|
2088
2214
|
};
|
|
2089
2215
|
}
|
|
2216
|
+
/**
|
|
2217
|
+
* MsgInstantExpiryFuturesMarketLaunch defines a SDK message for creating a new
|
|
2218
|
+
* expiry futures market by paying listing fee without governance
|
|
2219
|
+
* @name MsgInstantExpiryFuturesMarketLaunch
|
|
2220
|
+
* @package injective.exchange.v1beta1
|
|
2221
|
+
* @see proto type: injective.exchange.v1beta1.MsgInstantExpiryFuturesMarketLaunch
|
|
2222
|
+
*/
|
|
2090
2223
|
export const MsgInstantExpiryFuturesMarketLaunch = {
|
|
2091
2224
|
typeUrl: "/injective.exchange.v1beta1.MsgInstantExpiryFuturesMarketLaunch",
|
|
2092
2225
|
aminoType: "exchange/MsgInstantExpiryFuturesMarketLaunch",
|
|
@@ -2316,6 +2449,13 @@ export const MsgInstantExpiryFuturesMarketLaunch = {
|
|
|
2316
2449
|
function createBaseMsgInstantExpiryFuturesMarketLaunchResponse() {
|
|
2317
2450
|
return {};
|
|
2318
2451
|
}
|
|
2452
|
+
/**
|
|
2453
|
+
* MsgInstantExpiryFuturesMarketLaunchResponse defines the
|
|
2454
|
+
* Msg/InstantExpiryFuturesMarketLaunch response type.
|
|
2455
|
+
* @name MsgInstantExpiryFuturesMarketLaunchResponse
|
|
2456
|
+
* @package injective.exchange.v1beta1
|
|
2457
|
+
* @see proto type: injective.exchange.v1beta1.MsgInstantExpiryFuturesMarketLaunchResponse
|
|
2458
|
+
*/
|
|
2319
2459
|
export const MsgInstantExpiryFuturesMarketLaunchResponse = {
|
|
2320
2460
|
typeUrl: "/injective.exchange.v1beta1.MsgInstantExpiryFuturesMarketLaunchResponse",
|
|
2321
2461
|
is(o) {
|
|
@@ -2376,6 +2516,13 @@ function createBaseMsgCreateSpotMarketOrder() {
|
|
|
2376
2516
|
order: SpotOrder.fromPartial({})
|
|
2377
2517
|
};
|
|
2378
2518
|
}
|
|
2519
|
+
/**
|
|
2520
|
+
* MsgCreateSpotMarketOrder defines a SDK message for creating a new spot market
|
|
2521
|
+
* order.
|
|
2522
|
+
* @name MsgCreateSpotMarketOrder
|
|
2523
|
+
* @package injective.exchange.v1beta1
|
|
2524
|
+
* @see proto type: injective.exchange.v1beta1.MsgCreateSpotMarketOrder
|
|
2525
|
+
*/
|
|
2379
2526
|
export const MsgCreateSpotMarketOrder = {
|
|
2380
2527
|
typeUrl: "/injective.exchange.v1beta1.MsgCreateSpotMarketOrder",
|
|
2381
2528
|
aminoType: "exchange/MsgCreateSpotMarketOrder",
|
|
@@ -2471,6 +2618,13 @@ function createBaseMsgCreateSpotMarketOrderResponse() {
|
|
|
2471
2618
|
cid: ""
|
|
2472
2619
|
};
|
|
2473
2620
|
}
|
|
2621
|
+
/**
|
|
2622
|
+
* MsgCreateSpotMarketOrderResponse defines the Msg/CreateSpotMarketLimitOrder
|
|
2623
|
+
* response type.
|
|
2624
|
+
* @name MsgCreateSpotMarketOrderResponse
|
|
2625
|
+
* @package injective.exchange.v1beta1
|
|
2626
|
+
* @see proto type: injective.exchange.v1beta1.MsgCreateSpotMarketOrderResponse
|
|
2627
|
+
*/
|
|
2474
2628
|
export const MsgCreateSpotMarketOrderResponse = {
|
|
2475
2629
|
typeUrl: "/injective.exchange.v1beta1.MsgCreateSpotMarketOrderResponse",
|
|
2476
2630
|
is(o) {
|
|
@@ -2570,6 +2724,11 @@ function createBaseSpotMarketOrderResults() {
|
|
|
2570
2724
|
fee: ""
|
|
2571
2725
|
};
|
|
2572
2726
|
}
|
|
2727
|
+
/**
|
|
2728
|
+
* @name SpotMarketOrderResults
|
|
2729
|
+
* @package injective.exchange.v1beta1
|
|
2730
|
+
* @see proto type: injective.exchange.v1beta1.SpotMarketOrderResults
|
|
2731
|
+
*/
|
|
2573
2732
|
export const SpotMarketOrderResults = {
|
|
2574
2733
|
typeUrl: "/injective.exchange.v1beta1.SpotMarketOrderResults",
|
|
2575
2734
|
is(o) {
|
|
@@ -2663,6 +2822,12 @@ function createBaseMsgCreateDerivativeLimitOrder() {
|
|
|
2663
2822
|
order: DerivativeOrder.fromPartial({})
|
|
2664
2823
|
};
|
|
2665
2824
|
}
|
|
2825
|
+
/**
|
|
2826
|
+
* A Cosmos-SDK MsgCreateDerivativeLimitOrder
|
|
2827
|
+
* @name MsgCreateDerivativeLimitOrder
|
|
2828
|
+
* @package injective.exchange.v1beta1
|
|
2829
|
+
* @see proto type: injective.exchange.v1beta1.MsgCreateDerivativeLimitOrder
|
|
2830
|
+
*/
|
|
2666
2831
|
export const MsgCreateDerivativeLimitOrder = {
|
|
2667
2832
|
typeUrl: "/injective.exchange.v1beta1.MsgCreateDerivativeLimitOrder",
|
|
2668
2833
|
aminoType: "exchange/MsgCreateDerivativeLimitOrder",
|
|
@@ -2757,6 +2922,13 @@ function createBaseMsgCreateDerivativeLimitOrderResponse() {
|
|
|
2757
2922
|
cid: ""
|
|
2758
2923
|
};
|
|
2759
2924
|
}
|
|
2925
|
+
/**
|
|
2926
|
+
* MsgCreateDerivativeLimitOrderResponse defines the
|
|
2927
|
+
* Msg/CreateDerivativeMarketOrder response type.
|
|
2928
|
+
* @name MsgCreateDerivativeLimitOrderResponse
|
|
2929
|
+
* @package injective.exchange.v1beta1
|
|
2930
|
+
* @see proto type: injective.exchange.v1beta1.MsgCreateDerivativeLimitOrderResponse
|
|
2931
|
+
*/
|
|
2760
2932
|
export const MsgCreateDerivativeLimitOrderResponse = {
|
|
2761
2933
|
typeUrl: "/injective.exchange.v1beta1.MsgCreateDerivativeLimitOrderResponse",
|
|
2762
2934
|
is(o) {
|
|
@@ -2839,6 +3011,12 @@ function createBaseMsgCreateBinaryOptionsLimitOrder() {
|
|
|
2839
3011
|
order: DerivativeOrder.fromPartial({})
|
|
2840
3012
|
};
|
|
2841
3013
|
}
|
|
3014
|
+
/**
|
|
3015
|
+
* A Cosmos-SDK MsgCreateBinaryOptionsLimitOrder
|
|
3016
|
+
* @name MsgCreateBinaryOptionsLimitOrder
|
|
3017
|
+
* @package injective.exchange.v1beta1
|
|
3018
|
+
* @see proto type: injective.exchange.v1beta1.MsgCreateBinaryOptionsLimitOrder
|
|
3019
|
+
*/
|
|
2842
3020
|
export const MsgCreateBinaryOptionsLimitOrder = {
|
|
2843
3021
|
typeUrl: "/injective.exchange.v1beta1.MsgCreateBinaryOptionsLimitOrder",
|
|
2844
3022
|
aminoType: "exchange/MsgCreateBinaryOptionsLimitOrder",
|
|
@@ -2933,6 +3111,13 @@ function createBaseMsgCreateBinaryOptionsLimitOrderResponse() {
|
|
|
2933
3111
|
cid: ""
|
|
2934
3112
|
};
|
|
2935
3113
|
}
|
|
3114
|
+
/**
|
|
3115
|
+
* MsgCreateBinaryOptionsLimitOrderResponse defines the
|
|
3116
|
+
* Msg/CreateBinaryOptionsLimitOrder response type.
|
|
3117
|
+
* @name MsgCreateBinaryOptionsLimitOrderResponse
|
|
3118
|
+
* @package injective.exchange.v1beta1
|
|
3119
|
+
* @see proto type: injective.exchange.v1beta1.MsgCreateBinaryOptionsLimitOrderResponse
|
|
3120
|
+
*/
|
|
2936
3121
|
export const MsgCreateBinaryOptionsLimitOrderResponse = {
|
|
2937
3122
|
typeUrl: "/injective.exchange.v1beta1.MsgCreateBinaryOptionsLimitOrderResponse",
|
|
2938
3123
|
is(o) {
|
|
@@ -3015,6 +3200,12 @@ function createBaseMsgBatchCreateDerivativeLimitOrders() {
|
|
|
3015
3200
|
orders: []
|
|
3016
3201
|
};
|
|
3017
3202
|
}
|
|
3203
|
+
/**
|
|
3204
|
+
* A Cosmos-SDK MsgBatchCreateDerivativeLimitOrders
|
|
3205
|
+
* @name MsgBatchCreateDerivativeLimitOrders
|
|
3206
|
+
* @package injective.exchange.v1beta1
|
|
3207
|
+
* @see proto type: injective.exchange.v1beta1.MsgBatchCreateDerivativeLimitOrders
|
|
3208
|
+
*/
|
|
3018
3209
|
export const MsgBatchCreateDerivativeLimitOrders = {
|
|
3019
3210
|
typeUrl: "/injective.exchange.v1beta1.MsgBatchCreateDerivativeLimitOrders",
|
|
3020
3211
|
aminoType: "exchange/MsgBatchCreateDerivativeLimitOrders",
|
|
@@ -3113,6 +3304,13 @@ function createBaseMsgBatchCreateDerivativeLimitOrdersResponse() {
|
|
|
3113
3304
|
failedOrdersCids: []
|
|
3114
3305
|
};
|
|
3115
3306
|
}
|
|
3307
|
+
/**
|
|
3308
|
+
* MsgBatchCreateDerivativeLimitOrdersResponse defines the
|
|
3309
|
+
* Msg/BatchCreateDerivativeLimitOrders response type.
|
|
3310
|
+
* @name MsgBatchCreateDerivativeLimitOrdersResponse
|
|
3311
|
+
* @package injective.exchange.v1beta1
|
|
3312
|
+
* @see proto type: injective.exchange.v1beta1.MsgBatchCreateDerivativeLimitOrdersResponse
|
|
3313
|
+
*/
|
|
3116
3314
|
export const MsgBatchCreateDerivativeLimitOrdersResponse = {
|
|
3117
3315
|
typeUrl: "/injective.exchange.v1beta1.MsgBatchCreateDerivativeLimitOrdersResponse",
|
|
3118
3316
|
is(o) {
|
|
@@ -3218,6 +3416,12 @@ function createBaseMsgCancelSpotOrder() {
|
|
|
3218
3416
|
cid: ""
|
|
3219
3417
|
};
|
|
3220
3418
|
}
|
|
3419
|
+
/**
|
|
3420
|
+
* MsgCancelSpotOrder defines the Msg/CancelSpotOrder response type.
|
|
3421
|
+
* @name MsgCancelSpotOrder
|
|
3422
|
+
* @package injective.exchange.v1beta1
|
|
3423
|
+
* @see proto type: injective.exchange.v1beta1.MsgCancelSpotOrder
|
|
3424
|
+
*/
|
|
3221
3425
|
export const MsgCancelSpotOrder = {
|
|
3222
3426
|
typeUrl: "/injective.exchange.v1beta1.MsgCancelSpotOrder",
|
|
3223
3427
|
aminoType: "exchange/MsgCancelSpotOrder",
|
|
@@ -3337,6 +3541,12 @@ export const MsgCancelSpotOrder = {
|
|
|
3337
3541
|
function createBaseMsgCancelSpotOrderResponse() {
|
|
3338
3542
|
return {};
|
|
3339
3543
|
}
|
|
3544
|
+
/**
|
|
3545
|
+
* MsgCancelSpotOrderResponse defines the Msg/CancelSpotOrder response type.
|
|
3546
|
+
* @name MsgCancelSpotOrderResponse
|
|
3547
|
+
* @package injective.exchange.v1beta1
|
|
3548
|
+
* @see proto type: injective.exchange.v1beta1.MsgCancelSpotOrderResponse
|
|
3549
|
+
*/
|
|
3340
3550
|
export const MsgCancelSpotOrderResponse = {
|
|
3341
3551
|
typeUrl: "/injective.exchange.v1beta1.MsgCancelSpotOrderResponse",
|
|
3342
3552
|
is(o) {
|
|
@@ -3397,6 +3607,12 @@ function createBaseMsgBatchCancelSpotOrders() {
|
|
|
3397
3607
|
data: []
|
|
3398
3608
|
};
|
|
3399
3609
|
}
|
|
3610
|
+
/**
|
|
3611
|
+
* MsgBatchCancelSpotOrders defines the Msg/BatchCancelSpotOrders response type.
|
|
3612
|
+
* @name MsgBatchCancelSpotOrders
|
|
3613
|
+
* @package injective.exchange.v1beta1
|
|
3614
|
+
* @see proto type: injective.exchange.v1beta1.MsgBatchCancelSpotOrders
|
|
3615
|
+
*/
|
|
3400
3616
|
export const MsgBatchCancelSpotOrders = {
|
|
3401
3617
|
typeUrl: "/injective.exchange.v1beta1.MsgBatchCancelSpotOrders",
|
|
3402
3618
|
aminoType: "exchange/MsgBatchCancelSpotOrders",
|
|
@@ -3493,6 +3709,13 @@ function createBaseMsgBatchCancelSpotOrdersResponse() {
|
|
|
3493
3709
|
success: []
|
|
3494
3710
|
};
|
|
3495
3711
|
}
|
|
3712
|
+
/**
|
|
3713
|
+
* MsgBatchCancelSpotOrdersResponse defines the Msg/BatchCancelSpotOrders
|
|
3714
|
+
* response type.
|
|
3715
|
+
* @name MsgBatchCancelSpotOrdersResponse
|
|
3716
|
+
* @package injective.exchange.v1beta1
|
|
3717
|
+
* @see proto type: injective.exchange.v1beta1.MsgBatchCancelSpotOrdersResponse
|
|
3718
|
+
*/
|
|
3496
3719
|
export const MsgBatchCancelSpotOrdersResponse = {
|
|
3497
3720
|
typeUrl: "/injective.exchange.v1beta1.MsgBatchCancelSpotOrdersResponse",
|
|
3498
3721
|
is(o) {
|
|
@@ -3577,6 +3800,13 @@ function createBaseMsgBatchCancelBinaryOptionsOrders() {
|
|
|
3577
3800
|
data: []
|
|
3578
3801
|
};
|
|
3579
3802
|
}
|
|
3803
|
+
/**
|
|
3804
|
+
* MsgBatchCancelBinaryOptionsOrders defines the
|
|
3805
|
+
* Msg/BatchCancelBinaryOptionsOrders response type.
|
|
3806
|
+
* @name MsgBatchCancelBinaryOptionsOrders
|
|
3807
|
+
* @package injective.exchange.v1beta1
|
|
3808
|
+
* @see proto type: injective.exchange.v1beta1.MsgBatchCancelBinaryOptionsOrders
|
|
3809
|
+
*/
|
|
3580
3810
|
export const MsgBatchCancelBinaryOptionsOrders = {
|
|
3581
3811
|
typeUrl: "/injective.exchange.v1beta1.MsgBatchCancelBinaryOptionsOrders",
|
|
3582
3812
|
aminoType: "exchange/MsgBatchCancelBinaryOptionsOrders",
|
|
@@ -3673,6 +3903,13 @@ function createBaseMsgBatchCancelBinaryOptionsOrdersResponse() {
|
|
|
3673
3903
|
success: []
|
|
3674
3904
|
};
|
|
3675
3905
|
}
|
|
3906
|
+
/**
|
|
3907
|
+
* BatchCancelBinaryOptionsOrdersResponse defines the
|
|
3908
|
+
* Msg/BatchCancelBinaryOptionsOrders response type.
|
|
3909
|
+
* @name MsgBatchCancelBinaryOptionsOrdersResponse
|
|
3910
|
+
* @package injective.exchange.v1beta1
|
|
3911
|
+
* @see proto type: injective.exchange.v1beta1.MsgBatchCancelBinaryOptionsOrdersResponse
|
|
3912
|
+
*/
|
|
3676
3913
|
export const MsgBatchCancelBinaryOptionsOrdersResponse = {
|
|
3677
3914
|
typeUrl: "/injective.exchange.v1beta1.MsgBatchCancelBinaryOptionsOrdersResponse",
|
|
3678
3915
|
is(o) {
|
|
@@ -3766,6 +4003,12 @@ function createBaseMsgBatchUpdateOrders() {
|
|
|
3766
4003
|
binaryOptionsOrdersToCreate: []
|
|
3767
4004
|
};
|
|
3768
4005
|
}
|
|
4006
|
+
/**
|
|
4007
|
+
* MsgBatchUpdateOrders defines the Msg/BatchUpdateOrders response type.
|
|
4008
|
+
* @name MsgBatchUpdateOrders
|
|
4009
|
+
* @package injective.exchange.v1beta1
|
|
4010
|
+
* @see proto type: injective.exchange.v1beta1.MsgBatchUpdateOrders
|
|
4011
|
+
*/
|
|
3769
4012
|
export const MsgBatchUpdateOrders = {
|
|
3770
4013
|
typeUrl: "/injective.exchange.v1beta1.MsgBatchUpdateOrders",
|
|
3771
4014
|
aminoType: "exchange/MsgBatchUpdateOrders",
|
|
@@ -3998,6 +4241,12 @@ function createBaseMsgBatchUpdateOrdersResponse() {
|
|
|
3998
4241
|
failedBinaryOptionsOrdersCids: []
|
|
3999
4242
|
};
|
|
4000
4243
|
}
|
|
4244
|
+
/**
|
|
4245
|
+
* MsgBatchUpdateOrdersResponse defines the Msg/BatchUpdateOrders response type.
|
|
4246
|
+
* @name MsgBatchUpdateOrdersResponse
|
|
4247
|
+
* @package injective.exchange.v1beta1
|
|
4248
|
+
* @see proto type: injective.exchange.v1beta1.MsgBatchUpdateOrdersResponse
|
|
4249
|
+
*/
|
|
4001
4250
|
export const MsgBatchUpdateOrdersResponse = {
|
|
4002
4251
|
typeUrl: "/injective.exchange.v1beta1.MsgBatchUpdateOrdersResponse",
|
|
4003
4252
|
is(o) {
|
|
@@ -4256,6 +4505,12 @@ function createBaseMsgCreateDerivativeMarketOrder() {
|
|
|
4256
4505
|
order: DerivativeOrder.fromPartial({})
|
|
4257
4506
|
};
|
|
4258
4507
|
}
|
|
4508
|
+
/**
|
|
4509
|
+
* A Cosmos-SDK MsgCreateDerivativeMarketOrder
|
|
4510
|
+
* @name MsgCreateDerivativeMarketOrder
|
|
4511
|
+
* @package injective.exchange.v1beta1
|
|
4512
|
+
* @see proto type: injective.exchange.v1beta1.MsgCreateDerivativeMarketOrder
|
|
4513
|
+
*/
|
|
4259
4514
|
export const MsgCreateDerivativeMarketOrder = {
|
|
4260
4515
|
typeUrl: "/injective.exchange.v1beta1.MsgCreateDerivativeMarketOrder",
|
|
4261
4516
|
aminoType: "exchange/MsgCreateDerivativeMarketOrder",
|
|
@@ -4351,6 +4606,13 @@ function createBaseMsgCreateDerivativeMarketOrderResponse() {
|
|
|
4351
4606
|
cid: ""
|
|
4352
4607
|
};
|
|
4353
4608
|
}
|
|
4609
|
+
/**
|
|
4610
|
+
* MsgCreateDerivativeMarketOrderResponse defines the
|
|
4611
|
+
* Msg/CreateDerivativeMarketOrder response type.
|
|
4612
|
+
* @name MsgCreateDerivativeMarketOrderResponse
|
|
4613
|
+
* @package injective.exchange.v1beta1
|
|
4614
|
+
* @see proto type: injective.exchange.v1beta1.MsgCreateDerivativeMarketOrderResponse
|
|
4615
|
+
*/
|
|
4354
4616
|
export const MsgCreateDerivativeMarketOrderResponse = {
|
|
4355
4617
|
typeUrl: "/injective.exchange.v1beta1.MsgCreateDerivativeMarketOrderResponse",
|
|
4356
4618
|
is(o) {
|
|
@@ -4452,6 +4714,11 @@ function createBaseDerivativeMarketOrderResults() {
|
|
|
4452
4714
|
payout: ""
|
|
4453
4715
|
};
|
|
4454
4716
|
}
|
|
4717
|
+
/**
|
|
4718
|
+
* @name DerivativeMarketOrderResults
|
|
4719
|
+
* @package injective.exchange.v1beta1
|
|
4720
|
+
* @see proto type: injective.exchange.v1beta1.DerivativeMarketOrderResults
|
|
4721
|
+
*/
|
|
4455
4722
|
export const DerivativeMarketOrderResults = {
|
|
4456
4723
|
typeUrl: "/injective.exchange.v1beta1.DerivativeMarketOrderResults",
|
|
4457
4724
|
is(o) {
|
|
@@ -4572,6 +4839,12 @@ function createBaseMsgCreateBinaryOptionsMarketOrder() {
|
|
|
4572
4839
|
order: DerivativeOrder.fromPartial({})
|
|
4573
4840
|
};
|
|
4574
4841
|
}
|
|
4842
|
+
/**
|
|
4843
|
+
* A Cosmos-SDK MsgCreateBinaryOptionsMarketOrder
|
|
4844
|
+
* @name MsgCreateBinaryOptionsMarketOrder
|
|
4845
|
+
* @package injective.exchange.v1beta1
|
|
4846
|
+
* @see proto type: injective.exchange.v1beta1.MsgCreateBinaryOptionsMarketOrder
|
|
4847
|
+
*/
|
|
4575
4848
|
export const MsgCreateBinaryOptionsMarketOrder = {
|
|
4576
4849
|
typeUrl: "/injective.exchange.v1beta1.MsgCreateBinaryOptionsMarketOrder",
|
|
4577
4850
|
aminoType: "exchange/MsgCreateBinaryOptionsMarketOrder",
|
|
@@ -4667,6 +4940,13 @@ function createBaseMsgCreateBinaryOptionsMarketOrderResponse() {
|
|
|
4667
4940
|
cid: ""
|
|
4668
4941
|
};
|
|
4669
4942
|
}
|
|
4943
|
+
/**
|
|
4944
|
+
* MsgCreateBinaryOptionsMarketOrderResponse defines the
|
|
4945
|
+
* Msg/CreateBinaryOptionsMarketOrder response type.
|
|
4946
|
+
* @name MsgCreateBinaryOptionsMarketOrderResponse
|
|
4947
|
+
* @package injective.exchange.v1beta1
|
|
4948
|
+
* @see proto type: injective.exchange.v1beta1.MsgCreateBinaryOptionsMarketOrderResponse
|
|
4949
|
+
*/
|
|
4670
4950
|
export const MsgCreateBinaryOptionsMarketOrderResponse = {
|
|
4671
4951
|
typeUrl: "/injective.exchange.v1beta1.MsgCreateBinaryOptionsMarketOrderResponse",
|
|
4672
4952
|
is(o) {
|
|
@@ -4769,6 +5049,12 @@ function createBaseMsgCancelDerivativeOrder() {
|
|
|
4769
5049
|
cid: ""
|
|
4770
5050
|
};
|
|
4771
5051
|
}
|
|
5052
|
+
/**
|
|
5053
|
+
* MsgCancelDerivativeOrder defines the Msg/CancelDerivativeOrder response type.
|
|
5054
|
+
* @name MsgCancelDerivativeOrder
|
|
5055
|
+
* @package injective.exchange.v1beta1
|
|
5056
|
+
* @see proto type: injective.exchange.v1beta1.MsgCancelDerivativeOrder
|
|
5057
|
+
*/
|
|
4772
5058
|
export const MsgCancelDerivativeOrder = {
|
|
4773
5059
|
typeUrl: "/injective.exchange.v1beta1.MsgCancelDerivativeOrder",
|
|
4774
5060
|
aminoType: "exchange/MsgCancelDerivativeOrder",
|
|
@@ -4899,6 +5185,13 @@ export const MsgCancelDerivativeOrder = {
|
|
|
4899
5185
|
function createBaseMsgCancelDerivativeOrderResponse() {
|
|
4900
5186
|
return {};
|
|
4901
5187
|
}
|
|
5188
|
+
/**
|
|
5189
|
+
* MsgCancelDerivativeOrderResponse defines the
|
|
5190
|
+
* Msg/CancelDerivativeOrderResponse response type.
|
|
5191
|
+
* @name MsgCancelDerivativeOrderResponse
|
|
5192
|
+
* @package injective.exchange.v1beta1
|
|
5193
|
+
* @see proto type: injective.exchange.v1beta1.MsgCancelDerivativeOrderResponse
|
|
5194
|
+
*/
|
|
4902
5195
|
export const MsgCancelDerivativeOrderResponse = {
|
|
4903
5196
|
typeUrl: "/injective.exchange.v1beta1.MsgCancelDerivativeOrderResponse",
|
|
4904
5197
|
is(o) {
|
|
@@ -4963,6 +5256,13 @@ function createBaseMsgCancelBinaryOptionsOrder() {
|
|
|
4963
5256
|
cid: ""
|
|
4964
5257
|
};
|
|
4965
5258
|
}
|
|
5259
|
+
/**
|
|
5260
|
+
* MsgCancelBinaryOptionsOrder defines the Msg/CancelBinaryOptionsOrder response
|
|
5261
|
+
* type.
|
|
5262
|
+
* @name MsgCancelBinaryOptionsOrder
|
|
5263
|
+
* @package injective.exchange.v1beta1
|
|
5264
|
+
* @see proto type: injective.exchange.v1beta1.MsgCancelBinaryOptionsOrder
|
|
5265
|
+
*/
|
|
4966
5266
|
export const MsgCancelBinaryOptionsOrder = {
|
|
4967
5267
|
typeUrl: "/injective.exchange.v1beta1.MsgCancelBinaryOptionsOrder",
|
|
4968
5268
|
aminoType: "exchange/MsgCancelBinaryOptionsOrder",
|
|
@@ -5093,6 +5393,13 @@ export const MsgCancelBinaryOptionsOrder = {
|
|
|
5093
5393
|
function createBaseMsgCancelBinaryOptionsOrderResponse() {
|
|
5094
5394
|
return {};
|
|
5095
5395
|
}
|
|
5396
|
+
/**
|
|
5397
|
+
* MsgCancelBinaryOptionsOrderResponse defines the
|
|
5398
|
+
* Msg/CancelBinaryOptionsOrderResponse response type.
|
|
5399
|
+
* @name MsgCancelBinaryOptionsOrderResponse
|
|
5400
|
+
* @package injective.exchange.v1beta1
|
|
5401
|
+
* @see proto type: injective.exchange.v1beta1.MsgCancelBinaryOptionsOrderResponse
|
|
5402
|
+
*/
|
|
5096
5403
|
export const MsgCancelBinaryOptionsOrderResponse = {
|
|
5097
5404
|
typeUrl: "/injective.exchange.v1beta1.MsgCancelBinaryOptionsOrderResponse",
|
|
5098
5405
|
is(o) {
|
|
@@ -5156,6 +5463,11 @@ function createBaseOrderData() {
|
|
|
5156
5463
|
cid: ""
|
|
5157
5464
|
};
|
|
5158
5465
|
}
|
|
5466
|
+
/**
|
|
5467
|
+
* @name OrderData
|
|
5468
|
+
* @package injective.exchange.v1beta1
|
|
5469
|
+
* @see proto type: injective.exchange.v1beta1.OrderData
|
|
5470
|
+
*/
|
|
5159
5471
|
export const OrderData = {
|
|
5160
5472
|
typeUrl: "/injective.exchange.v1beta1.OrderData",
|
|
5161
5473
|
is(o) {
|
|
@@ -5271,6 +5583,13 @@ function createBaseMsgBatchCancelDerivativeOrders() {
|
|
|
5271
5583
|
data: []
|
|
5272
5584
|
};
|
|
5273
5585
|
}
|
|
5586
|
+
/**
|
|
5587
|
+
* MsgBatchCancelDerivativeOrders defines the Msg/CancelDerivativeOrders
|
|
5588
|
+
* response type.
|
|
5589
|
+
* @name MsgBatchCancelDerivativeOrders
|
|
5590
|
+
* @package injective.exchange.v1beta1
|
|
5591
|
+
* @see proto type: injective.exchange.v1beta1.MsgBatchCancelDerivativeOrders
|
|
5592
|
+
*/
|
|
5274
5593
|
export const MsgBatchCancelDerivativeOrders = {
|
|
5275
5594
|
typeUrl: "/injective.exchange.v1beta1.MsgBatchCancelDerivativeOrders",
|
|
5276
5595
|
aminoType: "exchange/MsgBatchCancelDerivativeOrders",
|
|
@@ -5367,6 +5686,13 @@ function createBaseMsgBatchCancelDerivativeOrdersResponse() {
|
|
|
5367
5686
|
success: []
|
|
5368
5687
|
};
|
|
5369
5688
|
}
|
|
5689
|
+
/**
|
|
5690
|
+
* MsgBatchCancelDerivativeOrdersResponse defines the
|
|
5691
|
+
* Msg/CancelDerivativeOrderResponse response type.
|
|
5692
|
+
* @name MsgBatchCancelDerivativeOrdersResponse
|
|
5693
|
+
* @package injective.exchange.v1beta1
|
|
5694
|
+
* @see proto type: injective.exchange.v1beta1.MsgBatchCancelDerivativeOrdersResponse
|
|
5695
|
+
*/
|
|
5370
5696
|
export const MsgBatchCancelDerivativeOrdersResponse = {
|
|
5371
5697
|
typeUrl: "/injective.exchange.v1beta1.MsgBatchCancelDerivativeOrdersResponse",
|
|
5372
5698
|
is(o) {
|
|
@@ -5453,6 +5779,12 @@ function createBaseMsgSubaccountTransfer() {
|
|
|
5453
5779
|
amount: Coin.fromPartial({})
|
|
5454
5780
|
};
|
|
5455
5781
|
}
|
|
5782
|
+
/**
|
|
5783
|
+
* A Cosmos-SDK MsgSubaccountTransfer
|
|
5784
|
+
* @name MsgSubaccountTransfer
|
|
5785
|
+
* @package injective.exchange.v1beta1
|
|
5786
|
+
* @see proto type: injective.exchange.v1beta1.MsgSubaccountTransfer
|
|
5787
|
+
*/
|
|
5456
5788
|
export const MsgSubaccountTransfer = {
|
|
5457
5789
|
typeUrl: "/injective.exchange.v1beta1.MsgSubaccountTransfer",
|
|
5458
5790
|
aminoType: "exchange/MsgSubaccountTransfer",
|
|
@@ -5566,6 +5898,13 @@ export const MsgSubaccountTransfer = {
|
|
|
5566
5898
|
function createBaseMsgSubaccountTransferResponse() {
|
|
5567
5899
|
return {};
|
|
5568
5900
|
}
|
|
5901
|
+
/**
|
|
5902
|
+
* MsgSubaccountTransferResponse defines the Msg/SubaccountTransfer response
|
|
5903
|
+
* type.
|
|
5904
|
+
* @name MsgSubaccountTransferResponse
|
|
5905
|
+
* @package injective.exchange.v1beta1
|
|
5906
|
+
* @see proto type: injective.exchange.v1beta1.MsgSubaccountTransferResponse
|
|
5907
|
+
*/
|
|
5569
5908
|
export const MsgSubaccountTransferResponse = {
|
|
5570
5909
|
typeUrl: "/injective.exchange.v1beta1.MsgSubaccountTransferResponse",
|
|
5571
5910
|
is(o) {
|
|
@@ -5628,6 +5967,12 @@ function createBaseMsgExternalTransfer() {
|
|
|
5628
5967
|
amount: Coin.fromPartial({})
|
|
5629
5968
|
};
|
|
5630
5969
|
}
|
|
5970
|
+
/**
|
|
5971
|
+
* A Cosmos-SDK MsgExternalTransfer
|
|
5972
|
+
* @name MsgExternalTransfer
|
|
5973
|
+
* @package injective.exchange.v1beta1
|
|
5974
|
+
* @see proto type: injective.exchange.v1beta1.MsgExternalTransfer
|
|
5975
|
+
*/
|
|
5631
5976
|
export const MsgExternalTransfer = {
|
|
5632
5977
|
typeUrl: "/injective.exchange.v1beta1.MsgExternalTransfer",
|
|
5633
5978
|
aminoType: "exchange/MsgExternalTransfer",
|
|
@@ -5741,6 +6086,12 @@ export const MsgExternalTransfer = {
|
|
|
5741
6086
|
function createBaseMsgExternalTransferResponse() {
|
|
5742
6087
|
return {};
|
|
5743
6088
|
}
|
|
6089
|
+
/**
|
|
6090
|
+
* MsgExternalTransferResponse defines the Msg/ExternalTransfer response type.
|
|
6091
|
+
* @name MsgExternalTransferResponse
|
|
6092
|
+
* @package injective.exchange.v1beta1
|
|
6093
|
+
* @see proto type: injective.exchange.v1beta1.MsgExternalTransferResponse
|
|
6094
|
+
*/
|
|
5744
6095
|
export const MsgExternalTransferResponse = {
|
|
5745
6096
|
typeUrl: "/injective.exchange.v1beta1.MsgExternalTransferResponse",
|
|
5746
6097
|
is(o) {
|
|
@@ -5803,6 +6154,12 @@ function createBaseMsgLiquidatePosition() {
|
|
|
5803
6154
|
order: undefined
|
|
5804
6155
|
};
|
|
5805
6156
|
}
|
|
6157
|
+
/**
|
|
6158
|
+
* A Cosmos-SDK MsgLiquidatePosition
|
|
6159
|
+
* @name MsgLiquidatePosition
|
|
6160
|
+
* @package injective.exchange.v1beta1
|
|
6161
|
+
* @see proto type: injective.exchange.v1beta1.MsgLiquidatePosition
|
|
6162
|
+
*/
|
|
5806
6163
|
export const MsgLiquidatePosition = {
|
|
5807
6164
|
typeUrl: "/injective.exchange.v1beta1.MsgLiquidatePosition",
|
|
5808
6165
|
aminoType: "exchange/MsgLiquidatePosition",
|
|
@@ -5916,6 +6273,12 @@ export const MsgLiquidatePosition = {
|
|
|
5916
6273
|
function createBaseMsgLiquidatePositionResponse() {
|
|
5917
6274
|
return {};
|
|
5918
6275
|
}
|
|
6276
|
+
/**
|
|
6277
|
+
* MsgLiquidatePositionResponse defines the Msg/LiquidatePosition response type.
|
|
6278
|
+
* @name MsgLiquidatePositionResponse
|
|
6279
|
+
* @package injective.exchange.v1beta1
|
|
6280
|
+
* @see proto type: injective.exchange.v1beta1.MsgLiquidatePositionResponse
|
|
6281
|
+
*/
|
|
5919
6282
|
export const MsgLiquidatePositionResponse = {
|
|
5920
6283
|
typeUrl: "/injective.exchange.v1beta1.MsgLiquidatePositionResponse",
|
|
5921
6284
|
is(o) {
|
|
@@ -5977,6 +6340,12 @@ function createBaseMsgEmergencySettleMarket() {
|
|
|
5977
6340
|
marketId: ""
|
|
5978
6341
|
};
|
|
5979
6342
|
}
|
|
6343
|
+
/**
|
|
6344
|
+
* A Cosmos-SDK MsgEmergencySettleMarket
|
|
6345
|
+
* @name MsgEmergencySettleMarket
|
|
6346
|
+
* @package injective.exchange.v1beta1
|
|
6347
|
+
* @see proto type: injective.exchange.v1beta1.MsgEmergencySettleMarket
|
|
6348
|
+
*/
|
|
5980
6349
|
export const MsgEmergencySettleMarket = {
|
|
5981
6350
|
typeUrl: "/injective.exchange.v1beta1.MsgEmergencySettleMarket",
|
|
5982
6351
|
aminoType: "exchange/MsgEmergencySettleMarket",
|
|
@@ -6074,6 +6443,13 @@ export const MsgEmergencySettleMarket = {
|
|
|
6074
6443
|
function createBaseMsgEmergencySettleMarketResponse() {
|
|
6075
6444
|
return {};
|
|
6076
6445
|
}
|
|
6446
|
+
/**
|
|
6447
|
+
* MsgEmergencySettleMarketResponse defines the Msg/EmergencySettleMarket
|
|
6448
|
+
* response type.
|
|
6449
|
+
* @name MsgEmergencySettleMarketResponse
|
|
6450
|
+
* @package injective.exchange.v1beta1
|
|
6451
|
+
* @see proto type: injective.exchange.v1beta1.MsgEmergencySettleMarketResponse
|
|
6452
|
+
*/
|
|
6077
6453
|
export const MsgEmergencySettleMarketResponse = {
|
|
6078
6454
|
typeUrl: "/injective.exchange.v1beta1.MsgEmergencySettleMarketResponse",
|
|
6079
6455
|
is(o) {
|
|
@@ -6137,6 +6513,12 @@ function createBaseMsgIncreasePositionMargin() {
|
|
|
6137
6513
|
amount: ""
|
|
6138
6514
|
};
|
|
6139
6515
|
}
|
|
6516
|
+
/**
|
|
6517
|
+
* A Cosmos-SDK MsgIncreasePositionMargin
|
|
6518
|
+
* @name MsgIncreasePositionMargin
|
|
6519
|
+
* @package injective.exchange.v1beta1
|
|
6520
|
+
* @see proto type: injective.exchange.v1beta1.MsgIncreasePositionMargin
|
|
6521
|
+
*/
|
|
6140
6522
|
export const MsgIncreasePositionMargin = {
|
|
6141
6523
|
typeUrl: "/injective.exchange.v1beta1.MsgIncreasePositionMargin",
|
|
6142
6524
|
aminoType: "exchange/MsgIncreasePositionMargin",
|
|
@@ -6256,6 +6638,13 @@ export const MsgIncreasePositionMargin = {
|
|
|
6256
6638
|
function createBaseMsgIncreasePositionMarginResponse() {
|
|
6257
6639
|
return {};
|
|
6258
6640
|
}
|
|
6641
|
+
/**
|
|
6642
|
+
* MsgIncreasePositionMarginResponse defines the Msg/IncreasePositionMargin
|
|
6643
|
+
* response type.
|
|
6644
|
+
* @name MsgIncreasePositionMarginResponse
|
|
6645
|
+
* @package injective.exchange.v1beta1
|
|
6646
|
+
* @see proto type: injective.exchange.v1beta1.MsgIncreasePositionMarginResponse
|
|
6647
|
+
*/
|
|
6259
6648
|
export const MsgIncreasePositionMarginResponse = {
|
|
6260
6649
|
typeUrl: "/injective.exchange.v1beta1.MsgIncreasePositionMarginResponse",
|
|
6261
6650
|
is(o) {
|
|
@@ -6319,6 +6708,12 @@ function createBaseMsgDecreasePositionMargin() {
|
|
|
6319
6708
|
amount: ""
|
|
6320
6709
|
};
|
|
6321
6710
|
}
|
|
6711
|
+
/**
|
|
6712
|
+
* A Cosmos-SDK MsgDecreasePositionMargin
|
|
6713
|
+
* @name MsgDecreasePositionMargin
|
|
6714
|
+
* @package injective.exchange.v1beta1
|
|
6715
|
+
* @see proto type: injective.exchange.v1beta1.MsgDecreasePositionMargin
|
|
6716
|
+
*/
|
|
6322
6717
|
export const MsgDecreasePositionMargin = {
|
|
6323
6718
|
typeUrl: "/injective.exchange.v1beta1.MsgDecreasePositionMargin",
|
|
6324
6719
|
aminoType: "exchange/MsgDecreasePositionMargin",
|
|
@@ -6438,6 +6833,13 @@ export const MsgDecreasePositionMargin = {
|
|
|
6438
6833
|
function createBaseMsgDecreasePositionMarginResponse() {
|
|
6439
6834
|
return {};
|
|
6440
6835
|
}
|
|
6836
|
+
/**
|
|
6837
|
+
* MsgDecreasePositionMarginResponse defines the Msg/MsgDecreasePositionMargin
|
|
6838
|
+
* response type.
|
|
6839
|
+
* @name MsgDecreasePositionMarginResponse
|
|
6840
|
+
* @package injective.exchange.v1beta1
|
|
6841
|
+
* @see proto type: injective.exchange.v1beta1.MsgDecreasePositionMarginResponse
|
|
6842
|
+
*/
|
|
6441
6843
|
export const MsgDecreasePositionMarginResponse = {
|
|
6442
6844
|
typeUrl: "/injective.exchange.v1beta1.MsgDecreasePositionMarginResponse",
|
|
6443
6845
|
is(o) {
|
|
@@ -6500,6 +6902,12 @@ function createBaseMsgPrivilegedExecuteContract() {
|
|
|
6500
6902
|
data: ""
|
|
6501
6903
|
};
|
|
6502
6904
|
}
|
|
6905
|
+
/**
|
|
6906
|
+
* MsgPrivilegedExecuteContract defines the Msg/Exec message type
|
|
6907
|
+
* @name MsgPrivilegedExecuteContract
|
|
6908
|
+
* @package injective.exchange.v1beta1
|
|
6909
|
+
* @see proto type: injective.exchange.v1beta1.MsgPrivilegedExecuteContract
|
|
6910
|
+
*/
|
|
6503
6911
|
export const MsgPrivilegedExecuteContract = {
|
|
6504
6912
|
typeUrl: "/injective.exchange.v1beta1.MsgPrivilegedExecuteContract",
|
|
6505
6913
|
aminoType: "exchange/MsgPrivilegedExecuteContract",
|
|
@@ -6610,6 +7018,12 @@ function createBaseMsgPrivilegedExecuteContractResponse() {
|
|
|
6610
7018
|
fundsDiff: []
|
|
6611
7019
|
};
|
|
6612
7020
|
}
|
|
7021
|
+
/**
|
|
7022
|
+
* MsgPrivilegedExecuteContractResponse defines the Msg/Exec response type.
|
|
7023
|
+
* @name MsgPrivilegedExecuteContractResponse
|
|
7024
|
+
* @package injective.exchange.v1beta1
|
|
7025
|
+
* @see proto type: injective.exchange.v1beta1.MsgPrivilegedExecuteContractResponse
|
|
7026
|
+
*/
|
|
6613
7027
|
export const MsgPrivilegedExecuteContractResponse = {
|
|
6614
7028
|
typeUrl: "/injective.exchange.v1beta1.MsgPrivilegedExecuteContractResponse",
|
|
6615
7029
|
is(o) {
|
|
@@ -6688,6 +7102,12 @@ function createBaseMsgRewardsOptOut() {
|
|
|
6688
7102
|
sender: ""
|
|
6689
7103
|
};
|
|
6690
7104
|
}
|
|
7105
|
+
/**
|
|
7106
|
+
* A Cosmos-SDK MsgRewardsOptOut
|
|
7107
|
+
* @name MsgRewardsOptOut
|
|
7108
|
+
* @package injective.exchange.v1beta1
|
|
7109
|
+
* @see proto type: injective.exchange.v1beta1.MsgRewardsOptOut
|
|
7110
|
+
*/
|
|
6691
7111
|
export const MsgRewardsOptOut = {
|
|
6692
7112
|
typeUrl: "/injective.exchange.v1beta1.MsgRewardsOptOut",
|
|
6693
7113
|
aminoType: "exchange/MsgRewardsOptOut",
|
|
@@ -6763,6 +7183,12 @@ export const MsgRewardsOptOut = {
|
|
|
6763
7183
|
function createBaseMsgRewardsOptOutResponse() {
|
|
6764
7184
|
return {};
|
|
6765
7185
|
}
|
|
7186
|
+
/**
|
|
7187
|
+
* MsgRewardsOptOutResponse defines the Msg/RewardsOptOut response type.
|
|
7188
|
+
* @name MsgRewardsOptOutResponse
|
|
7189
|
+
* @package injective.exchange.v1beta1
|
|
7190
|
+
* @see proto type: injective.exchange.v1beta1.MsgRewardsOptOutResponse
|
|
7191
|
+
*/
|
|
6766
7192
|
export const MsgRewardsOptOutResponse = {
|
|
6767
7193
|
typeUrl: "/injective.exchange.v1beta1.MsgRewardsOptOutResponse",
|
|
6768
7194
|
is(o) {
|
|
@@ -6824,6 +7250,12 @@ function createBaseMsgReclaimLockedFunds() {
|
|
|
6824
7250
|
signature: new Uint8Array()
|
|
6825
7251
|
};
|
|
6826
7252
|
}
|
|
7253
|
+
/**
|
|
7254
|
+
* A Cosmos-SDK MsgReclaimLockedFunds
|
|
7255
|
+
* @name MsgReclaimLockedFunds
|
|
7256
|
+
* @package injective.exchange.v1beta1
|
|
7257
|
+
* @see proto type: injective.exchange.v1beta1.MsgReclaimLockedFunds
|
|
7258
|
+
*/
|
|
6827
7259
|
export const MsgReclaimLockedFunds = {
|
|
6828
7260
|
typeUrl: "/injective.exchange.v1beta1.MsgReclaimLockedFunds",
|
|
6829
7261
|
aminoType: "exchange/MsgReclaimLockedFunds",
|
|
@@ -6921,6 +7353,13 @@ export const MsgReclaimLockedFunds = {
|
|
|
6921
7353
|
function createBaseMsgReclaimLockedFundsResponse() {
|
|
6922
7354
|
return {};
|
|
6923
7355
|
}
|
|
7356
|
+
/**
|
|
7357
|
+
* MsgReclaimLockedFundsResponse defines the Msg/ReclaimLockedFunds response
|
|
7358
|
+
* type.
|
|
7359
|
+
* @name MsgReclaimLockedFundsResponse
|
|
7360
|
+
* @package injective.exchange.v1beta1
|
|
7361
|
+
* @see proto type: injective.exchange.v1beta1.MsgReclaimLockedFundsResponse
|
|
7362
|
+
*/
|
|
6924
7363
|
export const MsgReclaimLockedFundsResponse = {
|
|
6925
7364
|
typeUrl: "/injective.exchange.v1beta1.MsgReclaimLockedFundsResponse",
|
|
6926
7365
|
is(o) {
|
|
@@ -6981,6 +7420,12 @@ function createBaseMsgSignData() {
|
|
|
6981
7420
|
data: new Uint8Array()
|
|
6982
7421
|
};
|
|
6983
7422
|
}
|
|
7423
|
+
/**
|
|
7424
|
+
* MsgSignData defines an arbitrary, general-purpose, off-chain message
|
|
7425
|
+
* @name MsgSignData
|
|
7426
|
+
* @package injective.exchange.v1beta1
|
|
7427
|
+
* @see proto type: injective.exchange.v1beta1.MsgSignData
|
|
7428
|
+
*/
|
|
6984
7429
|
export const MsgSignData = {
|
|
6985
7430
|
typeUrl: "/injective.exchange.v1beta1.MsgSignData",
|
|
6986
7431
|
is(o) {
|
|
@@ -7063,6 +7508,12 @@ function createBaseMsgSignDoc() {
|
|
|
7063
7508
|
value: MsgSignData.fromPartial({})
|
|
7064
7509
|
};
|
|
7065
7510
|
}
|
|
7511
|
+
/**
|
|
7512
|
+
* MsgSignDoc defines an arbitrary, general-purpose, off-chain message
|
|
7513
|
+
* @name MsgSignDoc
|
|
7514
|
+
* @package injective.exchange.v1beta1
|
|
7515
|
+
* @see proto type: injective.exchange.v1beta1.MsgSignDoc
|
|
7516
|
+
*/
|
|
7066
7517
|
export const MsgSignDoc = {
|
|
7067
7518
|
typeUrl: "/injective.exchange.v1beta1.MsgSignDoc",
|
|
7068
7519
|
is(o) {
|
|
@@ -7154,6 +7605,13 @@ function createBaseMsgAdminUpdateBinaryOptionsMarket() {
|
|
|
7154
7605
|
status: 0
|
|
7155
7606
|
};
|
|
7156
7607
|
}
|
|
7608
|
+
/**
|
|
7609
|
+
* MsgAdminUpdateBinaryOptionsMarket is used by the market Admin to operate the
|
|
7610
|
+
* market
|
|
7611
|
+
* @name MsgAdminUpdateBinaryOptionsMarket
|
|
7612
|
+
* @package injective.exchange.v1beta1
|
|
7613
|
+
* @see proto type: injective.exchange.v1beta1.MsgAdminUpdateBinaryOptionsMarket
|
|
7614
|
+
*/
|
|
7157
7615
|
export const MsgAdminUpdateBinaryOptionsMarket = {
|
|
7158
7616
|
typeUrl: "/injective.exchange.v1beta1.MsgAdminUpdateBinaryOptionsMarket",
|
|
7159
7617
|
aminoType: "exchange/MsgAdminUpdateBinaryOptionsMarket",
|
|
@@ -7284,6 +7742,13 @@ export const MsgAdminUpdateBinaryOptionsMarket = {
|
|
|
7284
7742
|
function createBaseMsgAdminUpdateBinaryOptionsMarketResponse() {
|
|
7285
7743
|
return {};
|
|
7286
7744
|
}
|
|
7745
|
+
/**
|
|
7746
|
+
* MsgAdminUpdateBinaryOptionsMarketResponse is the response for
|
|
7747
|
+
* AdminUpdateBinaryOptionsMarket rpc method
|
|
7748
|
+
* @name MsgAdminUpdateBinaryOptionsMarketResponse
|
|
7749
|
+
* @package injective.exchange.v1beta1
|
|
7750
|
+
* @see proto type: injective.exchange.v1beta1.MsgAdminUpdateBinaryOptionsMarketResponse
|
|
7751
|
+
*/
|
|
7287
7752
|
export const MsgAdminUpdateBinaryOptionsMarketResponse = {
|
|
7288
7753
|
typeUrl: "/injective.exchange.v1beta1.MsgAdminUpdateBinaryOptionsMarketResponse",
|
|
7289
7754
|
is(o) {
|
|
@@ -7344,6 +7809,12 @@ function createBaseMsgAuthorizeStakeGrants() {
|
|
|
7344
7809
|
grants: []
|
|
7345
7810
|
};
|
|
7346
7811
|
}
|
|
7812
|
+
/**
|
|
7813
|
+
* MsgAuthorizeStakeGrants grants stakes to grantees.
|
|
7814
|
+
* @name MsgAuthorizeStakeGrants
|
|
7815
|
+
* @package injective.exchange.v1beta1
|
|
7816
|
+
* @see proto type: injective.exchange.v1beta1.MsgAuthorizeStakeGrants
|
|
7817
|
+
*/
|
|
7347
7818
|
export const MsgAuthorizeStakeGrants = {
|
|
7348
7819
|
typeUrl: "/injective.exchange.v1beta1.MsgAuthorizeStakeGrants",
|
|
7349
7820
|
aminoType: "exchange/MsgAuthorizeStakeGrants",
|
|
@@ -7438,6 +7909,11 @@ export const MsgAuthorizeStakeGrants = {
|
|
|
7438
7909
|
function createBaseMsgAuthorizeStakeGrantsResponse() {
|
|
7439
7910
|
return {};
|
|
7440
7911
|
}
|
|
7912
|
+
/**
|
|
7913
|
+
* @name MsgAuthorizeStakeGrantsResponse
|
|
7914
|
+
* @package injective.exchange.v1beta1
|
|
7915
|
+
* @see proto type: injective.exchange.v1beta1.MsgAuthorizeStakeGrantsResponse
|
|
7916
|
+
*/
|
|
7441
7917
|
export const MsgAuthorizeStakeGrantsResponse = {
|
|
7442
7918
|
typeUrl: "/injective.exchange.v1beta1.MsgAuthorizeStakeGrantsResponse",
|
|
7443
7919
|
is(o) {
|
|
@@ -7498,6 +7974,12 @@ function createBaseMsgActivateStakeGrant() {
|
|
|
7498
7974
|
granter: ""
|
|
7499
7975
|
};
|
|
7500
7976
|
}
|
|
7977
|
+
/**
|
|
7978
|
+
* MsgActivateStakeGrant allows a grantee to activate a stake grant.
|
|
7979
|
+
* @name MsgActivateStakeGrant
|
|
7980
|
+
* @package injective.exchange.v1beta1
|
|
7981
|
+
* @see proto type: injective.exchange.v1beta1.MsgActivateStakeGrant
|
|
7982
|
+
*/
|
|
7501
7983
|
export const MsgActivateStakeGrant = {
|
|
7502
7984
|
typeUrl: "/injective.exchange.v1beta1.MsgActivateStakeGrant",
|
|
7503
7985
|
aminoType: "exchange/MsgActivateStakeGrant",
|
|
@@ -7584,6 +8066,11 @@ export const MsgActivateStakeGrant = {
|
|
|
7584
8066
|
function createBaseMsgActivateStakeGrantResponse() {
|
|
7585
8067
|
return {};
|
|
7586
8068
|
}
|
|
8069
|
+
/**
|
|
8070
|
+
* @name MsgActivateStakeGrantResponse
|
|
8071
|
+
* @package injective.exchange.v1beta1
|
|
8072
|
+
* @see proto type: injective.exchange.v1beta1.MsgActivateStakeGrantResponse
|
|
8073
|
+
*/
|
|
7587
8074
|
export const MsgActivateStakeGrantResponse = {
|
|
7588
8075
|
typeUrl: "/injective.exchange.v1beta1.MsgActivateStakeGrantResponse",
|
|
7589
8076
|
is(o) {
|