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/group/v1/tx.d.ts
CHANGED
|
@@ -21,55 +21,100 @@ export declare enum Exec {
|
|
|
21
21
|
export declare const ExecAmino: typeof Exec;
|
|
22
22
|
export declare function execFromJSON(object: any): Exec;
|
|
23
23
|
export declare function execToJSON(object: Exec): string;
|
|
24
|
-
/**
|
|
24
|
+
/**
|
|
25
|
+
* MsgCreateGroup is the Msg/CreateGroup request type.
|
|
26
|
+
* @name MsgCreateGroup
|
|
27
|
+
* @package cosmos.group.v1
|
|
28
|
+
* @see proto type: cosmos.group.v1.MsgCreateGroup
|
|
29
|
+
*/
|
|
25
30
|
export interface MsgCreateGroup {
|
|
26
|
-
/**
|
|
31
|
+
/**
|
|
32
|
+
* admin is the account address of the group admin.
|
|
33
|
+
*/
|
|
27
34
|
admin: string;
|
|
28
|
-
/**
|
|
35
|
+
/**
|
|
36
|
+
* members defines the group members.
|
|
37
|
+
*/
|
|
29
38
|
members: MemberRequest[];
|
|
30
|
-
/**
|
|
39
|
+
/**
|
|
40
|
+
* metadata is any arbitrary metadata to attached to the group.
|
|
41
|
+
*/
|
|
31
42
|
metadata: string;
|
|
32
43
|
}
|
|
33
44
|
export interface MsgCreateGroupProtoMsg {
|
|
34
45
|
typeUrl: "/cosmos.group.v1.MsgCreateGroup";
|
|
35
46
|
value: Uint8Array;
|
|
36
47
|
}
|
|
37
|
-
/**
|
|
48
|
+
/**
|
|
49
|
+
* MsgCreateGroup is the Msg/CreateGroup request type.
|
|
50
|
+
* @name MsgCreateGroupAmino
|
|
51
|
+
* @package cosmos.group.v1
|
|
52
|
+
* @see proto type: cosmos.group.v1.MsgCreateGroup
|
|
53
|
+
*/
|
|
38
54
|
export interface MsgCreateGroupAmino {
|
|
39
|
-
/**
|
|
55
|
+
/**
|
|
56
|
+
* admin is the account address of the group admin.
|
|
57
|
+
*/
|
|
40
58
|
admin: string;
|
|
41
|
-
/**
|
|
59
|
+
/**
|
|
60
|
+
* members defines the group members.
|
|
61
|
+
*/
|
|
42
62
|
members: MemberRequestAmino[];
|
|
43
|
-
/**
|
|
63
|
+
/**
|
|
64
|
+
* metadata is any arbitrary metadata to attached to the group.
|
|
65
|
+
*/
|
|
44
66
|
metadata: string;
|
|
45
67
|
}
|
|
46
68
|
export interface MsgCreateGroupAminoMsg {
|
|
47
69
|
type: "cosmos-sdk/MsgCreateGroup";
|
|
48
70
|
value: MsgCreateGroupAmino;
|
|
49
71
|
}
|
|
50
|
-
/**
|
|
72
|
+
/**
|
|
73
|
+
* MsgCreateGroupResponse is the Msg/CreateGroup response type.
|
|
74
|
+
* @name MsgCreateGroupResponse
|
|
75
|
+
* @package cosmos.group.v1
|
|
76
|
+
* @see proto type: cosmos.group.v1.MsgCreateGroupResponse
|
|
77
|
+
*/
|
|
51
78
|
export interface MsgCreateGroupResponse {
|
|
52
|
-
/**
|
|
79
|
+
/**
|
|
80
|
+
* group_id is the unique ID of the newly created group.
|
|
81
|
+
*/
|
|
53
82
|
groupId: bigint;
|
|
54
83
|
}
|
|
55
84
|
export interface MsgCreateGroupResponseProtoMsg {
|
|
56
85
|
typeUrl: "/cosmos.group.v1.MsgCreateGroupResponse";
|
|
57
86
|
value: Uint8Array;
|
|
58
87
|
}
|
|
59
|
-
/**
|
|
88
|
+
/**
|
|
89
|
+
* MsgCreateGroupResponse is the Msg/CreateGroup response type.
|
|
90
|
+
* @name MsgCreateGroupResponseAmino
|
|
91
|
+
* @package cosmos.group.v1
|
|
92
|
+
* @see proto type: cosmos.group.v1.MsgCreateGroupResponse
|
|
93
|
+
*/
|
|
60
94
|
export interface MsgCreateGroupResponseAmino {
|
|
61
|
-
/**
|
|
95
|
+
/**
|
|
96
|
+
* group_id is the unique ID of the newly created group.
|
|
97
|
+
*/
|
|
62
98
|
group_id: string;
|
|
63
99
|
}
|
|
64
100
|
export interface MsgCreateGroupResponseAminoMsg {
|
|
65
101
|
type: "cosmos-sdk/MsgCreateGroupResponse";
|
|
66
102
|
value: MsgCreateGroupResponseAmino;
|
|
67
103
|
}
|
|
68
|
-
/**
|
|
104
|
+
/**
|
|
105
|
+
* MsgUpdateGroupMembers is the Msg/UpdateGroupMembers request type.
|
|
106
|
+
* @name MsgUpdateGroupMembers
|
|
107
|
+
* @package cosmos.group.v1
|
|
108
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupMembers
|
|
109
|
+
*/
|
|
69
110
|
export interface MsgUpdateGroupMembers {
|
|
70
|
-
/**
|
|
111
|
+
/**
|
|
112
|
+
* admin is the account address of the group admin.
|
|
113
|
+
*/
|
|
71
114
|
admin: string;
|
|
72
|
-
/**
|
|
115
|
+
/**
|
|
116
|
+
* group_id is the unique ID of the group.
|
|
117
|
+
*/
|
|
73
118
|
groupId: bigint;
|
|
74
119
|
/**
|
|
75
120
|
* member_updates is the list of members to update,
|
|
@@ -81,11 +126,20 @@ export interface MsgUpdateGroupMembersProtoMsg {
|
|
|
81
126
|
typeUrl: "/cosmos.group.v1.MsgUpdateGroupMembers";
|
|
82
127
|
value: Uint8Array;
|
|
83
128
|
}
|
|
84
|
-
/**
|
|
129
|
+
/**
|
|
130
|
+
* MsgUpdateGroupMembers is the Msg/UpdateGroupMembers request type.
|
|
131
|
+
* @name MsgUpdateGroupMembersAmino
|
|
132
|
+
* @package cosmos.group.v1
|
|
133
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupMembers
|
|
134
|
+
*/
|
|
85
135
|
export interface MsgUpdateGroupMembersAmino {
|
|
86
|
-
/**
|
|
136
|
+
/**
|
|
137
|
+
* admin is the account address of the group admin.
|
|
138
|
+
*/
|
|
87
139
|
admin: string;
|
|
88
|
-
/**
|
|
140
|
+
/**
|
|
141
|
+
* group_id is the unique ID of the group.
|
|
142
|
+
*/
|
|
89
143
|
group_id: string;
|
|
90
144
|
/**
|
|
91
145
|
* member_updates is the list of members to update,
|
|
@@ -97,109 +151,196 @@ export interface MsgUpdateGroupMembersAminoMsg {
|
|
|
97
151
|
type: "cosmos-sdk/MsgUpdateGroupMembers";
|
|
98
152
|
value: MsgUpdateGroupMembersAmino;
|
|
99
153
|
}
|
|
100
|
-
/**
|
|
154
|
+
/**
|
|
155
|
+
* MsgUpdateGroupMembersResponse is the Msg/UpdateGroupMembers response type.
|
|
156
|
+
* @name MsgUpdateGroupMembersResponse
|
|
157
|
+
* @package cosmos.group.v1
|
|
158
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupMembersResponse
|
|
159
|
+
*/
|
|
101
160
|
export interface MsgUpdateGroupMembersResponse {
|
|
102
161
|
}
|
|
103
162
|
export interface MsgUpdateGroupMembersResponseProtoMsg {
|
|
104
163
|
typeUrl: "/cosmos.group.v1.MsgUpdateGroupMembersResponse";
|
|
105
164
|
value: Uint8Array;
|
|
106
165
|
}
|
|
107
|
-
/**
|
|
166
|
+
/**
|
|
167
|
+
* MsgUpdateGroupMembersResponse is the Msg/UpdateGroupMembers response type.
|
|
168
|
+
* @name MsgUpdateGroupMembersResponseAmino
|
|
169
|
+
* @package cosmos.group.v1
|
|
170
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupMembersResponse
|
|
171
|
+
*/
|
|
108
172
|
export interface MsgUpdateGroupMembersResponseAmino {
|
|
109
173
|
}
|
|
110
174
|
export interface MsgUpdateGroupMembersResponseAminoMsg {
|
|
111
175
|
type: "cosmos-sdk/MsgUpdateGroupMembersResponse";
|
|
112
176
|
value: MsgUpdateGroupMembersResponseAmino;
|
|
113
177
|
}
|
|
114
|
-
/**
|
|
178
|
+
/**
|
|
179
|
+
* MsgUpdateGroupAdmin is the Msg/UpdateGroupAdmin request type.
|
|
180
|
+
* @name MsgUpdateGroupAdmin
|
|
181
|
+
* @package cosmos.group.v1
|
|
182
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupAdmin
|
|
183
|
+
*/
|
|
115
184
|
export interface MsgUpdateGroupAdmin {
|
|
116
|
-
/**
|
|
185
|
+
/**
|
|
186
|
+
* admin is the current account address of the group admin.
|
|
187
|
+
*/
|
|
117
188
|
admin: string;
|
|
118
|
-
/**
|
|
189
|
+
/**
|
|
190
|
+
* group_id is the unique ID of the group.
|
|
191
|
+
*/
|
|
119
192
|
groupId: bigint;
|
|
120
|
-
/**
|
|
193
|
+
/**
|
|
194
|
+
* new_admin is the group new admin account address.
|
|
195
|
+
*/
|
|
121
196
|
newAdmin: string;
|
|
122
197
|
}
|
|
123
198
|
export interface MsgUpdateGroupAdminProtoMsg {
|
|
124
199
|
typeUrl: "/cosmos.group.v1.MsgUpdateGroupAdmin";
|
|
125
200
|
value: Uint8Array;
|
|
126
201
|
}
|
|
127
|
-
/**
|
|
202
|
+
/**
|
|
203
|
+
* MsgUpdateGroupAdmin is the Msg/UpdateGroupAdmin request type.
|
|
204
|
+
* @name MsgUpdateGroupAdminAmino
|
|
205
|
+
* @package cosmos.group.v1
|
|
206
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupAdmin
|
|
207
|
+
*/
|
|
128
208
|
export interface MsgUpdateGroupAdminAmino {
|
|
129
|
-
/**
|
|
209
|
+
/**
|
|
210
|
+
* admin is the current account address of the group admin.
|
|
211
|
+
*/
|
|
130
212
|
admin: string;
|
|
131
|
-
/**
|
|
213
|
+
/**
|
|
214
|
+
* group_id is the unique ID of the group.
|
|
215
|
+
*/
|
|
132
216
|
group_id: string;
|
|
133
|
-
/**
|
|
217
|
+
/**
|
|
218
|
+
* new_admin is the group new admin account address.
|
|
219
|
+
*/
|
|
134
220
|
new_admin: string;
|
|
135
221
|
}
|
|
136
222
|
export interface MsgUpdateGroupAdminAminoMsg {
|
|
137
223
|
type: "cosmos-sdk/MsgUpdateGroupAdmin";
|
|
138
224
|
value: MsgUpdateGroupAdminAmino;
|
|
139
225
|
}
|
|
140
|
-
/**
|
|
226
|
+
/**
|
|
227
|
+
* MsgUpdateGroupAdminResponse is the Msg/UpdateGroupAdmin response type.
|
|
228
|
+
* @name MsgUpdateGroupAdminResponse
|
|
229
|
+
* @package cosmos.group.v1
|
|
230
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupAdminResponse
|
|
231
|
+
*/
|
|
141
232
|
export interface MsgUpdateGroupAdminResponse {
|
|
142
233
|
}
|
|
143
234
|
export interface MsgUpdateGroupAdminResponseProtoMsg {
|
|
144
235
|
typeUrl: "/cosmos.group.v1.MsgUpdateGroupAdminResponse";
|
|
145
236
|
value: Uint8Array;
|
|
146
237
|
}
|
|
147
|
-
/**
|
|
238
|
+
/**
|
|
239
|
+
* MsgUpdateGroupAdminResponse is the Msg/UpdateGroupAdmin response type.
|
|
240
|
+
* @name MsgUpdateGroupAdminResponseAmino
|
|
241
|
+
* @package cosmos.group.v1
|
|
242
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupAdminResponse
|
|
243
|
+
*/
|
|
148
244
|
export interface MsgUpdateGroupAdminResponseAmino {
|
|
149
245
|
}
|
|
150
246
|
export interface MsgUpdateGroupAdminResponseAminoMsg {
|
|
151
247
|
type: "cosmos-sdk/MsgUpdateGroupAdminResponse";
|
|
152
248
|
value: MsgUpdateGroupAdminResponseAmino;
|
|
153
249
|
}
|
|
154
|
-
/**
|
|
250
|
+
/**
|
|
251
|
+
* MsgUpdateGroupMetadata is the Msg/UpdateGroupMetadata request type.
|
|
252
|
+
* @name MsgUpdateGroupMetadata
|
|
253
|
+
* @package cosmos.group.v1
|
|
254
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupMetadata
|
|
255
|
+
*/
|
|
155
256
|
export interface MsgUpdateGroupMetadata {
|
|
156
|
-
/**
|
|
257
|
+
/**
|
|
258
|
+
* admin is the account address of the group admin.
|
|
259
|
+
*/
|
|
157
260
|
admin: string;
|
|
158
|
-
/**
|
|
261
|
+
/**
|
|
262
|
+
* group_id is the unique ID of the group.
|
|
263
|
+
*/
|
|
159
264
|
groupId: bigint;
|
|
160
|
-
/**
|
|
265
|
+
/**
|
|
266
|
+
* metadata is the updated group's metadata.
|
|
267
|
+
*/
|
|
161
268
|
metadata: string;
|
|
162
269
|
}
|
|
163
270
|
export interface MsgUpdateGroupMetadataProtoMsg {
|
|
164
271
|
typeUrl: "/cosmos.group.v1.MsgUpdateGroupMetadata";
|
|
165
272
|
value: Uint8Array;
|
|
166
273
|
}
|
|
167
|
-
/**
|
|
274
|
+
/**
|
|
275
|
+
* MsgUpdateGroupMetadata is the Msg/UpdateGroupMetadata request type.
|
|
276
|
+
* @name MsgUpdateGroupMetadataAmino
|
|
277
|
+
* @package cosmos.group.v1
|
|
278
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupMetadata
|
|
279
|
+
*/
|
|
168
280
|
export interface MsgUpdateGroupMetadataAmino {
|
|
169
|
-
/**
|
|
281
|
+
/**
|
|
282
|
+
* admin is the account address of the group admin.
|
|
283
|
+
*/
|
|
170
284
|
admin: string;
|
|
171
|
-
/**
|
|
285
|
+
/**
|
|
286
|
+
* group_id is the unique ID of the group.
|
|
287
|
+
*/
|
|
172
288
|
group_id: string;
|
|
173
|
-
/**
|
|
289
|
+
/**
|
|
290
|
+
* metadata is the updated group's metadata.
|
|
291
|
+
*/
|
|
174
292
|
metadata: string;
|
|
175
293
|
}
|
|
176
294
|
export interface MsgUpdateGroupMetadataAminoMsg {
|
|
177
295
|
type: "cosmos-sdk/MsgUpdateGroupMetadata";
|
|
178
296
|
value: MsgUpdateGroupMetadataAmino;
|
|
179
297
|
}
|
|
180
|
-
/**
|
|
298
|
+
/**
|
|
299
|
+
* MsgUpdateGroupMetadataResponse is the Msg/UpdateGroupMetadata response type.
|
|
300
|
+
* @name MsgUpdateGroupMetadataResponse
|
|
301
|
+
* @package cosmos.group.v1
|
|
302
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupMetadataResponse
|
|
303
|
+
*/
|
|
181
304
|
export interface MsgUpdateGroupMetadataResponse {
|
|
182
305
|
}
|
|
183
306
|
export interface MsgUpdateGroupMetadataResponseProtoMsg {
|
|
184
307
|
typeUrl: "/cosmos.group.v1.MsgUpdateGroupMetadataResponse";
|
|
185
308
|
value: Uint8Array;
|
|
186
309
|
}
|
|
187
|
-
/**
|
|
310
|
+
/**
|
|
311
|
+
* MsgUpdateGroupMetadataResponse is the Msg/UpdateGroupMetadata response type.
|
|
312
|
+
* @name MsgUpdateGroupMetadataResponseAmino
|
|
313
|
+
* @package cosmos.group.v1
|
|
314
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupMetadataResponse
|
|
315
|
+
*/
|
|
188
316
|
export interface MsgUpdateGroupMetadataResponseAmino {
|
|
189
317
|
}
|
|
190
318
|
export interface MsgUpdateGroupMetadataResponseAminoMsg {
|
|
191
319
|
type: "cosmos-sdk/MsgUpdateGroupMetadataResponse";
|
|
192
320
|
value: MsgUpdateGroupMetadataResponseAmino;
|
|
193
321
|
}
|
|
194
|
-
/**
|
|
322
|
+
/**
|
|
323
|
+
* MsgCreateGroupPolicy is the Msg/CreateGroupPolicy request type.
|
|
324
|
+
* @name MsgCreateGroupPolicy
|
|
325
|
+
* @package cosmos.group.v1
|
|
326
|
+
* @see proto type: cosmos.group.v1.MsgCreateGroupPolicy
|
|
327
|
+
*/
|
|
195
328
|
export interface MsgCreateGroupPolicy {
|
|
196
|
-
/**
|
|
329
|
+
/**
|
|
330
|
+
* admin is the account address of the group admin.
|
|
331
|
+
*/
|
|
197
332
|
admin: string;
|
|
198
|
-
/**
|
|
333
|
+
/**
|
|
334
|
+
* group_id is the unique ID of the group.
|
|
335
|
+
*/
|
|
199
336
|
groupId: bigint;
|
|
200
|
-
/**
|
|
337
|
+
/**
|
|
338
|
+
* metadata is any arbitrary metadata attached to the group policy.
|
|
339
|
+
*/
|
|
201
340
|
metadata: string;
|
|
202
|
-
/**
|
|
341
|
+
/**
|
|
342
|
+
* decision_policy specifies the group policy's decision policy.
|
|
343
|
+
*/
|
|
203
344
|
decisionPolicy?: ThresholdDecisionPolicy | PercentageDecisionPolicy | Any | undefined;
|
|
204
345
|
}
|
|
205
346
|
export interface MsgCreateGroupPolicyProtoMsg {
|
|
@@ -207,97 +348,174 @@ export interface MsgCreateGroupPolicyProtoMsg {
|
|
|
207
348
|
value: Uint8Array;
|
|
208
349
|
}
|
|
209
350
|
export type MsgCreateGroupPolicyEncoded = Omit<MsgCreateGroupPolicy, "decisionPolicy"> & {
|
|
210
|
-
/**
|
|
351
|
+
/**
|
|
352
|
+
* decision_policy specifies the group policy's decision policy.
|
|
353
|
+
*/
|
|
354
|
+
decisionPolicy?: ThresholdDecisionPolicyProtoMsg | PercentageDecisionPolicyProtoMsg | AnyProtoMsg | undefined;
|
|
211
355
|
};
|
|
212
|
-
/**
|
|
356
|
+
/**
|
|
357
|
+
* MsgCreateGroupPolicy is the Msg/CreateGroupPolicy request type.
|
|
358
|
+
* @name MsgCreateGroupPolicyAmino
|
|
359
|
+
* @package cosmos.group.v1
|
|
360
|
+
* @see proto type: cosmos.group.v1.MsgCreateGroupPolicy
|
|
361
|
+
*/
|
|
213
362
|
export interface MsgCreateGroupPolicyAmino {
|
|
214
|
-
/**
|
|
363
|
+
/**
|
|
364
|
+
* admin is the account address of the group admin.
|
|
365
|
+
*/
|
|
215
366
|
admin: string;
|
|
216
|
-
/**
|
|
367
|
+
/**
|
|
368
|
+
* group_id is the unique ID of the group.
|
|
369
|
+
*/
|
|
217
370
|
group_id: string;
|
|
218
|
-
/**
|
|
371
|
+
/**
|
|
372
|
+
* metadata is any arbitrary metadata attached to the group policy.
|
|
373
|
+
*/
|
|
219
374
|
metadata: string;
|
|
220
|
-
/**
|
|
375
|
+
/**
|
|
376
|
+
* decision_policy specifies the group policy's decision policy.
|
|
377
|
+
*/
|
|
221
378
|
decision_policy?: AnyAmino;
|
|
222
379
|
}
|
|
223
380
|
export interface MsgCreateGroupPolicyAminoMsg {
|
|
224
381
|
type: "cosmos-sdk/MsgCreateGroupPolicy";
|
|
225
382
|
value: MsgCreateGroupPolicyAmino;
|
|
226
383
|
}
|
|
227
|
-
/**
|
|
384
|
+
/**
|
|
385
|
+
* MsgCreateGroupPolicyResponse is the Msg/CreateGroupPolicy response type.
|
|
386
|
+
* @name MsgCreateGroupPolicyResponse
|
|
387
|
+
* @package cosmos.group.v1
|
|
388
|
+
* @see proto type: cosmos.group.v1.MsgCreateGroupPolicyResponse
|
|
389
|
+
*/
|
|
228
390
|
export interface MsgCreateGroupPolicyResponse {
|
|
229
|
-
/**
|
|
391
|
+
/**
|
|
392
|
+
* address is the account address of the newly created group policy.
|
|
393
|
+
*/
|
|
230
394
|
address: string;
|
|
231
395
|
}
|
|
232
396
|
export interface MsgCreateGroupPolicyResponseProtoMsg {
|
|
233
397
|
typeUrl: "/cosmos.group.v1.MsgCreateGroupPolicyResponse";
|
|
234
398
|
value: Uint8Array;
|
|
235
399
|
}
|
|
236
|
-
/**
|
|
400
|
+
/**
|
|
401
|
+
* MsgCreateGroupPolicyResponse is the Msg/CreateGroupPolicy response type.
|
|
402
|
+
* @name MsgCreateGroupPolicyResponseAmino
|
|
403
|
+
* @package cosmos.group.v1
|
|
404
|
+
* @see proto type: cosmos.group.v1.MsgCreateGroupPolicyResponse
|
|
405
|
+
*/
|
|
237
406
|
export interface MsgCreateGroupPolicyResponseAmino {
|
|
238
|
-
/**
|
|
407
|
+
/**
|
|
408
|
+
* address is the account address of the newly created group policy.
|
|
409
|
+
*/
|
|
239
410
|
address: string;
|
|
240
411
|
}
|
|
241
412
|
export interface MsgCreateGroupPolicyResponseAminoMsg {
|
|
242
413
|
type: "cosmos-sdk/MsgCreateGroupPolicyResponse";
|
|
243
414
|
value: MsgCreateGroupPolicyResponseAmino;
|
|
244
415
|
}
|
|
245
|
-
/**
|
|
416
|
+
/**
|
|
417
|
+
* MsgUpdateGroupPolicyAdmin is the Msg/UpdateGroupPolicyAdmin request type.
|
|
418
|
+
* @name MsgUpdateGroupPolicyAdmin
|
|
419
|
+
* @package cosmos.group.v1
|
|
420
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyAdmin
|
|
421
|
+
*/
|
|
246
422
|
export interface MsgUpdateGroupPolicyAdmin {
|
|
247
|
-
/**
|
|
423
|
+
/**
|
|
424
|
+
* admin is the account address of the group admin.
|
|
425
|
+
*/
|
|
248
426
|
admin: string;
|
|
249
|
-
/**
|
|
427
|
+
/**
|
|
428
|
+
* group_policy_address is the account address of the group policy.
|
|
429
|
+
*/
|
|
250
430
|
groupPolicyAddress: string;
|
|
251
|
-
/**
|
|
431
|
+
/**
|
|
432
|
+
* new_admin is the new group policy admin.
|
|
433
|
+
*/
|
|
252
434
|
newAdmin: string;
|
|
253
435
|
}
|
|
254
436
|
export interface MsgUpdateGroupPolicyAdminProtoMsg {
|
|
255
437
|
typeUrl: "/cosmos.group.v1.MsgUpdateGroupPolicyAdmin";
|
|
256
438
|
value: Uint8Array;
|
|
257
439
|
}
|
|
258
|
-
/**
|
|
440
|
+
/**
|
|
441
|
+
* MsgUpdateGroupPolicyAdmin is the Msg/UpdateGroupPolicyAdmin request type.
|
|
442
|
+
* @name MsgUpdateGroupPolicyAdminAmino
|
|
443
|
+
* @package cosmos.group.v1
|
|
444
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyAdmin
|
|
445
|
+
*/
|
|
259
446
|
export interface MsgUpdateGroupPolicyAdminAmino {
|
|
260
|
-
/**
|
|
447
|
+
/**
|
|
448
|
+
* admin is the account address of the group admin.
|
|
449
|
+
*/
|
|
261
450
|
admin: string;
|
|
262
|
-
/**
|
|
451
|
+
/**
|
|
452
|
+
* group_policy_address is the account address of the group policy.
|
|
453
|
+
*/
|
|
263
454
|
group_policy_address: string;
|
|
264
|
-
/**
|
|
455
|
+
/**
|
|
456
|
+
* new_admin is the new group policy admin.
|
|
457
|
+
*/
|
|
265
458
|
new_admin: string;
|
|
266
459
|
}
|
|
267
460
|
export interface MsgUpdateGroupPolicyAdminAminoMsg {
|
|
268
461
|
type: "cosmos-sdk/MsgUpdateGroupPolicyAdmin";
|
|
269
462
|
value: MsgUpdateGroupPolicyAdminAmino;
|
|
270
463
|
}
|
|
271
|
-
/**
|
|
464
|
+
/**
|
|
465
|
+
* MsgUpdateGroupPolicyAdminResponse is the Msg/UpdateGroupPolicyAdmin response type.
|
|
466
|
+
* @name MsgUpdateGroupPolicyAdminResponse
|
|
467
|
+
* @package cosmos.group.v1
|
|
468
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyAdminResponse
|
|
469
|
+
*/
|
|
272
470
|
export interface MsgUpdateGroupPolicyAdminResponse {
|
|
273
471
|
}
|
|
274
472
|
export interface MsgUpdateGroupPolicyAdminResponseProtoMsg {
|
|
275
473
|
typeUrl: "/cosmos.group.v1.MsgUpdateGroupPolicyAdminResponse";
|
|
276
474
|
value: Uint8Array;
|
|
277
475
|
}
|
|
278
|
-
/**
|
|
476
|
+
/**
|
|
477
|
+
* MsgUpdateGroupPolicyAdminResponse is the Msg/UpdateGroupPolicyAdmin response type.
|
|
478
|
+
* @name MsgUpdateGroupPolicyAdminResponseAmino
|
|
479
|
+
* @package cosmos.group.v1
|
|
480
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyAdminResponse
|
|
481
|
+
*/
|
|
279
482
|
export interface MsgUpdateGroupPolicyAdminResponseAmino {
|
|
280
483
|
}
|
|
281
484
|
export interface MsgUpdateGroupPolicyAdminResponseAminoMsg {
|
|
282
485
|
type: "cosmos-sdk/MsgUpdateGroupPolicyAdminResponse";
|
|
283
486
|
value: MsgUpdateGroupPolicyAdminResponseAmino;
|
|
284
487
|
}
|
|
285
|
-
/**
|
|
488
|
+
/**
|
|
489
|
+
* MsgCreateGroupWithPolicy is the Msg/CreateGroupWithPolicy request type.
|
|
490
|
+
* @name MsgCreateGroupWithPolicy
|
|
491
|
+
* @package cosmos.group.v1
|
|
492
|
+
* @see proto type: cosmos.group.v1.MsgCreateGroupWithPolicy
|
|
493
|
+
*/
|
|
286
494
|
export interface MsgCreateGroupWithPolicy {
|
|
287
|
-
/**
|
|
495
|
+
/**
|
|
496
|
+
* admin is the account address of the group and group policy admin.
|
|
497
|
+
*/
|
|
288
498
|
admin: string;
|
|
289
|
-
/**
|
|
499
|
+
/**
|
|
500
|
+
* members defines the group members.
|
|
501
|
+
*/
|
|
290
502
|
members: MemberRequest[];
|
|
291
|
-
/**
|
|
503
|
+
/**
|
|
504
|
+
* group_metadata is any arbitrary metadata attached to the group.
|
|
505
|
+
*/
|
|
292
506
|
groupMetadata: string;
|
|
293
|
-
/**
|
|
507
|
+
/**
|
|
508
|
+
* group_policy_metadata is any arbitrary metadata attached to the group policy.
|
|
509
|
+
*/
|
|
294
510
|
groupPolicyMetadata: string;
|
|
295
511
|
/**
|
|
296
512
|
* group_policy_as_admin is a boolean field, if set to true, the group policy account address will be used as group
|
|
297
513
|
* and group policy admin.
|
|
298
514
|
*/
|
|
299
515
|
groupPolicyAsAdmin: boolean;
|
|
300
|
-
/**
|
|
516
|
+
/**
|
|
517
|
+
* decision_policy specifies the group policy's decision policy.
|
|
518
|
+
*/
|
|
301
519
|
decisionPolicy?: ThresholdDecisionPolicy | PercentageDecisionPolicy | Any | undefined;
|
|
302
520
|
}
|
|
303
521
|
export interface MsgCreateGroupWithPolicyProtoMsg {
|
|
@@ -305,59 +523,106 @@ export interface MsgCreateGroupWithPolicyProtoMsg {
|
|
|
305
523
|
value: Uint8Array;
|
|
306
524
|
}
|
|
307
525
|
export type MsgCreateGroupWithPolicyEncoded = Omit<MsgCreateGroupWithPolicy, "decisionPolicy"> & {
|
|
308
|
-
/**
|
|
526
|
+
/**
|
|
527
|
+
* decision_policy specifies the group policy's decision policy.
|
|
528
|
+
*/
|
|
529
|
+
decisionPolicy?: ThresholdDecisionPolicyProtoMsg | PercentageDecisionPolicyProtoMsg | AnyProtoMsg | undefined;
|
|
309
530
|
};
|
|
310
|
-
/**
|
|
531
|
+
/**
|
|
532
|
+
* MsgCreateGroupWithPolicy is the Msg/CreateGroupWithPolicy request type.
|
|
533
|
+
* @name MsgCreateGroupWithPolicyAmino
|
|
534
|
+
* @package cosmos.group.v1
|
|
535
|
+
* @see proto type: cosmos.group.v1.MsgCreateGroupWithPolicy
|
|
536
|
+
*/
|
|
311
537
|
export interface MsgCreateGroupWithPolicyAmino {
|
|
312
|
-
/**
|
|
538
|
+
/**
|
|
539
|
+
* admin is the account address of the group and group policy admin.
|
|
540
|
+
*/
|
|
313
541
|
admin: string;
|
|
314
|
-
/**
|
|
542
|
+
/**
|
|
543
|
+
* members defines the group members.
|
|
544
|
+
*/
|
|
315
545
|
members: MemberRequestAmino[];
|
|
316
|
-
/**
|
|
546
|
+
/**
|
|
547
|
+
* group_metadata is any arbitrary metadata attached to the group.
|
|
548
|
+
*/
|
|
317
549
|
group_metadata: string;
|
|
318
|
-
/**
|
|
550
|
+
/**
|
|
551
|
+
* group_policy_metadata is any arbitrary metadata attached to the group policy.
|
|
552
|
+
*/
|
|
319
553
|
group_policy_metadata: string;
|
|
320
554
|
/**
|
|
321
555
|
* group_policy_as_admin is a boolean field, if set to true, the group policy account address will be used as group
|
|
322
556
|
* and group policy admin.
|
|
323
557
|
*/
|
|
324
558
|
group_policy_as_admin: boolean;
|
|
325
|
-
/**
|
|
559
|
+
/**
|
|
560
|
+
* decision_policy specifies the group policy's decision policy.
|
|
561
|
+
*/
|
|
326
562
|
decision_policy?: AnyAmino;
|
|
327
563
|
}
|
|
328
564
|
export interface MsgCreateGroupWithPolicyAminoMsg {
|
|
329
565
|
type: "cosmos-sdk/MsgCreateGroupWithPolicy";
|
|
330
566
|
value: MsgCreateGroupWithPolicyAmino;
|
|
331
567
|
}
|
|
332
|
-
/**
|
|
568
|
+
/**
|
|
569
|
+
* MsgCreateGroupWithPolicyResponse is the Msg/CreateGroupWithPolicy response type.
|
|
570
|
+
* @name MsgCreateGroupWithPolicyResponse
|
|
571
|
+
* @package cosmos.group.v1
|
|
572
|
+
* @see proto type: cosmos.group.v1.MsgCreateGroupWithPolicyResponse
|
|
573
|
+
*/
|
|
333
574
|
export interface MsgCreateGroupWithPolicyResponse {
|
|
334
|
-
/**
|
|
575
|
+
/**
|
|
576
|
+
* group_id is the unique ID of the newly created group with policy.
|
|
577
|
+
*/
|
|
335
578
|
groupId: bigint;
|
|
336
|
-
/**
|
|
579
|
+
/**
|
|
580
|
+
* group_policy_address is the account address of the newly created group policy.
|
|
581
|
+
*/
|
|
337
582
|
groupPolicyAddress: string;
|
|
338
583
|
}
|
|
339
584
|
export interface MsgCreateGroupWithPolicyResponseProtoMsg {
|
|
340
585
|
typeUrl: "/cosmos.group.v1.MsgCreateGroupWithPolicyResponse";
|
|
341
586
|
value: Uint8Array;
|
|
342
587
|
}
|
|
343
|
-
/**
|
|
588
|
+
/**
|
|
589
|
+
* MsgCreateGroupWithPolicyResponse is the Msg/CreateGroupWithPolicy response type.
|
|
590
|
+
* @name MsgCreateGroupWithPolicyResponseAmino
|
|
591
|
+
* @package cosmos.group.v1
|
|
592
|
+
* @see proto type: cosmos.group.v1.MsgCreateGroupWithPolicyResponse
|
|
593
|
+
*/
|
|
344
594
|
export interface MsgCreateGroupWithPolicyResponseAmino {
|
|
345
|
-
/**
|
|
595
|
+
/**
|
|
596
|
+
* group_id is the unique ID of the newly created group with policy.
|
|
597
|
+
*/
|
|
346
598
|
group_id: string;
|
|
347
|
-
/**
|
|
599
|
+
/**
|
|
600
|
+
* group_policy_address is the account address of the newly created group policy.
|
|
601
|
+
*/
|
|
348
602
|
group_policy_address: string;
|
|
349
603
|
}
|
|
350
604
|
export interface MsgCreateGroupWithPolicyResponseAminoMsg {
|
|
351
605
|
type: "cosmos-sdk/MsgCreateGroupWithPolicyResponse";
|
|
352
606
|
value: MsgCreateGroupWithPolicyResponseAmino;
|
|
353
607
|
}
|
|
354
|
-
/**
|
|
608
|
+
/**
|
|
609
|
+
* MsgUpdateGroupPolicyDecisionPolicy is the Msg/UpdateGroupPolicyDecisionPolicy request type.
|
|
610
|
+
* @name MsgUpdateGroupPolicyDecisionPolicy
|
|
611
|
+
* @package cosmos.group.v1
|
|
612
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicy
|
|
613
|
+
*/
|
|
355
614
|
export interface MsgUpdateGroupPolicyDecisionPolicy {
|
|
356
|
-
/**
|
|
615
|
+
/**
|
|
616
|
+
* admin is the account address of the group admin.
|
|
617
|
+
*/
|
|
357
618
|
admin: string;
|
|
358
|
-
/**
|
|
619
|
+
/**
|
|
620
|
+
* group_policy_address is the account address of group policy.
|
|
621
|
+
*/
|
|
359
622
|
groupPolicyAddress: string;
|
|
360
|
-
/**
|
|
623
|
+
/**
|
|
624
|
+
* decision_policy is the updated group policy's decision policy.
|
|
625
|
+
*/
|
|
361
626
|
decisionPolicy?: ThresholdDecisionPolicy | PercentageDecisionPolicy | Any | undefined;
|
|
362
627
|
}
|
|
363
628
|
export interface MsgUpdateGroupPolicyDecisionPolicyProtoMsg {
|
|
@@ -365,87 +630,154 @@ export interface MsgUpdateGroupPolicyDecisionPolicyProtoMsg {
|
|
|
365
630
|
value: Uint8Array;
|
|
366
631
|
}
|
|
367
632
|
export type MsgUpdateGroupPolicyDecisionPolicyEncoded = Omit<MsgUpdateGroupPolicyDecisionPolicy, "decisionPolicy"> & {
|
|
368
|
-
/**
|
|
633
|
+
/**
|
|
634
|
+
* decision_policy is the updated group policy's decision policy.
|
|
635
|
+
*/
|
|
636
|
+
decisionPolicy?: ThresholdDecisionPolicyProtoMsg | PercentageDecisionPolicyProtoMsg | AnyProtoMsg | undefined;
|
|
369
637
|
};
|
|
370
|
-
/**
|
|
638
|
+
/**
|
|
639
|
+
* MsgUpdateGroupPolicyDecisionPolicy is the Msg/UpdateGroupPolicyDecisionPolicy request type.
|
|
640
|
+
* @name MsgUpdateGroupPolicyDecisionPolicyAmino
|
|
641
|
+
* @package cosmos.group.v1
|
|
642
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicy
|
|
643
|
+
*/
|
|
371
644
|
export interface MsgUpdateGroupPolicyDecisionPolicyAmino {
|
|
372
|
-
/**
|
|
645
|
+
/**
|
|
646
|
+
* admin is the account address of the group admin.
|
|
647
|
+
*/
|
|
373
648
|
admin: string;
|
|
374
|
-
/**
|
|
649
|
+
/**
|
|
650
|
+
* group_policy_address is the account address of group policy.
|
|
651
|
+
*/
|
|
375
652
|
group_policy_address: string;
|
|
376
|
-
/**
|
|
653
|
+
/**
|
|
654
|
+
* decision_policy is the updated group policy's decision policy.
|
|
655
|
+
*/
|
|
377
656
|
decision_policy?: AnyAmino;
|
|
378
657
|
}
|
|
379
658
|
export interface MsgUpdateGroupPolicyDecisionPolicyAminoMsg {
|
|
380
659
|
type: "cosmos-sdk/MsgUpdateGroupDecisionPolicy";
|
|
381
660
|
value: MsgUpdateGroupPolicyDecisionPolicyAmino;
|
|
382
661
|
}
|
|
383
|
-
/**
|
|
662
|
+
/**
|
|
663
|
+
* MsgUpdateGroupPolicyDecisionPolicyResponse is the Msg/UpdateGroupPolicyDecisionPolicy response type.
|
|
664
|
+
* @name MsgUpdateGroupPolicyDecisionPolicyResponse
|
|
665
|
+
* @package cosmos.group.v1
|
|
666
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicyResponse
|
|
667
|
+
*/
|
|
384
668
|
export interface MsgUpdateGroupPolicyDecisionPolicyResponse {
|
|
385
669
|
}
|
|
386
670
|
export interface MsgUpdateGroupPolicyDecisionPolicyResponseProtoMsg {
|
|
387
671
|
typeUrl: "/cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicyResponse";
|
|
388
672
|
value: Uint8Array;
|
|
389
673
|
}
|
|
390
|
-
/**
|
|
674
|
+
/**
|
|
675
|
+
* MsgUpdateGroupPolicyDecisionPolicyResponse is the Msg/UpdateGroupPolicyDecisionPolicy response type.
|
|
676
|
+
* @name MsgUpdateGroupPolicyDecisionPolicyResponseAmino
|
|
677
|
+
* @package cosmos.group.v1
|
|
678
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicyResponse
|
|
679
|
+
*/
|
|
391
680
|
export interface MsgUpdateGroupPolicyDecisionPolicyResponseAmino {
|
|
392
681
|
}
|
|
393
682
|
export interface MsgUpdateGroupPolicyDecisionPolicyResponseAminoMsg {
|
|
394
683
|
type: "cosmos-sdk/MsgUpdateGroupPolicyDecisionPolicyResponse";
|
|
395
684
|
value: MsgUpdateGroupPolicyDecisionPolicyResponseAmino;
|
|
396
685
|
}
|
|
397
|
-
/**
|
|
686
|
+
/**
|
|
687
|
+
* MsgUpdateGroupPolicyMetadata is the Msg/UpdateGroupPolicyMetadata request type.
|
|
688
|
+
* @name MsgUpdateGroupPolicyMetadata
|
|
689
|
+
* @package cosmos.group.v1
|
|
690
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyMetadata
|
|
691
|
+
*/
|
|
398
692
|
export interface MsgUpdateGroupPolicyMetadata {
|
|
399
|
-
/**
|
|
693
|
+
/**
|
|
694
|
+
* admin is the account address of the group admin.
|
|
695
|
+
*/
|
|
400
696
|
admin: string;
|
|
401
|
-
/**
|
|
697
|
+
/**
|
|
698
|
+
* group_policy_address is the account address of group policy.
|
|
699
|
+
*/
|
|
402
700
|
groupPolicyAddress: string;
|
|
403
|
-
/**
|
|
701
|
+
/**
|
|
702
|
+
* metadata is the group policy metadata to be updated.
|
|
703
|
+
*/
|
|
404
704
|
metadata: string;
|
|
405
705
|
}
|
|
406
706
|
export interface MsgUpdateGroupPolicyMetadataProtoMsg {
|
|
407
707
|
typeUrl: "/cosmos.group.v1.MsgUpdateGroupPolicyMetadata";
|
|
408
708
|
value: Uint8Array;
|
|
409
709
|
}
|
|
410
|
-
/**
|
|
710
|
+
/**
|
|
711
|
+
* MsgUpdateGroupPolicyMetadata is the Msg/UpdateGroupPolicyMetadata request type.
|
|
712
|
+
* @name MsgUpdateGroupPolicyMetadataAmino
|
|
713
|
+
* @package cosmos.group.v1
|
|
714
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyMetadata
|
|
715
|
+
*/
|
|
411
716
|
export interface MsgUpdateGroupPolicyMetadataAmino {
|
|
412
|
-
/**
|
|
717
|
+
/**
|
|
718
|
+
* admin is the account address of the group admin.
|
|
719
|
+
*/
|
|
413
720
|
admin: string;
|
|
414
|
-
/**
|
|
721
|
+
/**
|
|
722
|
+
* group_policy_address is the account address of group policy.
|
|
723
|
+
*/
|
|
415
724
|
group_policy_address: string;
|
|
416
|
-
/**
|
|
725
|
+
/**
|
|
726
|
+
* metadata is the group policy metadata to be updated.
|
|
727
|
+
*/
|
|
417
728
|
metadata: string;
|
|
418
729
|
}
|
|
419
730
|
export interface MsgUpdateGroupPolicyMetadataAminoMsg {
|
|
420
731
|
type: "cosmos-sdk/MsgUpdateGroupPolicyMetadata";
|
|
421
732
|
value: MsgUpdateGroupPolicyMetadataAmino;
|
|
422
733
|
}
|
|
423
|
-
/**
|
|
734
|
+
/**
|
|
735
|
+
* MsgUpdateGroupPolicyMetadataResponse is the Msg/UpdateGroupPolicyMetadata response type.
|
|
736
|
+
* @name MsgUpdateGroupPolicyMetadataResponse
|
|
737
|
+
* @package cosmos.group.v1
|
|
738
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyMetadataResponse
|
|
739
|
+
*/
|
|
424
740
|
export interface MsgUpdateGroupPolicyMetadataResponse {
|
|
425
741
|
}
|
|
426
742
|
export interface MsgUpdateGroupPolicyMetadataResponseProtoMsg {
|
|
427
743
|
typeUrl: "/cosmos.group.v1.MsgUpdateGroupPolicyMetadataResponse";
|
|
428
744
|
value: Uint8Array;
|
|
429
745
|
}
|
|
430
|
-
/**
|
|
746
|
+
/**
|
|
747
|
+
* MsgUpdateGroupPolicyMetadataResponse is the Msg/UpdateGroupPolicyMetadata response type.
|
|
748
|
+
* @name MsgUpdateGroupPolicyMetadataResponseAmino
|
|
749
|
+
* @package cosmos.group.v1
|
|
750
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyMetadataResponse
|
|
751
|
+
*/
|
|
431
752
|
export interface MsgUpdateGroupPolicyMetadataResponseAmino {
|
|
432
753
|
}
|
|
433
754
|
export interface MsgUpdateGroupPolicyMetadataResponseAminoMsg {
|
|
434
755
|
type: "cosmos-sdk/MsgUpdateGroupPolicyMetadataResponse";
|
|
435
756
|
value: MsgUpdateGroupPolicyMetadataResponseAmino;
|
|
436
757
|
}
|
|
437
|
-
/**
|
|
758
|
+
/**
|
|
759
|
+
* MsgSubmitProposal is the Msg/SubmitProposal request type.
|
|
760
|
+
* @name MsgSubmitProposal
|
|
761
|
+
* @package cosmos.group.v1
|
|
762
|
+
* @see proto type: cosmos.group.v1.MsgSubmitProposal
|
|
763
|
+
*/
|
|
438
764
|
export interface MsgSubmitProposal {
|
|
439
|
-
/**
|
|
765
|
+
/**
|
|
766
|
+
* group_policy_address is the account address of group policy.
|
|
767
|
+
*/
|
|
440
768
|
groupPolicyAddress: string;
|
|
441
769
|
/**
|
|
442
770
|
* proposers are the account addresses of the proposers.
|
|
443
771
|
* Proposers signatures will be counted as yes votes.
|
|
444
772
|
*/
|
|
445
773
|
proposers: string[];
|
|
446
|
-
/**
|
|
774
|
+
/**
|
|
775
|
+
* metadata is any arbitrary metadata attached to the proposal.
|
|
776
|
+
*/
|
|
447
777
|
metadata: string;
|
|
448
|
-
/**
|
|
778
|
+
/**
|
|
779
|
+
* messages is a list of `sdk.Msg`s that will be executed if the proposal passes.
|
|
780
|
+
*/
|
|
449
781
|
messages: Any[];
|
|
450
782
|
/**
|
|
451
783
|
* exec defines the mode of execution of the proposal,
|
|
@@ -470,18 +802,29 @@ export interface MsgSubmitProposalProtoMsg {
|
|
|
470
802
|
typeUrl: "/cosmos.group.v1.MsgSubmitProposal";
|
|
471
803
|
value: Uint8Array;
|
|
472
804
|
}
|
|
473
|
-
/**
|
|
805
|
+
/**
|
|
806
|
+
* MsgSubmitProposal is the Msg/SubmitProposal request type.
|
|
807
|
+
* @name MsgSubmitProposalAmino
|
|
808
|
+
* @package cosmos.group.v1
|
|
809
|
+
* @see proto type: cosmos.group.v1.MsgSubmitProposal
|
|
810
|
+
*/
|
|
474
811
|
export interface MsgSubmitProposalAmino {
|
|
475
|
-
/**
|
|
812
|
+
/**
|
|
813
|
+
* group_policy_address is the account address of group policy.
|
|
814
|
+
*/
|
|
476
815
|
group_policy_address: string;
|
|
477
816
|
/**
|
|
478
817
|
* proposers are the account addresses of the proposers.
|
|
479
818
|
* Proposers signatures will be counted as yes votes.
|
|
480
819
|
*/
|
|
481
820
|
proposers: string[];
|
|
482
|
-
/**
|
|
821
|
+
/**
|
|
822
|
+
* metadata is any arbitrary metadata attached to the proposal.
|
|
823
|
+
*/
|
|
483
824
|
metadata: string;
|
|
484
|
-
/**
|
|
825
|
+
/**
|
|
826
|
+
* messages is a list of `sdk.Msg`s that will be executed if the proposal passes.
|
|
827
|
+
*/
|
|
485
828
|
messages: AnyAmino[];
|
|
486
829
|
/**
|
|
487
830
|
* exec defines the mode of execution of the proposal,
|
|
@@ -506,69 +849,124 @@ export interface MsgSubmitProposalAminoMsg {
|
|
|
506
849
|
type: "cosmos-sdk/group/MsgSubmitProposal";
|
|
507
850
|
value: MsgSubmitProposalAmino;
|
|
508
851
|
}
|
|
509
|
-
/**
|
|
852
|
+
/**
|
|
853
|
+
* MsgSubmitProposalResponse is the Msg/SubmitProposal response type.
|
|
854
|
+
* @name MsgSubmitProposalResponse
|
|
855
|
+
* @package cosmos.group.v1
|
|
856
|
+
* @see proto type: cosmos.group.v1.MsgSubmitProposalResponse
|
|
857
|
+
*/
|
|
510
858
|
export interface MsgSubmitProposalResponse {
|
|
511
|
-
/**
|
|
859
|
+
/**
|
|
860
|
+
* proposal is the unique ID of the proposal.
|
|
861
|
+
*/
|
|
512
862
|
proposalId: bigint;
|
|
513
863
|
}
|
|
514
864
|
export interface MsgSubmitProposalResponseProtoMsg {
|
|
515
865
|
typeUrl: "/cosmos.group.v1.MsgSubmitProposalResponse";
|
|
516
866
|
value: Uint8Array;
|
|
517
867
|
}
|
|
518
|
-
/**
|
|
868
|
+
/**
|
|
869
|
+
* MsgSubmitProposalResponse is the Msg/SubmitProposal response type.
|
|
870
|
+
* @name MsgSubmitProposalResponseAmino
|
|
871
|
+
* @package cosmos.group.v1
|
|
872
|
+
* @see proto type: cosmos.group.v1.MsgSubmitProposalResponse
|
|
873
|
+
*/
|
|
519
874
|
export interface MsgSubmitProposalResponseAmino {
|
|
520
|
-
/**
|
|
875
|
+
/**
|
|
876
|
+
* proposal is the unique ID of the proposal.
|
|
877
|
+
*/
|
|
521
878
|
proposal_id: string;
|
|
522
879
|
}
|
|
523
880
|
export interface MsgSubmitProposalResponseAminoMsg {
|
|
524
881
|
type: "cosmos-sdk/MsgSubmitProposalResponse";
|
|
525
882
|
value: MsgSubmitProposalResponseAmino;
|
|
526
883
|
}
|
|
527
|
-
/**
|
|
884
|
+
/**
|
|
885
|
+
* MsgWithdrawProposal is the Msg/WithdrawProposal request type.
|
|
886
|
+
* @name MsgWithdrawProposal
|
|
887
|
+
* @package cosmos.group.v1
|
|
888
|
+
* @see proto type: cosmos.group.v1.MsgWithdrawProposal
|
|
889
|
+
*/
|
|
528
890
|
export interface MsgWithdrawProposal {
|
|
529
|
-
/**
|
|
891
|
+
/**
|
|
892
|
+
* proposal is the unique ID of the proposal.
|
|
893
|
+
*/
|
|
530
894
|
proposalId: bigint;
|
|
531
|
-
/**
|
|
895
|
+
/**
|
|
896
|
+
* address is the admin of the group policy or one of the proposer of the proposal.
|
|
897
|
+
*/
|
|
532
898
|
address: string;
|
|
533
899
|
}
|
|
534
900
|
export interface MsgWithdrawProposalProtoMsg {
|
|
535
901
|
typeUrl: "/cosmos.group.v1.MsgWithdrawProposal";
|
|
536
902
|
value: Uint8Array;
|
|
537
903
|
}
|
|
538
|
-
/**
|
|
904
|
+
/**
|
|
905
|
+
* MsgWithdrawProposal is the Msg/WithdrawProposal request type.
|
|
906
|
+
* @name MsgWithdrawProposalAmino
|
|
907
|
+
* @package cosmos.group.v1
|
|
908
|
+
* @see proto type: cosmos.group.v1.MsgWithdrawProposal
|
|
909
|
+
*/
|
|
539
910
|
export interface MsgWithdrawProposalAmino {
|
|
540
|
-
/**
|
|
911
|
+
/**
|
|
912
|
+
* proposal is the unique ID of the proposal.
|
|
913
|
+
*/
|
|
541
914
|
proposal_id: string;
|
|
542
|
-
/**
|
|
915
|
+
/**
|
|
916
|
+
* address is the admin of the group policy or one of the proposer of the proposal.
|
|
917
|
+
*/
|
|
543
918
|
address: string;
|
|
544
919
|
}
|
|
545
920
|
export interface MsgWithdrawProposalAminoMsg {
|
|
546
921
|
type: "cosmos-sdk/group/MsgWithdrawProposal";
|
|
547
922
|
value: MsgWithdrawProposalAmino;
|
|
548
923
|
}
|
|
549
|
-
/**
|
|
924
|
+
/**
|
|
925
|
+
* MsgWithdrawProposalResponse is the Msg/WithdrawProposal response type.
|
|
926
|
+
* @name MsgWithdrawProposalResponse
|
|
927
|
+
* @package cosmos.group.v1
|
|
928
|
+
* @see proto type: cosmos.group.v1.MsgWithdrawProposalResponse
|
|
929
|
+
*/
|
|
550
930
|
export interface MsgWithdrawProposalResponse {
|
|
551
931
|
}
|
|
552
932
|
export interface MsgWithdrawProposalResponseProtoMsg {
|
|
553
933
|
typeUrl: "/cosmos.group.v1.MsgWithdrawProposalResponse";
|
|
554
934
|
value: Uint8Array;
|
|
555
935
|
}
|
|
556
|
-
/**
|
|
936
|
+
/**
|
|
937
|
+
* MsgWithdrawProposalResponse is the Msg/WithdrawProposal response type.
|
|
938
|
+
* @name MsgWithdrawProposalResponseAmino
|
|
939
|
+
* @package cosmos.group.v1
|
|
940
|
+
* @see proto type: cosmos.group.v1.MsgWithdrawProposalResponse
|
|
941
|
+
*/
|
|
557
942
|
export interface MsgWithdrawProposalResponseAmino {
|
|
558
943
|
}
|
|
559
944
|
export interface MsgWithdrawProposalResponseAminoMsg {
|
|
560
945
|
type: "cosmos-sdk/MsgWithdrawProposalResponse";
|
|
561
946
|
value: MsgWithdrawProposalResponseAmino;
|
|
562
947
|
}
|
|
563
|
-
/**
|
|
948
|
+
/**
|
|
949
|
+
* MsgVote is the Msg/Vote request type.
|
|
950
|
+
* @name MsgVote
|
|
951
|
+
* @package cosmos.group.v1
|
|
952
|
+
* @see proto type: cosmos.group.v1.MsgVote
|
|
953
|
+
*/
|
|
564
954
|
export interface MsgVote {
|
|
565
|
-
/**
|
|
955
|
+
/**
|
|
956
|
+
* proposal is the unique ID of the proposal.
|
|
957
|
+
*/
|
|
566
958
|
proposalId: bigint;
|
|
567
|
-
/**
|
|
959
|
+
/**
|
|
960
|
+
* voter is the voter account address.
|
|
961
|
+
*/
|
|
568
962
|
voter: string;
|
|
569
|
-
/**
|
|
963
|
+
/**
|
|
964
|
+
* option is the voter's choice on the proposal.
|
|
965
|
+
*/
|
|
570
966
|
option: VoteOption;
|
|
571
|
-
/**
|
|
967
|
+
/**
|
|
968
|
+
* metadata is any arbitrary metadata attached to the vote.
|
|
969
|
+
*/
|
|
572
970
|
metadata: string;
|
|
573
971
|
/**
|
|
574
972
|
* exec defines whether the proposal should be executed
|
|
@@ -580,15 +978,28 @@ export interface MsgVoteProtoMsg {
|
|
|
580
978
|
typeUrl: "/cosmos.group.v1.MsgVote";
|
|
581
979
|
value: Uint8Array;
|
|
582
980
|
}
|
|
583
|
-
/**
|
|
981
|
+
/**
|
|
982
|
+
* MsgVote is the Msg/Vote request type.
|
|
983
|
+
* @name MsgVoteAmino
|
|
984
|
+
* @package cosmos.group.v1
|
|
985
|
+
* @see proto type: cosmos.group.v1.MsgVote
|
|
986
|
+
*/
|
|
584
987
|
export interface MsgVoteAmino {
|
|
585
|
-
/**
|
|
988
|
+
/**
|
|
989
|
+
* proposal is the unique ID of the proposal.
|
|
990
|
+
*/
|
|
586
991
|
proposal_id: string;
|
|
587
|
-
/**
|
|
992
|
+
/**
|
|
993
|
+
* voter is the voter account address.
|
|
994
|
+
*/
|
|
588
995
|
voter: string;
|
|
589
|
-
/**
|
|
996
|
+
/**
|
|
997
|
+
* option is the voter's choice on the proposal.
|
|
998
|
+
*/
|
|
590
999
|
option: VoteOption;
|
|
591
|
-
/**
|
|
1000
|
+
/**
|
|
1001
|
+
* metadata is any arbitrary metadata attached to the vote.
|
|
1002
|
+
*/
|
|
592
1003
|
metadata: string;
|
|
593
1004
|
/**
|
|
594
1005
|
* exec defines whether the proposal should be executed
|
|
@@ -600,96 +1011,172 @@ export interface MsgVoteAminoMsg {
|
|
|
600
1011
|
type: "cosmos-sdk/group/MsgVote";
|
|
601
1012
|
value: MsgVoteAmino;
|
|
602
1013
|
}
|
|
603
|
-
/**
|
|
1014
|
+
/**
|
|
1015
|
+
* MsgVoteResponse is the Msg/Vote response type.
|
|
1016
|
+
* @name MsgVoteResponse
|
|
1017
|
+
* @package cosmos.group.v1
|
|
1018
|
+
* @see proto type: cosmos.group.v1.MsgVoteResponse
|
|
1019
|
+
*/
|
|
604
1020
|
export interface MsgVoteResponse {
|
|
605
1021
|
}
|
|
606
1022
|
export interface MsgVoteResponseProtoMsg {
|
|
607
1023
|
typeUrl: "/cosmos.group.v1.MsgVoteResponse";
|
|
608
1024
|
value: Uint8Array;
|
|
609
1025
|
}
|
|
610
|
-
/**
|
|
1026
|
+
/**
|
|
1027
|
+
* MsgVoteResponse is the Msg/Vote response type.
|
|
1028
|
+
* @name MsgVoteResponseAmino
|
|
1029
|
+
* @package cosmos.group.v1
|
|
1030
|
+
* @see proto type: cosmos.group.v1.MsgVoteResponse
|
|
1031
|
+
*/
|
|
611
1032
|
export interface MsgVoteResponseAmino {
|
|
612
1033
|
}
|
|
613
1034
|
export interface MsgVoteResponseAminoMsg {
|
|
614
1035
|
type: "cosmos-sdk/MsgVoteResponse";
|
|
615
1036
|
value: MsgVoteResponseAmino;
|
|
616
1037
|
}
|
|
617
|
-
/**
|
|
1038
|
+
/**
|
|
1039
|
+
* MsgExec is the Msg/Exec request type.
|
|
1040
|
+
* @name MsgExec
|
|
1041
|
+
* @package cosmos.group.v1
|
|
1042
|
+
* @see proto type: cosmos.group.v1.MsgExec
|
|
1043
|
+
*/
|
|
618
1044
|
export interface MsgExec {
|
|
619
|
-
/**
|
|
1045
|
+
/**
|
|
1046
|
+
* proposal is the unique ID of the proposal.
|
|
1047
|
+
*/
|
|
620
1048
|
proposalId: bigint;
|
|
621
|
-
/**
|
|
1049
|
+
/**
|
|
1050
|
+
* executor is the account address used to execute the proposal.
|
|
1051
|
+
*/
|
|
622
1052
|
executor: string;
|
|
623
1053
|
}
|
|
624
1054
|
export interface MsgExecProtoMsg {
|
|
625
1055
|
typeUrl: "/cosmos.group.v1.MsgExec";
|
|
626
1056
|
value: Uint8Array;
|
|
627
1057
|
}
|
|
628
|
-
/**
|
|
1058
|
+
/**
|
|
1059
|
+
* MsgExec is the Msg/Exec request type.
|
|
1060
|
+
* @name MsgExecAmino
|
|
1061
|
+
* @package cosmos.group.v1
|
|
1062
|
+
* @see proto type: cosmos.group.v1.MsgExec
|
|
1063
|
+
*/
|
|
629
1064
|
export interface MsgExecAmino {
|
|
630
|
-
/**
|
|
1065
|
+
/**
|
|
1066
|
+
* proposal is the unique ID of the proposal.
|
|
1067
|
+
*/
|
|
631
1068
|
proposal_id: string;
|
|
632
|
-
/**
|
|
1069
|
+
/**
|
|
1070
|
+
* executor is the account address used to execute the proposal.
|
|
1071
|
+
*/
|
|
633
1072
|
executor: string;
|
|
634
1073
|
}
|
|
635
1074
|
export interface MsgExecAminoMsg {
|
|
636
1075
|
type: "cosmos-sdk/group/MsgExec";
|
|
637
1076
|
value: MsgExecAmino;
|
|
638
1077
|
}
|
|
639
|
-
/**
|
|
1078
|
+
/**
|
|
1079
|
+
* MsgExecResponse is the Msg/Exec request type.
|
|
1080
|
+
* @name MsgExecResponse
|
|
1081
|
+
* @package cosmos.group.v1
|
|
1082
|
+
* @see proto type: cosmos.group.v1.MsgExecResponse
|
|
1083
|
+
*/
|
|
640
1084
|
export interface MsgExecResponse {
|
|
641
|
-
/**
|
|
1085
|
+
/**
|
|
1086
|
+
* result is the final result of the proposal execution.
|
|
1087
|
+
*/
|
|
642
1088
|
result: ProposalExecutorResult;
|
|
643
1089
|
}
|
|
644
1090
|
export interface MsgExecResponseProtoMsg {
|
|
645
1091
|
typeUrl: "/cosmos.group.v1.MsgExecResponse";
|
|
646
1092
|
value: Uint8Array;
|
|
647
1093
|
}
|
|
648
|
-
/**
|
|
1094
|
+
/**
|
|
1095
|
+
* MsgExecResponse is the Msg/Exec request type.
|
|
1096
|
+
* @name MsgExecResponseAmino
|
|
1097
|
+
* @package cosmos.group.v1
|
|
1098
|
+
* @see proto type: cosmos.group.v1.MsgExecResponse
|
|
1099
|
+
*/
|
|
649
1100
|
export interface MsgExecResponseAmino {
|
|
650
|
-
/**
|
|
1101
|
+
/**
|
|
1102
|
+
* result is the final result of the proposal execution.
|
|
1103
|
+
*/
|
|
651
1104
|
result: ProposalExecutorResult;
|
|
652
1105
|
}
|
|
653
1106
|
export interface MsgExecResponseAminoMsg {
|
|
654
1107
|
type: "cosmos-sdk/MsgExecResponse";
|
|
655
1108
|
value: MsgExecResponseAmino;
|
|
656
1109
|
}
|
|
657
|
-
/**
|
|
1110
|
+
/**
|
|
1111
|
+
* MsgLeaveGroup is the Msg/LeaveGroup request type.
|
|
1112
|
+
* @name MsgLeaveGroup
|
|
1113
|
+
* @package cosmos.group.v1
|
|
1114
|
+
* @see proto type: cosmos.group.v1.MsgLeaveGroup
|
|
1115
|
+
*/
|
|
658
1116
|
export interface MsgLeaveGroup {
|
|
659
|
-
/**
|
|
1117
|
+
/**
|
|
1118
|
+
* address is the account address of the group member.
|
|
1119
|
+
*/
|
|
660
1120
|
address: string;
|
|
661
|
-
/**
|
|
1121
|
+
/**
|
|
1122
|
+
* group_id is the unique ID of the group.
|
|
1123
|
+
*/
|
|
662
1124
|
groupId: bigint;
|
|
663
1125
|
}
|
|
664
1126
|
export interface MsgLeaveGroupProtoMsg {
|
|
665
1127
|
typeUrl: "/cosmos.group.v1.MsgLeaveGroup";
|
|
666
1128
|
value: Uint8Array;
|
|
667
1129
|
}
|
|
668
|
-
/**
|
|
1130
|
+
/**
|
|
1131
|
+
* MsgLeaveGroup is the Msg/LeaveGroup request type.
|
|
1132
|
+
* @name MsgLeaveGroupAmino
|
|
1133
|
+
* @package cosmos.group.v1
|
|
1134
|
+
* @see proto type: cosmos.group.v1.MsgLeaveGroup
|
|
1135
|
+
*/
|
|
669
1136
|
export interface MsgLeaveGroupAmino {
|
|
670
|
-
/**
|
|
1137
|
+
/**
|
|
1138
|
+
* address is the account address of the group member.
|
|
1139
|
+
*/
|
|
671
1140
|
address: string;
|
|
672
|
-
/**
|
|
1141
|
+
/**
|
|
1142
|
+
* group_id is the unique ID of the group.
|
|
1143
|
+
*/
|
|
673
1144
|
group_id: string;
|
|
674
1145
|
}
|
|
675
1146
|
export interface MsgLeaveGroupAminoMsg {
|
|
676
1147
|
type: "cosmos-sdk/group/MsgLeaveGroup";
|
|
677
1148
|
value: MsgLeaveGroupAmino;
|
|
678
1149
|
}
|
|
679
|
-
/**
|
|
1150
|
+
/**
|
|
1151
|
+
* MsgLeaveGroupResponse is the Msg/LeaveGroup response type.
|
|
1152
|
+
* @name MsgLeaveGroupResponse
|
|
1153
|
+
* @package cosmos.group.v1
|
|
1154
|
+
* @see proto type: cosmos.group.v1.MsgLeaveGroupResponse
|
|
1155
|
+
*/
|
|
680
1156
|
export interface MsgLeaveGroupResponse {
|
|
681
1157
|
}
|
|
682
1158
|
export interface MsgLeaveGroupResponseProtoMsg {
|
|
683
1159
|
typeUrl: "/cosmos.group.v1.MsgLeaveGroupResponse";
|
|
684
1160
|
value: Uint8Array;
|
|
685
1161
|
}
|
|
686
|
-
/**
|
|
1162
|
+
/**
|
|
1163
|
+
* MsgLeaveGroupResponse is the Msg/LeaveGroup response type.
|
|
1164
|
+
* @name MsgLeaveGroupResponseAmino
|
|
1165
|
+
* @package cosmos.group.v1
|
|
1166
|
+
* @see proto type: cosmos.group.v1.MsgLeaveGroupResponse
|
|
1167
|
+
*/
|
|
687
1168
|
export interface MsgLeaveGroupResponseAmino {
|
|
688
1169
|
}
|
|
689
1170
|
export interface MsgLeaveGroupResponseAminoMsg {
|
|
690
1171
|
type: "cosmos-sdk/MsgLeaveGroupResponse";
|
|
691
1172
|
value: MsgLeaveGroupResponseAmino;
|
|
692
1173
|
}
|
|
1174
|
+
/**
|
|
1175
|
+
* MsgCreateGroup is the Msg/CreateGroup request type.
|
|
1176
|
+
* @name MsgCreateGroup
|
|
1177
|
+
* @package cosmos.group.v1
|
|
1178
|
+
* @see proto type: cosmos.group.v1.MsgCreateGroup
|
|
1179
|
+
*/
|
|
693
1180
|
export declare const MsgCreateGroup: {
|
|
694
1181
|
typeUrl: string;
|
|
695
1182
|
aminoType: string;
|
|
@@ -707,6 +1194,12 @@ export declare const MsgCreateGroup: {
|
|
|
707
1194
|
toProtoMsg(message: MsgCreateGroup): MsgCreateGroupProtoMsg;
|
|
708
1195
|
registerTypeUrl(): void;
|
|
709
1196
|
};
|
|
1197
|
+
/**
|
|
1198
|
+
* MsgCreateGroupResponse is the Msg/CreateGroup response type.
|
|
1199
|
+
* @name MsgCreateGroupResponse
|
|
1200
|
+
* @package cosmos.group.v1
|
|
1201
|
+
* @see proto type: cosmos.group.v1.MsgCreateGroupResponse
|
|
1202
|
+
*/
|
|
710
1203
|
export declare const MsgCreateGroupResponse: {
|
|
711
1204
|
typeUrl: string;
|
|
712
1205
|
aminoType: string;
|
|
@@ -724,6 +1217,12 @@ export declare const MsgCreateGroupResponse: {
|
|
|
724
1217
|
toProtoMsg(message: MsgCreateGroupResponse): MsgCreateGroupResponseProtoMsg;
|
|
725
1218
|
registerTypeUrl(): void;
|
|
726
1219
|
};
|
|
1220
|
+
/**
|
|
1221
|
+
* MsgUpdateGroupMembers is the Msg/UpdateGroupMembers request type.
|
|
1222
|
+
* @name MsgUpdateGroupMembers
|
|
1223
|
+
* @package cosmos.group.v1
|
|
1224
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupMembers
|
|
1225
|
+
*/
|
|
727
1226
|
export declare const MsgUpdateGroupMembers: {
|
|
728
1227
|
typeUrl: string;
|
|
729
1228
|
aminoType: string;
|
|
@@ -741,6 +1240,12 @@ export declare const MsgUpdateGroupMembers: {
|
|
|
741
1240
|
toProtoMsg(message: MsgUpdateGroupMembers): MsgUpdateGroupMembersProtoMsg;
|
|
742
1241
|
registerTypeUrl(): void;
|
|
743
1242
|
};
|
|
1243
|
+
/**
|
|
1244
|
+
* MsgUpdateGroupMembersResponse is the Msg/UpdateGroupMembers response type.
|
|
1245
|
+
* @name MsgUpdateGroupMembersResponse
|
|
1246
|
+
* @package cosmos.group.v1
|
|
1247
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupMembersResponse
|
|
1248
|
+
*/
|
|
744
1249
|
export declare const MsgUpdateGroupMembersResponse: {
|
|
745
1250
|
typeUrl: string;
|
|
746
1251
|
aminoType: string;
|
|
@@ -758,6 +1263,12 @@ export declare const MsgUpdateGroupMembersResponse: {
|
|
|
758
1263
|
toProtoMsg(message: MsgUpdateGroupMembersResponse): MsgUpdateGroupMembersResponseProtoMsg;
|
|
759
1264
|
registerTypeUrl(): void;
|
|
760
1265
|
};
|
|
1266
|
+
/**
|
|
1267
|
+
* MsgUpdateGroupAdmin is the Msg/UpdateGroupAdmin request type.
|
|
1268
|
+
* @name MsgUpdateGroupAdmin
|
|
1269
|
+
* @package cosmos.group.v1
|
|
1270
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupAdmin
|
|
1271
|
+
*/
|
|
761
1272
|
export declare const MsgUpdateGroupAdmin: {
|
|
762
1273
|
typeUrl: string;
|
|
763
1274
|
aminoType: string;
|
|
@@ -775,6 +1286,12 @@ export declare const MsgUpdateGroupAdmin: {
|
|
|
775
1286
|
toProtoMsg(message: MsgUpdateGroupAdmin): MsgUpdateGroupAdminProtoMsg;
|
|
776
1287
|
registerTypeUrl(): void;
|
|
777
1288
|
};
|
|
1289
|
+
/**
|
|
1290
|
+
* MsgUpdateGroupAdminResponse is the Msg/UpdateGroupAdmin response type.
|
|
1291
|
+
* @name MsgUpdateGroupAdminResponse
|
|
1292
|
+
* @package cosmos.group.v1
|
|
1293
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupAdminResponse
|
|
1294
|
+
*/
|
|
778
1295
|
export declare const MsgUpdateGroupAdminResponse: {
|
|
779
1296
|
typeUrl: string;
|
|
780
1297
|
aminoType: string;
|
|
@@ -792,6 +1309,12 @@ export declare const MsgUpdateGroupAdminResponse: {
|
|
|
792
1309
|
toProtoMsg(message: MsgUpdateGroupAdminResponse): MsgUpdateGroupAdminResponseProtoMsg;
|
|
793
1310
|
registerTypeUrl(): void;
|
|
794
1311
|
};
|
|
1312
|
+
/**
|
|
1313
|
+
* MsgUpdateGroupMetadata is the Msg/UpdateGroupMetadata request type.
|
|
1314
|
+
* @name MsgUpdateGroupMetadata
|
|
1315
|
+
* @package cosmos.group.v1
|
|
1316
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupMetadata
|
|
1317
|
+
*/
|
|
795
1318
|
export declare const MsgUpdateGroupMetadata: {
|
|
796
1319
|
typeUrl: string;
|
|
797
1320
|
aminoType: string;
|
|
@@ -809,6 +1332,12 @@ export declare const MsgUpdateGroupMetadata: {
|
|
|
809
1332
|
toProtoMsg(message: MsgUpdateGroupMetadata): MsgUpdateGroupMetadataProtoMsg;
|
|
810
1333
|
registerTypeUrl(): void;
|
|
811
1334
|
};
|
|
1335
|
+
/**
|
|
1336
|
+
* MsgUpdateGroupMetadataResponse is the Msg/UpdateGroupMetadata response type.
|
|
1337
|
+
* @name MsgUpdateGroupMetadataResponse
|
|
1338
|
+
* @package cosmos.group.v1
|
|
1339
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupMetadataResponse
|
|
1340
|
+
*/
|
|
812
1341
|
export declare const MsgUpdateGroupMetadataResponse: {
|
|
813
1342
|
typeUrl: string;
|
|
814
1343
|
aminoType: string;
|
|
@@ -826,6 +1355,12 @@ export declare const MsgUpdateGroupMetadataResponse: {
|
|
|
826
1355
|
toProtoMsg(message: MsgUpdateGroupMetadataResponse): MsgUpdateGroupMetadataResponseProtoMsg;
|
|
827
1356
|
registerTypeUrl(): void;
|
|
828
1357
|
};
|
|
1358
|
+
/**
|
|
1359
|
+
* MsgCreateGroupPolicy is the Msg/CreateGroupPolicy request type.
|
|
1360
|
+
* @name MsgCreateGroupPolicy
|
|
1361
|
+
* @package cosmos.group.v1
|
|
1362
|
+
* @see proto type: cosmos.group.v1.MsgCreateGroupPolicy
|
|
1363
|
+
*/
|
|
829
1364
|
export declare const MsgCreateGroupPolicy: {
|
|
830
1365
|
typeUrl: string;
|
|
831
1366
|
aminoType: string;
|
|
@@ -843,6 +1378,12 @@ export declare const MsgCreateGroupPolicy: {
|
|
|
843
1378
|
toProtoMsg(message: MsgCreateGroupPolicy): MsgCreateGroupPolicyProtoMsg;
|
|
844
1379
|
registerTypeUrl(): void;
|
|
845
1380
|
};
|
|
1381
|
+
/**
|
|
1382
|
+
* MsgCreateGroupPolicyResponse is the Msg/CreateGroupPolicy response type.
|
|
1383
|
+
* @name MsgCreateGroupPolicyResponse
|
|
1384
|
+
* @package cosmos.group.v1
|
|
1385
|
+
* @see proto type: cosmos.group.v1.MsgCreateGroupPolicyResponse
|
|
1386
|
+
*/
|
|
846
1387
|
export declare const MsgCreateGroupPolicyResponse: {
|
|
847
1388
|
typeUrl: string;
|
|
848
1389
|
aminoType: string;
|
|
@@ -860,6 +1401,12 @@ export declare const MsgCreateGroupPolicyResponse: {
|
|
|
860
1401
|
toProtoMsg(message: MsgCreateGroupPolicyResponse): MsgCreateGroupPolicyResponseProtoMsg;
|
|
861
1402
|
registerTypeUrl(): void;
|
|
862
1403
|
};
|
|
1404
|
+
/**
|
|
1405
|
+
* MsgUpdateGroupPolicyAdmin is the Msg/UpdateGroupPolicyAdmin request type.
|
|
1406
|
+
* @name MsgUpdateGroupPolicyAdmin
|
|
1407
|
+
* @package cosmos.group.v1
|
|
1408
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyAdmin
|
|
1409
|
+
*/
|
|
863
1410
|
export declare const MsgUpdateGroupPolicyAdmin: {
|
|
864
1411
|
typeUrl: string;
|
|
865
1412
|
aminoType: string;
|
|
@@ -877,6 +1424,12 @@ export declare const MsgUpdateGroupPolicyAdmin: {
|
|
|
877
1424
|
toProtoMsg(message: MsgUpdateGroupPolicyAdmin): MsgUpdateGroupPolicyAdminProtoMsg;
|
|
878
1425
|
registerTypeUrl(): void;
|
|
879
1426
|
};
|
|
1427
|
+
/**
|
|
1428
|
+
* MsgUpdateGroupPolicyAdminResponse is the Msg/UpdateGroupPolicyAdmin response type.
|
|
1429
|
+
* @name MsgUpdateGroupPolicyAdminResponse
|
|
1430
|
+
* @package cosmos.group.v1
|
|
1431
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyAdminResponse
|
|
1432
|
+
*/
|
|
880
1433
|
export declare const MsgUpdateGroupPolicyAdminResponse: {
|
|
881
1434
|
typeUrl: string;
|
|
882
1435
|
aminoType: string;
|
|
@@ -894,6 +1447,12 @@ export declare const MsgUpdateGroupPolicyAdminResponse: {
|
|
|
894
1447
|
toProtoMsg(message: MsgUpdateGroupPolicyAdminResponse): MsgUpdateGroupPolicyAdminResponseProtoMsg;
|
|
895
1448
|
registerTypeUrl(): void;
|
|
896
1449
|
};
|
|
1450
|
+
/**
|
|
1451
|
+
* MsgCreateGroupWithPolicy is the Msg/CreateGroupWithPolicy request type.
|
|
1452
|
+
* @name MsgCreateGroupWithPolicy
|
|
1453
|
+
* @package cosmos.group.v1
|
|
1454
|
+
* @see proto type: cosmos.group.v1.MsgCreateGroupWithPolicy
|
|
1455
|
+
*/
|
|
897
1456
|
export declare const MsgCreateGroupWithPolicy: {
|
|
898
1457
|
typeUrl: string;
|
|
899
1458
|
aminoType: string;
|
|
@@ -911,6 +1470,12 @@ export declare const MsgCreateGroupWithPolicy: {
|
|
|
911
1470
|
toProtoMsg(message: MsgCreateGroupWithPolicy): MsgCreateGroupWithPolicyProtoMsg;
|
|
912
1471
|
registerTypeUrl(): void;
|
|
913
1472
|
};
|
|
1473
|
+
/**
|
|
1474
|
+
* MsgCreateGroupWithPolicyResponse is the Msg/CreateGroupWithPolicy response type.
|
|
1475
|
+
* @name MsgCreateGroupWithPolicyResponse
|
|
1476
|
+
* @package cosmos.group.v1
|
|
1477
|
+
* @see proto type: cosmos.group.v1.MsgCreateGroupWithPolicyResponse
|
|
1478
|
+
*/
|
|
914
1479
|
export declare const MsgCreateGroupWithPolicyResponse: {
|
|
915
1480
|
typeUrl: string;
|
|
916
1481
|
aminoType: string;
|
|
@@ -928,6 +1493,12 @@ export declare const MsgCreateGroupWithPolicyResponse: {
|
|
|
928
1493
|
toProtoMsg(message: MsgCreateGroupWithPolicyResponse): MsgCreateGroupWithPolicyResponseProtoMsg;
|
|
929
1494
|
registerTypeUrl(): void;
|
|
930
1495
|
};
|
|
1496
|
+
/**
|
|
1497
|
+
* MsgUpdateGroupPolicyDecisionPolicy is the Msg/UpdateGroupPolicyDecisionPolicy request type.
|
|
1498
|
+
* @name MsgUpdateGroupPolicyDecisionPolicy
|
|
1499
|
+
* @package cosmos.group.v1
|
|
1500
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicy
|
|
1501
|
+
*/
|
|
931
1502
|
export declare const MsgUpdateGroupPolicyDecisionPolicy: {
|
|
932
1503
|
typeUrl: string;
|
|
933
1504
|
aminoType: string;
|
|
@@ -945,6 +1516,12 @@ export declare const MsgUpdateGroupPolicyDecisionPolicy: {
|
|
|
945
1516
|
toProtoMsg(message: MsgUpdateGroupPolicyDecisionPolicy): MsgUpdateGroupPolicyDecisionPolicyProtoMsg;
|
|
946
1517
|
registerTypeUrl(): void;
|
|
947
1518
|
};
|
|
1519
|
+
/**
|
|
1520
|
+
* MsgUpdateGroupPolicyDecisionPolicyResponse is the Msg/UpdateGroupPolicyDecisionPolicy response type.
|
|
1521
|
+
* @name MsgUpdateGroupPolicyDecisionPolicyResponse
|
|
1522
|
+
* @package cosmos.group.v1
|
|
1523
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicyResponse
|
|
1524
|
+
*/
|
|
948
1525
|
export declare const MsgUpdateGroupPolicyDecisionPolicyResponse: {
|
|
949
1526
|
typeUrl: string;
|
|
950
1527
|
aminoType: string;
|
|
@@ -962,6 +1539,12 @@ export declare const MsgUpdateGroupPolicyDecisionPolicyResponse: {
|
|
|
962
1539
|
toProtoMsg(message: MsgUpdateGroupPolicyDecisionPolicyResponse): MsgUpdateGroupPolicyDecisionPolicyResponseProtoMsg;
|
|
963
1540
|
registerTypeUrl(): void;
|
|
964
1541
|
};
|
|
1542
|
+
/**
|
|
1543
|
+
* MsgUpdateGroupPolicyMetadata is the Msg/UpdateGroupPolicyMetadata request type.
|
|
1544
|
+
* @name MsgUpdateGroupPolicyMetadata
|
|
1545
|
+
* @package cosmos.group.v1
|
|
1546
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyMetadata
|
|
1547
|
+
*/
|
|
965
1548
|
export declare const MsgUpdateGroupPolicyMetadata: {
|
|
966
1549
|
typeUrl: string;
|
|
967
1550
|
aminoType: string;
|
|
@@ -979,6 +1562,12 @@ export declare const MsgUpdateGroupPolicyMetadata: {
|
|
|
979
1562
|
toProtoMsg(message: MsgUpdateGroupPolicyMetadata): MsgUpdateGroupPolicyMetadataProtoMsg;
|
|
980
1563
|
registerTypeUrl(): void;
|
|
981
1564
|
};
|
|
1565
|
+
/**
|
|
1566
|
+
* MsgUpdateGroupPolicyMetadataResponse is the Msg/UpdateGroupPolicyMetadata response type.
|
|
1567
|
+
* @name MsgUpdateGroupPolicyMetadataResponse
|
|
1568
|
+
* @package cosmos.group.v1
|
|
1569
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyMetadataResponse
|
|
1570
|
+
*/
|
|
982
1571
|
export declare const MsgUpdateGroupPolicyMetadataResponse: {
|
|
983
1572
|
typeUrl: string;
|
|
984
1573
|
aminoType: string;
|
|
@@ -996,6 +1585,12 @@ export declare const MsgUpdateGroupPolicyMetadataResponse: {
|
|
|
996
1585
|
toProtoMsg(message: MsgUpdateGroupPolicyMetadataResponse): MsgUpdateGroupPolicyMetadataResponseProtoMsg;
|
|
997
1586
|
registerTypeUrl(): void;
|
|
998
1587
|
};
|
|
1588
|
+
/**
|
|
1589
|
+
* MsgSubmitProposal is the Msg/SubmitProposal request type.
|
|
1590
|
+
* @name MsgSubmitProposal
|
|
1591
|
+
* @package cosmos.group.v1
|
|
1592
|
+
* @see proto type: cosmos.group.v1.MsgSubmitProposal
|
|
1593
|
+
*/
|
|
999
1594
|
export declare const MsgSubmitProposal: {
|
|
1000
1595
|
typeUrl: string;
|
|
1001
1596
|
aminoType: string;
|
|
@@ -1013,6 +1608,12 @@ export declare const MsgSubmitProposal: {
|
|
|
1013
1608
|
toProtoMsg(message: MsgSubmitProposal): MsgSubmitProposalProtoMsg;
|
|
1014
1609
|
registerTypeUrl(): void;
|
|
1015
1610
|
};
|
|
1611
|
+
/**
|
|
1612
|
+
* MsgSubmitProposalResponse is the Msg/SubmitProposal response type.
|
|
1613
|
+
* @name MsgSubmitProposalResponse
|
|
1614
|
+
* @package cosmos.group.v1
|
|
1615
|
+
* @see proto type: cosmos.group.v1.MsgSubmitProposalResponse
|
|
1616
|
+
*/
|
|
1016
1617
|
export declare const MsgSubmitProposalResponse: {
|
|
1017
1618
|
typeUrl: string;
|
|
1018
1619
|
aminoType: string;
|
|
@@ -1030,6 +1631,12 @@ export declare const MsgSubmitProposalResponse: {
|
|
|
1030
1631
|
toProtoMsg(message: MsgSubmitProposalResponse): MsgSubmitProposalResponseProtoMsg;
|
|
1031
1632
|
registerTypeUrl(): void;
|
|
1032
1633
|
};
|
|
1634
|
+
/**
|
|
1635
|
+
* MsgWithdrawProposal is the Msg/WithdrawProposal request type.
|
|
1636
|
+
* @name MsgWithdrawProposal
|
|
1637
|
+
* @package cosmos.group.v1
|
|
1638
|
+
* @see proto type: cosmos.group.v1.MsgWithdrawProposal
|
|
1639
|
+
*/
|
|
1033
1640
|
export declare const MsgWithdrawProposal: {
|
|
1034
1641
|
typeUrl: string;
|
|
1035
1642
|
aminoType: string;
|
|
@@ -1047,6 +1654,12 @@ export declare const MsgWithdrawProposal: {
|
|
|
1047
1654
|
toProtoMsg(message: MsgWithdrawProposal): MsgWithdrawProposalProtoMsg;
|
|
1048
1655
|
registerTypeUrl(): void;
|
|
1049
1656
|
};
|
|
1657
|
+
/**
|
|
1658
|
+
* MsgWithdrawProposalResponse is the Msg/WithdrawProposal response type.
|
|
1659
|
+
* @name MsgWithdrawProposalResponse
|
|
1660
|
+
* @package cosmos.group.v1
|
|
1661
|
+
* @see proto type: cosmos.group.v1.MsgWithdrawProposalResponse
|
|
1662
|
+
*/
|
|
1050
1663
|
export declare const MsgWithdrawProposalResponse: {
|
|
1051
1664
|
typeUrl: string;
|
|
1052
1665
|
aminoType: string;
|
|
@@ -1064,6 +1677,12 @@ export declare const MsgWithdrawProposalResponse: {
|
|
|
1064
1677
|
toProtoMsg(message: MsgWithdrawProposalResponse): MsgWithdrawProposalResponseProtoMsg;
|
|
1065
1678
|
registerTypeUrl(): void;
|
|
1066
1679
|
};
|
|
1680
|
+
/**
|
|
1681
|
+
* MsgVote is the Msg/Vote request type.
|
|
1682
|
+
* @name MsgVote
|
|
1683
|
+
* @package cosmos.group.v1
|
|
1684
|
+
* @see proto type: cosmos.group.v1.MsgVote
|
|
1685
|
+
*/
|
|
1067
1686
|
export declare const MsgVote: {
|
|
1068
1687
|
typeUrl: string;
|
|
1069
1688
|
aminoType: string;
|
|
@@ -1081,6 +1700,12 @@ export declare const MsgVote: {
|
|
|
1081
1700
|
toProtoMsg(message: MsgVote): MsgVoteProtoMsg;
|
|
1082
1701
|
registerTypeUrl(): void;
|
|
1083
1702
|
};
|
|
1703
|
+
/**
|
|
1704
|
+
* MsgVoteResponse is the Msg/Vote response type.
|
|
1705
|
+
* @name MsgVoteResponse
|
|
1706
|
+
* @package cosmos.group.v1
|
|
1707
|
+
* @see proto type: cosmos.group.v1.MsgVoteResponse
|
|
1708
|
+
*/
|
|
1084
1709
|
export declare const MsgVoteResponse: {
|
|
1085
1710
|
typeUrl: string;
|
|
1086
1711
|
aminoType: string;
|
|
@@ -1098,6 +1723,12 @@ export declare const MsgVoteResponse: {
|
|
|
1098
1723
|
toProtoMsg(message: MsgVoteResponse): MsgVoteResponseProtoMsg;
|
|
1099
1724
|
registerTypeUrl(): void;
|
|
1100
1725
|
};
|
|
1726
|
+
/**
|
|
1727
|
+
* MsgExec is the Msg/Exec request type.
|
|
1728
|
+
* @name MsgExec
|
|
1729
|
+
* @package cosmos.group.v1
|
|
1730
|
+
* @see proto type: cosmos.group.v1.MsgExec
|
|
1731
|
+
*/
|
|
1101
1732
|
export declare const MsgExec: {
|
|
1102
1733
|
typeUrl: string;
|
|
1103
1734
|
aminoType: string;
|
|
@@ -1115,6 +1746,12 @@ export declare const MsgExec: {
|
|
|
1115
1746
|
toProtoMsg(message: MsgExec): MsgExecProtoMsg;
|
|
1116
1747
|
registerTypeUrl(): void;
|
|
1117
1748
|
};
|
|
1749
|
+
/**
|
|
1750
|
+
* MsgExecResponse is the Msg/Exec request type.
|
|
1751
|
+
* @name MsgExecResponse
|
|
1752
|
+
* @package cosmos.group.v1
|
|
1753
|
+
* @see proto type: cosmos.group.v1.MsgExecResponse
|
|
1754
|
+
*/
|
|
1118
1755
|
export declare const MsgExecResponse: {
|
|
1119
1756
|
typeUrl: string;
|
|
1120
1757
|
aminoType: string;
|
|
@@ -1132,6 +1769,12 @@ export declare const MsgExecResponse: {
|
|
|
1132
1769
|
toProtoMsg(message: MsgExecResponse): MsgExecResponseProtoMsg;
|
|
1133
1770
|
registerTypeUrl(): void;
|
|
1134
1771
|
};
|
|
1772
|
+
/**
|
|
1773
|
+
* MsgLeaveGroup is the Msg/LeaveGroup request type.
|
|
1774
|
+
* @name MsgLeaveGroup
|
|
1775
|
+
* @package cosmos.group.v1
|
|
1776
|
+
* @see proto type: cosmos.group.v1.MsgLeaveGroup
|
|
1777
|
+
*/
|
|
1135
1778
|
export declare const MsgLeaveGroup: {
|
|
1136
1779
|
typeUrl: string;
|
|
1137
1780
|
aminoType: string;
|
|
@@ -1149,6 +1792,12 @@ export declare const MsgLeaveGroup: {
|
|
|
1149
1792
|
toProtoMsg(message: MsgLeaveGroup): MsgLeaveGroupProtoMsg;
|
|
1150
1793
|
registerTypeUrl(): void;
|
|
1151
1794
|
};
|
|
1795
|
+
/**
|
|
1796
|
+
* MsgLeaveGroupResponse is the Msg/LeaveGroup response type.
|
|
1797
|
+
* @name MsgLeaveGroupResponse
|
|
1798
|
+
* @package cosmos.group.v1
|
|
1799
|
+
* @see proto type: cosmos.group.v1.MsgLeaveGroupResponse
|
|
1800
|
+
*/
|
|
1152
1801
|
export declare const MsgLeaveGroupResponse: {
|
|
1153
1802
|
typeUrl: string;
|
|
1154
1803
|
aminoType: string;
|