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
|
@@ -53,6 +53,12 @@ function createBaseMsgCreateGroup() {
|
|
|
53
53
|
metadata: ""
|
|
54
54
|
};
|
|
55
55
|
}
|
|
56
|
+
/**
|
|
57
|
+
* MsgCreateGroup is the Msg/CreateGroup request type.
|
|
58
|
+
* @name MsgCreateGroup
|
|
59
|
+
* @package cosmos.group.v1
|
|
60
|
+
* @see proto type: cosmos.group.v1.MsgCreateGroup
|
|
61
|
+
*/
|
|
56
62
|
export const MsgCreateGroup = {
|
|
57
63
|
typeUrl: "/cosmos.group.v1.MsgCreateGroup",
|
|
58
64
|
aminoType: "cosmos-sdk/MsgCreateGroup",
|
|
@@ -160,6 +166,12 @@ function createBaseMsgCreateGroupResponse() {
|
|
|
160
166
|
groupId: BigInt(0)
|
|
161
167
|
};
|
|
162
168
|
}
|
|
169
|
+
/**
|
|
170
|
+
* MsgCreateGroupResponse is the Msg/CreateGroup response type.
|
|
171
|
+
* @name MsgCreateGroupResponse
|
|
172
|
+
* @package cosmos.group.v1
|
|
173
|
+
* @see proto type: cosmos.group.v1.MsgCreateGroupResponse
|
|
174
|
+
*/
|
|
163
175
|
export const MsgCreateGroupResponse = {
|
|
164
176
|
typeUrl: "/cosmos.group.v1.MsgCreateGroupResponse",
|
|
165
177
|
aminoType: "cosmos-sdk/MsgCreateGroupResponse",
|
|
@@ -239,6 +251,12 @@ function createBaseMsgUpdateGroupMembers() {
|
|
|
239
251
|
memberUpdates: []
|
|
240
252
|
};
|
|
241
253
|
}
|
|
254
|
+
/**
|
|
255
|
+
* MsgUpdateGroupMembers is the Msg/UpdateGroupMembers request type.
|
|
256
|
+
* @name MsgUpdateGroupMembers
|
|
257
|
+
* @package cosmos.group.v1
|
|
258
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupMembers
|
|
259
|
+
*/
|
|
242
260
|
export const MsgUpdateGroupMembers = {
|
|
243
261
|
typeUrl: "/cosmos.group.v1.MsgUpdateGroupMembers",
|
|
244
262
|
aminoType: "cosmos-sdk/MsgUpdateGroupMembers",
|
|
@@ -344,6 +362,12 @@ export const MsgUpdateGroupMembers = {
|
|
|
344
362
|
function createBaseMsgUpdateGroupMembersResponse() {
|
|
345
363
|
return {};
|
|
346
364
|
}
|
|
365
|
+
/**
|
|
366
|
+
* MsgUpdateGroupMembersResponse is the Msg/UpdateGroupMembers response type.
|
|
367
|
+
* @name MsgUpdateGroupMembersResponse
|
|
368
|
+
* @package cosmos.group.v1
|
|
369
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupMembersResponse
|
|
370
|
+
*/
|
|
347
371
|
export const MsgUpdateGroupMembersResponse = {
|
|
348
372
|
typeUrl: "/cosmos.group.v1.MsgUpdateGroupMembersResponse",
|
|
349
373
|
aminoType: "cosmos-sdk/MsgUpdateGroupMembersResponse",
|
|
@@ -412,6 +436,12 @@ function createBaseMsgUpdateGroupAdmin() {
|
|
|
412
436
|
newAdmin: ""
|
|
413
437
|
};
|
|
414
438
|
}
|
|
439
|
+
/**
|
|
440
|
+
* MsgUpdateGroupAdmin is the Msg/UpdateGroupAdmin request type.
|
|
441
|
+
* @name MsgUpdateGroupAdmin
|
|
442
|
+
* @package cosmos.group.v1
|
|
443
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupAdmin
|
|
444
|
+
*/
|
|
415
445
|
export const MsgUpdateGroupAdmin = {
|
|
416
446
|
typeUrl: "/cosmos.group.v1.MsgUpdateGroupAdmin",
|
|
417
447
|
aminoType: "cosmos-sdk/MsgUpdateGroupAdmin",
|
|
@@ -509,6 +539,12 @@ export const MsgUpdateGroupAdmin = {
|
|
|
509
539
|
function createBaseMsgUpdateGroupAdminResponse() {
|
|
510
540
|
return {};
|
|
511
541
|
}
|
|
542
|
+
/**
|
|
543
|
+
* MsgUpdateGroupAdminResponse is the Msg/UpdateGroupAdmin response type.
|
|
544
|
+
* @name MsgUpdateGroupAdminResponse
|
|
545
|
+
* @package cosmos.group.v1
|
|
546
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupAdminResponse
|
|
547
|
+
*/
|
|
512
548
|
export const MsgUpdateGroupAdminResponse = {
|
|
513
549
|
typeUrl: "/cosmos.group.v1.MsgUpdateGroupAdminResponse",
|
|
514
550
|
aminoType: "cosmos-sdk/MsgUpdateGroupAdminResponse",
|
|
@@ -577,6 +613,12 @@ function createBaseMsgUpdateGroupMetadata() {
|
|
|
577
613
|
metadata: ""
|
|
578
614
|
};
|
|
579
615
|
}
|
|
616
|
+
/**
|
|
617
|
+
* MsgUpdateGroupMetadata is the Msg/UpdateGroupMetadata request type.
|
|
618
|
+
* @name MsgUpdateGroupMetadata
|
|
619
|
+
* @package cosmos.group.v1
|
|
620
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupMetadata
|
|
621
|
+
*/
|
|
580
622
|
export const MsgUpdateGroupMetadata = {
|
|
581
623
|
typeUrl: "/cosmos.group.v1.MsgUpdateGroupMetadata",
|
|
582
624
|
aminoType: "cosmos-sdk/MsgUpdateGroupMetadata",
|
|
@@ -674,6 +716,12 @@ export const MsgUpdateGroupMetadata = {
|
|
|
674
716
|
function createBaseMsgUpdateGroupMetadataResponse() {
|
|
675
717
|
return {};
|
|
676
718
|
}
|
|
719
|
+
/**
|
|
720
|
+
* MsgUpdateGroupMetadataResponse is the Msg/UpdateGroupMetadata response type.
|
|
721
|
+
* @name MsgUpdateGroupMetadataResponse
|
|
722
|
+
* @package cosmos.group.v1
|
|
723
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupMetadataResponse
|
|
724
|
+
*/
|
|
677
725
|
export const MsgUpdateGroupMetadataResponse = {
|
|
678
726
|
typeUrl: "/cosmos.group.v1.MsgUpdateGroupMetadataResponse",
|
|
679
727
|
aminoType: "cosmos-sdk/MsgUpdateGroupMetadataResponse",
|
|
@@ -743,6 +791,12 @@ function createBaseMsgCreateGroupPolicy() {
|
|
|
743
791
|
decisionPolicy: undefined
|
|
744
792
|
};
|
|
745
793
|
}
|
|
794
|
+
/**
|
|
795
|
+
* MsgCreateGroupPolicy is the Msg/CreateGroupPolicy request type.
|
|
796
|
+
* @name MsgCreateGroupPolicy
|
|
797
|
+
* @package cosmos.group.v1
|
|
798
|
+
* @see proto type: cosmos.group.v1.MsgCreateGroupPolicy
|
|
799
|
+
*/
|
|
746
800
|
export const MsgCreateGroupPolicy = {
|
|
747
801
|
typeUrl: "/cosmos.group.v1.MsgCreateGroupPolicy",
|
|
748
802
|
aminoType: "cosmos-sdk/MsgCreateGroupPolicy",
|
|
@@ -859,6 +913,12 @@ function createBaseMsgCreateGroupPolicyResponse() {
|
|
|
859
913
|
address: ""
|
|
860
914
|
};
|
|
861
915
|
}
|
|
916
|
+
/**
|
|
917
|
+
* MsgCreateGroupPolicyResponse is the Msg/CreateGroupPolicy response type.
|
|
918
|
+
* @name MsgCreateGroupPolicyResponse
|
|
919
|
+
* @package cosmos.group.v1
|
|
920
|
+
* @see proto type: cosmos.group.v1.MsgCreateGroupPolicyResponse
|
|
921
|
+
*/
|
|
862
922
|
export const MsgCreateGroupPolicyResponse = {
|
|
863
923
|
typeUrl: "/cosmos.group.v1.MsgCreateGroupPolicyResponse",
|
|
864
924
|
aminoType: "cosmos-sdk/MsgCreateGroupPolicyResponse",
|
|
@@ -938,6 +998,12 @@ function createBaseMsgUpdateGroupPolicyAdmin() {
|
|
|
938
998
|
newAdmin: ""
|
|
939
999
|
};
|
|
940
1000
|
}
|
|
1001
|
+
/**
|
|
1002
|
+
* MsgUpdateGroupPolicyAdmin is the Msg/UpdateGroupPolicyAdmin request type.
|
|
1003
|
+
* @name MsgUpdateGroupPolicyAdmin
|
|
1004
|
+
* @package cosmos.group.v1
|
|
1005
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyAdmin
|
|
1006
|
+
*/
|
|
941
1007
|
export const MsgUpdateGroupPolicyAdmin = {
|
|
942
1008
|
typeUrl: "/cosmos.group.v1.MsgUpdateGroupPolicyAdmin",
|
|
943
1009
|
aminoType: "cosmos-sdk/MsgUpdateGroupPolicyAdmin",
|
|
@@ -1035,6 +1101,12 @@ export const MsgUpdateGroupPolicyAdmin = {
|
|
|
1035
1101
|
function createBaseMsgUpdateGroupPolicyAdminResponse() {
|
|
1036
1102
|
return {};
|
|
1037
1103
|
}
|
|
1104
|
+
/**
|
|
1105
|
+
* MsgUpdateGroupPolicyAdminResponse is the Msg/UpdateGroupPolicyAdmin response type.
|
|
1106
|
+
* @name MsgUpdateGroupPolicyAdminResponse
|
|
1107
|
+
* @package cosmos.group.v1
|
|
1108
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyAdminResponse
|
|
1109
|
+
*/
|
|
1038
1110
|
export const MsgUpdateGroupPolicyAdminResponse = {
|
|
1039
1111
|
typeUrl: "/cosmos.group.v1.MsgUpdateGroupPolicyAdminResponse",
|
|
1040
1112
|
aminoType: "cosmos-sdk/MsgUpdateGroupPolicyAdminResponse",
|
|
@@ -1106,6 +1178,12 @@ function createBaseMsgCreateGroupWithPolicy() {
|
|
|
1106
1178
|
decisionPolicy: undefined
|
|
1107
1179
|
};
|
|
1108
1180
|
}
|
|
1181
|
+
/**
|
|
1182
|
+
* MsgCreateGroupWithPolicy is the Msg/CreateGroupWithPolicy request type.
|
|
1183
|
+
* @name MsgCreateGroupWithPolicy
|
|
1184
|
+
* @package cosmos.group.v1
|
|
1185
|
+
* @see proto type: cosmos.group.v1.MsgCreateGroupWithPolicy
|
|
1186
|
+
*/
|
|
1109
1187
|
export const MsgCreateGroupWithPolicy = {
|
|
1110
1188
|
typeUrl: "/cosmos.group.v1.MsgCreateGroupWithPolicy",
|
|
1111
1189
|
aminoType: "cosmos-sdk/MsgCreateGroupWithPolicy",
|
|
@@ -1248,6 +1326,12 @@ function createBaseMsgCreateGroupWithPolicyResponse() {
|
|
|
1248
1326
|
groupPolicyAddress: ""
|
|
1249
1327
|
};
|
|
1250
1328
|
}
|
|
1329
|
+
/**
|
|
1330
|
+
* MsgCreateGroupWithPolicyResponse is the Msg/CreateGroupWithPolicy response type.
|
|
1331
|
+
* @name MsgCreateGroupWithPolicyResponse
|
|
1332
|
+
* @package cosmos.group.v1
|
|
1333
|
+
* @see proto type: cosmos.group.v1.MsgCreateGroupWithPolicyResponse
|
|
1334
|
+
*/
|
|
1251
1335
|
export const MsgCreateGroupWithPolicyResponse = {
|
|
1252
1336
|
typeUrl: "/cosmos.group.v1.MsgCreateGroupWithPolicyResponse",
|
|
1253
1337
|
aminoType: "cosmos-sdk/MsgCreateGroupWithPolicyResponse",
|
|
@@ -1338,6 +1422,12 @@ function createBaseMsgUpdateGroupPolicyDecisionPolicy() {
|
|
|
1338
1422
|
decisionPolicy: undefined
|
|
1339
1423
|
};
|
|
1340
1424
|
}
|
|
1425
|
+
/**
|
|
1426
|
+
* MsgUpdateGroupPolicyDecisionPolicy is the Msg/UpdateGroupPolicyDecisionPolicy request type.
|
|
1427
|
+
* @name MsgUpdateGroupPolicyDecisionPolicy
|
|
1428
|
+
* @package cosmos.group.v1
|
|
1429
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicy
|
|
1430
|
+
*/
|
|
1341
1431
|
export const MsgUpdateGroupPolicyDecisionPolicy = {
|
|
1342
1432
|
typeUrl: "/cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicy",
|
|
1343
1433
|
aminoType: "cosmos-sdk/MsgUpdateGroupDecisionPolicy",
|
|
@@ -1441,6 +1531,12 @@ export const MsgUpdateGroupPolicyDecisionPolicy = {
|
|
|
1441
1531
|
function createBaseMsgUpdateGroupPolicyDecisionPolicyResponse() {
|
|
1442
1532
|
return {};
|
|
1443
1533
|
}
|
|
1534
|
+
/**
|
|
1535
|
+
* MsgUpdateGroupPolicyDecisionPolicyResponse is the Msg/UpdateGroupPolicyDecisionPolicy response type.
|
|
1536
|
+
* @name MsgUpdateGroupPolicyDecisionPolicyResponse
|
|
1537
|
+
* @package cosmos.group.v1
|
|
1538
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicyResponse
|
|
1539
|
+
*/
|
|
1444
1540
|
export const MsgUpdateGroupPolicyDecisionPolicyResponse = {
|
|
1445
1541
|
typeUrl: "/cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicyResponse",
|
|
1446
1542
|
aminoType: "cosmos-sdk/MsgUpdateGroupPolicyDecisionPolicyResponse",
|
|
@@ -1509,6 +1605,12 @@ function createBaseMsgUpdateGroupPolicyMetadata() {
|
|
|
1509
1605
|
metadata: ""
|
|
1510
1606
|
};
|
|
1511
1607
|
}
|
|
1608
|
+
/**
|
|
1609
|
+
* MsgUpdateGroupPolicyMetadata is the Msg/UpdateGroupPolicyMetadata request type.
|
|
1610
|
+
* @name MsgUpdateGroupPolicyMetadata
|
|
1611
|
+
* @package cosmos.group.v1
|
|
1612
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyMetadata
|
|
1613
|
+
*/
|
|
1512
1614
|
export const MsgUpdateGroupPolicyMetadata = {
|
|
1513
1615
|
typeUrl: "/cosmos.group.v1.MsgUpdateGroupPolicyMetadata",
|
|
1514
1616
|
aminoType: "cosmos-sdk/MsgUpdateGroupPolicyMetadata",
|
|
@@ -1606,6 +1708,12 @@ export const MsgUpdateGroupPolicyMetadata = {
|
|
|
1606
1708
|
function createBaseMsgUpdateGroupPolicyMetadataResponse() {
|
|
1607
1709
|
return {};
|
|
1608
1710
|
}
|
|
1711
|
+
/**
|
|
1712
|
+
* MsgUpdateGroupPolicyMetadataResponse is the Msg/UpdateGroupPolicyMetadata response type.
|
|
1713
|
+
* @name MsgUpdateGroupPolicyMetadataResponse
|
|
1714
|
+
* @package cosmos.group.v1
|
|
1715
|
+
* @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyMetadataResponse
|
|
1716
|
+
*/
|
|
1609
1717
|
export const MsgUpdateGroupPolicyMetadataResponse = {
|
|
1610
1718
|
typeUrl: "/cosmos.group.v1.MsgUpdateGroupPolicyMetadataResponse",
|
|
1611
1719
|
aminoType: "cosmos-sdk/MsgUpdateGroupPolicyMetadataResponse",
|
|
@@ -1678,6 +1786,12 @@ function createBaseMsgSubmitProposal() {
|
|
|
1678
1786
|
summary: ""
|
|
1679
1787
|
};
|
|
1680
1788
|
}
|
|
1789
|
+
/**
|
|
1790
|
+
* MsgSubmitProposal is the Msg/SubmitProposal request type.
|
|
1791
|
+
* @name MsgSubmitProposal
|
|
1792
|
+
* @package cosmos.group.v1
|
|
1793
|
+
* @see proto type: cosmos.group.v1.MsgSubmitProposal
|
|
1794
|
+
*/
|
|
1681
1795
|
export const MsgSubmitProposal = {
|
|
1682
1796
|
typeUrl: "/cosmos.group.v1.MsgSubmitProposal",
|
|
1683
1797
|
aminoType: "cosmos-sdk/group/MsgSubmitProposal",
|
|
@@ -1827,6 +1941,12 @@ function createBaseMsgSubmitProposalResponse() {
|
|
|
1827
1941
|
proposalId: BigInt(0)
|
|
1828
1942
|
};
|
|
1829
1943
|
}
|
|
1944
|
+
/**
|
|
1945
|
+
* MsgSubmitProposalResponse is the Msg/SubmitProposal response type.
|
|
1946
|
+
* @name MsgSubmitProposalResponse
|
|
1947
|
+
* @package cosmos.group.v1
|
|
1948
|
+
* @see proto type: cosmos.group.v1.MsgSubmitProposalResponse
|
|
1949
|
+
*/
|
|
1830
1950
|
export const MsgSubmitProposalResponse = {
|
|
1831
1951
|
typeUrl: "/cosmos.group.v1.MsgSubmitProposalResponse",
|
|
1832
1952
|
aminoType: "cosmos-sdk/MsgSubmitProposalResponse",
|
|
@@ -1905,6 +2025,12 @@ function createBaseMsgWithdrawProposal() {
|
|
|
1905
2025
|
address: ""
|
|
1906
2026
|
};
|
|
1907
2027
|
}
|
|
2028
|
+
/**
|
|
2029
|
+
* MsgWithdrawProposal is the Msg/WithdrawProposal request type.
|
|
2030
|
+
* @name MsgWithdrawProposal
|
|
2031
|
+
* @package cosmos.group.v1
|
|
2032
|
+
* @see proto type: cosmos.group.v1.MsgWithdrawProposal
|
|
2033
|
+
*/
|
|
1908
2034
|
export const MsgWithdrawProposal = {
|
|
1909
2035
|
typeUrl: "/cosmos.group.v1.MsgWithdrawProposal",
|
|
1910
2036
|
aminoType: "cosmos-sdk/group/MsgWithdrawProposal",
|
|
@@ -1991,6 +2117,12 @@ export const MsgWithdrawProposal = {
|
|
|
1991
2117
|
function createBaseMsgWithdrawProposalResponse() {
|
|
1992
2118
|
return {};
|
|
1993
2119
|
}
|
|
2120
|
+
/**
|
|
2121
|
+
* MsgWithdrawProposalResponse is the Msg/WithdrawProposal response type.
|
|
2122
|
+
* @name MsgWithdrawProposalResponse
|
|
2123
|
+
* @package cosmos.group.v1
|
|
2124
|
+
* @see proto type: cosmos.group.v1.MsgWithdrawProposalResponse
|
|
2125
|
+
*/
|
|
1994
2126
|
export const MsgWithdrawProposalResponse = {
|
|
1995
2127
|
typeUrl: "/cosmos.group.v1.MsgWithdrawProposalResponse",
|
|
1996
2128
|
aminoType: "cosmos-sdk/MsgWithdrawProposalResponse",
|
|
@@ -2061,6 +2193,12 @@ function createBaseMsgVote() {
|
|
|
2061
2193
|
exec: 0
|
|
2062
2194
|
};
|
|
2063
2195
|
}
|
|
2196
|
+
/**
|
|
2197
|
+
* MsgVote is the Msg/Vote request type.
|
|
2198
|
+
* @name MsgVote
|
|
2199
|
+
* @package cosmos.group.v1
|
|
2200
|
+
* @see proto type: cosmos.group.v1.MsgVote
|
|
2201
|
+
*/
|
|
2064
2202
|
export const MsgVote = {
|
|
2065
2203
|
typeUrl: "/cosmos.group.v1.MsgVote",
|
|
2066
2204
|
aminoType: "cosmos-sdk/group/MsgVote",
|
|
@@ -2180,6 +2318,12 @@ export const MsgVote = {
|
|
|
2180
2318
|
function createBaseMsgVoteResponse() {
|
|
2181
2319
|
return {};
|
|
2182
2320
|
}
|
|
2321
|
+
/**
|
|
2322
|
+
* MsgVoteResponse is the Msg/Vote response type.
|
|
2323
|
+
* @name MsgVoteResponse
|
|
2324
|
+
* @package cosmos.group.v1
|
|
2325
|
+
* @see proto type: cosmos.group.v1.MsgVoteResponse
|
|
2326
|
+
*/
|
|
2183
2327
|
export const MsgVoteResponse = {
|
|
2184
2328
|
typeUrl: "/cosmos.group.v1.MsgVoteResponse",
|
|
2185
2329
|
aminoType: "cosmos-sdk/MsgVoteResponse",
|
|
@@ -2247,6 +2391,12 @@ function createBaseMsgExec() {
|
|
|
2247
2391
|
executor: ""
|
|
2248
2392
|
};
|
|
2249
2393
|
}
|
|
2394
|
+
/**
|
|
2395
|
+
* MsgExec is the Msg/Exec request type.
|
|
2396
|
+
* @name MsgExec
|
|
2397
|
+
* @package cosmos.group.v1
|
|
2398
|
+
* @see proto type: cosmos.group.v1.MsgExec
|
|
2399
|
+
*/
|
|
2250
2400
|
export const MsgExec = {
|
|
2251
2401
|
typeUrl: "/cosmos.group.v1.MsgExec",
|
|
2252
2402
|
aminoType: "cosmos-sdk/group/MsgExec",
|
|
@@ -2335,6 +2485,12 @@ function createBaseMsgExecResponse() {
|
|
|
2335
2485
|
result: 0
|
|
2336
2486
|
};
|
|
2337
2487
|
}
|
|
2488
|
+
/**
|
|
2489
|
+
* MsgExecResponse is the Msg/Exec request type.
|
|
2490
|
+
* @name MsgExecResponse
|
|
2491
|
+
* @package cosmos.group.v1
|
|
2492
|
+
* @see proto type: cosmos.group.v1.MsgExecResponse
|
|
2493
|
+
*/
|
|
2338
2494
|
export const MsgExecResponse = {
|
|
2339
2495
|
typeUrl: "/cosmos.group.v1.MsgExecResponse",
|
|
2340
2496
|
aminoType: "cosmos-sdk/MsgExecResponse",
|
|
@@ -2413,6 +2569,12 @@ function createBaseMsgLeaveGroup() {
|
|
|
2413
2569
|
groupId: BigInt(0)
|
|
2414
2570
|
};
|
|
2415
2571
|
}
|
|
2572
|
+
/**
|
|
2573
|
+
* MsgLeaveGroup is the Msg/LeaveGroup request type.
|
|
2574
|
+
* @name MsgLeaveGroup
|
|
2575
|
+
* @package cosmos.group.v1
|
|
2576
|
+
* @see proto type: cosmos.group.v1.MsgLeaveGroup
|
|
2577
|
+
*/
|
|
2416
2578
|
export const MsgLeaveGroup = {
|
|
2417
2579
|
typeUrl: "/cosmos.group.v1.MsgLeaveGroup",
|
|
2418
2580
|
aminoType: "cosmos-sdk/group/MsgLeaveGroup",
|
|
@@ -2499,6 +2661,12 @@ export const MsgLeaveGroup = {
|
|
|
2499
2661
|
function createBaseMsgLeaveGroupResponse() {
|
|
2500
2662
|
return {};
|
|
2501
2663
|
}
|
|
2664
|
+
/**
|
|
2665
|
+
* MsgLeaveGroupResponse is the Msg/LeaveGroup response type.
|
|
2666
|
+
* @name MsgLeaveGroupResponse
|
|
2667
|
+
* @package cosmos.group.v1
|
|
2668
|
+
* @see proto type: cosmos.group.v1.MsgLeaveGroupResponse
|
|
2669
|
+
*/
|
|
2502
2670
|
export const MsgLeaveGroupResponse = {
|
|
2503
2671
|
typeUrl: "/cosmos.group.v1.MsgLeaveGroupResponse",
|
|
2504
2672
|
aminoType: "cosmos-sdk/MsgLeaveGroupResponse",
|
|
@@ -1,58 +1,128 @@
|
|
|
1
1
|
import { buildTx } from "../../../helper-func-types";
|
|
2
2
|
import { MsgCreateGroup, MsgUpdateGroupMembers, MsgUpdateGroupAdmin, MsgUpdateGroupMetadata, MsgCreateGroupPolicy, MsgCreateGroupWithPolicy, MsgUpdateGroupPolicyAdmin, MsgUpdateGroupPolicyDecisionPolicy, MsgUpdateGroupPolicyMetadata, MsgSubmitProposal, MsgWithdrawProposal, MsgVote, MsgExec, MsgLeaveGroup } from "./tx";
|
|
3
|
-
|
|
3
|
+
/**
|
|
4
|
+
* CreateGroup creates a new group with an admin account address, a list of members and some optional metadata.
|
|
5
|
+
* @name createGroup
|
|
6
|
+
* @package cosmos.group.v1
|
|
7
|
+
* @see proto service: cosmos.group.v1.CreateGroup
|
|
8
|
+
*/
|
|
4
9
|
export const createGroup = buildTx({
|
|
5
10
|
msg: MsgCreateGroup
|
|
6
11
|
});
|
|
7
|
-
|
|
12
|
+
/**
|
|
13
|
+
* UpdateGroupMembers updates the group members with given group id and admin address.
|
|
14
|
+
* @name updateGroupMembers
|
|
15
|
+
* @package cosmos.group.v1
|
|
16
|
+
* @see proto service: cosmos.group.v1.UpdateGroupMembers
|
|
17
|
+
*/
|
|
8
18
|
export const updateGroupMembers = buildTx({
|
|
9
19
|
msg: MsgUpdateGroupMembers
|
|
10
20
|
});
|
|
11
|
-
|
|
21
|
+
/**
|
|
22
|
+
* UpdateGroupAdmin updates the group admin with given group id and previous admin address.
|
|
23
|
+
* @name updateGroupAdmin
|
|
24
|
+
* @package cosmos.group.v1
|
|
25
|
+
* @see proto service: cosmos.group.v1.UpdateGroupAdmin
|
|
26
|
+
*/
|
|
12
27
|
export const updateGroupAdmin = buildTx({
|
|
13
28
|
msg: MsgUpdateGroupAdmin
|
|
14
29
|
});
|
|
15
|
-
|
|
30
|
+
/**
|
|
31
|
+
* UpdateGroupMetadata updates the group metadata with given group id and admin address.
|
|
32
|
+
* @name updateGroupMetadata
|
|
33
|
+
* @package cosmos.group.v1
|
|
34
|
+
* @see proto service: cosmos.group.v1.UpdateGroupMetadata
|
|
35
|
+
*/
|
|
16
36
|
export const updateGroupMetadata = buildTx({
|
|
17
37
|
msg: MsgUpdateGroupMetadata
|
|
18
38
|
});
|
|
19
|
-
|
|
39
|
+
/**
|
|
40
|
+
* CreateGroupPolicy creates a new group policy using given DecisionPolicy.
|
|
41
|
+
* @name createGroupPolicy
|
|
42
|
+
* @package cosmos.group.v1
|
|
43
|
+
* @see proto service: cosmos.group.v1.CreateGroupPolicy
|
|
44
|
+
*/
|
|
20
45
|
export const createGroupPolicy = buildTx({
|
|
21
46
|
msg: MsgCreateGroupPolicy
|
|
22
47
|
});
|
|
23
|
-
|
|
48
|
+
/**
|
|
49
|
+
* CreateGroupWithPolicy creates a new group with policy.
|
|
50
|
+
* @name createGroupWithPolicy
|
|
51
|
+
* @package cosmos.group.v1
|
|
52
|
+
* @see proto service: cosmos.group.v1.CreateGroupWithPolicy
|
|
53
|
+
*/
|
|
24
54
|
export const createGroupWithPolicy = buildTx({
|
|
25
55
|
msg: MsgCreateGroupWithPolicy
|
|
26
56
|
});
|
|
27
|
-
|
|
57
|
+
/**
|
|
58
|
+
* UpdateGroupPolicyAdmin updates a group policy admin.
|
|
59
|
+
* @name updateGroupPolicyAdmin
|
|
60
|
+
* @package cosmos.group.v1
|
|
61
|
+
* @see proto service: cosmos.group.v1.UpdateGroupPolicyAdmin
|
|
62
|
+
*/
|
|
28
63
|
export const updateGroupPolicyAdmin = buildTx({
|
|
29
64
|
msg: MsgUpdateGroupPolicyAdmin
|
|
30
65
|
});
|
|
31
|
-
|
|
66
|
+
/**
|
|
67
|
+
* UpdateGroupPolicyDecisionPolicy allows a group policy's decision policy to be updated.
|
|
68
|
+
* @name updateGroupPolicyDecisionPolicy
|
|
69
|
+
* @package cosmos.group.v1
|
|
70
|
+
* @see proto service: cosmos.group.v1.UpdateGroupPolicyDecisionPolicy
|
|
71
|
+
*/
|
|
32
72
|
export const updateGroupPolicyDecisionPolicy = buildTx({
|
|
33
73
|
msg: MsgUpdateGroupPolicyDecisionPolicy
|
|
34
74
|
});
|
|
35
|
-
|
|
75
|
+
/**
|
|
76
|
+
* UpdateGroupPolicyMetadata updates a group policy metadata.
|
|
77
|
+
* @name updateGroupPolicyMetadata
|
|
78
|
+
* @package cosmos.group.v1
|
|
79
|
+
* @see proto service: cosmos.group.v1.UpdateGroupPolicyMetadata
|
|
80
|
+
*/
|
|
36
81
|
export const updateGroupPolicyMetadata = buildTx({
|
|
37
82
|
msg: MsgUpdateGroupPolicyMetadata
|
|
38
83
|
});
|
|
39
|
-
|
|
84
|
+
/**
|
|
85
|
+
* SubmitProposal submits a new proposal.
|
|
86
|
+
* @name submitProposal
|
|
87
|
+
* @package cosmos.group.v1
|
|
88
|
+
* @see proto service: cosmos.group.v1.SubmitProposal
|
|
89
|
+
*/
|
|
40
90
|
export const submitProposal = buildTx({
|
|
41
91
|
msg: MsgSubmitProposal
|
|
42
92
|
});
|
|
43
|
-
|
|
93
|
+
/**
|
|
94
|
+
* WithdrawProposal withdraws a proposal.
|
|
95
|
+
* @name withdrawProposal
|
|
96
|
+
* @package cosmos.group.v1
|
|
97
|
+
* @see proto service: cosmos.group.v1.WithdrawProposal
|
|
98
|
+
*/
|
|
44
99
|
export const withdrawProposal = buildTx({
|
|
45
100
|
msg: MsgWithdrawProposal
|
|
46
101
|
});
|
|
47
|
-
|
|
102
|
+
/**
|
|
103
|
+
* Vote allows a voter to vote on a proposal.
|
|
104
|
+
* @name vote
|
|
105
|
+
* @package cosmos.group.v1
|
|
106
|
+
* @see proto service: cosmos.group.v1.Vote
|
|
107
|
+
*/
|
|
48
108
|
export const vote = buildTx({
|
|
49
109
|
msg: MsgVote
|
|
50
110
|
});
|
|
51
|
-
|
|
111
|
+
/**
|
|
112
|
+
* Exec executes a proposal.
|
|
113
|
+
* @name exec
|
|
114
|
+
* @package cosmos.group.v1
|
|
115
|
+
* @see proto service: cosmos.group.v1.Exec
|
|
116
|
+
*/
|
|
52
117
|
export const exec = buildTx({
|
|
53
118
|
msg: MsgExec
|
|
54
119
|
});
|
|
55
|
-
|
|
120
|
+
/**
|
|
121
|
+
* LeaveGroup allows a group member to leave the group.
|
|
122
|
+
* @name leaveGroup
|
|
123
|
+
* @package cosmos.group.v1
|
|
124
|
+
* @see proto service: cosmos.group.v1.LeaveGroup
|
|
125
|
+
*/
|
|
56
126
|
export const leaveGroup = buildTx({
|
|
57
127
|
msg: MsgLeaveGroup
|
|
58
128
|
});
|
|
@@ -195,6 +195,13 @@ function createBaseMember() {
|
|
|
195
195
|
addedAt: new Date()
|
|
196
196
|
};
|
|
197
197
|
}
|
|
198
|
+
/**
|
|
199
|
+
* Member represents a group member with an account address,
|
|
200
|
+
* non-zero weight, metadata and added_at timestamp.
|
|
201
|
+
* @name Member
|
|
202
|
+
* @package cosmos.group.v1
|
|
203
|
+
* @see proto type: cosmos.group.v1.Member
|
|
204
|
+
*/
|
|
198
205
|
export const Member = {
|
|
199
206
|
typeUrl: "/cosmos.group.v1.Member",
|
|
200
207
|
aminoType: "cosmos-sdk/Member",
|
|
@@ -307,6 +314,14 @@ function createBaseMemberRequest() {
|
|
|
307
314
|
metadata: ""
|
|
308
315
|
};
|
|
309
316
|
}
|
|
317
|
+
/**
|
|
318
|
+
* MemberRequest represents a group member to be used in Msg server requests.
|
|
319
|
+
* Contrary to `Member`, it doesn't have any `added_at` field
|
|
320
|
+
* since this field cannot be set as part of requests.
|
|
321
|
+
* @name MemberRequest
|
|
322
|
+
* @package cosmos.group.v1
|
|
323
|
+
* @see proto type: cosmos.group.v1.MemberRequest
|
|
324
|
+
*/
|
|
310
325
|
export const MemberRequest = {
|
|
311
326
|
typeUrl: "/cosmos.group.v1.MemberRequest",
|
|
312
327
|
aminoType: "cosmos-sdk/MemberRequest",
|
|
@@ -407,6 +422,17 @@ function createBaseThresholdDecisionPolicy() {
|
|
|
407
422
|
windows: undefined
|
|
408
423
|
};
|
|
409
424
|
}
|
|
425
|
+
/**
|
|
426
|
+
* ThresholdDecisionPolicy is a decision policy where a proposal passes when it
|
|
427
|
+
* satisfies the two following conditions:
|
|
428
|
+
* 1. The sum of all `YES` voter's weights is greater or equal than the defined
|
|
429
|
+
* `threshold`.
|
|
430
|
+
* 2. The voting and execution periods of the proposal respect the parameters
|
|
431
|
+
* given by `windows`.
|
|
432
|
+
* @name ThresholdDecisionPolicy
|
|
433
|
+
* @package cosmos.group.v1
|
|
434
|
+
* @see proto type: cosmos.group.v1.ThresholdDecisionPolicy
|
|
435
|
+
*/
|
|
410
436
|
export const ThresholdDecisionPolicy = {
|
|
411
437
|
typeUrl: "/cosmos.group.v1.ThresholdDecisionPolicy",
|
|
412
438
|
aminoType: "cosmos-sdk/ThresholdDecisionPolicy",
|
|
@@ -503,6 +529,17 @@ function createBasePercentageDecisionPolicy() {
|
|
|
503
529
|
windows: undefined
|
|
504
530
|
};
|
|
505
531
|
}
|
|
532
|
+
/**
|
|
533
|
+
* PercentageDecisionPolicy is a decision policy where a proposal passes when
|
|
534
|
+
* it satisfies the two following conditions:
|
|
535
|
+
* 1. The percentage of all `YES` voters' weights out of the total group weight
|
|
536
|
+
* is greater or equal than the given `percentage`.
|
|
537
|
+
* 2. The voting and execution periods of the proposal respect the parameters
|
|
538
|
+
* given by `windows`.
|
|
539
|
+
* @name PercentageDecisionPolicy
|
|
540
|
+
* @package cosmos.group.v1
|
|
541
|
+
* @see proto type: cosmos.group.v1.PercentageDecisionPolicy
|
|
542
|
+
*/
|
|
506
543
|
export const PercentageDecisionPolicy = {
|
|
507
544
|
typeUrl: "/cosmos.group.v1.PercentageDecisionPolicy",
|
|
508
545
|
aminoType: "cosmos-sdk/PercentageDecisionPolicy",
|
|
@@ -599,6 +636,12 @@ function createBaseDecisionPolicyWindows() {
|
|
|
599
636
|
minExecutionPeriod: Duration.fromPartial({})
|
|
600
637
|
};
|
|
601
638
|
}
|
|
639
|
+
/**
|
|
640
|
+
* DecisionPolicyWindows defines the different windows for voting and execution.
|
|
641
|
+
* @name DecisionPolicyWindows
|
|
642
|
+
* @package cosmos.group.v1
|
|
643
|
+
* @see proto type: cosmos.group.v1.DecisionPolicyWindows
|
|
644
|
+
*/
|
|
602
645
|
export const DecisionPolicyWindows = {
|
|
603
646
|
typeUrl: "/cosmos.group.v1.DecisionPolicyWindows",
|
|
604
647
|
aminoType: "cosmos-sdk/DecisionPolicyWindows",
|
|
@@ -692,6 +735,12 @@ function createBaseGroupInfo() {
|
|
|
692
735
|
createdAt: new Date()
|
|
693
736
|
};
|
|
694
737
|
}
|
|
738
|
+
/**
|
|
739
|
+
* GroupInfo represents the high-level on-chain information for a group.
|
|
740
|
+
* @name GroupInfo
|
|
741
|
+
* @package cosmos.group.v1
|
|
742
|
+
* @see proto type: cosmos.group.v1.GroupInfo
|
|
743
|
+
*/
|
|
695
744
|
export const GroupInfo = {
|
|
696
745
|
typeUrl: "/cosmos.group.v1.GroupInfo",
|
|
697
746
|
aminoType: "cosmos-sdk/GroupInfo",
|
|
@@ -825,6 +874,12 @@ function createBaseGroupMember() {
|
|
|
825
874
|
member: undefined
|
|
826
875
|
};
|
|
827
876
|
}
|
|
877
|
+
/**
|
|
878
|
+
* GroupMember represents the relationship between a group and a member.
|
|
879
|
+
* @name GroupMember
|
|
880
|
+
* @package cosmos.group.v1
|
|
881
|
+
* @see proto type: cosmos.group.v1.GroupMember
|
|
882
|
+
*/
|
|
828
883
|
export const GroupMember = {
|
|
829
884
|
typeUrl: "/cosmos.group.v1.GroupMember",
|
|
830
885
|
aminoType: "cosmos-sdk/GroupMember",
|
|
@@ -924,6 +979,12 @@ function createBaseGroupPolicyInfo() {
|
|
|
924
979
|
createdAt: new Date()
|
|
925
980
|
};
|
|
926
981
|
}
|
|
982
|
+
/**
|
|
983
|
+
* GroupPolicyInfo represents the high-level on-chain information for a group policy.
|
|
984
|
+
* @name GroupPolicyInfo
|
|
985
|
+
* @package cosmos.group.v1
|
|
986
|
+
* @see proto type: cosmos.group.v1.GroupPolicyInfo
|
|
987
|
+
*/
|
|
927
988
|
export const GroupPolicyInfo = {
|
|
928
989
|
typeUrl: "/cosmos.group.v1.GroupPolicyInfo",
|
|
929
990
|
aminoType: "cosmos-sdk/GroupPolicyInfo",
|
|
@@ -1086,6 +1147,15 @@ function createBaseProposal() {
|
|
|
1086
1147
|
summary: ""
|
|
1087
1148
|
};
|
|
1088
1149
|
}
|
|
1150
|
+
/**
|
|
1151
|
+
* Proposal defines a group proposal. Any member of a group can submit a proposal
|
|
1152
|
+
* for a group policy to decide upon.
|
|
1153
|
+
* A proposal consists of a set of `sdk.Msg`s that will be executed if the proposal
|
|
1154
|
+
* passes as well as some optional metadata associated with the proposal.
|
|
1155
|
+
* @name Proposal
|
|
1156
|
+
* @package cosmos.group.v1
|
|
1157
|
+
* @see proto type: cosmos.group.v1.Proposal
|
|
1158
|
+
*/
|
|
1089
1159
|
export const Proposal = {
|
|
1090
1160
|
typeUrl: "/cosmos.group.v1.Proposal",
|
|
1091
1161
|
aminoType: "cosmos-sdk/Proposal",
|
|
@@ -1315,6 +1385,12 @@ function createBaseTallyResult() {
|
|
|
1315
1385
|
noWithVetoCount: ""
|
|
1316
1386
|
};
|
|
1317
1387
|
}
|
|
1388
|
+
/**
|
|
1389
|
+
* TallyResult represents the sum of weighted votes for each vote option.
|
|
1390
|
+
* @name TallyResult
|
|
1391
|
+
* @package cosmos.group.v1
|
|
1392
|
+
* @see proto type: cosmos.group.v1.TallyResult
|
|
1393
|
+
*/
|
|
1318
1394
|
export const TallyResult = {
|
|
1319
1395
|
typeUrl: "/cosmos.group.v1.TallyResult",
|
|
1320
1396
|
aminoType: "cosmos-sdk/TallyResult",
|
|
@@ -1429,6 +1505,12 @@ function createBaseVote() {
|
|
|
1429
1505
|
submitTime: new Date()
|
|
1430
1506
|
};
|
|
1431
1507
|
}
|
|
1508
|
+
/**
|
|
1509
|
+
* Vote represents a vote for a proposal.string metadata
|
|
1510
|
+
* @name Vote
|
|
1511
|
+
* @package cosmos.group.v1
|
|
1512
|
+
* @see proto type: cosmos.group.v1.Vote
|
|
1513
|
+
*/
|
|
1432
1514
|
export const Vote = {
|
|
1433
1515
|
typeUrl: "/cosmos.group.v1.Vote",
|
|
1434
1516
|
aminoType: "cosmos-sdk/Vote",
|