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
package/cosmos/gov/v1/tx.d.ts
CHANGED
|
@@ -15,15 +15,26 @@ import { DeepPartial } from "../../../helpers";
|
|
|
15
15
|
/**
|
|
16
16
|
* MsgSubmitProposal defines an sdk.Msg type that supports submitting arbitrary
|
|
17
17
|
* proposal Content.
|
|
18
|
+
* @name MsgSubmitProposal
|
|
19
|
+
* @package cosmos.gov.v1
|
|
20
|
+
* @see proto type: cosmos.gov.v1.MsgSubmitProposal
|
|
18
21
|
*/
|
|
19
22
|
export interface MsgSubmitProposal {
|
|
20
|
-
/**
|
|
23
|
+
/**
|
|
24
|
+
* messages are the arbitrary messages to be executed if proposal passes.
|
|
25
|
+
*/
|
|
21
26
|
messages: Any[];
|
|
22
|
-
/**
|
|
27
|
+
/**
|
|
28
|
+
* initial_deposit is the deposit value that must be paid at proposal submission.
|
|
29
|
+
*/
|
|
23
30
|
initialDeposit: Coin[];
|
|
24
|
-
/**
|
|
31
|
+
/**
|
|
32
|
+
* proposer is the account address of the proposer.
|
|
33
|
+
*/
|
|
25
34
|
proposer: string;
|
|
26
|
-
/**
|
|
35
|
+
/**
|
|
36
|
+
* metadata is any arbitrary metadata attached to the proposal.
|
|
37
|
+
*/
|
|
27
38
|
metadata: string;
|
|
28
39
|
/**
|
|
29
40
|
* title is the title of the proposal.
|
|
@@ -51,15 +62,26 @@ export interface MsgSubmitProposalProtoMsg {
|
|
|
51
62
|
/**
|
|
52
63
|
* MsgSubmitProposal defines an sdk.Msg type that supports submitting arbitrary
|
|
53
64
|
* proposal Content.
|
|
65
|
+
* @name MsgSubmitProposalAmino
|
|
66
|
+
* @package cosmos.gov.v1
|
|
67
|
+
* @see proto type: cosmos.gov.v1.MsgSubmitProposal
|
|
54
68
|
*/
|
|
55
69
|
export interface MsgSubmitProposalAmino {
|
|
56
|
-
/**
|
|
70
|
+
/**
|
|
71
|
+
* messages are the arbitrary messages to be executed if proposal passes.
|
|
72
|
+
*/
|
|
57
73
|
messages: AnyAmino[];
|
|
58
|
-
/**
|
|
74
|
+
/**
|
|
75
|
+
* initial_deposit is the deposit value that must be paid at proposal submission.
|
|
76
|
+
*/
|
|
59
77
|
initial_deposit: CoinAmino[];
|
|
60
|
-
/**
|
|
78
|
+
/**
|
|
79
|
+
* proposer is the account address of the proposer.
|
|
80
|
+
*/
|
|
61
81
|
proposer: string;
|
|
62
|
-
/**
|
|
82
|
+
/**
|
|
83
|
+
* metadata is any arbitrary metadata attached to the proposal.
|
|
84
|
+
*/
|
|
63
85
|
metadata: string;
|
|
64
86
|
/**
|
|
65
87
|
* title is the title of the proposal.
|
|
@@ -84,18 +106,32 @@ export interface MsgSubmitProposalAminoMsg {
|
|
|
84
106
|
type: "cosmos-sdk/v1/MsgSubmitProposal";
|
|
85
107
|
value: MsgSubmitProposalAmino;
|
|
86
108
|
}
|
|
87
|
-
/**
|
|
109
|
+
/**
|
|
110
|
+
* MsgSubmitProposalResponse defines the Msg/SubmitProposal response type.
|
|
111
|
+
* @name MsgSubmitProposalResponse
|
|
112
|
+
* @package cosmos.gov.v1
|
|
113
|
+
* @see proto type: cosmos.gov.v1.MsgSubmitProposalResponse
|
|
114
|
+
*/
|
|
88
115
|
export interface MsgSubmitProposalResponse {
|
|
89
|
-
/**
|
|
116
|
+
/**
|
|
117
|
+
* proposal_id defines the unique id of the proposal.
|
|
118
|
+
*/
|
|
90
119
|
proposalId: bigint;
|
|
91
120
|
}
|
|
92
121
|
export interface MsgSubmitProposalResponseProtoMsg {
|
|
93
122
|
typeUrl: "/cosmos.gov.v1.MsgSubmitProposalResponse";
|
|
94
123
|
value: Uint8Array;
|
|
95
124
|
}
|
|
96
|
-
/**
|
|
125
|
+
/**
|
|
126
|
+
* MsgSubmitProposalResponse defines the Msg/SubmitProposal response type.
|
|
127
|
+
* @name MsgSubmitProposalResponseAmino
|
|
128
|
+
* @package cosmos.gov.v1
|
|
129
|
+
* @see proto type: cosmos.gov.v1.MsgSubmitProposalResponse
|
|
130
|
+
*/
|
|
97
131
|
export interface MsgSubmitProposalResponseAmino {
|
|
98
|
-
/**
|
|
132
|
+
/**
|
|
133
|
+
* proposal_id defines the unique id of the proposal.
|
|
134
|
+
*/
|
|
99
135
|
proposal_id: string;
|
|
100
136
|
}
|
|
101
137
|
export interface MsgSubmitProposalResponseAminoMsg {
|
|
@@ -105,11 +141,18 @@ export interface MsgSubmitProposalResponseAminoMsg {
|
|
|
105
141
|
/**
|
|
106
142
|
* MsgExecLegacyContent is used to wrap the legacy content field into a message.
|
|
107
143
|
* This ensures backwards compatibility with v1beta1.MsgSubmitProposal.
|
|
144
|
+
* @name MsgExecLegacyContent
|
|
145
|
+
* @package cosmos.gov.v1
|
|
146
|
+
* @see proto type: cosmos.gov.v1.MsgExecLegacyContent
|
|
108
147
|
*/
|
|
109
148
|
export interface MsgExecLegacyContent {
|
|
110
|
-
/**
|
|
149
|
+
/**
|
|
150
|
+
* content is the proposal's content.
|
|
151
|
+
*/
|
|
111
152
|
content?: CommunityPoolSpendProposal | CommunityPoolSpendProposalWithDeposit | TextProposal | SoftwareUpgradeProposal | CancelSoftwareUpgradeProposal | StoreCodeProposal | InstantiateContractProposal | InstantiateContract2Proposal | MigrateContractProposal | SudoContractProposal | ExecuteContractProposal | UpdateAdminProposal | ClearAdminProposal | PinCodesProposal | UnpinCodesProposal | UpdateInstantiateConfigProposal | StoreAndInstantiateContractProposal | SpotMarketParamUpdateProposal | BatchExchangeModificationProposal | SpotMarketLaunchProposal | PerpetualMarketLaunchProposal | BinaryOptionsMarketLaunchProposal | ExpiryFuturesMarketLaunchProposal | DerivativeMarketParamUpdateProposal | MarketForcedSettlementProposal | UpdateDenomDecimalsProposal | BinaryOptionsMarketParamUpdateProposal | TradingRewardCampaignLaunchProposal | TradingRewardCampaignUpdateProposal | TradingRewardPendingPointsUpdateProposal | FeeDiscountProposal | BatchCommunityPoolSpendProposal | AtomicMarketOrderFeeMultiplierScheduleProposal | SetConfigProposal | SetBatchConfigProposal | GrantBandOraclePrivilegeProposal | RevokeBandOraclePrivilegeProposal | GrantPriceFeederPrivilegeProposal | GrantProviderPrivilegeProposal | RevokeProviderPrivilegeProposal | RevokePriceFeederPrivilegeProposal | AuthorizeBandOracleRequestProposal | UpdateBandOracleRequestProposal | EnableBandIBCProposal | GrantStorkPublisherPrivilegeProposal | RevokeStorkPublisherPrivilegeProposal | BlacklistEthereumAddressesProposal | RevokeEthereumBlacklistProposal | ContractRegistrationRequestProposal | BatchContractRegistrationRequestProposal | BatchContractDeregistrationProposal | ContractRegistrationRequest | BatchStoreCodeProposal | Any | undefined;
|
|
112
|
-
/**
|
|
153
|
+
/**
|
|
154
|
+
* authority must be the gov module address.
|
|
155
|
+
*/
|
|
113
156
|
authority: string;
|
|
114
157
|
}
|
|
115
158
|
export interface MsgExecLegacyContentProtoMsg {
|
|
@@ -117,158 +160,282 @@ export interface MsgExecLegacyContentProtoMsg {
|
|
|
117
160
|
value: Uint8Array;
|
|
118
161
|
}
|
|
119
162
|
export type MsgExecLegacyContentEncoded = Omit<MsgExecLegacyContent, "content"> & {
|
|
120
|
-
/**
|
|
163
|
+
/**
|
|
164
|
+
* content is the proposal's content.
|
|
165
|
+
*/
|
|
166
|
+
content?: CommunityPoolSpendProposalProtoMsg | CommunityPoolSpendProposalWithDepositProtoMsg | TextProposalProtoMsg | SoftwareUpgradeProposalProtoMsg | CancelSoftwareUpgradeProposalProtoMsg | StoreCodeProposalProtoMsg | InstantiateContractProposalProtoMsg | InstantiateContract2ProposalProtoMsg | MigrateContractProposalProtoMsg | SudoContractProposalProtoMsg | ExecuteContractProposalProtoMsg | UpdateAdminProposalProtoMsg | ClearAdminProposalProtoMsg | PinCodesProposalProtoMsg | UnpinCodesProposalProtoMsg | UpdateInstantiateConfigProposalProtoMsg | StoreAndInstantiateContractProposalProtoMsg | SpotMarketParamUpdateProposalProtoMsg | BatchExchangeModificationProposalProtoMsg | SpotMarketLaunchProposalProtoMsg | PerpetualMarketLaunchProposalProtoMsg | BinaryOptionsMarketLaunchProposalProtoMsg | ExpiryFuturesMarketLaunchProposalProtoMsg | DerivativeMarketParamUpdateProposalProtoMsg | MarketForcedSettlementProposalProtoMsg | UpdateDenomDecimalsProposalProtoMsg | BinaryOptionsMarketParamUpdateProposalProtoMsg | TradingRewardCampaignLaunchProposalProtoMsg | TradingRewardCampaignUpdateProposalProtoMsg | TradingRewardPendingPointsUpdateProposalProtoMsg | FeeDiscountProposalProtoMsg | BatchCommunityPoolSpendProposalProtoMsg | AtomicMarketOrderFeeMultiplierScheduleProposalProtoMsg | SetConfigProposalProtoMsg | SetBatchConfigProposalProtoMsg | GrantBandOraclePrivilegeProposalProtoMsg | RevokeBandOraclePrivilegeProposalProtoMsg | GrantPriceFeederPrivilegeProposalProtoMsg | GrantProviderPrivilegeProposalProtoMsg | RevokeProviderPrivilegeProposalProtoMsg | RevokePriceFeederPrivilegeProposalProtoMsg | AuthorizeBandOracleRequestProposalProtoMsg | UpdateBandOracleRequestProposalProtoMsg | EnableBandIBCProposalProtoMsg | GrantStorkPublisherPrivilegeProposalProtoMsg | RevokeStorkPublisherPrivilegeProposalProtoMsg | BlacklistEthereumAddressesProposalProtoMsg | RevokeEthereumBlacklistProposalProtoMsg | ContractRegistrationRequestProposalProtoMsg | BatchContractRegistrationRequestProposalProtoMsg | BatchContractDeregistrationProposalProtoMsg | ContractRegistrationRequestProtoMsg | BatchStoreCodeProposalProtoMsg | AnyProtoMsg | undefined;
|
|
121
167
|
};
|
|
122
168
|
/**
|
|
123
169
|
* MsgExecLegacyContent is used to wrap the legacy content field into a message.
|
|
124
170
|
* This ensures backwards compatibility with v1beta1.MsgSubmitProposal.
|
|
171
|
+
* @name MsgExecLegacyContentAmino
|
|
172
|
+
* @package cosmos.gov.v1
|
|
173
|
+
* @see proto type: cosmos.gov.v1.MsgExecLegacyContent
|
|
125
174
|
*/
|
|
126
175
|
export interface MsgExecLegacyContentAmino {
|
|
127
|
-
/**
|
|
176
|
+
/**
|
|
177
|
+
* content is the proposal's content.
|
|
178
|
+
*/
|
|
128
179
|
content?: AnyAmino;
|
|
129
|
-
/**
|
|
180
|
+
/**
|
|
181
|
+
* authority must be the gov module address.
|
|
182
|
+
*/
|
|
130
183
|
authority: string;
|
|
131
184
|
}
|
|
132
185
|
export interface MsgExecLegacyContentAminoMsg {
|
|
133
186
|
type: "cosmos-sdk/v1/MsgExecLegacyContent";
|
|
134
187
|
value: MsgExecLegacyContentAmino;
|
|
135
188
|
}
|
|
136
|
-
/**
|
|
189
|
+
/**
|
|
190
|
+
* MsgExecLegacyContentResponse defines the Msg/ExecLegacyContent response type.
|
|
191
|
+
* @name MsgExecLegacyContentResponse
|
|
192
|
+
* @package cosmos.gov.v1
|
|
193
|
+
* @see proto type: cosmos.gov.v1.MsgExecLegacyContentResponse
|
|
194
|
+
*/
|
|
137
195
|
export interface MsgExecLegacyContentResponse {
|
|
138
196
|
}
|
|
139
197
|
export interface MsgExecLegacyContentResponseProtoMsg {
|
|
140
198
|
typeUrl: "/cosmos.gov.v1.MsgExecLegacyContentResponse";
|
|
141
199
|
value: Uint8Array;
|
|
142
200
|
}
|
|
143
|
-
/**
|
|
201
|
+
/**
|
|
202
|
+
* MsgExecLegacyContentResponse defines the Msg/ExecLegacyContent response type.
|
|
203
|
+
* @name MsgExecLegacyContentResponseAmino
|
|
204
|
+
* @package cosmos.gov.v1
|
|
205
|
+
* @see proto type: cosmos.gov.v1.MsgExecLegacyContentResponse
|
|
206
|
+
*/
|
|
144
207
|
export interface MsgExecLegacyContentResponseAmino {
|
|
145
208
|
}
|
|
146
209
|
export interface MsgExecLegacyContentResponseAminoMsg {
|
|
147
210
|
type: "cosmos-sdk/v1/MsgExecLegacyContentResponse";
|
|
148
211
|
value: MsgExecLegacyContentResponseAmino;
|
|
149
212
|
}
|
|
150
|
-
/**
|
|
213
|
+
/**
|
|
214
|
+
* MsgVote defines a message to cast a vote.
|
|
215
|
+
* @name MsgVote
|
|
216
|
+
* @package cosmos.gov.v1
|
|
217
|
+
* @see proto type: cosmos.gov.v1.MsgVote
|
|
218
|
+
*/
|
|
151
219
|
export interface MsgVote {
|
|
152
|
-
/**
|
|
220
|
+
/**
|
|
221
|
+
* proposal_id defines the unique id of the proposal.
|
|
222
|
+
*/
|
|
153
223
|
proposalId: bigint;
|
|
154
|
-
/**
|
|
224
|
+
/**
|
|
225
|
+
* voter is the voter address for the proposal.
|
|
226
|
+
*/
|
|
155
227
|
voter: string;
|
|
156
|
-
/**
|
|
228
|
+
/**
|
|
229
|
+
* option defines the vote option.
|
|
230
|
+
*/
|
|
157
231
|
option: VoteOption;
|
|
158
|
-
/**
|
|
232
|
+
/**
|
|
233
|
+
* metadata is any arbitrary metadata attached to the Vote.
|
|
234
|
+
*/
|
|
159
235
|
metadata: string;
|
|
160
236
|
}
|
|
161
237
|
export interface MsgVoteProtoMsg {
|
|
162
238
|
typeUrl: "/cosmos.gov.v1.MsgVote";
|
|
163
239
|
value: Uint8Array;
|
|
164
240
|
}
|
|
165
|
-
/**
|
|
241
|
+
/**
|
|
242
|
+
* MsgVote defines a message to cast a vote.
|
|
243
|
+
* @name MsgVoteAmino
|
|
244
|
+
* @package cosmos.gov.v1
|
|
245
|
+
* @see proto type: cosmos.gov.v1.MsgVote
|
|
246
|
+
*/
|
|
166
247
|
export interface MsgVoteAmino {
|
|
167
|
-
/**
|
|
248
|
+
/**
|
|
249
|
+
* proposal_id defines the unique id of the proposal.
|
|
250
|
+
*/
|
|
168
251
|
proposal_id: string;
|
|
169
|
-
/**
|
|
252
|
+
/**
|
|
253
|
+
* voter is the voter address for the proposal.
|
|
254
|
+
*/
|
|
170
255
|
voter: string;
|
|
171
|
-
/**
|
|
256
|
+
/**
|
|
257
|
+
* option defines the vote option.
|
|
258
|
+
*/
|
|
172
259
|
option: VoteOption;
|
|
173
|
-
/**
|
|
260
|
+
/**
|
|
261
|
+
* metadata is any arbitrary metadata attached to the Vote.
|
|
262
|
+
*/
|
|
174
263
|
metadata: string;
|
|
175
264
|
}
|
|
176
265
|
export interface MsgVoteAminoMsg {
|
|
177
266
|
type: "cosmos-sdk/v1/MsgVote";
|
|
178
267
|
value: MsgVoteAmino;
|
|
179
268
|
}
|
|
180
|
-
/**
|
|
269
|
+
/**
|
|
270
|
+
* MsgVoteResponse defines the Msg/Vote response type.
|
|
271
|
+
* @name MsgVoteResponse
|
|
272
|
+
* @package cosmos.gov.v1
|
|
273
|
+
* @see proto type: cosmos.gov.v1.MsgVoteResponse
|
|
274
|
+
*/
|
|
181
275
|
export interface MsgVoteResponse {
|
|
182
276
|
}
|
|
183
277
|
export interface MsgVoteResponseProtoMsg {
|
|
184
278
|
typeUrl: "/cosmos.gov.v1.MsgVoteResponse";
|
|
185
279
|
value: Uint8Array;
|
|
186
280
|
}
|
|
187
|
-
/**
|
|
281
|
+
/**
|
|
282
|
+
* MsgVoteResponse defines the Msg/Vote response type.
|
|
283
|
+
* @name MsgVoteResponseAmino
|
|
284
|
+
* @package cosmos.gov.v1
|
|
285
|
+
* @see proto type: cosmos.gov.v1.MsgVoteResponse
|
|
286
|
+
*/
|
|
188
287
|
export interface MsgVoteResponseAmino {
|
|
189
288
|
}
|
|
190
289
|
export interface MsgVoteResponseAminoMsg {
|
|
191
290
|
type: "cosmos-sdk/v1/MsgVoteResponse";
|
|
192
291
|
value: MsgVoteResponseAmino;
|
|
193
292
|
}
|
|
194
|
-
/**
|
|
293
|
+
/**
|
|
294
|
+
* MsgVoteWeighted defines a message to cast a vote.
|
|
295
|
+
* @name MsgVoteWeighted
|
|
296
|
+
* @package cosmos.gov.v1
|
|
297
|
+
* @see proto type: cosmos.gov.v1.MsgVoteWeighted
|
|
298
|
+
*/
|
|
195
299
|
export interface MsgVoteWeighted {
|
|
196
|
-
/**
|
|
300
|
+
/**
|
|
301
|
+
* proposal_id defines the unique id of the proposal.
|
|
302
|
+
*/
|
|
197
303
|
proposalId: bigint;
|
|
198
|
-
/**
|
|
304
|
+
/**
|
|
305
|
+
* voter is the voter address for the proposal.
|
|
306
|
+
*/
|
|
199
307
|
voter: string;
|
|
200
|
-
/**
|
|
308
|
+
/**
|
|
309
|
+
* options defines the weighted vote options.
|
|
310
|
+
*/
|
|
201
311
|
options: WeightedVoteOption[];
|
|
202
|
-
/**
|
|
312
|
+
/**
|
|
313
|
+
* metadata is any arbitrary metadata attached to the VoteWeighted.
|
|
314
|
+
*/
|
|
203
315
|
metadata: string;
|
|
204
316
|
}
|
|
205
317
|
export interface MsgVoteWeightedProtoMsg {
|
|
206
318
|
typeUrl: "/cosmos.gov.v1.MsgVoteWeighted";
|
|
207
319
|
value: Uint8Array;
|
|
208
320
|
}
|
|
209
|
-
/**
|
|
321
|
+
/**
|
|
322
|
+
* MsgVoteWeighted defines a message to cast a vote.
|
|
323
|
+
* @name MsgVoteWeightedAmino
|
|
324
|
+
* @package cosmos.gov.v1
|
|
325
|
+
* @see proto type: cosmos.gov.v1.MsgVoteWeighted
|
|
326
|
+
*/
|
|
210
327
|
export interface MsgVoteWeightedAmino {
|
|
211
|
-
/**
|
|
328
|
+
/**
|
|
329
|
+
* proposal_id defines the unique id of the proposal.
|
|
330
|
+
*/
|
|
212
331
|
proposal_id: string;
|
|
213
|
-
/**
|
|
332
|
+
/**
|
|
333
|
+
* voter is the voter address for the proposal.
|
|
334
|
+
*/
|
|
214
335
|
voter: string;
|
|
215
|
-
/**
|
|
336
|
+
/**
|
|
337
|
+
* options defines the weighted vote options.
|
|
338
|
+
*/
|
|
216
339
|
options: WeightedVoteOptionAmino[];
|
|
217
|
-
/**
|
|
340
|
+
/**
|
|
341
|
+
* metadata is any arbitrary metadata attached to the VoteWeighted.
|
|
342
|
+
*/
|
|
218
343
|
metadata: string;
|
|
219
344
|
}
|
|
220
345
|
export interface MsgVoteWeightedAminoMsg {
|
|
221
346
|
type: "cosmos-sdk/v1/MsgVoteWeighted";
|
|
222
347
|
value: MsgVoteWeightedAmino;
|
|
223
348
|
}
|
|
224
|
-
/**
|
|
349
|
+
/**
|
|
350
|
+
* MsgVoteWeightedResponse defines the Msg/VoteWeighted response type.
|
|
351
|
+
* @name MsgVoteWeightedResponse
|
|
352
|
+
* @package cosmos.gov.v1
|
|
353
|
+
* @see proto type: cosmos.gov.v1.MsgVoteWeightedResponse
|
|
354
|
+
*/
|
|
225
355
|
export interface MsgVoteWeightedResponse {
|
|
226
356
|
}
|
|
227
357
|
export interface MsgVoteWeightedResponseProtoMsg {
|
|
228
358
|
typeUrl: "/cosmos.gov.v1.MsgVoteWeightedResponse";
|
|
229
359
|
value: Uint8Array;
|
|
230
360
|
}
|
|
231
|
-
/**
|
|
361
|
+
/**
|
|
362
|
+
* MsgVoteWeightedResponse defines the Msg/VoteWeighted response type.
|
|
363
|
+
* @name MsgVoteWeightedResponseAmino
|
|
364
|
+
* @package cosmos.gov.v1
|
|
365
|
+
* @see proto type: cosmos.gov.v1.MsgVoteWeightedResponse
|
|
366
|
+
*/
|
|
232
367
|
export interface MsgVoteWeightedResponseAmino {
|
|
233
368
|
}
|
|
234
369
|
export interface MsgVoteWeightedResponseAminoMsg {
|
|
235
370
|
type: "cosmos-sdk/v1/MsgVoteWeightedResponse";
|
|
236
371
|
value: MsgVoteWeightedResponseAmino;
|
|
237
372
|
}
|
|
238
|
-
/**
|
|
373
|
+
/**
|
|
374
|
+
* MsgDeposit defines a message to submit a deposit to an existing proposal.
|
|
375
|
+
* @name MsgDeposit
|
|
376
|
+
* @package cosmos.gov.v1
|
|
377
|
+
* @see proto type: cosmos.gov.v1.MsgDeposit
|
|
378
|
+
*/
|
|
239
379
|
export interface MsgDeposit {
|
|
240
|
-
/**
|
|
380
|
+
/**
|
|
381
|
+
* proposal_id defines the unique id of the proposal.
|
|
382
|
+
*/
|
|
241
383
|
proposalId: bigint;
|
|
242
|
-
/**
|
|
384
|
+
/**
|
|
385
|
+
* depositor defines the deposit addresses from the proposals.
|
|
386
|
+
*/
|
|
243
387
|
depositor: string;
|
|
244
|
-
/**
|
|
388
|
+
/**
|
|
389
|
+
* amount to be deposited by depositor.
|
|
390
|
+
*/
|
|
245
391
|
amount: Coin[];
|
|
246
392
|
}
|
|
247
393
|
export interface MsgDepositProtoMsg {
|
|
248
394
|
typeUrl: "/cosmos.gov.v1.MsgDeposit";
|
|
249
395
|
value: Uint8Array;
|
|
250
396
|
}
|
|
251
|
-
/**
|
|
397
|
+
/**
|
|
398
|
+
* MsgDeposit defines a message to submit a deposit to an existing proposal.
|
|
399
|
+
* @name MsgDepositAmino
|
|
400
|
+
* @package cosmos.gov.v1
|
|
401
|
+
* @see proto type: cosmos.gov.v1.MsgDeposit
|
|
402
|
+
*/
|
|
252
403
|
export interface MsgDepositAmino {
|
|
253
|
-
/**
|
|
404
|
+
/**
|
|
405
|
+
* proposal_id defines the unique id of the proposal.
|
|
406
|
+
*/
|
|
254
407
|
proposal_id: string;
|
|
255
|
-
/**
|
|
408
|
+
/**
|
|
409
|
+
* depositor defines the deposit addresses from the proposals.
|
|
410
|
+
*/
|
|
256
411
|
depositor: string;
|
|
257
|
-
/**
|
|
412
|
+
/**
|
|
413
|
+
* amount to be deposited by depositor.
|
|
414
|
+
*/
|
|
258
415
|
amount: CoinAmino[];
|
|
259
416
|
}
|
|
260
417
|
export interface MsgDepositAminoMsg {
|
|
261
418
|
type: "cosmos-sdk/v1/MsgDeposit";
|
|
262
419
|
value: MsgDepositAmino;
|
|
263
420
|
}
|
|
264
|
-
/**
|
|
421
|
+
/**
|
|
422
|
+
* MsgDepositResponse defines the Msg/Deposit response type.
|
|
423
|
+
* @name MsgDepositResponse
|
|
424
|
+
* @package cosmos.gov.v1
|
|
425
|
+
* @see proto type: cosmos.gov.v1.MsgDepositResponse
|
|
426
|
+
*/
|
|
265
427
|
export interface MsgDepositResponse {
|
|
266
428
|
}
|
|
267
429
|
export interface MsgDepositResponseProtoMsg {
|
|
268
430
|
typeUrl: "/cosmos.gov.v1.MsgDepositResponse";
|
|
269
431
|
value: Uint8Array;
|
|
270
432
|
}
|
|
271
|
-
/**
|
|
433
|
+
/**
|
|
434
|
+
* MsgDepositResponse defines the Msg/Deposit response type.
|
|
435
|
+
* @name MsgDepositResponseAmino
|
|
436
|
+
* @package cosmos.gov.v1
|
|
437
|
+
* @see proto type: cosmos.gov.v1.MsgDepositResponse
|
|
438
|
+
*/
|
|
272
439
|
export interface MsgDepositResponseAmino {
|
|
273
440
|
}
|
|
274
441
|
export interface MsgDepositResponseAminoMsg {
|
|
@@ -279,9 +446,14 @@ export interface MsgDepositResponseAminoMsg {
|
|
|
279
446
|
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
280
447
|
*
|
|
281
448
|
* Since: cosmos-sdk 0.47
|
|
449
|
+
* @name MsgUpdateParams
|
|
450
|
+
* @package cosmos.gov.v1
|
|
451
|
+
* @see proto type: cosmos.gov.v1.MsgUpdateParams
|
|
282
452
|
*/
|
|
283
453
|
export interface MsgUpdateParams {
|
|
284
|
-
/**
|
|
454
|
+
/**
|
|
455
|
+
* authority is the address that controls the module (defaults to x/gov unless overwritten).
|
|
456
|
+
*/
|
|
285
457
|
authority: string;
|
|
286
458
|
/**
|
|
287
459
|
* params defines the x/gov parameters to update.
|
|
@@ -298,9 +470,14 @@ export interface MsgUpdateParamsProtoMsg {
|
|
|
298
470
|
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
299
471
|
*
|
|
300
472
|
* Since: cosmos-sdk 0.47
|
|
473
|
+
* @name MsgUpdateParamsAmino
|
|
474
|
+
* @package cosmos.gov.v1
|
|
475
|
+
* @see proto type: cosmos.gov.v1.MsgUpdateParams
|
|
301
476
|
*/
|
|
302
477
|
export interface MsgUpdateParamsAmino {
|
|
303
|
-
/**
|
|
478
|
+
/**
|
|
479
|
+
* authority is the address that controls the module (defaults to x/gov unless overwritten).
|
|
480
|
+
*/
|
|
304
481
|
authority: string;
|
|
305
482
|
/**
|
|
306
483
|
* params defines the x/gov parameters to update.
|
|
@@ -318,6 +495,9 @@ export interface MsgUpdateParamsAminoMsg {
|
|
|
318
495
|
* MsgUpdateParams message.
|
|
319
496
|
*
|
|
320
497
|
* Since: cosmos-sdk 0.47
|
|
498
|
+
* @name MsgUpdateParamsResponse
|
|
499
|
+
* @package cosmos.gov.v1
|
|
500
|
+
* @see proto type: cosmos.gov.v1.MsgUpdateParamsResponse
|
|
321
501
|
*/
|
|
322
502
|
export interface MsgUpdateParamsResponse {
|
|
323
503
|
}
|
|
@@ -330,6 +510,9 @@ export interface MsgUpdateParamsResponseProtoMsg {
|
|
|
330
510
|
* MsgUpdateParams message.
|
|
331
511
|
*
|
|
332
512
|
* Since: cosmos-sdk 0.47
|
|
513
|
+
* @name MsgUpdateParamsResponseAmino
|
|
514
|
+
* @package cosmos.gov.v1
|
|
515
|
+
* @see proto type: cosmos.gov.v1.MsgUpdateParamsResponse
|
|
333
516
|
*/
|
|
334
517
|
export interface MsgUpdateParamsResponseAmino {
|
|
335
518
|
}
|
|
@@ -341,11 +524,18 @@ export interface MsgUpdateParamsResponseAminoMsg {
|
|
|
341
524
|
* MsgCancelProposal is the Msg/CancelProposal request type.
|
|
342
525
|
*
|
|
343
526
|
* Since: cosmos-sdk 0.50
|
|
527
|
+
* @name MsgCancelProposal
|
|
528
|
+
* @package cosmos.gov.v1
|
|
529
|
+
* @see proto type: cosmos.gov.v1.MsgCancelProposal
|
|
344
530
|
*/
|
|
345
531
|
export interface MsgCancelProposal {
|
|
346
|
-
/**
|
|
532
|
+
/**
|
|
533
|
+
* proposal_id defines the unique id of the proposal.
|
|
534
|
+
*/
|
|
347
535
|
proposalId: bigint;
|
|
348
|
-
/**
|
|
536
|
+
/**
|
|
537
|
+
* proposer is the account address of the proposer.
|
|
538
|
+
*/
|
|
349
539
|
proposer: string;
|
|
350
540
|
}
|
|
351
541
|
export interface MsgCancelProposalProtoMsg {
|
|
@@ -356,11 +546,18 @@ export interface MsgCancelProposalProtoMsg {
|
|
|
356
546
|
* MsgCancelProposal is the Msg/CancelProposal request type.
|
|
357
547
|
*
|
|
358
548
|
* Since: cosmos-sdk 0.50
|
|
549
|
+
* @name MsgCancelProposalAmino
|
|
550
|
+
* @package cosmos.gov.v1
|
|
551
|
+
* @see proto type: cosmos.gov.v1.MsgCancelProposal
|
|
359
552
|
*/
|
|
360
553
|
export interface MsgCancelProposalAmino {
|
|
361
|
-
/**
|
|
554
|
+
/**
|
|
555
|
+
* proposal_id defines the unique id of the proposal.
|
|
556
|
+
*/
|
|
362
557
|
proposal_id: string;
|
|
363
|
-
/**
|
|
558
|
+
/**
|
|
559
|
+
* proposer is the account address of the proposer.
|
|
560
|
+
*/
|
|
364
561
|
proposer: string;
|
|
365
562
|
}
|
|
366
563
|
export interface MsgCancelProposalAminoMsg {
|
|
@@ -372,13 +569,22 @@ export interface MsgCancelProposalAminoMsg {
|
|
|
372
569
|
* MsgCancelProposal message.
|
|
373
570
|
*
|
|
374
571
|
* Since: cosmos-sdk 0.50
|
|
572
|
+
* @name MsgCancelProposalResponse
|
|
573
|
+
* @package cosmos.gov.v1
|
|
574
|
+
* @see proto type: cosmos.gov.v1.MsgCancelProposalResponse
|
|
375
575
|
*/
|
|
376
576
|
export interface MsgCancelProposalResponse {
|
|
377
|
-
/**
|
|
577
|
+
/**
|
|
578
|
+
* proposal_id defines the unique id of the proposal.
|
|
579
|
+
*/
|
|
378
580
|
proposalId: bigint;
|
|
379
|
-
/**
|
|
581
|
+
/**
|
|
582
|
+
* canceled_time is the time when proposal is canceled.
|
|
583
|
+
*/
|
|
380
584
|
canceledTime: Date;
|
|
381
|
-
/**
|
|
585
|
+
/**
|
|
586
|
+
* canceled_height defines the block height at which the proposal is canceled.
|
|
587
|
+
*/
|
|
382
588
|
canceledHeight: bigint;
|
|
383
589
|
}
|
|
384
590
|
export interface MsgCancelProposalResponseProtoMsg {
|
|
@@ -390,19 +596,35 @@ export interface MsgCancelProposalResponseProtoMsg {
|
|
|
390
596
|
* MsgCancelProposal message.
|
|
391
597
|
*
|
|
392
598
|
* Since: cosmos-sdk 0.50
|
|
599
|
+
* @name MsgCancelProposalResponseAmino
|
|
600
|
+
* @package cosmos.gov.v1
|
|
601
|
+
* @see proto type: cosmos.gov.v1.MsgCancelProposalResponse
|
|
393
602
|
*/
|
|
394
603
|
export interface MsgCancelProposalResponseAmino {
|
|
395
|
-
/**
|
|
604
|
+
/**
|
|
605
|
+
* proposal_id defines the unique id of the proposal.
|
|
606
|
+
*/
|
|
396
607
|
proposal_id: string;
|
|
397
|
-
/**
|
|
608
|
+
/**
|
|
609
|
+
* canceled_time is the time when proposal is canceled.
|
|
610
|
+
*/
|
|
398
611
|
canceled_time: string;
|
|
399
|
-
/**
|
|
612
|
+
/**
|
|
613
|
+
* canceled_height defines the block height at which the proposal is canceled.
|
|
614
|
+
*/
|
|
400
615
|
canceled_height: string;
|
|
401
616
|
}
|
|
402
617
|
export interface MsgCancelProposalResponseAminoMsg {
|
|
403
618
|
type: "cosmos-sdk/v1/MsgCancelProposalResponse";
|
|
404
619
|
value: MsgCancelProposalResponseAmino;
|
|
405
620
|
}
|
|
621
|
+
/**
|
|
622
|
+
* MsgSubmitProposal defines an sdk.Msg type that supports submitting arbitrary
|
|
623
|
+
* proposal Content.
|
|
624
|
+
* @name MsgSubmitProposal
|
|
625
|
+
* @package cosmos.gov.v1
|
|
626
|
+
* @see proto type: cosmos.gov.v1.MsgSubmitProposal
|
|
627
|
+
*/
|
|
406
628
|
export declare const MsgSubmitProposal: {
|
|
407
629
|
typeUrl: string;
|
|
408
630
|
aminoType: string;
|
|
@@ -420,6 +642,12 @@ export declare const MsgSubmitProposal: {
|
|
|
420
642
|
toProtoMsg(message: MsgSubmitProposal): MsgSubmitProposalProtoMsg;
|
|
421
643
|
registerTypeUrl(): void;
|
|
422
644
|
};
|
|
645
|
+
/**
|
|
646
|
+
* MsgSubmitProposalResponse defines the Msg/SubmitProposal response type.
|
|
647
|
+
* @name MsgSubmitProposalResponse
|
|
648
|
+
* @package cosmos.gov.v1
|
|
649
|
+
* @see proto type: cosmos.gov.v1.MsgSubmitProposalResponse
|
|
650
|
+
*/
|
|
423
651
|
export declare const MsgSubmitProposalResponse: {
|
|
424
652
|
typeUrl: string;
|
|
425
653
|
aminoType: string;
|
|
@@ -437,6 +665,13 @@ export declare const MsgSubmitProposalResponse: {
|
|
|
437
665
|
toProtoMsg(message: MsgSubmitProposalResponse): MsgSubmitProposalResponseProtoMsg;
|
|
438
666
|
registerTypeUrl(): void;
|
|
439
667
|
};
|
|
668
|
+
/**
|
|
669
|
+
* MsgExecLegacyContent is used to wrap the legacy content field into a message.
|
|
670
|
+
* This ensures backwards compatibility with v1beta1.MsgSubmitProposal.
|
|
671
|
+
* @name MsgExecLegacyContent
|
|
672
|
+
* @package cosmos.gov.v1
|
|
673
|
+
* @see proto type: cosmos.gov.v1.MsgExecLegacyContent
|
|
674
|
+
*/
|
|
440
675
|
export declare const MsgExecLegacyContent: {
|
|
441
676
|
typeUrl: string;
|
|
442
677
|
aminoType: string;
|
|
@@ -454,6 +689,12 @@ export declare const MsgExecLegacyContent: {
|
|
|
454
689
|
toProtoMsg(message: MsgExecLegacyContent): MsgExecLegacyContentProtoMsg;
|
|
455
690
|
registerTypeUrl(): void;
|
|
456
691
|
};
|
|
692
|
+
/**
|
|
693
|
+
* MsgExecLegacyContentResponse defines the Msg/ExecLegacyContent response type.
|
|
694
|
+
* @name MsgExecLegacyContentResponse
|
|
695
|
+
* @package cosmos.gov.v1
|
|
696
|
+
* @see proto type: cosmos.gov.v1.MsgExecLegacyContentResponse
|
|
697
|
+
*/
|
|
457
698
|
export declare const MsgExecLegacyContentResponse: {
|
|
458
699
|
typeUrl: string;
|
|
459
700
|
aminoType: string;
|
|
@@ -471,6 +712,12 @@ export declare const MsgExecLegacyContentResponse: {
|
|
|
471
712
|
toProtoMsg(message: MsgExecLegacyContentResponse): MsgExecLegacyContentResponseProtoMsg;
|
|
472
713
|
registerTypeUrl(): void;
|
|
473
714
|
};
|
|
715
|
+
/**
|
|
716
|
+
* MsgVote defines a message to cast a vote.
|
|
717
|
+
* @name MsgVote
|
|
718
|
+
* @package cosmos.gov.v1
|
|
719
|
+
* @see proto type: cosmos.gov.v1.MsgVote
|
|
720
|
+
*/
|
|
474
721
|
export declare const MsgVote: {
|
|
475
722
|
typeUrl: string;
|
|
476
723
|
aminoType: string;
|
|
@@ -488,6 +735,12 @@ export declare const MsgVote: {
|
|
|
488
735
|
toProtoMsg(message: MsgVote): MsgVoteProtoMsg;
|
|
489
736
|
registerTypeUrl(): void;
|
|
490
737
|
};
|
|
738
|
+
/**
|
|
739
|
+
* MsgVoteResponse defines the Msg/Vote response type.
|
|
740
|
+
* @name MsgVoteResponse
|
|
741
|
+
* @package cosmos.gov.v1
|
|
742
|
+
* @see proto type: cosmos.gov.v1.MsgVoteResponse
|
|
743
|
+
*/
|
|
491
744
|
export declare const MsgVoteResponse: {
|
|
492
745
|
typeUrl: string;
|
|
493
746
|
aminoType: string;
|
|
@@ -505,6 +758,12 @@ export declare const MsgVoteResponse: {
|
|
|
505
758
|
toProtoMsg(message: MsgVoteResponse): MsgVoteResponseProtoMsg;
|
|
506
759
|
registerTypeUrl(): void;
|
|
507
760
|
};
|
|
761
|
+
/**
|
|
762
|
+
* MsgVoteWeighted defines a message to cast a vote.
|
|
763
|
+
* @name MsgVoteWeighted
|
|
764
|
+
* @package cosmos.gov.v1
|
|
765
|
+
* @see proto type: cosmos.gov.v1.MsgVoteWeighted
|
|
766
|
+
*/
|
|
508
767
|
export declare const MsgVoteWeighted: {
|
|
509
768
|
typeUrl: string;
|
|
510
769
|
aminoType: string;
|
|
@@ -522,6 +781,12 @@ export declare const MsgVoteWeighted: {
|
|
|
522
781
|
toProtoMsg(message: MsgVoteWeighted): MsgVoteWeightedProtoMsg;
|
|
523
782
|
registerTypeUrl(): void;
|
|
524
783
|
};
|
|
784
|
+
/**
|
|
785
|
+
* MsgVoteWeightedResponse defines the Msg/VoteWeighted response type.
|
|
786
|
+
* @name MsgVoteWeightedResponse
|
|
787
|
+
* @package cosmos.gov.v1
|
|
788
|
+
* @see proto type: cosmos.gov.v1.MsgVoteWeightedResponse
|
|
789
|
+
*/
|
|
525
790
|
export declare const MsgVoteWeightedResponse: {
|
|
526
791
|
typeUrl: string;
|
|
527
792
|
aminoType: string;
|
|
@@ -539,6 +804,12 @@ export declare const MsgVoteWeightedResponse: {
|
|
|
539
804
|
toProtoMsg(message: MsgVoteWeightedResponse): MsgVoteWeightedResponseProtoMsg;
|
|
540
805
|
registerTypeUrl(): void;
|
|
541
806
|
};
|
|
807
|
+
/**
|
|
808
|
+
* MsgDeposit defines a message to submit a deposit to an existing proposal.
|
|
809
|
+
* @name MsgDeposit
|
|
810
|
+
* @package cosmos.gov.v1
|
|
811
|
+
* @see proto type: cosmos.gov.v1.MsgDeposit
|
|
812
|
+
*/
|
|
542
813
|
export declare const MsgDeposit: {
|
|
543
814
|
typeUrl: string;
|
|
544
815
|
aminoType: string;
|
|
@@ -556,6 +827,12 @@ export declare const MsgDeposit: {
|
|
|
556
827
|
toProtoMsg(message: MsgDeposit): MsgDepositProtoMsg;
|
|
557
828
|
registerTypeUrl(): void;
|
|
558
829
|
};
|
|
830
|
+
/**
|
|
831
|
+
* MsgDepositResponse defines the Msg/Deposit response type.
|
|
832
|
+
* @name MsgDepositResponse
|
|
833
|
+
* @package cosmos.gov.v1
|
|
834
|
+
* @see proto type: cosmos.gov.v1.MsgDepositResponse
|
|
835
|
+
*/
|
|
559
836
|
export declare const MsgDepositResponse: {
|
|
560
837
|
typeUrl: string;
|
|
561
838
|
aminoType: string;
|
|
@@ -573,6 +850,14 @@ export declare const MsgDepositResponse: {
|
|
|
573
850
|
toProtoMsg(message: MsgDepositResponse): MsgDepositResponseProtoMsg;
|
|
574
851
|
registerTypeUrl(): void;
|
|
575
852
|
};
|
|
853
|
+
/**
|
|
854
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
855
|
+
*
|
|
856
|
+
* Since: cosmos-sdk 0.47
|
|
857
|
+
* @name MsgUpdateParams
|
|
858
|
+
* @package cosmos.gov.v1
|
|
859
|
+
* @see proto type: cosmos.gov.v1.MsgUpdateParams
|
|
860
|
+
*/
|
|
576
861
|
export declare const MsgUpdateParams: {
|
|
577
862
|
typeUrl: string;
|
|
578
863
|
aminoType: string;
|
|
@@ -590,6 +875,15 @@ export declare const MsgUpdateParams: {
|
|
|
590
875
|
toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg;
|
|
591
876
|
registerTypeUrl(): void;
|
|
592
877
|
};
|
|
878
|
+
/**
|
|
879
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
880
|
+
* MsgUpdateParams message.
|
|
881
|
+
*
|
|
882
|
+
* Since: cosmos-sdk 0.47
|
|
883
|
+
* @name MsgUpdateParamsResponse
|
|
884
|
+
* @package cosmos.gov.v1
|
|
885
|
+
* @see proto type: cosmos.gov.v1.MsgUpdateParamsResponse
|
|
886
|
+
*/
|
|
593
887
|
export declare const MsgUpdateParamsResponse: {
|
|
594
888
|
typeUrl: string;
|
|
595
889
|
aminoType: string;
|
|
@@ -607,6 +901,14 @@ export declare const MsgUpdateParamsResponse: {
|
|
|
607
901
|
toProtoMsg(message: MsgUpdateParamsResponse): MsgUpdateParamsResponseProtoMsg;
|
|
608
902
|
registerTypeUrl(): void;
|
|
609
903
|
};
|
|
904
|
+
/**
|
|
905
|
+
* MsgCancelProposal is the Msg/CancelProposal request type.
|
|
906
|
+
*
|
|
907
|
+
* Since: cosmos-sdk 0.50
|
|
908
|
+
* @name MsgCancelProposal
|
|
909
|
+
* @package cosmos.gov.v1
|
|
910
|
+
* @see proto type: cosmos.gov.v1.MsgCancelProposal
|
|
911
|
+
*/
|
|
610
912
|
export declare const MsgCancelProposal: {
|
|
611
913
|
typeUrl: string;
|
|
612
914
|
aminoType: string;
|
|
@@ -624,6 +926,15 @@ export declare const MsgCancelProposal: {
|
|
|
624
926
|
toProtoMsg(message: MsgCancelProposal): MsgCancelProposalProtoMsg;
|
|
625
927
|
registerTypeUrl(): void;
|
|
626
928
|
};
|
|
929
|
+
/**
|
|
930
|
+
* MsgCancelProposalResponse defines the response structure for executing a
|
|
931
|
+
* MsgCancelProposal message.
|
|
932
|
+
*
|
|
933
|
+
* Since: cosmos-sdk 0.50
|
|
934
|
+
* @name MsgCancelProposalResponse
|
|
935
|
+
* @package cosmos.gov.v1
|
|
936
|
+
* @see proto type: cosmos.gov.v1.MsgCancelProposalResponse
|
|
937
|
+
*/
|
|
627
938
|
export declare const MsgCancelProposalResponse: {
|
|
628
939
|
typeUrl: string;
|
|
629
940
|
aminoType: string;
|