@xpla/xpla-react 1.7.0 → 1.8.0-rc.1
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/app/runtime/v1alpha1/module.d.ts +49 -8
- package/cosmos/app/runtime/v1alpha1/module.js +17 -0
- package/cosmos/app/v1alpha1/config.d.ts +72 -10
- package/cosmos/app/v1alpha1/config.js +31 -0
- package/cosmos/app/v1alpha1/module.d.ts +55 -6
- package/cosmos/app/v1alpha1/module.js +23 -0
- package/cosmos/app/v1alpha1/query.d.ts +42 -6
- package/cosmos/app/v1alpha1/query.js +16 -0
- package/cosmos/app/v1alpha1/query.rpc.func.d.ts +7 -2
- package/cosmos/app/v1alpha1/query.rpc.func.js +8 -4
- package/cosmos/app/v1alpha1/query.rpc.react.d.ts +6 -0
- package/cosmos/app/v1alpha1/query.rpc.react.js +7 -1
- package/cosmos/auth/module/v1/module.d.ts +60 -12
- package/cosmos/auth/module/v1/module.js +16 -0
- package/cosmos/auth/v1beta1/auth.d.ts +70 -6
- package/cosmos/auth/v1beta1/auth.js +34 -0
- package/cosmos/auth/v1beta1/genesis.d.ts +30 -6
- package/cosmos/auth/v1beta1/genesis.js +6 -0
- package/cosmos/auth/v1beta1/query.d.ts +362 -32
- package/cosmos/auth/v1beta1/query.js +169 -0
- package/cosmos/auth/v1beta1/query.rpc.func.d.ts +87 -11
- package/cosmos/auth/v1beta1/query.rpc.func.js +88 -31
- package/cosmos/auth/v1beta1/query.rpc.react.d.ts +77 -0
- package/cosmos/auth/v1beta1/query.rpc.react.js +87 -10
- package/cosmos/auth/v1beta1/tx.d.ts +35 -2
- package/cosmos/auth/v1beta1/tx.js +21 -0
- package/cosmos/auth/v1beta1/tx.registry.d.ts +21 -0
- package/cosmos/auth/v1beta1/tx.registry.js +27 -1
- package/cosmos/auth/v1beta1/tx.rpc.func.d.ts +10 -2
- package/cosmos/auth/v1beta1/tx.rpc.func.js +12 -9
- package/cosmos/auth/v1beta1/tx.rpc.react.d.ts +10 -1
- package/cosmos/auth/v1beta1/tx.rpc.react.js +10 -1
- package/cosmos/authz/module/v1/module.d.ts +18 -2
- package/cosmos/authz/module/v1/module.js +6 -0
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +36 -0
- package/cosmos/authz/v1beta1/event.d.ts +72 -16
- package/cosmos/authz/v1beta1/event.js +12 -0
- package/cosmos/authz/v1beta1/genesis.d.ts +18 -2
- package/cosmos/authz/v1beta1/genesis.js +10 -0
- package/cosmos/authz/v1beta1/query.d.ts +168 -32
- package/cosmos/authz/v1beta1/query.js +55 -0
- package/cosmos/authz/v1beta1/query.rpc.func.d.ts +25 -4
- package/cosmos/authz/v1beta1/query.rpc.func.js +26 -10
- package/cosmos/authz/v1beta1/query.rpc.react.d.ts +22 -0
- package/cosmos/authz/v1beta1/query.rpc.react.js +25 -3
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +43 -0
- package/cosmos/authz/v1beta1/tx.registry.d.ts +45 -0
- package/cosmos/authz/v1beta1/tx.registry.js +63 -1
- package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +27 -4
- package/cosmos/authz/v1beta1/tx.rpc.func.js +31 -23
- package/cosmos/authz/v1beta1/tx.rpc.react.d.ts +27 -3
- package/cosmos/authz/v1beta1/tx.rpc.react.js +27 -3
- package/cosmos/autocli/v1/options.d.ts +208 -38
- package/cosmos/autocli/v1/options.js +54 -0
- package/cosmos/autocli/v1/query.d.ts +57 -6
- package/cosmos/autocli/v1/query.js +21 -0
- package/cosmos/autocli/v1/query.rpc.func.d.ts +7 -2
- package/cosmos/autocli/v1/query.rpc.func.js +8 -4
- package/cosmos/autocli/v1/query.rpc.react.d.ts +6 -0
- package/cosmos/autocli/v1/query.rpc.react.js +7 -1
- package/cosmos/bank/module/v1/module.d.ts +24 -4
- package/cosmos/bank/module/v1/module.js +6 -0
- package/cosmos/bank/v1beta1/authz.d.ts +15 -0
- package/cosmos/bank/v1beta1/authz.js +12 -0
- package/cosmos/bank/v1beta1/bank.d.ts +136 -18
- package/cosmos/bank/v1beta1/bank.js +63 -0
- package/cosmos/bank/v1beta1/genesis.d.ts +61 -12
- package/cosmos/bank/v1beta1/genesis.js +20 -0
- package/cosmos/bank/v1beta1/query.d.ts +619 -86
- package/cosmos/bank/v1beta1/query.js +263 -0
- package/cosmos/bank/v1beta1/query.rpc.func.d.ts +128 -14
- package/cosmos/bank/v1beta1/query.rpc.func.js +129 -40
- package/cosmos/bank/v1beta1/query.rpc.react.d.ts +115 -0
- package/cosmos/bank/v1beta1/query.rpc.react.js +128 -13
- package/cosmos/bank/v1beta1/tx.d.ts +151 -14
- package/cosmos/bank/v1beta1/tx.js +74 -0
- package/cosmos/bank/v1beta1/tx.registry.d.ts +57 -0
- package/cosmos/bank/v1beta1/tx.registry.js +81 -1
- package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +36 -5
- package/cosmos/bank/v1beta1/tx.rpc.func.js +41 -30
- package/cosmos/bank/v1beta1/tx.rpc.react.d.ts +36 -4
- package/cosmos/bank/v1beta1/tx.rpc.react.js +36 -4
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -68
- package/cosmos/base/abci/v1beta1/abci.js +92 -0
- package/cosmos/base/node/v1beta1/query.d.ts +102 -18
- package/cosmos/base/node/v1beta1/query.js +24 -0
- package/cosmos/base/node/v1beta1/query.rpc.func.d.ts +14 -3
- package/cosmos/base/node/v1beta1/query.rpc.func.js +15 -7
- package/cosmos/base/node/v1beta1/query.rpc.react.d.ts +12 -0
- package/cosmos/base/node/v1beta1/query.rpc.react.js +14 -2
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -0
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/reflection/v1beta1/reflection.d.ts +74 -8
- package/cosmos/base/reflection/v1beta1/reflection.js +26 -0
- package/cosmos/base/reflection/v1beta1/reflection.rpc.func.d.ts +16 -3
- package/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +17 -7
- package/cosmos/base/reflection/v1beta1/reflection.rpc.react.d.ts +14 -0
- package/cosmos/base/reflection/v1beta1/reflection.rpc.react.js +16 -2
- package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
- package/cosmos/base/reflection/v2alpha1/reflection.js +203 -0
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.d.ts +44 -7
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +45 -19
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.react.d.ts +38 -0
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.react.js +44 -6
- package/cosmos/base/tendermint/v1beta1/query.d.ts +417 -60
- package/cosmos/base/tendermint/v1beta1/query.js +154 -0
- package/cosmos/base/tendermint/v1beta1/query.rpc.func.d.ts +53 -8
- package/cosmos/base/tendermint/v1beta1/query.rpc.func.js +54 -22
- package/cosmos/base/tendermint/v1beta1/query.rpc.react.d.ts +46 -0
- package/cosmos/base/tendermint/v1beta1/query.rpc.react.js +53 -7
- package/cosmos/base/tendermint/v1beta1/types.d.ts +91 -22
- package/cosmos/base/tendermint/v1beta1/types.js +20 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/bundle.d.ts +188 -0
- package/cosmos/bundle.js +990 -0
- package/cosmos/consensus/module/v1/module.d.ts +24 -4
- package/cosmos/consensus/module/v1/module.js +6 -0
- package/cosmos/consensus/v1/query.d.ts +36 -4
- package/cosmos/consensus/v1/query.js +16 -0
- package/cosmos/consensus/v1/query.rpc.func.d.ts +7 -2
- package/cosmos/consensus/v1/query.rpc.func.js +8 -4
- package/cosmos/consensus/v1/query.rpc.react.d.ts +6 -0
- package/cosmos/consensus/v1/query.rpc.react.js +7 -1
- package/cosmos/consensus/v1/tx.d.ts +43 -6
- package/cosmos/consensus/v1/tx.js +17 -0
- package/cosmos/consensus/v1/tx.registry.d.ts +21 -0
- package/cosmos/consensus/v1/tx.registry.js +27 -1
- package/cosmos/consensus/v1/tx.rpc.func.d.ts +10 -2
- package/cosmos/consensus/v1/tx.rpc.func.js +12 -9
- package/cosmos/consensus/v1/tx.rpc.react.d.ts +10 -1
- package/cosmos/consensus/v1/tx.rpc.react.js +10 -1
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/distribution/module/v1/module.d.ts +24 -4
- package/cosmos/distribution/module/v1/module.js +6 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +132 -0
- package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
- package/cosmos/distribution/v1beta1/genesis.js +74 -0
- package/cosmos/distribution/v1beta1/query.d.ts +430 -58
- package/cosmos/distribution/v1beta1/query.js +164 -0
- package/cosmos/distribution/v1beta1/query.rpc.func.d.ts +71 -11
- package/cosmos/distribution/v1beta1/query.rpc.func.js +72 -31
- package/cosmos/distribution/v1beta1/query.rpc.react.d.ts +61 -0
- package/cosmos/distribution/v1beta1/query.rpc.react.js +71 -10
- package/cosmos/distribution/v1beta1/tx.d.ts +223 -10
- package/cosmos/distribution/v1beta1/tx.js +128 -0
- package/cosmos/distribution/v1beta1/tx.registry.d.ts +93 -0
- package/cosmos/distribution/v1beta1/tx.registry.js +135 -1
- package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +64 -8
- package/cosmos/distribution/v1beta1/tx.rpc.func.js +72 -51
- package/cosmos/distribution/v1beta1/tx.rpc.react.d.ts +64 -7
- package/cosmos/distribution/v1beta1/tx.rpc.react.js +64 -7
- package/cosmos/evidence/module/v1/module.d.ts +18 -2
- package/cosmos/evidence/module/v1/module.js +6 -0
- package/cosmos/evidence/v1beta1/evidence.d.ts +37 -8
- package/cosmos/evidence/v1beta1/evidence.js +7 -0
- package/cosmos/evidence/v1beta1/genesis.d.ts +24 -4
- package/cosmos/evidence/v1beta1/genesis.js +6 -0
- package/cosmos/evidence/v1beta1/query.d.ts +88 -14
- package/cosmos/evidence/v1beta1/query.js +33 -0
- package/cosmos/evidence/v1beta1/query.rpc.func.d.ts +14 -3
- package/cosmos/evidence/v1beta1/query.rpc.func.js +15 -7
- package/cosmos/evidence/v1beta1/query.rpc.react.d.ts +12 -0
- package/cosmos/evidence/v1beta1/query.rpc.react.js +14 -2
- package/cosmos/evidence/v1beta1/tx.d.ts +53 -9
- package/cosmos/evidence/v1beta1/tx.js +13 -0
- package/cosmos/evidence/v1beta1/tx.registry.d.ts +21 -0
- package/cosmos/evidence/v1beta1/tx.registry.js +27 -1
- package/cosmos/evidence/v1beta1/tx.rpc.func.d.ts +8 -2
- package/cosmos/evidence/v1beta1/tx.rpc.func.js +10 -9
- package/cosmos/evidence/v1beta1/tx.rpc.react.d.ts +8 -1
- package/cosmos/evidence/v1beta1/tx.rpc.react.js +8 -1
- package/cosmos/evm/feemarket/v1/events.d.ts +120 -0
- package/cosmos/evm/feemarket/v1/events.js +182 -0
- package/cosmos/evm/feemarket/v1/feemarket.d.ts +115 -0
- package/cosmos/evm/feemarket/v1/feemarket.js +160 -0
- package/cosmos/evm/feemarket/v1/genesis.d.ts +68 -0
- package/cosmos/evm/feemarket/v1/genesis.js +106 -0
- package/cosmos/evm/feemarket/v1/query.d.ts +315 -0
- package/cosmos/evm/feemarket/v1/query.js +473 -0
- package/cosmos/evm/feemarket/v1/query.rpc.func.d.ts +22 -0
- package/cosmos/evm/feemarket/v1/query.rpc.func.js +44 -0
- package/cosmos/evm/feemarket/v1/query.rpc.react.d.ts +22 -0
- package/cosmos/evm/feemarket/v1/query.rpc.react.js +35 -0
- package/cosmos/evm/feemarket/v1/tx.d.ts +118 -0
- package/cosmos/evm/feemarket/v1/tx.js +177 -0
- package/cosmos/evm/feemarket/v1/tx.registry.d.ts +23 -0
- package/cosmos/evm/feemarket/v1/tx.registry.js +31 -0
- package/cosmos/evm/feemarket/v1/tx.rpc.func.d.ts +10 -0
- package/cosmos/evm/feemarket/v1/tx.rpc.func.js +16 -0
- package/cosmos/evm/feemarket/v1/tx.rpc.react.d.ts +10 -0
- package/cosmos/evm/feemarket/v1/tx.rpc.react.js +16 -0
- package/cosmos/evm/vm/v1/events.d.ts +286 -0
- package/cosmos/evm/vm/v1/events.js +435 -0
- package/cosmos/evm/vm/v1/evm.d.ts +1090 -0
- package/cosmos/evm/vm/v1/evm.js +1617 -0
- package/cosmos/evm/vm/v1/genesis.d.ts +143 -0
- package/cosmos/evm/vm/v1/genesis.js +227 -0
- package/cosmos/evm/vm/v1/query.d.ts +1773 -0
- package/cosmos/evm/vm/v1/query.js +2680 -0
- package/cosmos/evm/vm/v1/query.rpc.func.d.ts +108 -0
- package/cosmos/evm/vm/v1/query.rpc.func.js +196 -0
- package/cosmos/evm/vm/v1/query.rpc.react.d.ts +108 -0
- package/cosmos/evm/vm/v1/query.rpc.react.js +153 -0
- package/cosmos/evm/vm/v1/tx.d.ts +747 -0
- package/cosmos/evm/vm/v1/tx.js +1132 -0
- package/cosmos/{crisis/v1beta1 → evm/vm/v1}/tx.registry.d.ts +7 -7
- package/cosmos/{crisis/v1beta1 → evm/vm/v1}/tx.registry.js +12 -12
- package/cosmos/evm/vm/v1/tx.rpc.func.d.ts +17 -0
- package/cosmos/evm/vm/v1/tx.rpc.func.js +25 -0
- package/cosmos/evm/vm/v1/tx.rpc.react.d.ts +17 -0
- package/cosmos/evm/vm/v1/tx.rpc.react.js +25 -0
- package/cosmos/feegrant/module/v1/module.d.ts +18 -2
- package/cosmos/feegrant/module/v1/module.js +6 -0
- package/cosmos/feegrant/v1beta1/feegrant.d.ts +118 -22
- package/cosmos/feegrant/v1beta1/feegrant.js +38 -0
- package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
- package/cosmos/feegrant/v1beta1/genesis.js +10 -0
- package/cosmos/feegrant/v1beta1/query.d.ts +154 -26
- package/cosmos/feegrant/v1beta1/query.js +56 -0
- package/cosmos/feegrant/v1beta1/query.rpc.func.d.ts +23 -4
- package/cosmos/feegrant/v1beta1/query.rpc.func.js +24 -10
- package/cosmos/feegrant/v1beta1/query.rpc.react.d.ts +20 -0
- package/cosmos/feegrant/v1beta1/query.rpc.react.js +23 -3
- package/cosmos/feegrant/v1beta1/tx.d.ts +135 -19
- package/cosmos/feegrant/v1beta1/tx.js +44 -0
- package/cosmos/feegrant/v1beta1/tx.registry.d.ts +45 -0
- package/cosmos/feegrant/v1beta1/tx.registry.js +63 -1
- package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +25 -4
- package/cosmos/feegrant/v1beta1/tx.rpc.func.js +29 -23
- package/cosmos/feegrant/v1beta1/tx.rpc.react.d.ts +25 -3
- package/cosmos/feegrant/v1beta1/tx.rpc.react.js +25 -3
- package/cosmos/gov/module/v1/module.d.ts +24 -4
- package/cosmos/gov/module/v1/module.js +6 -0
- package/cosmos/gov/v1/genesis.d.ts +48 -16
- package/cosmos/gov/v1/genesis.js +10 -0
- package/cosmos/gov/v1/gov.d.ts +343 -80
- package/cosmos/gov/v1/gov.js +77 -0
- package/cosmos/gov/v1/query.d.ts +469 -88
- package/cosmos/gov/v1/query.js +143 -0
- package/cosmos/gov/v1/query.rpc.func.d.ts +63 -10
- package/cosmos/gov/v1/query.rpc.func.js +64 -28
- package/cosmos/gov/v1/query.rpc.react.d.ts +54 -0
- package/cosmos/gov/v1/query.rpc.react.js +63 -9
- package/cosmos/gov/v1/tx.d.ts +377 -67
- package/cosmos/gov/v1/tx.js +111 -3
- package/cosmos/gov/v1/tx.registry.d.ts +93 -0
- package/cosmos/gov/v1/tx.registry.js +135 -1
- package/cosmos/gov/v1/tx.rpc.func.d.ts +55 -8
- package/cosmos/gov/v1/tx.rpc.func.js +63 -51
- package/cosmos/gov/v1/tx.rpc.react.d.ts +55 -7
- package/cosmos/gov/v1/tx.rpc.react.js +55 -7
- package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
- package/cosmos/gov/v1beta1/genesis.js +10 -0
- package/cosmos/gov/v1beta1/gov.d.ts +294 -63
- package/cosmos/gov/v1beta1/gov.js +74 -3
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +131 -0
- package/cosmos/gov/v1beta1/query.rpc.func.d.ts +56 -9
- package/cosmos/gov/v1beta1/query.rpc.func.js +57 -25
- package/cosmos/gov/v1beta1/query.rpc.react.d.ts +48 -0
- package/cosmos/gov/v1beta1/query.rpc.react.js +56 -8
- package/cosmos/gov/v1beta1/tx.d.ts +214 -39
- package/cosmos/gov/v1beta1/tx.js +62 -3
- package/cosmos/gov/v1beta1/tx.registry.d.ts +57 -0
- package/cosmos/gov/v1beta1/tx.registry.js +81 -1
- package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +30 -5
- package/cosmos/gov/v1beta1/tx.rpc.func.js +35 -30
- package/cosmos/gov/v1beta1/tx.rpc.react.d.ts +30 -4
- package/cosmos/gov/v1beta1/tx.rpc.react.js +30 -4
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +169 -0
- package/cosmos/mint/module/v1/module.d.ts +24 -4
- package/cosmos/mint/module/v1/module.js +6 -0
- package/cosmos/mint/v1beta1/genesis.d.ts +30 -6
- package/cosmos/mint/v1beta1/genesis.js +10 -0
- package/cosmos/mint/v1beta1/mint.d.ts +84 -20
- package/cosmos/mint/v1beta1/mint.js +12 -0
- package/cosmos/mint/v1beta1/query.d.ts +111 -12
- package/cosmos/mint/v1beta1/query.js +43 -0
- package/cosmos/mint/v1beta1/query.rpc.func.d.ts +21 -4
- package/cosmos/mint/v1beta1/query.rpc.func.js +22 -10
- package/cosmos/mint/v1beta1/query.rpc.react.d.ts +18 -0
- package/cosmos/mint/v1beta1/query.rpc.react.js +21 -3
- package/cosmos/mint/v1beta1/tx.d.ts +35 -2
- package/cosmos/mint/v1beta1/tx.js +21 -0
- package/cosmos/mint/v1beta1/tx.registry.d.ts +21 -0
- package/cosmos/mint/v1beta1/tx.registry.js +27 -1
- package/cosmos/mint/v1beta1/tx.rpc.func.d.ts +10 -2
- package/cosmos/mint/v1beta1/tx.rpc.func.js +12 -9
- package/cosmos/mint/v1beta1/tx.rpc.react.d.ts +10 -1
- package/cosmos/mint/v1beta1/tx.rpc.react.js +10 -1
- package/cosmos/params/module/v1/module.d.ts +18 -2
- package/cosmos/params/module/v1/module.js +6 -0
- package/cosmos/params/v1beta1/params.d.ts +31 -2
- package/cosmos/params/v1beta1/params.js +16 -0
- package/cosmos/params/v1beta1/query.d.ts +99 -10
- package/cosmos/params/v1beta1/query.js +46 -0
- package/cosmos/params/v1beta1/query.rpc.func.d.ts +17 -3
- package/cosmos/params/v1beta1/query.rpc.func.js +18 -7
- package/cosmos/params/v1beta1/query.rpc.react.d.ts +15 -0
- package/cosmos/params/v1beta1/query.rpc.react.js +17 -2
- package/cosmos/slashing/module/v1/module.d.ts +24 -4
- package/cosmos/slashing/module/v1/module.js +6 -0
- package/cosmos/slashing/v1beta1/genesis.d.ts +109 -20
- package/cosmos/slashing/v1beta1/genesis.js +35 -0
- package/cosmos/slashing/v1beta1/query.d.ts +106 -10
- package/cosmos/slashing/v1beta1/query.js +53 -0
- package/cosmos/slashing/v1beta1/query.rpc.func.d.ts +21 -4
- package/cosmos/slashing/v1beta1/query.rpc.func.js +22 -10
- package/cosmos/slashing/v1beta1/query.rpc.react.d.ts +18 -0
- package/cosmos/slashing/v1beta1/query.rpc.react.js +21 -3
- package/cosmos/slashing/v1beta1/slashing.d.ts +43 -6
- package/cosmos/slashing/v1beta1/slashing.js +13 -0
- package/cosmos/slashing/v1beta1/tx.d.ts +71 -6
- package/cosmos/slashing/v1beta1/tx.js +33 -0
- package/cosmos/slashing/v1beta1/tx.registry.d.ts +33 -0
- package/cosmos/slashing/v1beta1/tx.registry.js +45 -1
- package/cosmos/slashing/v1beta1/tx.rpc.func.d.ts +19 -3
- package/cosmos/slashing/v1beta1/tx.rpc.func.js +22 -16
- package/cosmos/slashing/v1beta1/tx.rpc.react.d.ts +19 -2
- package/cosmos/slashing/v1beta1/tx.rpc.react.js +19 -2
- package/cosmos/staking/module/v1/module.d.ts +36 -8
- package/cosmos/staking/module/v1/module.js +6 -0
- package/cosmos/staking/v1beta1/authz.d.ts +44 -6
- package/cosmos/staking/v1beta1/authz.js +17 -0
- package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
- package/cosmos/staking/v1beta1/genesis.js +16 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +250 -0
- package/cosmos/staking/v1beta1/query.rpc.func.d.ts +123 -15
- package/cosmos/staking/v1beta1/query.rpc.func.js +124 -43
- package/cosmos/staking/v1beta1/query.rpc.react.d.ts +109 -0
- package/cosmos/staking/v1beta1/query.rpc.react.js +123 -14
- package/cosmos/staking/v1beta1/staking.d.ts +631 -117
- package/cosmos/staking/v1beta1/staking.js +186 -0
- package/cosmos/staking/v1beta1/tx.d.ts +242 -22
- package/cosmos/staking/v1beta1/tx.js +120 -0
- package/cosmos/staking/v1beta1/tx.registry.d.ts +93 -0
- package/cosmos/staking/v1beta1/tx.registry.js +135 -1
- package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +57 -8
- package/cosmos/staking/v1beta1/tx.rpc.func.js +65 -51
- package/cosmos/staking/v1beta1/tx.rpc.react.d.ts +57 -7
- package/cosmos/staking/v1beta1/tx.rpc.react.js +57 -7
- package/cosmos/tx/config/v1/config.d.ts +18 -2
- package/cosmos/tx/config/v1/config.js +6 -0
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +46 -0
- package/cosmos/tx/v1beta1/service.d.ts +375 -46
- package/cosmos/tx/v1beta1/service.js +176 -0
- package/cosmos/tx/v1beta1/service.rpc.func.d.ts +73 -10
- package/cosmos/tx/v1beta1/service.rpc.func.js +74 -28
- package/cosmos/tx/v1beta1/service.rpc.react.d.ts +67 -3
- package/cosmos/tx/v1beta1/service.rpc.react.js +77 -13
- package/cosmos/tx/v1beta1/tx.d.ts +303 -46
- package/cosmos/tx/v1beta1/tx.js +127 -0
- package/cosmos/upgrade/module/v1/module.d.ts +24 -4
- package/cosmos/upgrade/module/v1/module.js +6 -0
- package/cosmos/upgrade/v1beta1/query.d.ts +172 -14
- package/cosmos/upgrade/v1beta1/query.js +85 -0
- package/cosmos/upgrade/v1beta1/query.rpc.func.d.ts +45 -6
- package/cosmos/upgrade/v1beta1/query.rpc.func.js +46 -16
- package/cosmos/upgrade/v1beta1/query.rpc.react.d.ts +40 -0
- package/cosmos/upgrade/v1beta1/query.rpc.react.js +45 -5
- package/cosmos/upgrade/v1beta1/tx.d.ts +74 -6
- package/cosmos/upgrade/v1beta1/tx.js +36 -0
- package/cosmos/upgrade/v1beta1/tx.registry.d.ts +33 -0
- package/cosmos/upgrade/v1beta1/tx.registry.js +45 -1
- package/cosmos/upgrade/v1beta1/tx.rpc.func.d.ts +19 -3
- package/cosmos/upgrade/v1beta1/tx.rpc.func.js +22 -16
- package/cosmos/upgrade/v1beta1/tx.rpc.react.d.ts +19 -2
- package/cosmos/upgrade/v1beta1/tx.rpc.react.js +19 -2
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
- package/cosmos/upgrade/v1beta1/upgrade.js +40 -0
- package/cosmos_proto/bundle.d.ts +1 -0
- package/cosmos_proto/bundle.js +8 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/cosmwasm/bundle.d.ts +12 -0
- package/cosmwasm/bundle.js +174 -0
- package/cosmwasm/wasm/v1/authz.d.ts +212 -22
- package/cosmwasm/wasm/v1/authz.js +113 -0
- package/cosmwasm/wasm/v1/genesis.d.ts +78 -10
- package/cosmwasm/wasm/v1/genesis.js +34 -0
- package/cosmwasm/wasm/v1/ibc.d.ts +84 -12
- package/cosmwasm/wasm/v1/ibc.js +24 -0
- package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
- package/cosmwasm/wasm/v1/proposal_legacy.js +166 -0
- package/cosmwasm/wasm/v1/query.d.ts +761 -76
- package/cosmwasm/wasm/v1/query.js +581 -1
- package/cosmwasm/wasm/v1/query.rpc.func.d.ts +100 -14
- package/cosmwasm/wasm/v1/query.rpc.func.js +112 -37
- package/cosmwasm/wasm/v1/query.rpc.react.d.ts +88 -1
- package/cosmwasm/wasm/v1/query.rpc.react.js +106 -13
- package/cosmwasm/wasm/v1/tx.d.ts +956 -170
- package/cosmwasm/wasm/v1/tx.js +267 -0
- package/cosmwasm/wasm/v1/tx.registry.d.ts +213 -0
- package/cosmwasm/wasm/v1/tx.registry.js +315 -1
- package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +145 -18
- package/cosmwasm/wasm/v1/tx.rpc.func.js +180 -138
- package/cosmwasm/wasm/v1/tx.rpc.react.d.ts +145 -17
- package/cosmwasm/wasm/v1/tx.rpc.react.js +161 -33
- package/cosmwasm/wasm/v1/types.d.ts +217 -40
- package/cosmwasm/wasm/v1/types.js +58 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/app/runtime/v1alpha1/module.js +17 -0
- package/esm/cosmos/app/v1alpha1/config.js +31 -0
- package/esm/cosmos/app/v1alpha1/module.js +23 -0
- package/esm/cosmos/app/v1alpha1/query.js +16 -0
- package/esm/cosmos/app/v1alpha1/query.rpc.func.js +7 -2
- package/esm/cosmos/app/v1alpha1/query.rpc.react.js +8 -2
- package/esm/cosmos/auth/module/v1/module.js +16 -0
- package/esm/cosmos/auth/v1beta1/auth.js +34 -0
- package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
- package/esm/cosmos/auth/v1beta1/query.js +169 -0
- package/esm/cosmos/auth/v1beta1/query.rpc.func.js +87 -20
- package/esm/cosmos/auth/v1beta1/query.rpc.react.js +88 -11
- package/esm/cosmos/auth/v1beta1/tx.js +21 -0
- package/esm/cosmos/auth/v1beta1/tx.registry.js +26 -0
- package/esm/cosmos/auth/v1beta1/tx.rpc.func.js +11 -7
- package/esm/cosmos/auth/v1beta1/tx.rpc.react.js +11 -2
- package/esm/cosmos/authz/module/v1/module.js +6 -0
- package/esm/cosmos/authz/v1beta1/authz.js +36 -0
- package/esm/cosmos/authz/v1beta1/event.js +12 -0
- package/esm/cosmos/authz/v1beta1/genesis.js +10 -0
- package/esm/cosmos/authz/v1beta1/query.js +55 -0
- package/esm/cosmos/authz/v1beta1/query.rpc.func.js +25 -6
- package/esm/cosmos/authz/v1beta1/query.rpc.react.js +26 -4
- package/esm/cosmos/authz/v1beta1/tx.js +43 -0
- package/esm/cosmos/authz/v1beta1/tx.registry.js +62 -0
- package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +30 -19
- package/esm/cosmos/authz/v1beta1/tx.rpc.react.js +28 -4
- package/esm/cosmos/autocli/v1/options.js +54 -0
- package/esm/cosmos/autocli/v1/query.js +21 -0
- package/esm/cosmos/autocli/v1/query.rpc.func.js +7 -2
- package/esm/cosmos/autocli/v1/query.rpc.react.js +8 -2
- package/esm/cosmos/bank/module/v1/module.js +6 -0
- package/esm/cosmos/bank/v1beta1/authz.js +12 -0
- package/esm/cosmos/bank/v1beta1/bank.js +63 -0
- package/esm/cosmos/bank/v1beta1/genesis.js +20 -0
- package/esm/cosmos/bank/v1beta1/query.js +263 -0
- package/esm/cosmos/bank/v1beta1/query.rpc.func.js +128 -26
- package/esm/cosmos/bank/v1beta1/query.rpc.react.js +129 -14
- package/esm/cosmos/bank/v1beta1/tx.js +74 -0
- package/esm/cosmos/bank/v1beta1/tx.registry.js +80 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +40 -25
- package/esm/cosmos/bank/v1beta1/tx.rpc.react.js +37 -5
- package/esm/cosmos/base/abci/v1beta1/abci.js +92 -0
- package/esm/cosmos/base/node/v1beta1/query.js +24 -0
- package/esm/cosmos/base/node/v1beta1/query.rpc.func.js +14 -4
- package/esm/cosmos/base/node/v1beta1/query.rpc.react.js +15 -3
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/reflection/v1beta1/reflection.js +26 -0
- package/esm/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +16 -4
- package/esm/cosmos/base/reflection/v1beta1/reflection.rpc.react.js +17 -3
- package/esm/cosmos/base/reflection/v2alpha1/reflection.js +203 -0
- package/esm/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +44 -12
- package/esm/cosmos/base/reflection/v2alpha1/reflection.rpc.react.js +45 -7
- package/esm/cosmos/base/tendermint/v1beta1/query.js +154 -0
- package/esm/cosmos/base/tendermint/v1beta1/query.rpc.func.js +53 -14
- package/esm/cosmos/base/tendermint/v1beta1/query.rpc.react.js +54 -8
- package/esm/cosmos/base/tendermint/v1beta1/types.js +20 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/bundle.js +188 -0
- package/esm/cosmos/consensus/module/v1/module.js +6 -0
- package/esm/cosmos/consensus/v1/query.js +16 -0
- package/esm/cosmos/consensus/v1/query.rpc.func.js +7 -2
- package/esm/cosmos/consensus/v1/query.rpc.react.js +8 -2
- package/esm/cosmos/consensus/v1/tx.js +17 -0
- package/esm/cosmos/consensus/v1/tx.registry.js +26 -0
- package/esm/cosmos/consensus/v1/tx.rpc.func.js +11 -7
- package/esm/cosmos/consensus/v1/tx.rpc.react.js +11 -2
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/distribution/module/v1/module.js +6 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +132 -0
- package/esm/cosmos/distribution/v1beta1/genesis.js +74 -0
- package/esm/cosmos/distribution/v1beta1/query.js +164 -0
- package/esm/cosmos/distribution/v1beta1/query.rpc.func.js +71 -20
- package/esm/cosmos/distribution/v1beta1/query.rpc.react.js +72 -11
- package/esm/cosmos/distribution/v1beta1/tx.js +128 -0
- package/esm/cosmos/distribution/v1beta1/tx.registry.js +134 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +71 -43
- package/esm/cosmos/distribution/v1beta1/tx.rpc.react.js +65 -8
- package/esm/cosmos/evidence/module/v1/module.js +6 -0
- package/esm/cosmos/evidence/v1beta1/evidence.js +7 -0
- package/esm/cosmos/evidence/v1beta1/genesis.js +6 -0
- package/esm/cosmos/evidence/v1beta1/query.js +33 -0
- package/esm/cosmos/evidence/v1beta1/query.rpc.func.js +14 -4
- package/esm/cosmos/evidence/v1beta1/query.rpc.react.js +15 -3
- package/esm/cosmos/evidence/v1beta1/tx.js +13 -0
- package/esm/cosmos/evidence/v1beta1/tx.registry.js +26 -0
- package/esm/cosmos/evidence/v1beta1/tx.rpc.func.js +9 -7
- package/esm/cosmos/evidence/v1beta1/tx.rpc.react.js +9 -2
- package/esm/cosmos/evm/feemarket/v1/events.js +179 -0
- package/esm/cosmos/evm/feemarket/v1/feemarket.js +157 -0
- package/esm/cosmos/evm/feemarket/v1/genesis.js +103 -0
- package/esm/cosmos/evm/feemarket/v1/query.js +470 -0
- package/esm/cosmos/evm/feemarket/v1/query.rpc.func.js +41 -0
- package/esm/cosmos/evm/feemarket/v1/query.rpc.react.js +32 -0
- package/esm/cosmos/evm/feemarket/v1/tx.js +174 -0
- package/esm/cosmos/evm/feemarket/v1/tx.registry.js +28 -0
- package/esm/cosmos/evm/feemarket/v1/tx.rpc.func.js +13 -0
- package/esm/cosmos/evm/feemarket/v1/tx.rpc.react.js +13 -0
- package/esm/cosmos/evm/vm/v1/events.js +432 -0
- package/esm/cosmos/evm/vm/v1/evm.js +1612 -0
- package/esm/cosmos/evm/vm/v1/genesis.js +224 -0
- package/esm/cosmos/evm/vm/v1/query.js +2677 -0
- package/esm/cosmos/evm/vm/v1/query.rpc.func.js +193 -0
- package/esm/cosmos/evm/vm/v1/query.rpc.react.js +150 -0
- package/esm/cosmos/evm/vm/v1/tx.js +1129 -0
- package/esm/cosmos/evm/vm/v1/tx.registry.js +46 -0
- package/esm/cosmos/evm/vm/v1/tx.rpc.func.js +22 -0
- package/esm/cosmos/evm/vm/v1/tx.rpc.react.js +22 -0
- package/esm/cosmos/feegrant/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/feegrant.js +38 -0
- package/esm/cosmos/feegrant/v1beta1/genesis.js +10 -0
- package/esm/cosmos/feegrant/v1beta1/query.js +56 -0
- package/esm/cosmos/feegrant/v1beta1/query.rpc.func.js +23 -6
- package/esm/cosmos/feegrant/v1beta1/query.rpc.react.js +24 -4
- package/esm/cosmos/feegrant/v1beta1/tx.js +44 -0
- package/esm/cosmos/feegrant/v1beta1/tx.registry.js +62 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +28 -19
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.react.js +26 -4
- package/esm/cosmos/gov/module/v1/module.js +6 -0
- package/esm/cosmos/gov/v1/genesis.js +10 -0
- package/esm/cosmos/gov/v1/gov.js +77 -0
- package/esm/cosmos/gov/v1/query.js +143 -0
- package/esm/cosmos/gov/v1/query.rpc.func.js +63 -18
- package/esm/cosmos/gov/v1/query.rpc.react.js +64 -10
- package/esm/cosmos/gov/v1/tx.js +111 -3
- package/esm/cosmos/gov/v1/tx.registry.js +134 -0
- package/esm/cosmos/gov/v1/tx.rpc.func.js +62 -43
- package/esm/cosmos/gov/v1/tx.rpc.react.js +56 -8
- package/esm/cosmos/gov/v1beta1/genesis.js +10 -0
- package/esm/cosmos/gov/v1beta1/gov.js +74 -3
- package/esm/cosmos/gov/v1beta1/query.js +131 -0
- package/esm/cosmos/gov/v1beta1/query.rpc.func.js +56 -16
- package/esm/cosmos/gov/v1beta1/query.rpc.react.js +57 -9
- package/esm/cosmos/gov/v1beta1/tx.js +62 -3
- package/esm/cosmos/gov/v1beta1/tx.registry.js +80 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +34 -25
- package/esm/cosmos/gov/v1beta1/tx.rpc.react.js +31 -5
- package/esm/cosmos/ics23/v1/proofs.js +169 -0
- package/esm/cosmos/mint/module/v1/module.js +6 -0
- package/esm/cosmos/mint/v1beta1/genesis.js +10 -0
- package/esm/cosmos/mint/v1beta1/mint.js +12 -0
- package/esm/cosmos/mint/v1beta1/query.js +43 -0
- package/esm/cosmos/mint/v1beta1/query.rpc.func.js +21 -6
- package/esm/cosmos/mint/v1beta1/query.rpc.react.js +22 -4
- package/esm/cosmos/mint/v1beta1/tx.js +21 -0
- package/esm/cosmos/mint/v1beta1/tx.registry.js +26 -0
- package/esm/cosmos/mint/v1beta1/tx.rpc.func.js +11 -7
- package/esm/cosmos/mint/v1beta1/tx.rpc.react.js +11 -2
- package/esm/cosmos/params/module/v1/module.js +6 -0
- package/esm/cosmos/params/v1beta1/params.js +16 -0
- package/esm/cosmos/params/v1beta1/query.js +46 -0
- package/esm/cosmos/params/v1beta1/query.rpc.func.js +17 -4
- package/esm/cosmos/params/v1beta1/query.rpc.react.js +18 -3
- package/esm/cosmos/slashing/module/v1/module.js +6 -0
- package/esm/cosmos/slashing/v1beta1/genesis.js +35 -0
- package/esm/cosmos/slashing/v1beta1/query.js +53 -0
- package/esm/cosmos/slashing/v1beta1/query.rpc.func.js +21 -6
- package/esm/cosmos/slashing/v1beta1/query.rpc.react.js +22 -4
- package/esm/cosmos/slashing/v1beta1/slashing.js +13 -0
- package/esm/cosmos/slashing/v1beta1/tx.js +33 -0
- package/esm/cosmos/slashing/v1beta1/tx.registry.js +44 -0
- package/esm/cosmos/slashing/v1beta1/tx.rpc.func.js +21 -13
- package/esm/cosmos/slashing/v1beta1/tx.rpc.react.js +20 -3
- package/esm/cosmos/staking/module/v1/module.js +6 -0
- package/esm/cosmos/staking/v1beta1/authz.js +17 -0
- package/esm/cosmos/staking/v1beta1/genesis.js +16 -0
- package/esm/cosmos/staking/v1beta1/query.js +250 -0
- package/esm/cosmos/staking/v1beta1/query.rpc.func.js +123 -28
- package/esm/cosmos/staking/v1beta1/query.rpc.react.js +124 -15
- package/esm/cosmos/staking/v1beta1/staking.js +186 -0
- package/esm/cosmos/staking/v1beta1/tx.js +120 -0
- package/esm/cosmos/staking/v1beta1/tx.registry.js +134 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +64 -43
- package/esm/cosmos/staking/v1beta1/tx.rpc.react.js +58 -8
- package/esm/cosmos/tx/config/v1/config.js +6 -0
- package/esm/cosmos/tx/signing/v1beta1/signing.js +46 -0
- package/esm/cosmos/tx/v1beta1/service.js +176 -0
- package/esm/cosmos/tx/v1beta1/service.rpc.func.js +73 -18
- package/esm/cosmos/tx/v1beta1/service.rpc.react.js +77 -13
- package/esm/cosmos/tx/v1beta1/tx.js +127 -0
- package/esm/cosmos/upgrade/module/v1/module.js +6 -0
- package/esm/cosmos/upgrade/v1beta1/query.js +85 -0
- package/esm/cosmos/upgrade/v1beta1/query.rpc.func.js +45 -10
- package/esm/cosmos/upgrade/v1beta1/query.rpc.react.js +46 -6
- package/esm/cosmos/upgrade/v1beta1/tx.js +36 -0
- package/esm/cosmos/upgrade/v1beta1/tx.registry.js +44 -0
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.func.js +21 -13
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.react.js +20 -3
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +40 -0
- package/esm/cosmos_proto/bundle.js +1 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/cosmwasm/bundle.js +12 -0
- package/esm/cosmwasm/wasm/v1/authz.js +113 -0
- package/esm/cosmwasm/wasm/v1/genesis.js +34 -0
- package/esm/cosmwasm/wasm/v1/ibc.js +24 -0
- package/esm/cosmwasm/wasm/v1/proposal_legacy.js +166 -0
- package/esm/cosmwasm/wasm/v1/query.js +580 -0
- package/esm/cosmwasm/wasm/v1/query.rpc.func.js +112 -25
- package/esm/cosmwasm/wasm/v1/query.rpc.react.js +106 -13
- package/esm/cosmwasm/wasm/v1/tx.js +267 -0
- package/esm/cosmwasm/wasm/v1/tx.registry.js +314 -0
- package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +178 -119
- package/esm/cosmwasm/wasm/v1/tx.rpc.react.js +162 -34
- package/esm/cosmwasm/wasm/v1/types.js +58 -0
- package/esm/ethermint/bundle.js +25 -0
- package/esm/ethermint/crypto/v1/ethsecp256k1/keys.js +15 -0
- package/esm/ethermint/evm/v1/events.js +24 -0
- package/esm/ethermint/evm/v1/evm.js +69 -0
- package/esm/ethermint/evm/v1/genesis.js +21 -0
- package/esm/ethermint/evm/v1/query.js +167 -0
- package/esm/ethermint/evm/v1/query.rpc.func.js +87 -24
- package/esm/ethermint/evm/v1/query.rpc.react.js +88 -13
- package/esm/ethermint/evm/v1/tx.js +66 -0
- package/esm/ethermint/evm/v1/tx.registry.js +44 -0
- package/esm/ethermint/evm/v1/tx.rpc.func.js +17 -13
- package/esm/ethermint/evm/v1/tx.rpc.react.js +16 -3
- package/esm/ethermint/feemarket/v1/events.js +12 -0
- package/esm/ethermint/feemarket/v1/feemarket.js +6 -0
- package/esm/ethermint/feemarket/v1/genesis.js +10 -0
- package/esm/ethermint/feemarket/v1/query.js +42 -0
- package/esm/ethermint/feemarket/v1/query.rpc.func.js +21 -6
- package/esm/ethermint/feemarket/v1/query.rpc.react.js +22 -4
- package/esm/ethermint/feemarket/v1/tx.js +17 -0
- package/esm/ethermint/feemarket/v1/tx.registry.js +26 -0
- package/esm/ethermint/feemarket/v1/tx.rpc.func.js +9 -7
- package/esm/ethermint/feemarket/v1/tx.rpc.react.js +9 -2
- package/esm/ethermint/types/v1/account.js +10 -0
- package/esm/ethermint/types/v1/dynamic_fee.js +6 -0
- package/esm/ethermint/types/v1/indexer.js +6 -0
- package/esm/ethermint/types/v1/web3.js +7 -0
- package/esm/extern.js +14 -4
- package/esm/google/api/http.js +290 -0
- package/esm/google/bundle.js +5 -0
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +553 -11
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helper-func-types.js +14 -22
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +28 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +14 -4
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.js +15 -3
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +43 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +62 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +24 -19
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.js +22 -4
- package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +41 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.js +16 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +7 -2
- package/esm/ibc/applications/interchain_accounts/host/v1/query.rpc.react.js +8 -2
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +31 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.registry.js +44 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +16 -13
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.js +15 -3
- package/esm/ibc/applications/interchain_accounts/v1/account.js +9 -0
- package/esm/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/esm/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/esm/ibc/applications/transfer/v1/authz.js +19 -0
- package/esm/ibc/applications/transfer/v1/denomtrace.js +98 -0
- package/esm/ibc/applications/transfer/v1/genesis.js +24 -13
- package/esm/ibc/applications/transfer/{v2 → v1}/packet.js +10 -2
- package/esm/ibc/applications/transfer/v1/query.js +270 -175
- package/esm/ibc/applications/transfer/v1/query.rpc.func.js +55 -25
- package/esm/ibc/applications/transfer/v1/query.rpc.react.js +49 -13
- package/esm/ibc/applications/transfer/v1/token.js +300 -0
- package/esm/ibc/applications/transfer/v1/transfer.js +9 -89
- package/esm/ibc/applications/transfer/v1/tx.js +49 -3
- package/esm/ibc/applications/transfer/v1/tx.registry.js +44 -0
- package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +16 -13
- package/esm/ibc/applications/transfer/v1/tx.rpc.react.js +15 -3
- package/esm/ibc/bundle.js +94 -0
- package/esm/ibc/core/channel/v1/channel.js +84 -124
- package/esm/ibc/core/channel/v1/genesis.js +21 -17
- package/esm/ibc/core/channel/v1/query.js +252 -530
- package/esm/ibc/core/channel/v1/query.rpc.func.js +107 -53
- package/esm/ibc/core/channel/v1/query.rpc.react.js +107 -27
- package/esm/ibc/core/channel/v1/tx.js +164 -1970
- package/esm/ibc/core/channel/v1/tx.registry.js +190 -2
- package/esm/ibc/core/channel/v1/tx.rpc.func.js +91 -134
- package/esm/ibc/core/channel/v1/tx.rpc.react.js +81 -47
- package/esm/ibc/core/channel/v2/genesis.js +360 -0
- package/esm/ibc/core/channel/v2/packet.js +508 -0
- package/esm/ibc/core/channel/v2/query.js +1727 -0
- package/esm/ibc/core/channel/v2/query.rpc.func.js +106 -0
- package/esm/ibc/core/channel/v2/query.rpc.react.js +82 -0
- package/esm/ibc/core/channel/v2/tx.js +901 -0
- package/esm/ibc/core/channel/v2/tx.registry.js +82 -0
- package/esm/ibc/core/channel/v2/tx.rpc.func.js +38 -0
- package/esm/ibc/core/channel/v2/tx.rpc.react.js +38 -0
- package/esm/ibc/core/client/v1/client.js +50 -235
- package/esm/ibc/core/client/v1/genesis.js +27 -0
- package/esm/ibc/core/client/v1/query.js +355 -16
- package/esm/ibc/core/client/v1/query.rpc.func.js +86 -21
- package/esm/ibc/core/client/v1/query.rpc.react.js +83 -11
- package/esm/ibc/core/client/v1/tx.js +279 -7
- package/esm/ibc/core/client/v1/tx.registry.js +154 -2
- package/esm/ibc/core/client/v1/tx.rpc.func.js +72 -50
- package/esm/ibc/core/client/v1/tx.rpc.react.js +59 -8
- package/esm/ibc/core/client/v2/config.js +90 -0
- package/esm/ibc/core/client/v2/counterparty.js +100 -0
- package/esm/ibc/core/client/v2/genesis.js +194 -0
- package/esm/ibc/core/client/v2/query.js +348 -0
- package/esm/ibc/core/client/v2/query.rpc.func.js +28 -0
- package/esm/ibc/core/client/v2/query.rpc.react.js +22 -0
- package/esm/ibc/core/client/v2/tx.js +378 -0
- package/esm/ibc/core/client/v2/tx.registry.js +46 -0
- package/esm/ibc/core/client/v2/tx.rpc.func.js +20 -0
- package/esm/ibc/core/client/v2/tx.rpc.react.js +20 -0
- package/esm/ibc/core/commitment/v1/commitment.js +29 -80
- package/esm/ibc/core/commitment/v2/commitment.js +118 -0
- package/esm/ibc/core/connection/v1/connection.js +57 -0
- package/esm/ibc/core/connection/v1/genesis.js +10 -0
- package/esm/ibc/core/connection/v1/query.js +105 -0
- package/esm/ibc/core/connection/v1/query.rpc.func.js +45 -12
- package/esm/ibc/core/connection/v1/query.rpc.react.js +46 -7
- package/esm/ibc/core/connection/v1/tx.js +82 -0
- package/esm/ibc/core/connection/v1/tx.registry.js +98 -0
- package/esm/ibc/core/connection/v1/tx.rpc.func.js +42 -31
- package/esm/ibc/core/connection/v1/tx.rpc.react.js +38 -6
- package/esm/ibc/core/types/v1/genesis.js +41 -3
- package/esm/ibc/lightclients/solomachine/v2/solomachine.js +122 -0
- package/esm/ibc/lightclients/solomachine/v3/solomachine.js +61 -0
- package/esm/ibc/lightclients/tendermint/v1/tendermint.js +57 -0
- package/esm/ibc/lightclients/wasm/v1/genesis.js +16 -0
- package/esm/ibc/lightclients/wasm/v1/query.js +31 -0
- package/esm/ibc/lightclients/wasm/v1/query.rpc.func.js +14 -4
- package/esm/ibc/lightclients/wasm/v1/query.rpc.react.js +15 -3
- package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/esm/ibc/lightclients/wasm/v1/tx.registry.js +62 -0
- package/esm/ibc/lightclients/wasm/v1/tx.rpc.func.js +24 -19
- package/esm/ibc/lightclients/wasm/v1/tx.rpc.react.js +22 -4
- package/esm/ibc/lightclients/wasm/v1/wasm.js +32 -0
- package/esm/index.js +21 -0
- package/esm/react-query.js +4 -6
- package/esm/registry.js +9 -1
- package/esm/tendermint/abci/types.js +322 -0
- package/esm/tendermint/bundle.js +10 -0
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +36 -0
- package/esm/tendermint/p2p/types.js +24 -0
- package/esm/tendermint/types/block.js +9 -0
- package/esm/tendermint/types/evidence.js +35 -0
- package/esm/tendermint/types/params.js +50 -0
- package/esm/tendermint/types/types.js +121 -0
- package/esm/tendermint/types/validator.js +25 -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/esm/xpla/bundle.js +28 -0
- package/esm/xpla/burn/v1beta1/burn.js +111 -0
- package/esm/{cosmos/genutil → xpla/burn}/v1beta1/genesis.js +26 -23
- package/esm/xpla/burn/v1beta1/query.js +327 -0
- package/esm/xpla/burn/v1beta1/query.rpc.func.js +28 -0
- package/esm/xpla/burn/v1beta1/query.rpc.react.js +22 -0
- package/esm/xpla/burn/v1beta1/tx.js +169 -0
- package/esm/xpla/burn/v1beta1/tx.registry.js +28 -0
- package/esm/xpla/burn/v1beta1/tx.rpc.func.js +11 -0
- package/esm/xpla/burn/v1beta1/tx.rpc.react.js +11 -0
- package/esm/xpla/reward/v1beta1/genesis.js +10 -0
- package/esm/xpla/reward/v1beta1/query.js +33 -0
- package/esm/xpla/reward/v1beta1/query.rpc.func.js +14 -4
- package/esm/xpla/reward/v1beta1/query.rpc.react.js +15 -3
- package/esm/xpla/reward/v1beta1/reward.js +6 -0
- package/esm/xpla/reward/v1beta1/tx.js +35 -0
- package/esm/xpla/reward/v1beta1/tx.registry.js +44 -0
- package/esm/xpla/reward/v1beta1/tx.rpc.func.js +19 -13
- package/esm/xpla/reward/v1beta1/tx.rpc.react.js +18 -3
- package/esm/xpla/volunteer/v1beta1/genesis.js +10 -0
- package/esm/xpla/volunteer/v1beta1/proposal.js +34 -0
- package/esm/xpla/volunteer/v1beta1/query.js +12 -0
- package/esm/xpla/volunteer/v1beta1/query.rpc.func.js +7 -2
- package/esm/xpla/volunteer/v1beta1/query.rpc.react.js +8 -2
- package/esm/xpla/volunteer/v1beta1/tx.js +31 -0
- package/esm/xpla/volunteer/v1beta1/tx.registry.js +44 -0
- package/esm/xpla/volunteer/v1beta1/tx.rpc.func.js +17 -13
- package/esm/xpla/volunteer/v1beta1/tx.rpc.react.js +16 -3
- package/esm/xpla/volunteer/v1beta1/volunteervalidator.js +6 -0
- package/ethermint/bundle.d.ts +25 -0
- package/ethermint/bundle.js +142 -0
- package/ethermint/crypto/v1/ethsecp256k1/keys.d.ts +39 -4
- package/ethermint/crypto/v1/ethsecp256k1/keys.js +15 -0
- package/ethermint/evm/v1/events.d.ts +144 -32
- package/ethermint/evm/v1/events.js +24 -0
- package/ethermint/evm/v1/evm.d.ts +434 -110
- package/ethermint/evm/v1/evm.js +69 -0
- package/ethermint/evm/v1/genesis.d.ts +62 -12
- package/ethermint/evm/v1/genesis.js +21 -0
- package/ethermint/evm/v1/query.d.ts +673 -126
- package/ethermint/evm/v1/query.js +167 -0
- package/ethermint/evm/v1/query.rpc.func.d.ts +87 -13
- package/ethermint/evm/v1/query.rpc.func.js +88 -37
- package/ethermint/evm/v1/query.rpc.react.d.ts +75 -0
- package/ethermint/evm/v1/query.rpc.react.js +87 -12
- package/ethermint/evm/v1/tx.d.ts +363 -88
- package/ethermint/evm/v1/tx.js +66 -0
- package/ethermint/evm/v1/tx.registry.d.ts +33 -0
- package/ethermint/evm/v1/tx.registry.js +45 -1
- package/ethermint/evm/v1/tx.rpc.func.d.ts +15 -3
- package/ethermint/evm/v1/tx.rpc.func.js +18 -16
- package/ethermint/evm/v1/tx.rpc.react.d.ts +15 -2
- package/ethermint/evm/v1/tx.rpc.react.js +15 -2
- package/ethermint/feemarket/v1/events.d.ts +54 -10
- package/ethermint/feemarket/v1/events.js +12 -0
- package/ethermint/feemarket/v1/feemarket.d.ts +42 -10
- package/ethermint/feemarket/v1/feemarket.js +6 -0
- package/ethermint/feemarket/v1/genesis.d.ts +24 -4
- package/ethermint/feemarket/v1/genesis.js +10 -0
- package/ethermint/feemarket/v1/query.d.ts +116 -14
- package/ethermint/feemarket/v1/query.js +42 -0
- package/ethermint/feemarket/v1/query.rpc.func.d.ts +21 -4
- package/ethermint/feemarket/v1/query.rpc.func.js +22 -10
- package/ethermint/feemarket/v1/query.rpc.react.d.ts +18 -0
- package/ethermint/feemarket/v1/query.rpc.react.js +21 -3
- package/ethermint/feemarket/v1/tx.d.ts +37 -4
- package/ethermint/feemarket/v1/tx.js +17 -0
- package/ethermint/feemarket/v1/tx.registry.d.ts +21 -0
- package/ethermint/feemarket/v1/tx.registry.js +27 -1
- package/ethermint/feemarket/v1/tx.rpc.func.d.ts +8 -2
- package/ethermint/feemarket/v1/tx.rpc.func.js +10 -9
- package/ethermint/feemarket/v1/tx.rpc.react.d.ts +8 -1
- package/ethermint/feemarket/v1/tx.rpc.react.js +8 -1
- package/ethermint/types/v1/account.d.ts +25 -4
- package/ethermint/types/v1/account.js +10 -0
- package/ethermint/types/v1/dynamic_fee.d.ts +24 -4
- package/ethermint/types/v1/dynamic_fee.js +6 -0
- package/ethermint/types/v1/indexer.d.ts +42 -10
- package/ethermint/types/v1/indexer.js +6 -0
- package/ethermint/types/v1/web3.d.ts +13 -0
- package/ethermint/types/v1/web3.js +7 -0
- package/extern.d.ts +3 -2
- package/extern.js +14 -4
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +290 -0
- package/google/bundle.d.ts +5 -0
- package/google/bundle.js +21 -0
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +833 -86
- package/google/protobuf/descriptor.js +561 -13
- 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 +7 -87
- package/helper-func-types.js +15 -24
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +19 -2
- package/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +78 -10
- package/ibc/applications/interchain_accounts/controller/v1/query.js +28 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.d.ts +14 -3
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +15 -7
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.d.ts +12 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.js +14 -2
- package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
- package/ibc/applications/interchain_accounts/controller/v1/tx.js +43 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.registry.d.ts +45 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +63 -1
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.d.ts +21 -4
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +25 -23
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.d.ts +21 -3
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.js +21 -3
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +41 -0
- package/ibc/applications/interchain_accounts/host/v1/host.d.ts +38 -4
- package/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/ibc/applications/interchain_accounts/host/v1/query.d.ts +42 -6
- package/ibc/applications/interchain_accounts/host/v1/query.js +16 -0
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.d.ts +7 -2
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +8 -4
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.react.d.ts +6 -0
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.react.js +7 -1
- package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
- package/ibc/applications/interchain_accounts/host/v1/tx.js +31 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.registry.d.ts +33 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.registry.js +45 -1
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.d.ts +14 -3
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +17 -16
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.d.ts +14 -2
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.js +14 -2
- package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
- package/ibc/applications/interchain_accounts/v1/account.js +9 -0
- package/ibc/applications/interchain_accounts/v1/metadata.d.ts +43 -10
- package/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/ibc/applications/interchain_accounts/v1/packet.d.ts +36 -4
- package/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/ibc/applications/transfer/v1/authz.d.ts +61 -12
- package/ibc/applications/transfer/v1/authz.js +19 -0
- package/ibc/applications/transfer/v1/denomtrace.d.ts +73 -0
- package/ibc/applications/transfer/v1/denomtrace.js +101 -0
- package/ibc/applications/transfer/v1/genesis.d.ts +22 -5
- package/ibc/applications/transfer/v1/genesis.js +23 -12
- package/ibc/applications/transfer/{v2 → v1}/packet.d.ts +45 -11
- package/ibc/applications/transfer/{v2 → v1}/packet.js +10 -2
- package/ibc/applications/transfer/v1/query.d.ts +389 -170
- package/ibc/applications/transfer/v1/query.js +270 -175
- package/ibc/applications/transfer/v1/query.rpc.func.d.ts +43 -8
- package/ibc/applications/transfer/v1/query.rpc.func.js +55 -31
- package/ibc/applications/transfer/v1/query.rpc.react.d.ts +39 -3
- package/ibc/applications/transfer/v1/query.rpc.react.js +49 -13
- package/ibc/applications/transfer/v1/token.d.ts +179 -0
- package/ibc/applications/transfer/v1/token.js +303 -0
- package/ibc/applications/transfer/v1/transfer.d.ts +15 -51
- package/ibc/applications/transfer/v1/transfer.js +10 -90
- package/ibc/applications/transfer/v1/tx.d.ts +127 -24
- package/ibc/applications/transfer/v1/tx.js +49 -3
- package/ibc/applications/transfer/v1/tx.registry.d.ts +33 -0
- package/ibc/applications/transfer/v1/tx.registry.js +45 -1
- package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +14 -3
- package/ibc/applications/transfer/v1/tx.rpc.func.js +17 -16
- package/ibc/applications/transfer/v1/tx.rpc.react.d.ts +14 -2
- package/ibc/applications/transfer/v1/tx.rpc.react.js +14 -2
- package/ibc/bundle.d.ts +94 -0
- package/ibc/bundle.js +540 -0
- package/ibc/core/channel/v1/channel.d.ts +293 -120
- package/ibc/core/channel/v1/channel.js +85 -125
- package/ibc/core/channel/v1/genesis.d.ts +38 -7
- package/ibc/core/channel/v1/genesis.js +20 -16
- package/ibc/core/channel/v1/query.d.ts +840 -378
- package/ibc/core/channel/v1/query.js +252 -530
- package/ibc/core/channel/v1/query.rpc.func.d.ts +107 -19
- package/ibc/core/channel/v1/query.rpc.func.js +107 -70
- package/ibc/core/channel/v1/query.rpc.react.d.ts +93 -4
- package/ibc/core/channel/v1/query.rpc.react.js +107 -27
- package/ibc/core/channel/v1/tx.d.ts +335 -747
- package/ibc/core/channel/v1/tx.js +164 -1970
- package/ibc/core/channel/v1/tx.registry.d.ts +129 -0
- package/ibc/core/channel/v1/tx.registry.js +190 -2
- package/ibc/core/channel/v1/tx.rpc.func.d.ts +72 -21
- package/ibc/core/channel/v1/tx.rpc.func.js +91 -153
- package/ibc/core/channel/v1/tx.rpc.react.d.ts +72 -20
- package/ibc/core/channel/v1/tx.rpc.react.js +81 -47
- package/ibc/core/channel/v2/genesis.d.ts +202 -0
- package/ibc/core/channel/v2/genesis.js +363 -0
- package/ibc/core/channel/v2/packet.d.ts +322 -0
- package/ibc/core/channel/v2/packet.js +513 -0
- package/ibc/core/channel/v2/query.d.ts +1067 -0
- package/ibc/core/channel/v2/query.js +1730 -0
- package/ibc/core/channel/v2/query.rpc.func.d.ts +57 -0
- package/ibc/core/channel/v2/query.rpc.func.js +109 -0
- package/ibc/core/channel/v2/query.rpc.react.d.ts +57 -0
- package/ibc/core/channel/v2/query.rpc.react.js +85 -0
- package/ibc/core/channel/v2/tx.d.ts +437 -0
- package/ibc/core/channel/v2/tx.js +906 -0
- package/ibc/core/channel/v2/tx.registry.d.ts +59 -0
- package/ibc/core/channel/v2/tx.registry.js +85 -0
- package/ibc/core/channel/v2/tx.rpc.func.d.ts +29 -0
- package/ibc/core/channel/v2/tx.rpc.func.js +41 -0
- package/ibc/core/channel/v2/tx.rpc.react.d.ts +29 -0
- package/ibc/core/channel/v2/tx.rpc.react.js +41 -0
- package/ibc/core/client/v1/client.d.ts +133 -153
- package/ibc/core/client/v1/client.js +51 -236
- package/ibc/core/client/v1/genesis.d.ts +86 -20
- package/ibc/core/client/v1/genesis.js +27 -0
- package/ibc/core/client/v1/query.d.ts +591 -75
- package/ibc/core/client/v1/query.js +356 -17
- package/ibc/core/client/v1/query.rpc.func.d.ts +80 -12
- package/ibc/core/client/v1/query.rpc.func.js +86 -31
- package/ibc/core/client/v1/query.rpc.react.d.ts +70 -1
- package/ibc/core/client/v1/query.rpc.react.js +83 -11
- package/ibc/core/client/v1/tx.d.ts +454 -60
- package/ibc/core/client/v1/tx.js +280 -8
- package/ibc/core/client/v1/tx.registry.d.ts +105 -0
- package/ibc/core/client/v1/tx.registry.js +154 -2
- package/ibc/core/client/v1/tx.rpc.func.d.ts +57 -9
- package/ibc/core/client/v1/tx.rpc.func.js +73 -58
- package/ibc/core/client/v1/tx.rpc.react.d.ts +57 -8
- package/ibc/core/client/v1/tx.rpc.react.js +59 -8
- package/ibc/core/client/v2/config.d.ts +66 -0
- package/ibc/core/client/v2/config.js +93 -0
- package/ibc/core/client/v2/counterparty.d.ts +65 -0
- package/ibc/core/client/v2/counterparty.js +103 -0
- package/ibc/core/client/v2/genesis.d.ts +121 -0
- package/ibc/core/client/v2/genesis.js +197 -0
- package/ibc/core/client/v2/query.d.ts +218 -0
- package/ibc/core/client/v2/query.js +351 -0
- package/ibc/core/client/v2/query.rpc.func.d.ts +15 -0
- package/ibc/core/client/v2/query.rpc.func.js +31 -0
- package/ibc/core/client/v2/query.rpc.react.d.ts +15 -0
- package/ibc/core/client/v2/query.rpc.react.js +25 -0
- package/ibc/core/client/v2/tx.d.ts +251 -0
- package/ibc/core/client/v2/tx.js +381 -0
- package/ibc/core/client/v2/tx.registry.d.ts +35 -0
- package/ibc/core/client/v2/tx.registry.js +49 -0
- package/ibc/core/client/v2/tx.rpc.func.d.ts +15 -0
- package/ibc/core/client/v2/tx.rpc.func.js +23 -0
- package/ibc/core/client/v2/tx.rpc.react.d.ts +15 -0
- package/ibc/core/client/v2/tx.rpc.react.js +23 -0
- package/ibc/core/commitment/v1/commitment.d.ts +43 -41
- package/ibc/core/commitment/v1/commitment.js +30 -81
- package/ibc/core/commitment/v2/commitment.d.ts +141 -0
- package/ibc/core/commitment/v2/commitment.js +121 -0
- package/ibc/core/connection/v1/connection.d.ts +199 -38
- package/ibc/core/connection/v1/connection.js +57 -0
- package/ibc/core/connection/v1/genesis.d.ts +24 -4
- package/ibc/core/connection/v1/genesis.js +10 -0
- package/ibc/core/connection/v1/query.d.ts +293 -46
- package/ibc/core/connection/v1/query.js +105 -0
- package/ibc/core/connection/v1/query.rpc.func.d.ts +45 -7
- package/ibc/core/connection/v1/query.rpc.func.js +46 -19
- package/ibc/core/connection/v1/query.rpc.react.d.ts +39 -0
- package/ibc/core/connection/v1/query.rpc.react.js +45 -6
- package/ibc/core/connection/v1/tx.d.ts +254 -32
- package/ibc/core/connection/v1/tx.js +82 -0
- package/ibc/core/connection/v1/tx.registry.d.ts +69 -0
- package/ibc/core/connection/v1/tx.registry.js +99 -1
- package/ibc/core/connection/v1/tx.rpc.func.d.ts +37 -6
- package/ibc/core/connection/v1/tx.rpc.func.js +43 -37
- package/ibc/core/connection/v1/tx.rpc.react.d.ts +37 -5
- package/ibc/core/connection/v1/tx.rpc.react.js +37 -5
- package/ibc/core/types/v1/genesis.d.ts +56 -8
- package/ibc/core/types/v1/genesis.js +41 -3
- package/ibc/lightclients/solomachine/v2/solomachine.d.ts +279 -26
- package/ibc/lightclients/solomachine/v2/solomachine.js +122 -0
- package/ibc/lightclients/solomachine/v3/solomachine.d.ts +182 -28
- package/ibc/lightclients/solomachine/v3/solomachine.js +61 -0
- package/ibc/lightclients/tendermint/v1/tendermint.d.ts +142 -28
- package/ibc/lightclients/tendermint/v1/tendermint.js +57 -0
- package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
- package/ibc/lightclients/wasm/v1/genesis.js +16 -0
- package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
- package/ibc/lightclients/wasm/v1/query.js +31 -0
- package/ibc/lightclients/wasm/v1/query.rpc.func.d.ts +14 -3
- package/ibc/lightclients/wasm/v1/query.rpc.func.js +15 -7
- package/ibc/lightclients/wasm/v1/query.rpc.react.d.ts +12 -0
- package/ibc/lightclients/wasm/v1/query.rpc.react.js +14 -2
- package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
- package/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/ibc/lightclients/wasm/v1/tx.registry.d.ts +45 -0
- package/ibc/lightclients/wasm/v1/tx.registry.js +63 -1
- package/ibc/lightclients/wasm/v1/tx.rpc.func.d.ts +21 -4
- package/ibc/lightclients/wasm/v1/tx.rpc.func.js +25 -23
- package/ibc/lightclients/wasm/v1/tx.rpc.react.d.ts +21 -3
- package/ibc/lightclients/wasm/v1/tx.rpc.react.js +21 -3
- package/ibc/lightclients/wasm/v1/wasm.d.ts +72 -8
- package/ibc/lightclients/wasm/v1/wasm.js +32 -0
- package/index.d.ts +21 -0
- package/index.js +37 -0
- package/package.json +8 -9
- package/react-query.d.ts +8 -6
- package/react-query.js +5 -7
- package/registry.d.ts +3 -1
- package/registry.js +9 -1
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +322 -0
- package/tendermint/bundle.d.ts +10 -0
- package/tendermint/bundle.js +115 -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 +36 -0
- package/tendermint/p2p/types.d.ts +60 -0
- package/tendermint/p2p/types.js +24 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +9 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +35 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +50 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +121 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +25 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +4 -49
- 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/xpla/bundle.d.ts +28 -0
- package/xpla/bundle.js +71 -0
- package/xpla/burn/v1beta1/burn.d.ts +54 -0
- package/xpla/burn/v1beta1/burn.js +114 -0
- package/{cosmos/crisis → xpla/burn}/v1beta1/genesis.d.ts +26 -13
- package/{cosmos/genutil → xpla/burn}/v1beta1/genesis.js +26 -23
- package/xpla/burn/v1beta1/query.d.ts +204 -0
- package/xpla/burn/v1beta1/query.js +330 -0
- package/xpla/burn/v1beta1/query.rpc.func.d.ts +15 -0
- package/xpla/burn/v1beta1/query.rpc.func.js +31 -0
- package/xpla/burn/v1beta1/query.rpc.react.d.ts +15 -0
- package/xpla/burn/v1beta1/query.rpc.react.js +25 -0
- package/xpla/burn/v1beta1/tx.d.ts +105 -0
- package/xpla/burn/v1beta1/tx.js +172 -0
- package/{cosmos/nft → xpla/burn}/v1beta1/tx.registry.d.ts +6 -6
- package/{cosmos/nft → xpla/burn}/v1beta1/tx.registry.js +9 -9
- package/xpla/burn/v1beta1/tx.rpc.func.d.ts +8 -0
- package/xpla/burn/v1beta1/tx.rpc.func.js +14 -0
- package/xpla/burn/v1beta1/tx.rpc.react.d.ts +8 -0
- package/xpla/burn/v1beta1/tx.rpc.react.js +14 -0
- package/xpla/reward/v1beta1/genesis.d.ts +24 -4
- package/xpla/reward/v1beta1/genesis.js +10 -0
- package/xpla/reward/v1beta1/query.d.ts +74 -8
- package/xpla/reward/v1beta1/query.js +33 -0
- package/xpla/reward/v1beta1/query.rpc.func.d.ts +14 -3
- package/xpla/reward/v1beta1/query.rpc.func.js +15 -7
- package/xpla/reward/v1beta1/query.rpc.react.d.ts +12 -0
- package/xpla/reward/v1beta1/query.rpc.react.js +14 -2
- package/xpla/reward/v1beta1/reward.d.ts +18 -2
- package/xpla/reward/v1beta1/reward.js +6 -0
- package/xpla/reward/v1beta1/tx.d.ts +64 -4
- package/xpla/reward/v1beta1/tx.js +35 -0
- package/xpla/reward/v1beta1/tx.registry.d.ts +33 -0
- package/xpla/reward/v1beta1/tx.registry.js +45 -1
- package/xpla/reward/v1beta1/tx.rpc.func.d.ts +17 -3
- package/xpla/reward/v1beta1/tx.rpc.func.js +20 -16
- package/xpla/reward/v1beta1/tx.rpc.react.d.ts +17 -2
- package/xpla/reward/v1beta1/tx.rpc.react.js +17 -2
- package/xpla/volunteer/v1beta1/genesis.d.ts +18 -2
- package/xpla/volunteer/v1beta1/genesis.js +10 -0
- package/xpla/volunteer/v1beta1/proposal.d.ts +84 -16
- package/xpla/volunteer/v1beta1/proposal.js +34 -0
- package/xpla/volunteer/v1beta1/query.d.ts +36 -4
- package/xpla/volunteer/v1beta1/query.js +12 -0
- package/xpla/volunteer/v1beta1/query.rpc.func.d.ts +7 -2
- package/xpla/volunteer/v1beta1/query.rpc.func.js +8 -4
- package/xpla/volunteer/v1beta1/query.rpc.react.d.ts +6 -0
- package/xpla/volunteer/v1beta1/query.rpc.react.js +7 -1
- package/xpla/volunteer/v1beta1/tx.d.ts +64 -4
- package/xpla/volunteer/v1beta1/tx.js +31 -0
- package/xpla/volunteer/v1beta1/tx.registry.d.ts +33 -0
- package/xpla/volunteer/v1beta1/tx.registry.js +45 -1
- package/xpla/volunteer/v1beta1/tx.rpc.func.d.ts +15 -3
- package/xpla/volunteer/v1beta1/tx.rpc.func.js +18 -16
- package/xpla/volunteer/v1beta1/tx.rpc.react.d.ts +15 -2
- package/xpla/volunteer/v1beta1/tx.rpc.react.js +15 -2
- package/xpla/volunteer/v1beta1/volunteervalidator.d.ts +30 -6
- package/xpla/volunteer/v1beta1/volunteervalidator.js +6 -0
- package/cosmos/app/runtime/v2/module.d.ts +0 -231
- package/cosmos/app/runtime/v2/module.js +0 -421
- package/cosmos/auth/v1beta1/accounts.d.ts +0 -106
- package/cosmos/auth/v1beta1/accounts.js +0 -161
- package/cosmos/base/grpc/v2/service.d.ts +0 -168
- package/cosmos/base/grpc/v2/service.js +0 -394
- package/cosmos/base/grpc/v2/service.rpc.func.d.ts +0 -4
- package/cosmos/base/grpc/v2/service.rpc.func.js +0 -23
- package/cosmos/base/grpc/v2/service.rpc.react.d.ts +0 -3
- package/cosmos/base/grpc/v2/service.rpc.react.js +0 -13
- package/cosmos/circuit/module/v1/module.d.ts +0 -36
- package/cosmos/circuit/module/v1/module.js +0 -83
- package/cosmos/circuit/v1/query.d.ts +0 -200
- package/cosmos/circuit/v1/query.js +0 -480
- package/cosmos/circuit/v1/query.rpc.func.d.ts +0 -8
- package/cosmos/circuit/v1/query.rpc.func.js +0 -42
- package/cosmos/circuit/v1/tx.d.ts +0 -251
- package/cosmos/circuit/v1/tx.js +0 -528
- package/cosmos/circuit/v1/tx.registry.d.ts +0 -47
- package/cosmos/circuit/v1/tx.registry.js +0 -67
- package/cosmos/circuit/v1/tx.rpc.func.d.ts +0 -8
- package/cosmos/circuit/v1/tx.rpc.func.js +0 -37
- package/cosmos/circuit/v1/types.d.ts +0 -151
- package/cosmos/circuit/v1/types.js +0 -350
- package/cosmos/crisis/module/v1/module.d.ts +0 -40
- package/cosmos/crisis/module/v1/module.js +0 -95
- package/cosmos/crisis/v1beta1/genesis.js +0 -84
- package/cosmos/crisis/v1beta1/tx.d.ts +0 -161
- package/cosmos/crisis/v1beta1/tx.js +0 -328
- package/cosmos/crisis/v1beta1/tx.rpc.func.d.ts +0 -6
- package/cosmos/crisis/v1beta1/tx.rpc.func.js +0 -27
- package/cosmos/crypto/ed25519/keys.d.ts +0 -84
- package/cosmos/crypto/ed25519/keys.js +0 -162
- package/cosmos/crypto/hd/v1/hd.d.ts +0 -58
- package/cosmos/crypto/hd/v1/hd.js +0 -131
- package/cosmos/crypto/keyring/v1/record.d.ts +0 -188
- package/cosmos/crypto/keyring/v1/record.js +0 -431
- package/cosmos/crypto/multisig/keys.d.ts +0 -45
- package/cosmos/crypto/multisig/keys.js +0 -99
- package/cosmos/crypto/secp256k1/keys.d.ts +0 -78
- package/cosmos/crypto/secp256k1/keys.js +0 -162
- package/cosmos/crypto/secp256r1/keys.d.ts +0 -76
- package/cosmos/crypto/secp256r1/keys.js +0 -162
- package/cosmos/genutil/module/v1/module.d.ts +0 -32
- package/cosmos/genutil/module/v1/module.js +0 -70
- package/cosmos/genutil/v1beta1/genesis.d.ts +0 -36
- package/cosmos/group/module/v1/module.d.ts +0 -53
- package/cosmos/group/module/v1/module.js +0 -96
- package/cosmos/group/v1/events.d.ts +0 -363
- package/cosmos/group/v1/events.js +0 -847
- package/cosmos/group/v1/genesis.d.ts +0 -83
- package/cosmos/group/v1/genesis.js +0 -183
- package/cosmos/group/v1/query.d.ts +0 -1044
- package/cosmos/group/v1/query.js +0 -2434
- package/cosmos/group/v1/query.rpc.func.d.ts +0 -30
- package/cosmos/group/v1/query.rpc.func.js +0 -174
- package/cosmos/group/v1/tx.d.ts +0 -1140
- package/cosmos/group/v1/tx.js +0 -2567
- package/cosmos/group/v1/tx.registry.d.ts +0 -179
- package/cosmos/group/v1/tx.registry.js +0 -265
- package/cosmos/group/v1/tx.rpc.func.d.ts +0 -30
- package/cosmos/group/v1/tx.rpc.func.js +0 -147
- package/cosmos/group/v1/types.d.ts +0 -799
- package/cosmos/group/v1/types.js +0 -1542
- package/cosmos/msg/textual/v1/textual.d.ts +0 -1
- package/cosmos/msg/textual/v1/textual.js +0 -2
- package/cosmos/nft/module/v1/module.d.ts +0 -32
- package/cosmos/nft/module/v1/module.js +0 -70
- package/cosmos/nft/v1beta1/event.d.ts +0 -132
- package/cosmos/nft/v1beta1/event.js +0 -323
- package/cosmos/nft/v1beta1/genesis.d.ts +0 -79
- package/cosmos/nft/v1beta1/genesis.js +0 -195
- package/cosmos/nft/v1beta1/nft.d.ts +0 -111
- package/cosmos/nft/v1beta1/nft.js +0 -282
- package/cosmos/nft/v1beta1/query.d.ts +0 -508
- package/cosmos/nft/v1beta1/query.js +0 -1189
- package/cosmos/nft/v1beta1/query.rpc.func.d.ts +0 -16
- package/cosmos/nft/v1beta1/query.rpc.func.js +0 -90
- package/cosmos/nft/v1beta1/tx.d.ts +0 -78
- package/cosmos/nft/v1beta1/tx.js +0 -184
- package/cosmos/nft/v1beta1/tx.rpc.func.d.ts +0 -4
- package/cosmos/nft/v1beta1/tx.rpc.func.js +0 -17
- package/cosmos/orm/module/v1alpha1/module.d.ts +0 -40
- package/cosmos/orm/module/v1alpha1/module.js +0 -70
- package/cosmos/orm/query/v1alpha1/query.d.ts +0 -367
- package/cosmos/orm/query/v1alpha1/query.js +0 -751
- package/cosmos/orm/query/v1alpha1/query.rpc.func.d.ts +0 -6
- package/cosmos/orm/query/v1alpha1/query.rpc.func.js +0 -30
- package/cosmos/orm/v1/orm.d.ts +0 -278
- package/cosmos/orm/v1/orm.js +0 -380
- package/cosmos/orm/v1alpha1/schema.d.ts +0 -134
- package/cosmos/orm/v1alpha1/schema.js +0 -258
- package/cosmos/reflection/v1/reflection.d.ts +0 -67
- package/cosmos/reflection/v1/reflection.js +0 -152
- package/cosmos/reflection/v1/reflection.rpc.func.d.ts +0 -4
- package/cosmos/reflection/v1/reflection.rpc.func.js +0 -18
- package/cosmos/store/internal/kv/v1beta1/kv.d.ts +0 -68
- package/cosmos/store/internal/kv/v1beta1/kv.js +0 -177
- package/cosmos/store/snapshots/v1/snapshot.d.ts +0 -294
- package/cosmos/store/snapshots/v1/snapshot.js +0 -687
- package/cosmos/store/snapshots/v2/snapshot.d.ts +0 -254
- package/cosmos/store/snapshots/v2/snapshot.js +0 -687
- package/cosmos/store/streaming/abci/grpc.d.ts +0 -136
- package/cosmos/store/streaming/abci/grpc.js +0 -332
- package/cosmos/store/v1beta1/commit_info.d.ts +0 -124
- package/cosmos/store/v1beta1/commit_info.js +0 -292
- package/cosmos/store/v1beta1/listening.d.ts +0 -101
- package/cosmos/store/v1beta1/listening.js +0 -223
- package/cosmos/streaming/v1/grpc.d.ts +0 -302
- package/cosmos/streaming/v1/grpc.js +0 -826
- package/cosmos/validate/module/v1/module.d.ts +0 -32
- package/cosmos/validate/module/v1/module.js +0 -70
- package/cosmos/vesting/module/v1/module.d.ts +0 -32
- package/cosmos/vesting/module/v1/module.js +0 -70
- package/cosmos/vesting/v1beta1/tx.d.ts +0 -256
- package/cosmos/vesting/v1beta1/tx.js +0 -553
- package/cosmos/vesting/v1beta1/tx.registry.d.ts +0 -47
- package/cosmos/vesting/v1beta1/tx.registry.js +0 -67
- package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +0 -8
- package/cosmos/vesting/v1beta1/tx.rpc.func.js +0 -37
- package/cosmos/vesting/v1beta1/vesting.d.ts +0 -256
- package/cosmos/vesting/v1beta1/vesting.js +0 -586
- package/dist/package.json +0 -50
- package/esm/cosmos/app/runtime/v2/module.js +0 -418
- package/esm/cosmos/auth/v1beta1/accounts.js +0 -158
- package/esm/cosmos/base/grpc/v2/service.js +0 -391
- package/esm/cosmos/base/grpc/v2/service.rpc.func.js +0 -18
- package/esm/cosmos/base/grpc/v2/service.rpc.react.js +0 -10
- package/esm/cosmos/circuit/module/v1/module.js +0 -80
- package/esm/cosmos/circuit/v1/query.js +0 -477
- package/esm/cosmos/circuit/v1/query.rpc.func.js +0 -36
- package/esm/cosmos/circuit/v1/tx.js +0 -525
- package/esm/cosmos/circuit/v1/tx.registry.js +0 -64
- package/esm/cosmos/circuit/v1/tx.rpc.func.js +0 -31
- package/esm/cosmos/circuit/v1/types.js +0 -345
- package/esm/cosmos/crisis/module/v1/module.js +0 -92
- package/esm/cosmos/crisis/v1beta1/genesis.js +0 -81
- package/esm/cosmos/crisis/v1beta1/tx.js +0 -325
- package/esm/cosmos/crisis/v1beta1/tx.registry.js +0 -46
- package/esm/cosmos/crisis/v1beta1/tx.rpc.func.js +0 -22
- package/esm/cosmos/crypto/ed25519/keys.js +0 -159
- package/esm/cosmos/crypto/hd/v1/hd.js +0 -128
- package/esm/cosmos/crypto/keyring/v1/record.js +0 -428
- package/esm/cosmos/crypto/multisig/keys.js +0 -96
- package/esm/cosmos/crypto/secp256k1/keys.js +0 -159
- package/esm/cosmos/crypto/secp256r1/keys.js +0 -159
- package/esm/cosmos/genutil/module/v1/module.js +0 -67
- package/esm/cosmos/group/module/v1/module.js +0 -93
- package/esm/cosmos/group/v1/events.js +0 -844
- package/esm/cosmos/group/v1/genesis.js +0 -180
- package/esm/cosmos/group/v1/query.js +0 -2431
- package/esm/cosmos/group/v1/query.rpc.func.js +0 -157
- package/esm/cosmos/group/v1/tx.js +0 -2562
- package/esm/cosmos/group/v1/tx.registry.js +0 -262
- package/esm/cosmos/group/v1/tx.rpc.func.js +0 -130
- package/esm/cosmos/group/v1/types.js +0 -1533
- package/esm/cosmos/msg/textual/v1/textual.js +0 -1
- package/esm/cosmos/nft/module/v1/module.js +0 -67
- package/esm/cosmos/nft/v1beta1/event.js +0 -320
- package/esm/cosmos/nft/v1beta1/genesis.js +0 -192
- package/esm/cosmos/nft/v1beta1/nft.js +0 -279
- package/esm/cosmos/nft/v1beta1/query.js +0 -1186
- package/esm/cosmos/nft/v1beta1/query.rpc.func.js +0 -80
- package/esm/cosmos/nft/v1beta1/tx.js +0 -181
- package/esm/cosmos/nft/v1beta1/tx.registry.js +0 -28
- package/esm/cosmos/nft/v1beta1/tx.rpc.func.js +0 -13
- package/esm/cosmos/orm/module/v1alpha1/module.js +0 -67
- package/esm/cosmos/orm/query/v1alpha1/query.js +0 -748
- package/esm/cosmos/orm/query/v1alpha1/query.rpc.func.js +0 -25
- package/esm/cosmos/orm/v1/orm.js +0 -377
- package/esm/cosmos/orm/v1alpha1/schema.js +0 -253
- package/esm/cosmos/reflection/v1/reflection.js +0 -149
- package/esm/cosmos/reflection/v1/reflection.rpc.func.js +0 -14
- package/esm/cosmos/store/internal/kv/v1beta1/kv.js +0 -174
- package/esm/cosmos/store/snapshots/v1/snapshot.js +0 -684
- package/esm/cosmos/store/snapshots/v2/snapshot.js +0 -684
- package/esm/cosmos/store/streaming/abci/grpc.js +0 -329
- package/esm/cosmos/store/v1beta1/commit_info.js +0 -289
- package/esm/cosmos/store/v1beta1/listening.js +0 -220
- package/esm/cosmos/streaming/v1/grpc.js +0 -823
- package/esm/cosmos/validate/module/v1/module.js +0 -67
- package/esm/cosmos/vesting/module/v1/module.js +0 -67
- package/esm/cosmos/vesting/v1beta1/tx.js +0 -550
- package/esm/cosmos/vesting/v1beta1/tx.registry.js +0 -64
- package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +0 -31
- package/esm/cosmos/vesting/v1beta1/vesting.js +0 -583
- package/esm/ibc/applications/fee/v1/ack.js +0 -103
- package/esm/ibc/applications/fee/v1/fee.js +0 -398
- package/esm/ibc/applications/fee/v1/genesis.js +0 -531
- package/esm/ibc/applications/fee/v1/metadata.js +0 -90
- package/esm/ibc/applications/fee/v1/query.js +0 -1739
- package/esm/ibc/applications/fee/v1/query.rpc.func.js +0 -82
- package/esm/ibc/applications/fee/v1/query.rpc.react.js +0 -42
- package/esm/ibc/applications/fee/v1/tx.js +0 -707
- package/esm/ibc/applications/fee/v1/tx.registry.js +0 -2
- package/esm/ibc/applications/fee/v1/tx.rpc.func.js +0 -31
- package/esm/ibc/applications/fee/v1/tx.rpc.react.js +0 -14
- package/esm/ibc/core/channel/v1/upgrade.js +0 -300
- package/esm/ibc/lightclients/localhost/v2/localhost.js +0 -81
- package/ibc/applications/fee/v1/ack.d.ts +0 -45
- package/ibc/applications/fee/v1/ack.js +0 -106
- package/ibc/applications/fee/v1/fee.d.ts +0 -164
- package/ibc/applications/fee/v1/fee.js +0 -401
- package/ibc/applications/fee/v1/genesis.d.ts +0 -225
- package/ibc/applications/fee/v1/genesis.js +0 -534
- package/ibc/applications/fee/v1/metadata.d.ts +0 -47
- package/ibc/applications/fee/v1/metadata.js +0 -93
- package/ibc/applications/fee/v1/query.d.ts +0 -757
- package/ibc/applications/fee/v1/query.js +0 -1742
- package/ibc/applications/fee/v1/query.rpc.func.d.ts +0 -12
- package/ibc/applications/fee/v1/query.rpc.func.js +0 -95
- package/ibc/applications/fee/v1/query.rpc.react.d.ts +0 -11
- package/ibc/applications/fee/v1/query.rpc.react.js +0 -45
- package/ibc/applications/fee/v1/tx.d.ts +0 -326
- package/ibc/applications/fee/v1/tx.js +0 -710
- package/ibc/applications/fee/v1/tx.registry.d.ts +0 -2
- package/ibc/applications/fee/v1/tx.registry.js +0 -5
- package/ibc/applications/fee/v1/tx.rpc.func.d.ts +0 -6
- package/ibc/applications/fee/v1/tx.rpc.func.js +0 -38
- package/ibc/applications/fee/v1/tx.rpc.react.d.ts +0 -5
- package/ibc/applications/fee/v1/tx.rpc.react.js +0 -17
- package/ibc/core/channel/v1/upgrade.d.ts +0 -142
- package/ibc/core/channel/v1/upgrade.js +0 -303
- package/ibc/lightclients/localhost/v2/localhost.d.ts +0 -38
- package/ibc/lightclients/localhost/v2/localhost.js +0 -84
|
@@ -1,1044 +0,0 @@
|
|
|
1
|
-
import { PageRequest, PageRequestAmino, PageResponse, PageResponseAmino } from "../../base/query/v1beta1/pagination";
|
|
2
|
-
import { GroupInfo, GroupInfoAmino, GroupPolicyInfo, GroupPolicyInfoAmino, GroupMember, GroupMemberAmino, Proposal, ProposalAmino, Vote, VoteAmino, TallyResult, TallyResultAmino } from "./types";
|
|
3
|
-
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
4
|
-
import { DeepPartial } from "../../../helpers";
|
|
5
|
-
/** QueryGroupInfoRequest is the Query/GroupInfo request type. */
|
|
6
|
-
export interface QueryGroupInfoRequest {
|
|
7
|
-
/** group_id is the unique ID of the group. */
|
|
8
|
-
groupId: bigint;
|
|
9
|
-
}
|
|
10
|
-
export interface QueryGroupInfoRequestProtoMsg {
|
|
11
|
-
typeUrl: "/cosmos.group.v1.QueryGroupInfoRequest";
|
|
12
|
-
value: Uint8Array;
|
|
13
|
-
}
|
|
14
|
-
/** QueryGroupInfoRequest is the Query/GroupInfo request type. */
|
|
15
|
-
export interface QueryGroupInfoRequestAmino {
|
|
16
|
-
/** group_id is the unique ID of the group. */
|
|
17
|
-
group_id: string;
|
|
18
|
-
}
|
|
19
|
-
export interface QueryGroupInfoRequestAminoMsg {
|
|
20
|
-
type: "cosmos-sdk/QueryGroupInfoRequest";
|
|
21
|
-
value: QueryGroupInfoRequestAmino;
|
|
22
|
-
}
|
|
23
|
-
/** QueryGroupInfoResponse is the Query/GroupInfo response type. */
|
|
24
|
-
export interface QueryGroupInfoResponse {
|
|
25
|
-
/** info is the GroupInfo of the group. */
|
|
26
|
-
info?: GroupInfo;
|
|
27
|
-
}
|
|
28
|
-
export interface QueryGroupInfoResponseProtoMsg {
|
|
29
|
-
typeUrl: "/cosmos.group.v1.QueryGroupInfoResponse";
|
|
30
|
-
value: Uint8Array;
|
|
31
|
-
}
|
|
32
|
-
/** QueryGroupInfoResponse is the Query/GroupInfo response type. */
|
|
33
|
-
export interface QueryGroupInfoResponseAmino {
|
|
34
|
-
/** info is the GroupInfo of the group. */
|
|
35
|
-
info?: GroupInfoAmino;
|
|
36
|
-
}
|
|
37
|
-
export interface QueryGroupInfoResponseAminoMsg {
|
|
38
|
-
type: "cosmos-sdk/QueryGroupInfoResponse";
|
|
39
|
-
value: QueryGroupInfoResponseAmino;
|
|
40
|
-
}
|
|
41
|
-
/** QueryGroupPolicyInfoRequest is the Query/GroupPolicyInfo request type. */
|
|
42
|
-
export interface QueryGroupPolicyInfoRequest {
|
|
43
|
-
/** address is the account address of the group policy. */
|
|
44
|
-
address: string;
|
|
45
|
-
}
|
|
46
|
-
export interface QueryGroupPolicyInfoRequestProtoMsg {
|
|
47
|
-
typeUrl: "/cosmos.group.v1.QueryGroupPolicyInfoRequest";
|
|
48
|
-
value: Uint8Array;
|
|
49
|
-
}
|
|
50
|
-
/** QueryGroupPolicyInfoRequest is the Query/GroupPolicyInfo request type. */
|
|
51
|
-
export interface QueryGroupPolicyInfoRequestAmino {
|
|
52
|
-
/** address is the account address of the group policy. */
|
|
53
|
-
address: string;
|
|
54
|
-
}
|
|
55
|
-
export interface QueryGroupPolicyInfoRequestAminoMsg {
|
|
56
|
-
type: "cosmos-sdk/QueryGroupPolicyInfoRequest";
|
|
57
|
-
value: QueryGroupPolicyInfoRequestAmino;
|
|
58
|
-
}
|
|
59
|
-
/** QueryGroupPolicyInfoResponse is the Query/GroupPolicyInfo response type. */
|
|
60
|
-
export interface QueryGroupPolicyInfoResponse {
|
|
61
|
-
/** info is the GroupPolicyInfo of the group policy. */
|
|
62
|
-
info?: GroupPolicyInfo;
|
|
63
|
-
}
|
|
64
|
-
export interface QueryGroupPolicyInfoResponseProtoMsg {
|
|
65
|
-
typeUrl: "/cosmos.group.v1.QueryGroupPolicyInfoResponse";
|
|
66
|
-
value: Uint8Array;
|
|
67
|
-
}
|
|
68
|
-
/** QueryGroupPolicyInfoResponse is the Query/GroupPolicyInfo response type. */
|
|
69
|
-
export interface QueryGroupPolicyInfoResponseAmino {
|
|
70
|
-
/** info is the GroupPolicyInfo of the group policy. */
|
|
71
|
-
info?: GroupPolicyInfoAmino;
|
|
72
|
-
}
|
|
73
|
-
export interface QueryGroupPolicyInfoResponseAminoMsg {
|
|
74
|
-
type: "cosmos-sdk/QueryGroupPolicyInfoResponse";
|
|
75
|
-
value: QueryGroupPolicyInfoResponseAmino;
|
|
76
|
-
}
|
|
77
|
-
/** QueryGroupMembersRequest is the Query/GroupMembers request type. */
|
|
78
|
-
export interface QueryGroupMembersRequest {
|
|
79
|
-
/** group_id is the unique ID of the group. */
|
|
80
|
-
groupId: bigint;
|
|
81
|
-
/** pagination defines an optional pagination for the request. */
|
|
82
|
-
pagination?: PageRequest;
|
|
83
|
-
}
|
|
84
|
-
export interface QueryGroupMembersRequestProtoMsg {
|
|
85
|
-
typeUrl: "/cosmos.group.v1.QueryGroupMembersRequest";
|
|
86
|
-
value: Uint8Array;
|
|
87
|
-
}
|
|
88
|
-
/** QueryGroupMembersRequest is the Query/GroupMembers request type. */
|
|
89
|
-
export interface QueryGroupMembersRequestAmino {
|
|
90
|
-
/** group_id is the unique ID of the group. */
|
|
91
|
-
group_id: string;
|
|
92
|
-
/** pagination defines an optional pagination for the request. */
|
|
93
|
-
pagination?: PageRequestAmino;
|
|
94
|
-
}
|
|
95
|
-
export interface QueryGroupMembersRequestAminoMsg {
|
|
96
|
-
type: "cosmos-sdk/QueryGroupMembersRequest";
|
|
97
|
-
value: QueryGroupMembersRequestAmino;
|
|
98
|
-
}
|
|
99
|
-
/** QueryGroupMembersResponse is the Query/GroupMembersResponse response type. */
|
|
100
|
-
export interface QueryGroupMembersResponse {
|
|
101
|
-
/** members are the members of the group with given group_id. */
|
|
102
|
-
members: GroupMember[];
|
|
103
|
-
/** pagination defines the pagination in the response. */
|
|
104
|
-
pagination?: PageResponse;
|
|
105
|
-
}
|
|
106
|
-
export interface QueryGroupMembersResponseProtoMsg {
|
|
107
|
-
typeUrl: "/cosmos.group.v1.QueryGroupMembersResponse";
|
|
108
|
-
value: Uint8Array;
|
|
109
|
-
}
|
|
110
|
-
/** QueryGroupMembersResponse is the Query/GroupMembersResponse response type. */
|
|
111
|
-
export interface QueryGroupMembersResponseAmino {
|
|
112
|
-
/** members are the members of the group with given group_id. */
|
|
113
|
-
members: GroupMemberAmino[];
|
|
114
|
-
/** pagination defines the pagination in the response. */
|
|
115
|
-
pagination?: PageResponseAmino;
|
|
116
|
-
}
|
|
117
|
-
export interface QueryGroupMembersResponseAminoMsg {
|
|
118
|
-
type: "cosmos-sdk/QueryGroupMembersResponse";
|
|
119
|
-
value: QueryGroupMembersResponseAmino;
|
|
120
|
-
}
|
|
121
|
-
/** QueryGroupsByAdminRequest is the Query/GroupsByAdmin request type. */
|
|
122
|
-
export interface QueryGroupsByAdminRequest {
|
|
123
|
-
/** admin is the account address of a group's admin. */
|
|
124
|
-
admin: string;
|
|
125
|
-
/** pagination defines an optional pagination for the request. */
|
|
126
|
-
pagination?: PageRequest;
|
|
127
|
-
}
|
|
128
|
-
export interface QueryGroupsByAdminRequestProtoMsg {
|
|
129
|
-
typeUrl: "/cosmos.group.v1.QueryGroupsByAdminRequest";
|
|
130
|
-
value: Uint8Array;
|
|
131
|
-
}
|
|
132
|
-
/** QueryGroupsByAdminRequest is the Query/GroupsByAdmin request type. */
|
|
133
|
-
export interface QueryGroupsByAdminRequestAmino {
|
|
134
|
-
/** admin is the account address of a group's admin. */
|
|
135
|
-
admin: string;
|
|
136
|
-
/** pagination defines an optional pagination for the request. */
|
|
137
|
-
pagination?: PageRequestAmino;
|
|
138
|
-
}
|
|
139
|
-
export interface QueryGroupsByAdminRequestAminoMsg {
|
|
140
|
-
type: "cosmos-sdk/QueryGroupsByAdminRequest";
|
|
141
|
-
value: QueryGroupsByAdminRequestAmino;
|
|
142
|
-
}
|
|
143
|
-
/** QueryGroupsByAdminResponse is the Query/GroupsByAdminResponse response type. */
|
|
144
|
-
export interface QueryGroupsByAdminResponse {
|
|
145
|
-
/** groups are the groups info with the provided admin. */
|
|
146
|
-
groups: GroupInfo[];
|
|
147
|
-
/** pagination defines the pagination in the response. */
|
|
148
|
-
pagination?: PageResponse;
|
|
149
|
-
}
|
|
150
|
-
export interface QueryGroupsByAdminResponseProtoMsg {
|
|
151
|
-
typeUrl: "/cosmos.group.v1.QueryGroupsByAdminResponse";
|
|
152
|
-
value: Uint8Array;
|
|
153
|
-
}
|
|
154
|
-
/** QueryGroupsByAdminResponse is the Query/GroupsByAdminResponse response type. */
|
|
155
|
-
export interface QueryGroupsByAdminResponseAmino {
|
|
156
|
-
/** groups are the groups info with the provided admin. */
|
|
157
|
-
groups: GroupInfoAmino[];
|
|
158
|
-
/** pagination defines the pagination in the response. */
|
|
159
|
-
pagination?: PageResponseAmino;
|
|
160
|
-
}
|
|
161
|
-
export interface QueryGroupsByAdminResponseAminoMsg {
|
|
162
|
-
type: "cosmos-sdk/QueryGroupsByAdminResponse";
|
|
163
|
-
value: QueryGroupsByAdminResponseAmino;
|
|
164
|
-
}
|
|
165
|
-
/** QueryGroupPoliciesByGroupRequest is the Query/GroupPoliciesByGroup request type. */
|
|
166
|
-
export interface QueryGroupPoliciesByGroupRequest {
|
|
167
|
-
/** group_id is the unique ID of the group policy's group. */
|
|
168
|
-
groupId: bigint;
|
|
169
|
-
/** pagination defines an optional pagination for the request. */
|
|
170
|
-
pagination?: PageRequest;
|
|
171
|
-
}
|
|
172
|
-
export interface QueryGroupPoliciesByGroupRequestProtoMsg {
|
|
173
|
-
typeUrl: "/cosmos.group.v1.QueryGroupPoliciesByGroupRequest";
|
|
174
|
-
value: Uint8Array;
|
|
175
|
-
}
|
|
176
|
-
/** QueryGroupPoliciesByGroupRequest is the Query/GroupPoliciesByGroup request type. */
|
|
177
|
-
export interface QueryGroupPoliciesByGroupRequestAmino {
|
|
178
|
-
/** group_id is the unique ID of the group policy's group. */
|
|
179
|
-
group_id: string;
|
|
180
|
-
/** pagination defines an optional pagination for the request. */
|
|
181
|
-
pagination?: PageRequestAmino;
|
|
182
|
-
}
|
|
183
|
-
export interface QueryGroupPoliciesByGroupRequestAminoMsg {
|
|
184
|
-
type: "cosmos-sdk/QueryGroupPoliciesByGroupRequest";
|
|
185
|
-
value: QueryGroupPoliciesByGroupRequestAmino;
|
|
186
|
-
}
|
|
187
|
-
/** QueryGroupPoliciesByGroupResponse is the Query/GroupPoliciesByGroup response type. */
|
|
188
|
-
export interface QueryGroupPoliciesByGroupResponse {
|
|
189
|
-
/** group_policies are the group policies info associated with the provided group. */
|
|
190
|
-
groupPolicies: GroupPolicyInfo[];
|
|
191
|
-
/** pagination defines the pagination in the response. */
|
|
192
|
-
pagination?: PageResponse;
|
|
193
|
-
}
|
|
194
|
-
export interface QueryGroupPoliciesByGroupResponseProtoMsg {
|
|
195
|
-
typeUrl: "/cosmos.group.v1.QueryGroupPoliciesByGroupResponse";
|
|
196
|
-
value: Uint8Array;
|
|
197
|
-
}
|
|
198
|
-
/** QueryGroupPoliciesByGroupResponse is the Query/GroupPoliciesByGroup response type. */
|
|
199
|
-
export interface QueryGroupPoliciesByGroupResponseAmino {
|
|
200
|
-
/** group_policies are the group policies info associated with the provided group. */
|
|
201
|
-
group_policies: GroupPolicyInfoAmino[];
|
|
202
|
-
/** pagination defines the pagination in the response. */
|
|
203
|
-
pagination?: PageResponseAmino;
|
|
204
|
-
}
|
|
205
|
-
export interface QueryGroupPoliciesByGroupResponseAminoMsg {
|
|
206
|
-
type: "cosmos-sdk/QueryGroupPoliciesByGroupResponse";
|
|
207
|
-
value: QueryGroupPoliciesByGroupResponseAmino;
|
|
208
|
-
}
|
|
209
|
-
/** QueryGroupPoliciesByAdminRequest is the Query/GroupPoliciesByAdmin request type. */
|
|
210
|
-
export interface QueryGroupPoliciesByAdminRequest {
|
|
211
|
-
/** admin is the admin address of the group policy. */
|
|
212
|
-
admin: string;
|
|
213
|
-
/** pagination defines an optional pagination for the request. */
|
|
214
|
-
pagination?: PageRequest;
|
|
215
|
-
}
|
|
216
|
-
export interface QueryGroupPoliciesByAdminRequestProtoMsg {
|
|
217
|
-
typeUrl: "/cosmos.group.v1.QueryGroupPoliciesByAdminRequest";
|
|
218
|
-
value: Uint8Array;
|
|
219
|
-
}
|
|
220
|
-
/** QueryGroupPoliciesByAdminRequest is the Query/GroupPoliciesByAdmin request type. */
|
|
221
|
-
export interface QueryGroupPoliciesByAdminRequestAmino {
|
|
222
|
-
/** admin is the admin address of the group policy. */
|
|
223
|
-
admin: string;
|
|
224
|
-
/** pagination defines an optional pagination for the request. */
|
|
225
|
-
pagination?: PageRequestAmino;
|
|
226
|
-
}
|
|
227
|
-
export interface QueryGroupPoliciesByAdminRequestAminoMsg {
|
|
228
|
-
type: "cosmos-sdk/QueryGroupPoliciesByAdminRequest";
|
|
229
|
-
value: QueryGroupPoliciesByAdminRequestAmino;
|
|
230
|
-
}
|
|
231
|
-
/** QueryGroupPoliciesByAdminResponse is the Query/GroupPoliciesByAdmin response type. */
|
|
232
|
-
export interface QueryGroupPoliciesByAdminResponse {
|
|
233
|
-
/** group_policies are the group policies info with provided admin. */
|
|
234
|
-
groupPolicies: GroupPolicyInfo[];
|
|
235
|
-
/** pagination defines the pagination in the response. */
|
|
236
|
-
pagination?: PageResponse;
|
|
237
|
-
}
|
|
238
|
-
export interface QueryGroupPoliciesByAdminResponseProtoMsg {
|
|
239
|
-
typeUrl: "/cosmos.group.v1.QueryGroupPoliciesByAdminResponse";
|
|
240
|
-
value: Uint8Array;
|
|
241
|
-
}
|
|
242
|
-
/** QueryGroupPoliciesByAdminResponse is the Query/GroupPoliciesByAdmin response type. */
|
|
243
|
-
export interface QueryGroupPoliciesByAdminResponseAmino {
|
|
244
|
-
/** group_policies are the group policies info with provided admin. */
|
|
245
|
-
group_policies: GroupPolicyInfoAmino[];
|
|
246
|
-
/** pagination defines the pagination in the response. */
|
|
247
|
-
pagination?: PageResponseAmino;
|
|
248
|
-
}
|
|
249
|
-
export interface QueryGroupPoliciesByAdminResponseAminoMsg {
|
|
250
|
-
type: "cosmos-sdk/QueryGroupPoliciesByAdminResponse";
|
|
251
|
-
value: QueryGroupPoliciesByAdminResponseAmino;
|
|
252
|
-
}
|
|
253
|
-
/** QueryProposalRequest is the Query/Proposal request type. */
|
|
254
|
-
export interface QueryProposalRequest {
|
|
255
|
-
/** proposal_id is the unique ID of a proposal. */
|
|
256
|
-
proposalId: bigint;
|
|
257
|
-
}
|
|
258
|
-
export interface QueryProposalRequestProtoMsg {
|
|
259
|
-
typeUrl: "/cosmos.group.v1.QueryProposalRequest";
|
|
260
|
-
value: Uint8Array;
|
|
261
|
-
}
|
|
262
|
-
/** QueryProposalRequest is the Query/Proposal request type. */
|
|
263
|
-
export interface QueryProposalRequestAmino {
|
|
264
|
-
/** proposal_id is the unique ID of a proposal. */
|
|
265
|
-
proposal_id: string;
|
|
266
|
-
}
|
|
267
|
-
export interface QueryProposalRequestAminoMsg {
|
|
268
|
-
type: "cosmos-sdk/QueryProposalRequest";
|
|
269
|
-
value: QueryProposalRequestAmino;
|
|
270
|
-
}
|
|
271
|
-
/** QueryProposalResponse is the Query/Proposal response type. */
|
|
272
|
-
export interface QueryProposalResponse {
|
|
273
|
-
/** proposal is the proposal info. */
|
|
274
|
-
proposal?: Proposal;
|
|
275
|
-
}
|
|
276
|
-
export interface QueryProposalResponseProtoMsg {
|
|
277
|
-
typeUrl: "/cosmos.group.v1.QueryProposalResponse";
|
|
278
|
-
value: Uint8Array;
|
|
279
|
-
}
|
|
280
|
-
/** QueryProposalResponse is the Query/Proposal response type. */
|
|
281
|
-
export interface QueryProposalResponseAmino {
|
|
282
|
-
/** proposal is the proposal info. */
|
|
283
|
-
proposal?: ProposalAmino;
|
|
284
|
-
}
|
|
285
|
-
export interface QueryProposalResponseAminoMsg {
|
|
286
|
-
type: "cosmos-sdk/QueryProposalResponse";
|
|
287
|
-
value: QueryProposalResponseAmino;
|
|
288
|
-
}
|
|
289
|
-
/** QueryProposalsByGroupPolicyRequest is the Query/ProposalByGroupPolicy request type. */
|
|
290
|
-
export interface QueryProposalsByGroupPolicyRequest {
|
|
291
|
-
/** address is the account address of the group policy related to proposals. */
|
|
292
|
-
address: string;
|
|
293
|
-
/** pagination defines an optional pagination for the request. */
|
|
294
|
-
pagination?: PageRequest;
|
|
295
|
-
}
|
|
296
|
-
export interface QueryProposalsByGroupPolicyRequestProtoMsg {
|
|
297
|
-
typeUrl: "/cosmos.group.v1.QueryProposalsByGroupPolicyRequest";
|
|
298
|
-
value: Uint8Array;
|
|
299
|
-
}
|
|
300
|
-
/** QueryProposalsByGroupPolicyRequest is the Query/ProposalByGroupPolicy request type. */
|
|
301
|
-
export interface QueryProposalsByGroupPolicyRequestAmino {
|
|
302
|
-
/** address is the account address of the group policy related to proposals. */
|
|
303
|
-
address: string;
|
|
304
|
-
/** pagination defines an optional pagination for the request. */
|
|
305
|
-
pagination?: PageRequestAmino;
|
|
306
|
-
}
|
|
307
|
-
export interface QueryProposalsByGroupPolicyRequestAminoMsg {
|
|
308
|
-
type: "cosmos-sdk/QueryProposalsByGroupPolicyRequest";
|
|
309
|
-
value: QueryProposalsByGroupPolicyRequestAmino;
|
|
310
|
-
}
|
|
311
|
-
/** QueryProposalsByGroupPolicyResponse is the Query/ProposalByGroupPolicy response type. */
|
|
312
|
-
export interface QueryProposalsByGroupPolicyResponse {
|
|
313
|
-
/** proposals are the proposals with given group policy. */
|
|
314
|
-
proposals: Proposal[];
|
|
315
|
-
/** pagination defines the pagination in the response. */
|
|
316
|
-
pagination?: PageResponse;
|
|
317
|
-
}
|
|
318
|
-
export interface QueryProposalsByGroupPolicyResponseProtoMsg {
|
|
319
|
-
typeUrl: "/cosmos.group.v1.QueryProposalsByGroupPolicyResponse";
|
|
320
|
-
value: Uint8Array;
|
|
321
|
-
}
|
|
322
|
-
/** QueryProposalsByGroupPolicyResponse is the Query/ProposalByGroupPolicy response type. */
|
|
323
|
-
export interface QueryProposalsByGroupPolicyResponseAmino {
|
|
324
|
-
/** proposals are the proposals with given group policy. */
|
|
325
|
-
proposals: ProposalAmino[];
|
|
326
|
-
/** pagination defines the pagination in the response. */
|
|
327
|
-
pagination?: PageResponseAmino;
|
|
328
|
-
}
|
|
329
|
-
export interface QueryProposalsByGroupPolicyResponseAminoMsg {
|
|
330
|
-
type: "cosmos-sdk/QueryProposalsByGroupPolicyResponse";
|
|
331
|
-
value: QueryProposalsByGroupPolicyResponseAmino;
|
|
332
|
-
}
|
|
333
|
-
/** QueryVoteByProposalVoterRequest is the Query/VoteByProposalVoter request type. */
|
|
334
|
-
export interface QueryVoteByProposalVoterRequest {
|
|
335
|
-
/** proposal_id is the unique ID of a proposal. */
|
|
336
|
-
proposalId: bigint;
|
|
337
|
-
/** voter is a proposal voter account address. */
|
|
338
|
-
voter: string;
|
|
339
|
-
}
|
|
340
|
-
export interface QueryVoteByProposalVoterRequestProtoMsg {
|
|
341
|
-
typeUrl: "/cosmos.group.v1.QueryVoteByProposalVoterRequest";
|
|
342
|
-
value: Uint8Array;
|
|
343
|
-
}
|
|
344
|
-
/** QueryVoteByProposalVoterRequest is the Query/VoteByProposalVoter request type. */
|
|
345
|
-
export interface QueryVoteByProposalVoterRequestAmino {
|
|
346
|
-
/** proposal_id is the unique ID of a proposal. */
|
|
347
|
-
proposal_id: string;
|
|
348
|
-
/** voter is a proposal voter account address. */
|
|
349
|
-
voter: string;
|
|
350
|
-
}
|
|
351
|
-
export interface QueryVoteByProposalVoterRequestAminoMsg {
|
|
352
|
-
type: "cosmos-sdk/QueryVoteByProposalVoterRequest";
|
|
353
|
-
value: QueryVoteByProposalVoterRequestAmino;
|
|
354
|
-
}
|
|
355
|
-
/** QueryVoteByProposalVoterResponse is the Query/VoteByProposalVoter response type. */
|
|
356
|
-
export interface QueryVoteByProposalVoterResponse {
|
|
357
|
-
/** vote is the vote with given proposal_id and voter. */
|
|
358
|
-
vote?: Vote;
|
|
359
|
-
}
|
|
360
|
-
export interface QueryVoteByProposalVoterResponseProtoMsg {
|
|
361
|
-
typeUrl: "/cosmos.group.v1.QueryVoteByProposalVoterResponse";
|
|
362
|
-
value: Uint8Array;
|
|
363
|
-
}
|
|
364
|
-
/** QueryVoteByProposalVoterResponse is the Query/VoteByProposalVoter response type. */
|
|
365
|
-
export interface QueryVoteByProposalVoterResponseAmino {
|
|
366
|
-
/** vote is the vote with given proposal_id and voter. */
|
|
367
|
-
vote?: VoteAmino;
|
|
368
|
-
}
|
|
369
|
-
export interface QueryVoteByProposalVoterResponseAminoMsg {
|
|
370
|
-
type: "cosmos-sdk/QueryVoteByProposalVoterResponse";
|
|
371
|
-
value: QueryVoteByProposalVoterResponseAmino;
|
|
372
|
-
}
|
|
373
|
-
/** QueryVotesByProposalRequest is the Query/VotesByProposal request type. */
|
|
374
|
-
export interface QueryVotesByProposalRequest {
|
|
375
|
-
/** proposal_id is the unique ID of a proposal. */
|
|
376
|
-
proposalId: bigint;
|
|
377
|
-
/** pagination defines an optional pagination for the request. */
|
|
378
|
-
pagination?: PageRequest;
|
|
379
|
-
}
|
|
380
|
-
export interface QueryVotesByProposalRequestProtoMsg {
|
|
381
|
-
typeUrl: "/cosmos.group.v1.QueryVotesByProposalRequest";
|
|
382
|
-
value: Uint8Array;
|
|
383
|
-
}
|
|
384
|
-
/** QueryVotesByProposalRequest is the Query/VotesByProposal request type. */
|
|
385
|
-
export interface QueryVotesByProposalRequestAmino {
|
|
386
|
-
/** proposal_id is the unique ID of a proposal. */
|
|
387
|
-
proposal_id: string;
|
|
388
|
-
/** pagination defines an optional pagination for the request. */
|
|
389
|
-
pagination?: PageRequestAmino;
|
|
390
|
-
}
|
|
391
|
-
export interface QueryVotesByProposalRequestAminoMsg {
|
|
392
|
-
type: "cosmos-sdk/QueryVotesByProposalRequest";
|
|
393
|
-
value: QueryVotesByProposalRequestAmino;
|
|
394
|
-
}
|
|
395
|
-
/** QueryVotesByProposalResponse is the Query/VotesByProposal response type. */
|
|
396
|
-
export interface QueryVotesByProposalResponse {
|
|
397
|
-
/** votes are the list of votes for given proposal_id. */
|
|
398
|
-
votes: Vote[];
|
|
399
|
-
/** pagination defines the pagination in the response. */
|
|
400
|
-
pagination?: PageResponse;
|
|
401
|
-
}
|
|
402
|
-
export interface QueryVotesByProposalResponseProtoMsg {
|
|
403
|
-
typeUrl: "/cosmos.group.v1.QueryVotesByProposalResponse";
|
|
404
|
-
value: Uint8Array;
|
|
405
|
-
}
|
|
406
|
-
/** QueryVotesByProposalResponse is the Query/VotesByProposal response type. */
|
|
407
|
-
export interface QueryVotesByProposalResponseAmino {
|
|
408
|
-
/** votes are the list of votes for given proposal_id. */
|
|
409
|
-
votes: VoteAmino[];
|
|
410
|
-
/** pagination defines the pagination in the response. */
|
|
411
|
-
pagination?: PageResponseAmino;
|
|
412
|
-
}
|
|
413
|
-
export interface QueryVotesByProposalResponseAminoMsg {
|
|
414
|
-
type: "cosmos-sdk/QueryVotesByProposalResponse";
|
|
415
|
-
value: QueryVotesByProposalResponseAmino;
|
|
416
|
-
}
|
|
417
|
-
/** QueryVotesByVoterRequest is the Query/VotesByVoter request type. */
|
|
418
|
-
export interface QueryVotesByVoterRequest {
|
|
419
|
-
/** voter is a proposal voter account address. */
|
|
420
|
-
voter: string;
|
|
421
|
-
/** pagination defines an optional pagination for the request. */
|
|
422
|
-
pagination?: PageRequest;
|
|
423
|
-
}
|
|
424
|
-
export interface QueryVotesByVoterRequestProtoMsg {
|
|
425
|
-
typeUrl: "/cosmos.group.v1.QueryVotesByVoterRequest";
|
|
426
|
-
value: Uint8Array;
|
|
427
|
-
}
|
|
428
|
-
/** QueryVotesByVoterRequest is the Query/VotesByVoter request type. */
|
|
429
|
-
export interface QueryVotesByVoterRequestAmino {
|
|
430
|
-
/** voter is a proposal voter account address. */
|
|
431
|
-
voter: string;
|
|
432
|
-
/** pagination defines an optional pagination for the request. */
|
|
433
|
-
pagination?: PageRequestAmino;
|
|
434
|
-
}
|
|
435
|
-
export interface QueryVotesByVoterRequestAminoMsg {
|
|
436
|
-
type: "cosmos-sdk/QueryVotesByVoterRequest";
|
|
437
|
-
value: QueryVotesByVoterRequestAmino;
|
|
438
|
-
}
|
|
439
|
-
/** QueryVotesByVoterResponse is the Query/VotesByVoter response type. */
|
|
440
|
-
export interface QueryVotesByVoterResponse {
|
|
441
|
-
/** votes are the list of votes by given voter. */
|
|
442
|
-
votes: Vote[];
|
|
443
|
-
/** pagination defines the pagination in the response. */
|
|
444
|
-
pagination?: PageResponse;
|
|
445
|
-
}
|
|
446
|
-
export interface QueryVotesByVoterResponseProtoMsg {
|
|
447
|
-
typeUrl: "/cosmos.group.v1.QueryVotesByVoterResponse";
|
|
448
|
-
value: Uint8Array;
|
|
449
|
-
}
|
|
450
|
-
/** QueryVotesByVoterResponse is the Query/VotesByVoter response type. */
|
|
451
|
-
export interface QueryVotesByVoterResponseAmino {
|
|
452
|
-
/** votes are the list of votes by given voter. */
|
|
453
|
-
votes: VoteAmino[];
|
|
454
|
-
/** pagination defines the pagination in the response. */
|
|
455
|
-
pagination?: PageResponseAmino;
|
|
456
|
-
}
|
|
457
|
-
export interface QueryVotesByVoterResponseAminoMsg {
|
|
458
|
-
type: "cosmos-sdk/QueryVotesByVoterResponse";
|
|
459
|
-
value: QueryVotesByVoterResponseAmino;
|
|
460
|
-
}
|
|
461
|
-
/** QueryGroupsByMemberRequest is the Query/GroupsByMember request type. */
|
|
462
|
-
export interface QueryGroupsByMemberRequest {
|
|
463
|
-
/** address is the group member address. */
|
|
464
|
-
address: string;
|
|
465
|
-
/** pagination defines an optional pagination for the request. */
|
|
466
|
-
pagination?: PageRequest;
|
|
467
|
-
}
|
|
468
|
-
export interface QueryGroupsByMemberRequestProtoMsg {
|
|
469
|
-
typeUrl: "/cosmos.group.v1.QueryGroupsByMemberRequest";
|
|
470
|
-
value: Uint8Array;
|
|
471
|
-
}
|
|
472
|
-
/** QueryGroupsByMemberRequest is the Query/GroupsByMember request type. */
|
|
473
|
-
export interface QueryGroupsByMemberRequestAmino {
|
|
474
|
-
/** address is the group member address. */
|
|
475
|
-
address: string;
|
|
476
|
-
/** pagination defines an optional pagination for the request. */
|
|
477
|
-
pagination?: PageRequestAmino;
|
|
478
|
-
}
|
|
479
|
-
export interface QueryGroupsByMemberRequestAminoMsg {
|
|
480
|
-
type: "cosmos-sdk/QueryGroupsByMemberRequest";
|
|
481
|
-
value: QueryGroupsByMemberRequestAmino;
|
|
482
|
-
}
|
|
483
|
-
/** QueryGroupsByMemberResponse is the Query/GroupsByMember response type. */
|
|
484
|
-
export interface QueryGroupsByMemberResponse {
|
|
485
|
-
/** groups are the groups info with the provided group member. */
|
|
486
|
-
groups: GroupInfo[];
|
|
487
|
-
/** pagination defines the pagination in the response. */
|
|
488
|
-
pagination?: PageResponse;
|
|
489
|
-
}
|
|
490
|
-
export interface QueryGroupsByMemberResponseProtoMsg {
|
|
491
|
-
typeUrl: "/cosmos.group.v1.QueryGroupsByMemberResponse";
|
|
492
|
-
value: Uint8Array;
|
|
493
|
-
}
|
|
494
|
-
/** QueryGroupsByMemberResponse is the Query/GroupsByMember response type. */
|
|
495
|
-
export interface QueryGroupsByMemberResponseAmino {
|
|
496
|
-
/** groups are the groups info with the provided group member. */
|
|
497
|
-
groups: GroupInfoAmino[];
|
|
498
|
-
/** pagination defines the pagination in the response. */
|
|
499
|
-
pagination?: PageResponseAmino;
|
|
500
|
-
}
|
|
501
|
-
export interface QueryGroupsByMemberResponseAminoMsg {
|
|
502
|
-
type: "cosmos-sdk/QueryGroupsByMemberResponse";
|
|
503
|
-
value: QueryGroupsByMemberResponseAmino;
|
|
504
|
-
}
|
|
505
|
-
/** QueryTallyResultRequest is the Query/TallyResult request type. */
|
|
506
|
-
export interface QueryTallyResultRequest {
|
|
507
|
-
/** proposal_id is the unique id of a proposal. */
|
|
508
|
-
proposalId: bigint;
|
|
509
|
-
}
|
|
510
|
-
export interface QueryTallyResultRequestProtoMsg {
|
|
511
|
-
typeUrl: "/cosmos.group.v1.QueryTallyResultRequest";
|
|
512
|
-
value: Uint8Array;
|
|
513
|
-
}
|
|
514
|
-
/** QueryTallyResultRequest is the Query/TallyResult request type. */
|
|
515
|
-
export interface QueryTallyResultRequestAmino {
|
|
516
|
-
/** proposal_id is the unique id of a proposal. */
|
|
517
|
-
proposal_id: string;
|
|
518
|
-
}
|
|
519
|
-
export interface QueryTallyResultRequestAminoMsg {
|
|
520
|
-
type: "cosmos-sdk/QueryTallyResultRequest";
|
|
521
|
-
value: QueryTallyResultRequestAmino;
|
|
522
|
-
}
|
|
523
|
-
/** QueryTallyResultResponse is the Query/TallyResult response type. */
|
|
524
|
-
export interface QueryTallyResultResponse {
|
|
525
|
-
/** tally defines the requested tally. */
|
|
526
|
-
tally: TallyResult;
|
|
527
|
-
}
|
|
528
|
-
export interface QueryTallyResultResponseProtoMsg {
|
|
529
|
-
typeUrl: "/cosmos.group.v1.QueryTallyResultResponse";
|
|
530
|
-
value: Uint8Array;
|
|
531
|
-
}
|
|
532
|
-
/** QueryTallyResultResponse is the Query/TallyResult response type. */
|
|
533
|
-
export interface QueryTallyResultResponseAmino {
|
|
534
|
-
/** tally defines the requested tally. */
|
|
535
|
-
tally: TallyResultAmino;
|
|
536
|
-
}
|
|
537
|
-
export interface QueryTallyResultResponseAminoMsg {
|
|
538
|
-
type: "cosmos-sdk/QueryTallyResultResponse";
|
|
539
|
-
value: QueryTallyResultResponseAmino;
|
|
540
|
-
}
|
|
541
|
-
/**
|
|
542
|
-
* QueryGroupsRequest is the Query/Groups request type.
|
|
543
|
-
*
|
|
544
|
-
* Since: cosmos-sdk 0.47.1
|
|
545
|
-
*/
|
|
546
|
-
export interface QueryGroupsRequest {
|
|
547
|
-
/** pagination defines an optional pagination for the request. */
|
|
548
|
-
pagination?: PageRequest;
|
|
549
|
-
}
|
|
550
|
-
export interface QueryGroupsRequestProtoMsg {
|
|
551
|
-
typeUrl: "/cosmos.group.v1.QueryGroupsRequest";
|
|
552
|
-
value: Uint8Array;
|
|
553
|
-
}
|
|
554
|
-
/**
|
|
555
|
-
* QueryGroupsRequest is the Query/Groups request type.
|
|
556
|
-
*
|
|
557
|
-
* Since: cosmos-sdk 0.47.1
|
|
558
|
-
*/
|
|
559
|
-
export interface QueryGroupsRequestAmino {
|
|
560
|
-
/** pagination defines an optional pagination for the request. */
|
|
561
|
-
pagination?: PageRequestAmino;
|
|
562
|
-
}
|
|
563
|
-
export interface QueryGroupsRequestAminoMsg {
|
|
564
|
-
type: "cosmos-sdk/QueryGroupsRequest";
|
|
565
|
-
value: QueryGroupsRequestAmino;
|
|
566
|
-
}
|
|
567
|
-
/**
|
|
568
|
-
* QueryGroupsResponse is the Query/Groups response type.
|
|
569
|
-
*
|
|
570
|
-
* Since: cosmos-sdk 0.47.1
|
|
571
|
-
*/
|
|
572
|
-
export interface QueryGroupsResponse {
|
|
573
|
-
/** `groups` is all the groups present in state. */
|
|
574
|
-
groups: GroupInfo[];
|
|
575
|
-
/** pagination defines the pagination in the response. */
|
|
576
|
-
pagination?: PageResponse;
|
|
577
|
-
}
|
|
578
|
-
export interface QueryGroupsResponseProtoMsg {
|
|
579
|
-
typeUrl: "/cosmos.group.v1.QueryGroupsResponse";
|
|
580
|
-
value: Uint8Array;
|
|
581
|
-
}
|
|
582
|
-
/**
|
|
583
|
-
* QueryGroupsResponse is the Query/Groups response type.
|
|
584
|
-
*
|
|
585
|
-
* Since: cosmos-sdk 0.47.1
|
|
586
|
-
*/
|
|
587
|
-
export interface QueryGroupsResponseAmino {
|
|
588
|
-
/** `groups` is all the groups present in state. */
|
|
589
|
-
groups: GroupInfoAmino[];
|
|
590
|
-
/** pagination defines the pagination in the response. */
|
|
591
|
-
pagination?: PageResponseAmino;
|
|
592
|
-
}
|
|
593
|
-
export interface QueryGroupsResponseAminoMsg {
|
|
594
|
-
type: "cosmos-sdk/QueryGroupsResponse";
|
|
595
|
-
value: QueryGroupsResponseAmino;
|
|
596
|
-
}
|
|
597
|
-
export declare const QueryGroupInfoRequest: {
|
|
598
|
-
typeUrl: string;
|
|
599
|
-
aminoType: string;
|
|
600
|
-
is(o: any): o is QueryGroupInfoRequest;
|
|
601
|
-
isAmino(o: any): o is QueryGroupInfoRequestAmino;
|
|
602
|
-
encode(message: QueryGroupInfoRequest, writer?: BinaryWriter): BinaryWriter;
|
|
603
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupInfoRequest;
|
|
604
|
-
fromPartial(object: DeepPartial<QueryGroupInfoRequest>): QueryGroupInfoRequest;
|
|
605
|
-
fromAmino(object: QueryGroupInfoRequestAmino): QueryGroupInfoRequest;
|
|
606
|
-
toAmino(message: QueryGroupInfoRequest): QueryGroupInfoRequestAmino;
|
|
607
|
-
fromAminoMsg(object: QueryGroupInfoRequestAminoMsg): QueryGroupInfoRequest;
|
|
608
|
-
toAminoMsg(message: QueryGroupInfoRequest): QueryGroupInfoRequestAminoMsg;
|
|
609
|
-
fromProtoMsg(message: QueryGroupInfoRequestProtoMsg): QueryGroupInfoRequest;
|
|
610
|
-
toProto(message: QueryGroupInfoRequest): Uint8Array;
|
|
611
|
-
toProtoMsg(message: QueryGroupInfoRequest): QueryGroupInfoRequestProtoMsg;
|
|
612
|
-
};
|
|
613
|
-
export declare const QueryGroupInfoResponse: {
|
|
614
|
-
typeUrl: string;
|
|
615
|
-
aminoType: string;
|
|
616
|
-
is(o: any): o is QueryGroupInfoResponse;
|
|
617
|
-
isAmino(o: any): o is QueryGroupInfoResponseAmino;
|
|
618
|
-
encode(message: QueryGroupInfoResponse, writer?: BinaryWriter): BinaryWriter;
|
|
619
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupInfoResponse;
|
|
620
|
-
fromPartial(object: DeepPartial<QueryGroupInfoResponse>): QueryGroupInfoResponse;
|
|
621
|
-
fromAmino(object: QueryGroupInfoResponseAmino): QueryGroupInfoResponse;
|
|
622
|
-
toAmino(message: QueryGroupInfoResponse): QueryGroupInfoResponseAmino;
|
|
623
|
-
fromAminoMsg(object: QueryGroupInfoResponseAminoMsg): QueryGroupInfoResponse;
|
|
624
|
-
toAminoMsg(message: QueryGroupInfoResponse): QueryGroupInfoResponseAminoMsg;
|
|
625
|
-
fromProtoMsg(message: QueryGroupInfoResponseProtoMsg): QueryGroupInfoResponse;
|
|
626
|
-
toProto(message: QueryGroupInfoResponse): Uint8Array;
|
|
627
|
-
toProtoMsg(message: QueryGroupInfoResponse): QueryGroupInfoResponseProtoMsg;
|
|
628
|
-
};
|
|
629
|
-
export declare const QueryGroupPolicyInfoRequest: {
|
|
630
|
-
typeUrl: string;
|
|
631
|
-
aminoType: string;
|
|
632
|
-
is(o: any): o is QueryGroupPolicyInfoRequest;
|
|
633
|
-
isAmino(o: any): o is QueryGroupPolicyInfoRequestAmino;
|
|
634
|
-
encode(message: QueryGroupPolicyInfoRequest, writer?: BinaryWriter): BinaryWriter;
|
|
635
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupPolicyInfoRequest;
|
|
636
|
-
fromPartial(object: DeepPartial<QueryGroupPolicyInfoRequest>): QueryGroupPolicyInfoRequest;
|
|
637
|
-
fromAmino(object: QueryGroupPolicyInfoRequestAmino): QueryGroupPolicyInfoRequest;
|
|
638
|
-
toAmino(message: QueryGroupPolicyInfoRequest): QueryGroupPolicyInfoRequestAmino;
|
|
639
|
-
fromAminoMsg(object: QueryGroupPolicyInfoRequestAminoMsg): QueryGroupPolicyInfoRequest;
|
|
640
|
-
toAminoMsg(message: QueryGroupPolicyInfoRequest): QueryGroupPolicyInfoRequestAminoMsg;
|
|
641
|
-
fromProtoMsg(message: QueryGroupPolicyInfoRequestProtoMsg): QueryGroupPolicyInfoRequest;
|
|
642
|
-
toProto(message: QueryGroupPolicyInfoRequest): Uint8Array;
|
|
643
|
-
toProtoMsg(message: QueryGroupPolicyInfoRequest): QueryGroupPolicyInfoRequestProtoMsg;
|
|
644
|
-
};
|
|
645
|
-
export declare const QueryGroupPolicyInfoResponse: {
|
|
646
|
-
typeUrl: string;
|
|
647
|
-
aminoType: string;
|
|
648
|
-
is(o: any): o is QueryGroupPolicyInfoResponse;
|
|
649
|
-
isAmino(o: any): o is QueryGroupPolicyInfoResponseAmino;
|
|
650
|
-
encode(message: QueryGroupPolicyInfoResponse, writer?: BinaryWriter): BinaryWriter;
|
|
651
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupPolicyInfoResponse;
|
|
652
|
-
fromPartial(object: DeepPartial<QueryGroupPolicyInfoResponse>): QueryGroupPolicyInfoResponse;
|
|
653
|
-
fromAmino(object: QueryGroupPolicyInfoResponseAmino): QueryGroupPolicyInfoResponse;
|
|
654
|
-
toAmino(message: QueryGroupPolicyInfoResponse): QueryGroupPolicyInfoResponseAmino;
|
|
655
|
-
fromAminoMsg(object: QueryGroupPolicyInfoResponseAminoMsg): QueryGroupPolicyInfoResponse;
|
|
656
|
-
toAminoMsg(message: QueryGroupPolicyInfoResponse): QueryGroupPolicyInfoResponseAminoMsg;
|
|
657
|
-
fromProtoMsg(message: QueryGroupPolicyInfoResponseProtoMsg): QueryGroupPolicyInfoResponse;
|
|
658
|
-
toProto(message: QueryGroupPolicyInfoResponse): Uint8Array;
|
|
659
|
-
toProtoMsg(message: QueryGroupPolicyInfoResponse): QueryGroupPolicyInfoResponseProtoMsg;
|
|
660
|
-
};
|
|
661
|
-
export declare const QueryGroupMembersRequest: {
|
|
662
|
-
typeUrl: string;
|
|
663
|
-
aminoType: string;
|
|
664
|
-
is(o: any): o is QueryGroupMembersRequest;
|
|
665
|
-
isAmino(o: any): o is QueryGroupMembersRequestAmino;
|
|
666
|
-
encode(message: QueryGroupMembersRequest, writer?: BinaryWriter): BinaryWriter;
|
|
667
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupMembersRequest;
|
|
668
|
-
fromPartial(object: DeepPartial<QueryGroupMembersRequest>): QueryGroupMembersRequest;
|
|
669
|
-
fromAmino(object: QueryGroupMembersRequestAmino): QueryGroupMembersRequest;
|
|
670
|
-
toAmino(message: QueryGroupMembersRequest): QueryGroupMembersRequestAmino;
|
|
671
|
-
fromAminoMsg(object: QueryGroupMembersRequestAminoMsg): QueryGroupMembersRequest;
|
|
672
|
-
toAminoMsg(message: QueryGroupMembersRequest): QueryGroupMembersRequestAminoMsg;
|
|
673
|
-
fromProtoMsg(message: QueryGroupMembersRequestProtoMsg): QueryGroupMembersRequest;
|
|
674
|
-
toProto(message: QueryGroupMembersRequest): Uint8Array;
|
|
675
|
-
toProtoMsg(message: QueryGroupMembersRequest): QueryGroupMembersRequestProtoMsg;
|
|
676
|
-
};
|
|
677
|
-
export declare const QueryGroupMembersResponse: {
|
|
678
|
-
typeUrl: string;
|
|
679
|
-
aminoType: string;
|
|
680
|
-
is(o: any): o is QueryGroupMembersResponse;
|
|
681
|
-
isAmino(o: any): o is QueryGroupMembersResponseAmino;
|
|
682
|
-
encode(message: QueryGroupMembersResponse, writer?: BinaryWriter): BinaryWriter;
|
|
683
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupMembersResponse;
|
|
684
|
-
fromPartial(object: DeepPartial<QueryGroupMembersResponse>): QueryGroupMembersResponse;
|
|
685
|
-
fromAmino(object: QueryGroupMembersResponseAmino): QueryGroupMembersResponse;
|
|
686
|
-
toAmino(message: QueryGroupMembersResponse): QueryGroupMembersResponseAmino;
|
|
687
|
-
fromAminoMsg(object: QueryGroupMembersResponseAminoMsg): QueryGroupMembersResponse;
|
|
688
|
-
toAminoMsg(message: QueryGroupMembersResponse): QueryGroupMembersResponseAminoMsg;
|
|
689
|
-
fromProtoMsg(message: QueryGroupMembersResponseProtoMsg): QueryGroupMembersResponse;
|
|
690
|
-
toProto(message: QueryGroupMembersResponse): Uint8Array;
|
|
691
|
-
toProtoMsg(message: QueryGroupMembersResponse): QueryGroupMembersResponseProtoMsg;
|
|
692
|
-
};
|
|
693
|
-
export declare const QueryGroupsByAdminRequest: {
|
|
694
|
-
typeUrl: string;
|
|
695
|
-
aminoType: string;
|
|
696
|
-
is(o: any): o is QueryGroupsByAdminRequest;
|
|
697
|
-
isAmino(o: any): o is QueryGroupsByAdminRequestAmino;
|
|
698
|
-
encode(message: QueryGroupsByAdminRequest, writer?: BinaryWriter): BinaryWriter;
|
|
699
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupsByAdminRequest;
|
|
700
|
-
fromPartial(object: DeepPartial<QueryGroupsByAdminRequest>): QueryGroupsByAdminRequest;
|
|
701
|
-
fromAmino(object: QueryGroupsByAdminRequestAmino): QueryGroupsByAdminRequest;
|
|
702
|
-
toAmino(message: QueryGroupsByAdminRequest): QueryGroupsByAdminRequestAmino;
|
|
703
|
-
fromAminoMsg(object: QueryGroupsByAdminRequestAminoMsg): QueryGroupsByAdminRequest;
|
|
704
|
-
toAminoMsg(message: QueryGroupsByAdminRequest): QueryGroupsByAdminRequestAminoMsg;
|
|
705
|
-
fromProtoMsg(message: QueryGroupsByAdminRequestProtoMsg): QueryGroupsByAdminRequest;
|
|
706
|
-
toProto(message: QueryGroupsByAdminRequest): Uint8Array;
|
|
707
|
-
toProtoMsg(message: QueryGroupsByAdminRequest): QueryGroupsByAdminRequestProtoMsg;
|
|
708
|
-
};
|
|
709
|
-
export declare const QueryGroupsByAdminResponse: {
|
|
710
|
-
typeUrl: string;
|
|
711
|
-
aminoType: string;
|
|
712
|
-
is(o: any): o is QueryGroupsByAdminResponse;
|
|
713
|
-
isAmino(o: any): o is QueryGroupsByAdminResponseAmino;
|
|
714
|
-
encode(message: QueryGroupsByAdminResponse, writer?: BinaryWriter): BinaryWriter;
|
|
715
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupsByAdminResponse;
|
|
716
|
-
fromPartial(object: DeepPartial<QueryGroupsByAdminResponse>): QueryGroupsByAdminResponse;
|
|
717
|
-
fromAmino(object: QueryGroupsByAdminResponseAmino): QueryGroupsByAdminResponse;
|
|
718
|
-
toAmino(message: QueryGroupsByAdminResponse): QueryGroupsByAdminResponseAmino;
|
|
719
|
-
fromAminoMsg(object: QueryGroupsByAdminResponseAminoMsg): QueryGroupsByAdminResponse;
|
|
720
|
-
toAminoMsg(message: QueryGroupsByAdminResponse): QueryGroupsByAdminResponseAminoMsg;
|
|
721
|
-
fromProtoMsg(message: QueryGroupsByAdminResponseProtoMsg): QueryGroupsByAdminResponse;
|
|
722
|
-
toProto(message: QueryGroupsByAdminResponse): Uint8Array;
|
|
723
|
-
toProtoMsg(message: QueryGroupsByAdminResponse): QueryGroupsByAdminResponseProtoMsg;
|
|
724
|
-
};
|
|
725
|
-
export declare const QueryGroupPoliciesByGroupRequest: {
|
|
726
|
-
typeUrl: string;
|
|
727
|
-
aminoType: string;
|
|
728
|
-
is(o: any): o is QueryGroupPoliciesByGroupRequest;
|
|
729
|
-
isAmino(o: any): o is QueryGroupPoliciesByGroupRequestAmino;
|
|
730
|
-
encode(message: QueryGroupPoliciesByGroupRequest, writer?: BinaryWriter): BinaryWriter;
|
|
731
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupPoliciesByGroupRequest;
|
|
732
|
-
fromPartial(object: DeepPartial<QueryGroupPoliciesByGroupRequest>): QueryGroupPoliciesByGroupRequest;
|
|
733
|
-
fromAmino(object: QueryGroupPoliciesByGroupRequestAmino): QueryGroupPoliciesByGroupRequest;
|
|
734
|
-
toAmino(message: QueryGroupPoliciesByGroupRequest): QueryGroupPoliciesByGroupRequestAmino;
|
|
735
|
-
fromAminoMsg(object: QueryGroupPoliciesByGroupRequestAminoMsg): QueryGroupPoliciesByGroupRequest;
|
|
736
|
-
toAminoMsg(message: QueryGroupPoliciesByGroupRequest): QueryGroupPoliciesByGroupRequestAminoMsg;
|
|
737
|
-
fromProtoMsg(message: QueryGroupPoliciesByGroupRequestProtoMsg): QueryGroupPoliciesByGroupRequest;
|
|
738
|
-
toProto(message: QueryGroupPoliciesByGroupRequest): Uint8Array;
|
|
739
|
-
toProtoMsg(message: QueryGroupPoliciesByGroupRequest): QueryGroupPoliciesByGroupRequestProtoMsg;
|
|
740
|
-
};
|
|
741
|
-
export declare const QueryGroupPoliciesByGroupResponse: {
|
|
742
|
-
typeUrl: string;
|
|
743
|
-
aminoType: string;
|
|
744
|
-
is(o: any): o is QueryGroupPoliciesByGroupResponse;
|
|
745
|
-
isAmino(o: any): o is QueryGroupPoliciesByGroupResponseAmino;
|
|
746
|
-
encode(message: QueryGroupPoliciesByGroupResponse, writer?: BinaryWriter): BinaryWriter;
|
|
747
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupPoliciesByGroupResponse;
|
|
748
|
-
fromPartial(object: DeepPartial<QueryGroupPoliciesByGroupResponse>): QueryGroupPoliciesByGroupResponse;
|
|
749
|
-
fromAmino(object: QueryGroupPoliciesByGroupResponseAmino): QueryGroupPoliciesByGroupResponse;
|
|
750
|
-
toAmino(message: QueryGroupPoliciesByGroupResponse): QueryGroupPoliciesByGroupResponseAmino;
|
|
751
|
-
fromAminoMsg(object: QueryGroupPoliciesByGroupResponseAminoMsg): QueryGroupPoliciesByGroupResponse;
|
|
752
|
-
toAminoMsg(message: QueryGroupPoliciesByGroupResponse): QueryGroupPoliciesByGroupResponseAminoMsg;
|
|
753
|
-
fromProtoMsg(message: QueryGroupPoliciesByGroupResponseProtoMsg): QueryGroupPoliciesByGroupResponse;
|
|
754
|
-
toProto(message: QueryGroupPoliciesByGroupResponse): Uint8Array;
|
|
755
|
-
toProtoMsg(message: QueryGroupPoliciesByGroupResponse): QueryGroupPoliciesByGroupResponseProtoMsg;
|
|
756
|
-
};
|
|
757
|
-
export declare const QueryGroupPoliciesByAdminRequest: {
|
|
758
|
-
typeUrl: string;
|
|
759
|
-
aminoType: string;
|
|
760
|
-
is(o: any): o is QueryGroupPoliciesByAdminRequest;
|
|
761
|
-
isAmino(o: any): o is QueryGroupPoliciesByAdminRequestAmino;
|
|
762
|
-
encode(message: QueryGroupPoliciesByAdminRequest, writer?: BinaryWriter): BinaryWriter;
|
|
763
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupPoliciesByAdminRequest;
|
|
764
|
-
fromPartial(object: DeepPartial<QueryGroupPoliciesByAdminRequest>): QueryGroupPoliciesByAdminRequest;
|
|
765
|
-
fromAmino(object: QueryGroupPoliciesByAdminRequestAmino): QueryGroupPoliciesByAdminRequest;
|
|
766
|
-
toAmino(message: QueryGroupPoliciesByAdminRequest): QueryGroupPoliciesByAdminRequestAmino;
|
|
767
|
-
fromAminoMsg(object: QueryGroupPoliciesByAdminRequestAminoMsg): QueryGroupPoliciesByAdminRequest;
|
|
768
|
-
toAminoMsg(message: QueryGroupPoliciesByAdminRequest): QueryGroupPoliciesByAdminRequestAminoMsg;
|
|
769
|
-
fromProtoMsg(message: QueryGroupPoliciesByAdminRequestProtoMsg): QueryGroupPoliciesByAdminRequest;
|
|
770
|
-
toProto(message: QueryGroupPoliciesByAdminRequest): Uint8Array;
|
|
771
|
-
toProtoMsg(message: QueryGroupPoliciesByAdminRequest): QueryGroupPoliciesByAdminRequestProtoMsg;
|
|
772
|
-
};
|
|
773
|
-
export declare const QueryGroupPoliciesByAdminResponse: {
|
|
774
|
-
typeUrl: string;
|
|
775
|
-
aminoType: string;
|
|
776
|
-
is(o: any): o is QueryGroupPoliciesByAdminResponse;
|
|
777
|
-
isAmino(o: any): o is QueryGroupPoliciesByAdminResponseAmino;
|
|
778
|
-
encode(message: QueryGroupPoliciesByAdminResponse, writer?: BinaryWriter): BinaryWriter;
|
|
779
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupPoliciesByAdminResponse;
|
|
780
|
-
fromPartial(object: DeepPartial<QueryGroupPoliciesByAdminResponse>): QueryGroupPoliciesByAdminResponse;
|
|
781
|
-
fromAmino(object: QueryGroupPoliciesByAdminResponseAmino): QueryGroupPoliciesByAdminResponse;
|
|
782
|
-
toAmino(message: QueryGroupPoliciesByAdminResponse): QueryGroupPoliciesByAdminResponseAmino;
|
|
783
|
-
fromAminoMsg(object: QueryGroupPoliciesByAdminResponseAminoMsg): QueryGroupPoliciesByAdminResponse;
|
|
784
|
-
toAminoMsg(message: QueryGroupPoliciesByAdminResponse): QueryGroupPoliciesByAdminResponseAminoMsg;
|
|
785
|
-
fromProtoMsg(message: QueryGroupPoliciesByAdminResponseProtoMsg): QueryGroupPoliciesByAdminResponse;
|
|
786
|
-
toProto(message: QueryGroupPoliciesByAdminResponse): Uint8Array;
|
|
787
|
-
toProtoMsg(message: QueryGroupPoliciesByAdminResponse): QueryGroupPoliciesByAdminResponseProtoMsg;
|
|
788
|
-
};
|
|
789
|
-
export declare const QueryProposalRequest: {
|
|
790
|
-
typeUrl: string;
|
|
791
|
-
aminoType: string;
|
|
792
|
-
is(o: any): o is QueryProposalRequest;
|
|
793
|
-
isAmino(o: any): o is QueryProposalRequestAmino;
|
|
794
|
-
encode(message: QueryProposalRequest, writer?: BinaryWriter): BinaryWriter;
|
|
795
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryProposalRequest;
|
|
796
|
-
fromPartial(object: DeepPartial<QueryProposalRequest>): QueryProposalRequest;
|
|
797
|
-
fromAmino(object: QueryProposalRequestAmino): QueryProposalRequest;
|
|
798
|
-
toAmino(message: QueryProposalRequest): QueryProposalRequestAmino;
|
|
799
|
-
fromAminoMsg(object: QueryProposalRequestAminoMsg): QueryProposalRequest;
|
|
800
|
-
toAminoMsg(message: QueryProposalRequest): QueryProposalRequestAminoMsg;
|
|
801
|
-
fromProtoMsg(message: QueryProposalRequestProtoMsg): QueryProposalRequest;
|
|
802
|
-
toProto(message: QueryProposalRequest): Uint8Array;
|
|
803
|
-
toProtoMsg(message: QueryProposalRequest): QueryProposalRequestProtoMsg;
|
|
804
|
-
};
|
|
805
|
-
export declare const QueryProposalResponse: {
|
|
806
|
-
typeUrl: string;
|
|
807
|
-
aminoType: string;
|
|
808
|
-
is(o: any): o is QueryProposalResponse;
|
|
809
|
-
isAmino(o: any): o is QueryProposalResponseAmino;
|
|
810
|
-
encode(message: QueryProposalResponse, writer?: BinaryWriter): BinaryWriter;
|
|
811
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryProposalResponse;
|
|
812
|
-
fromPartial(object: DeepPartial<QueryProposalResponse>): QueryProposalResponse;
|
|
813
|
-
fromAmino(object: QueryProposalResponseAmino): QueryProposalResponse;
|
|
814
|
-
toAmino(message: QueryProposalResponse): QueryProposalResponseAmino;
|
|
815
|
-
fromAminoMsg(object: QueryProposalResponseAminoMsg): QueryProposalResponse;
|
|
816
|
-
toAminoMsg(message: QueryProposalResponse): QueryProposalResponseAminoMsg;
|
|
817
|
-
fromProtoMsg(message: QueryProposalResponseProtoMsg): QueryProposalResponse;
|
|
818
|
-
toProto(message: QueryProposalResponse): Uint8Array;
|
|
819
|
-
toProtoMsg(message: QueryProposalResponse): QueryProposalResponseProtoMsg;
|
|
820
|
-
};
|
|
821
|
-
export declare const QueryProposalsByGroupPolicyRequest: {
|
|
822
|
-
typeUrl: string;
|
|
823
|
-
aminoType: string;
|
|
824
|
-
is(o: any): o is QueryProposalsByGroupPolicyRequest;
|
|
825
|
-
isAmino(o: any): o is QueryProposalsByGroupPolicyRequestAmino;
|
|
826
|
-
encode(message: QueryProposalsByGroupPolicyRequest, writer?: BinaryWriter): BinaryWriter;
|
|
827
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryProposalsByGroupPolicyRequest;
|
|
828
|
-
fromPartial(object: DeepPartial<QueryProposalsByGroupPolicyRequest>): QueryProposalsByGroupPolicyRequest;
|
|
829
|
-
fromAmino(object: QueryProposalsByGroupPolicyRequestAmino): QueryProposalsByGroupPolicyRequest;
|
|
830
|
-
toAmino(message: QueryProposalsByGroupPolicyRequest): QueryProposalsByGroupPolicyRequestAmino;
|
|
831
|
-
fromAminoMsg(object: QueryProposalsByGroupPolicyRequestAminoMsg): QueryProposalsByGroupPolicyRequest;
|
|
832
|
-
toAminoMsg(message: QueryProposalsByGroupPolicyRequest): QueryProposalsByGroupPolicyRequestAminoMsg;
|
|
833
|
-
fromProtoMsg(message: QueryProposalsByGroupPolicyRequestProtoMsg): QueryProposalsByGroupPolicyRequest;
|
|
834
|
-
toProto(message: QueryProposalsByGroupPolicyRequest): Uint8Array;
|
|
835
|
-
toProtoMsg(message: QueryProposalsByGroupPolicyRequest): QueryProposalsByGroupPolicyRequestProtoMsg;
|
|
836
|
-
};
|
|
837
|
-
export declare const QueryProposalsByGroupPolicyResponse: {
|
|
838
|
-
typeUrl: string;
|
|
839
|
-
aminoType: string;
|
|
840
|
-
is(o: any): o is QueryProposalsByGroupPolicyResponse;
|
|
841
|
-
isAmino(o: any): o is QueryProposalsByGroupPolicyResponseAmino;
|
|
842
|
-
encode(message: QueryProposalsByGroupPolicyResponse, writer?: BinaryWriter): BinaryWriter;
|
|
843
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryProposalsByGroupPolicyResponse;
|
|
844
|
-
fromPartial(object: DeepPartial<QueryProposalsByGroupPolicyResponse>): QueryProposalsByGroupPolicyResponse;
|
|
845
|
-
fromAmino(object: QueryProposalsByGroupPolicyResponseAmino): QueryProposalsByGroupPolicyResponse;
|
|
846
|
-
toAmino(message: QueryProposalsByGroupPolicyResponse): QueryProposalsByGroupPolicyResponseAmino;
|
|
847
|
-
fromAminoMsg(object: QueryProposalsByGroupPolicyResponseAminoMsg): QueryProposalsByGroupPolicyResponse;
|
|
848
|
-
toAminoMsg(message: QueryProposalsByGroupPolicyResponse): QueryProposalsByGroupPolicyResponseAminoMsg;
|
|
849
|
-
fromProtoMsg(message: QueryProposalsByGroupPolicyResponseProtoMsg): QueryProposalsByGroupPolicyResponse;
|
|
850
|
-
toProto(message: QueryProposalsByGroupPolicyResponse): Uint8Array;
|
|
851
|
-
toProtoMsg(message: QueryProposalsByGroupPolicyResponse): QueryProposalsByGroupPolicyResponseProtoMsg;
|
|
852
|
-
};
|
|
853
|
-
export declare const QueryVoteByProposalVoterRequest: {
|
|
854
|
-
typeUrl: string;
|
|
855
|
-
aminoType: string;
|
|
856
|
-
is(o: any): o is QueryVoteByProposalVoterRequest;
|
|
857
|
-
isAmino(o: any): o is QueryVoteByProposalVoterRequestAmino;
|
|
858
|
-
encode(message: QueryVoteByProposalVoterRequest, writer?: BinaryWriter): BinaryWriter;
|
|
859
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryVoteByProposalVoterRequest;
|
|
860
|
-
fromPartial(object: DeepPartial<QueryVoteByProposalVoterRequest>): QueryVoteByProposalVoterRequest;
|
|
861
|
-
fromAmino(object: QueryVoteByProposalVoterRequestAmino): QueryVoteByProposalVoterRequest;
|
|
862
|
-
toAmino(message: QueryVoteByProposalVoterRequest): QueryVoteByProposalVoterRequestAmino;
|
|
863
|
-
fromAminoMsg(object: QueryVoteByProposalVoterRequestAminoMsg): QueryVoteByProposalVoterRequest;
|
|
864
|
-
toAminoMsg(message: QueryVoteByProposalVoterRequest): QueryVoteByProposalVoterRequestAminoMsg;
|
|
865
|
-
fromProtoMsg(message: QueryVoteByProposalVoterRequestProtoMsg): QueryVoteByProposalVoterRequest;
|
|
866
|
-
toProto(message: QueryVoteByProposalVoterRequest): Uint8Array;
|
|
867
|
-
toProtoMsg(message: QueryVoteByProposalVoterRequest): QueryVoteByProposalVoterRequestProtoMsg;
|
|
868
|
-
};
|
|
869
|
-
export declare const QueryVoteByProposalVoterResponse: {
|
|
870
|
-
typeUrl: string;
|
|
871
|
-
aminoType: string;
|
|
872
|
-
is(o: any): o is QueryVoteByProposalVoterResponse;
|
|
873
|
-
isAmino(o: any): o is QueryVoteByProposalVoterResponseAmino;
|
|
874
|
-
encode(message: QueryVoteByProposalVoterResponse, writer?: BinaryWriter): BinaryWriter;
|
|
875
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryVoteByProposalVoterResponse;
|
|
876
|
-
fromPartial(object: DeepPartial<QueryVoteByProposalVoterResponse>): QueryVoteByProposalVoterResponse;
|
|
877
|
-
fromAmino(object: QueryVoteByProposalVoterResponseAmino): QueryVoteByProposalVoterResponse;
|
|
878
|
-
toAmino(message: QueryVoteByProposalVoterResponse): QueryVoteByProposalVoterResponseAmino;
|
|
879
|
-
fromAminoMsg(object: QueryVoteByProposalVoterResponseAminoMsg): QueryVoteByProposalVoterResponse;
|
|
880
|
-
toAminoMsg(message: QueryVoteByProposalVoterResponse): QueryVoteByProposalVoterResponseAminoMsg;
|
|
881
|
-
fromProtoMsg(message: QueryVoteByProposalVoterResponseProtoMsg): QueryVoteByProposalVoterResponse;
|
|
882
|
-
toProto(message: QueryVoteByProposalVoterResponse): Uint8Array;
|
|
883
|
-
toProtoMsg(message: QueryVoteByProposalVoterResponse): QueryVoteByProposalVoterResponseProtoMsg;
|
|
884
|
-
};
|
|
885
|
-
export declare const QueryVotesByProposalRequest: {
|
|
886
|
-
typeUrl: string;
|
|
887
|
-
aminoType: string;
|
|
888
|
-
is(o: any): o is QueryVotesByProposalRequest;
|
|
889
|
-
isAmino(o: any): o is QueryVotesByProposalRequestAmino;
|
|
890
|
-
encode(message: QueryVotesByProposalRequest, writer?: BinaryWriter): BinaryWriter;
|
|
891
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryVotesByProposalRequest;
|
|
892
|
-
fromPartial(object: DeepPartial<QueryVotesByProposalRequest>): QueryVotesByProposalRequest;
|
|
893
|
-
fromAmino(object: QueryVotesByProposalRequestAmino): QueryVotesByProposalRequest;
|
|
894
|
-
toAmino(message: QueryVotesByProposalRequest): QueryVotesByProposalRequestAmino;
|
|
895
|
-
fromAminoMsg(object: QueryVotesByProposalRequestAminoMsg): QueryVotesByProposalRequest;
|
|
896
|
-
toAminoMsg(message: QueryVotesByProposalRequest): QueryVotesByProposalRequestAminoMsg;
|
|
897
|
-
fromProtoMsg(message: QueryVotesByProposalRequestProtoMsg): QueryVotesByProposalRequest;
|
|
898
|
-
toProto(message: QueryVotesByProposalRequest): Uint8Array;
|
|
899
|
-
toProtoMsg(message: QueryVotesByProposalRequest): QueryVotesByProposalRequestProtoMsg;
|
|
900
|
-
};
|
|
901
|
-
export declare const QueryVotesByProposalResponse: {
|
|
902
|
-
typeUrl: string;
|
|
903
|
-
aminoType: string;
|
|
904
|
-
is(o: any): o is QueryVotesByProposalResponse;
|
|
905
|
-
isAmino(o: any): o is QueryVotesByProposalResponseAmino;
|
|
906
|
-
encode(message: QueryVotesByProposalResponse, writer?: BinaryWriter): BinaryWriter;
|
|
907
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryVotesByProposalResponse;
|
|
908
|
-
fromPartial(object: DeepPartial<QueryVotesByProposalResponse>): QueryVotesByProposalResponse;
|
|
909
|
-
fromAmino(object: QueryVotesByProposalResponseAmino): QueryVotesByProposalResponse;
|
|
910
|
-
toAmino(message: QueryVotesByProposalResponse): QueryVotesByProposalResponseAmino;
|
|
911
|
-
fromAminoMsg(object: QueryVotesByProposalResponseAminoMsg): QueryVotesByProposalResponse;
|
|
912
|
-
toAminoMsg(message: QueryVotesByProposalResponse): QueryVotesByProposalResponseAminoMsg;
|
|
913
|
-
fromProtoMsg(message: QueryVotesByProposalResponseProtoMsg): QueryVotesByProposalResponse;
|
|
914
|
-
toProto(message: QueryVotesByProposalResponse): Uint8Array;
|
|
915
|
-
toProtoMsg(message: QueryVotesByProposalResponse): QueryVotesByProposalResponseProtoMsg;
|
|
916
|
-
};
|
|
917
|
-
export declare const QueryVotesByVoterRequest: {
|
|
918
|
-
typeUrl: string;
|
|
919
|
-
aminoType: string;
|
|
920
|
-
is(o: any): o is QueryVotesByVoterRequest;
|
|
921
|
-
isAmino(o: any): o is QueryVotesByVoterRequestAmino;
|
|
922
|
-
encode(message: QueryVotesByVoterRequest, writer?: BinaryWriter): BinaryWriter;
|
|
923
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryVotesByVoterRequest;
|
|
924
|
-
fromPartial(object: DeepPartial<QueryVotesByVoterRequest>): QueryVotesByVoterRequest;
|
|
925
|
-
fromAmino(object: QueryVotesByVoterRequestAmino): QueryVotesByVoterRequest;
|
|
926
|
-
toAmino(message: QueryVotesByVoterRequest): QueryVotesByVoterRequestAmino;
|
|
927
|
-
fromAminoMsg(object: QueryVotesByVoterRequestAminoMsg): QueryVotesByVoterRequest;
|
|
928
|
-
toAminoMsg(message: QueryVotesByVoterRequest): QueryVotesByVoterRequestAminoMsg;
|
|
929
|
-
fromProtoMsg(message: QueryVotesByVoterRequestProtoMsg): QueryVotesByVoterRequest;
|
|
930
|
-
toProto(message: QueryVotesByVoterRequest): Uint8Array;
|
|
931
|
-
toProtoMsg(message: QueryVotesByVoterRequest): QueryVotesByVoterRequestProtoMsg;
|
|
932
|
-
};
|
|
933
|
-
export declare const QueryVotesByVoterResponse: {
|
|
934
|
-
typeUrl: string;
|
|
935
|
-
aminoType: string;
|
|
936
|
-
is(o: any): o is QueryVotesByVoterResponse;
|
|
937
|
-
isAmino(o: any): o is QueryVotesByVoterResponseAmino;
|
|
938
|
-
encode(message: QueryVotesByVoterResponse, writer?: BinaryWriter): BinaryWriter;
|
|
939
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryVotesByVoterResponse;
|
|
940
|
-
fromPartial(object: DeepPartial<QueryVotesByVoterResponse>): QueryVotesByVoterResponse;
|
|
941
|
-
fromAmino(object: QueryVotesByVoterResponseAmino): QueryVotesByVoterResponse;
|
|
942
|
-
toAmino(message: QueryVotesByVoterResponse): QueryVotesByVoterResponseAmino;
|
|
943
|
-
fromAminoMsg(object: QueryVotesByVoterResponseAminoMsg): QueryVotesByVoterResponse;
|
|
944
|
-
toAminoMsg(message: QueryVotesByVoterResponse): QueryVotesByVoterResponseAminoMsg;
|
|
945
|
-
fromProtoMsg(message: QueryVotesByVoterResponseProtoMsg): QueryVotesByVoterResponse;
|
|
946
|
-
toProto(message: QueryVotesByVoterResponse): Uint8Array;
|
|
947
|
-
toProtoMsg(message: QueryVotesByVoterResponse): QueryVotesByVoterResponseProtoMsg;
|
|
948
|
-
};
|
|
949
|
-
export declare const QueryGroupsByMemberRequest: {
|
|
950
|
-
typeUrl: string;
|
|
951
|
-
aminoType: string;
|
|
952
|
-
is(o: any): o is QueryGroupsByMemberRequest;
|
|
953
|
-
isAmino(o: any): o is QueryGroupsByMemberRequestAmino;
|
|
954
|
-
encode(message: QueryGroupsByMemberRequest, writer?: BinaryWriter): BinaryWriter;
|
|
955
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupsByMemberRequest;
|
|
956
|
-
fromPartial(object: DeepPartial<QueryGroupsByMemberRequest>): QueryGroupsByMemberRequest;
|
|
957
|
-
fromAmino(object: QueryGroupsByMemberRequestAmino): QueryGroupsByMemberRequest;
|
|
958
|
-
toAmino(message: QueryGroupsByMemberRequest): QueryGroupsByMemberRequestAmino;
|
|
959
|
-
fromAminoMsg(object: QueryGroupsByMemberRequestAminoMsg): QueryGroupsByMemberRequest;
|
|
960
|
-
toAminoMsg(message: QueryGroupsByMemberRequest): QueryGroupsByMemberRequestAminoMsg;
|
|
961
|
-
fromProtoMsg(message: QueryGroupsByMemberRequestProtoMsg): QueryGroupsByMemberRequest;
|
|
962
|
-
toProto(message: QueryGroupsByMemberRequest): Uint8Array;
|
|
963
|
-
toProtoMsg(message: QueryGroupsByMemberRequest): QueryGroupsByMemberRequestProtoMsg;
|
|
964
|
-
};
|
|
965
|
-
export declare const QueryGroupsByMemberResponse: {
|
|
966
|
-
typeUrl: string;
|
|
967
|
-
aminoType: string;
|
|
968
|
-
is(o: any): o is QueryGroupsByMemberResponse;
|
|
969
|
-
isAmino(o: any): o is QueryGroupsByMemberResponseAmino;
|
|
970
|
-
encode(message: QueryGroupsByMemberResponse, writer?: BinaryWriter): BinaryWriter;
|
|
971
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupsByMemberResponse;
|
|
972
|
-
fromPartial(object: DeepPartial<QueryGroupsByMemberResponse>): QueryGroupsByMemberResponse;
|
|
973
|
-
fromAmino(object: QueryGroupsByMemberResponseAmino): QueryGroupsByMemberResponse;
|
|
974
|
-
toAmino(message: QueryGroupsByMemberResponse): QueryGroupsByMemberResponseAmino;
|
|
975
|
-
fromAminoMsg(object: QueryGroupsByMemberResponseAminoMsg): QueryGroupsByMemberResponse;
|
|
976
|
-
toAminoMsg(message: QueryGroupsByMemberResponse): QueryGroupsByMemberResponseAminoMsg;
|
|
977
|
-
fromProtoMsg(message: QueryGroupsByMemberResponseProtoMsg): QueryGroupsByMemberResponse;
|
|
978
|
-
toProto(message: QueryGroupsByMemberResponse): Uint8Array;
|
|
979
|
-
toProtoMsg(message: QueryGroupsByMemberResponse): QueryGroupsByMemberResponseProtoMsg;
|
|
980
|
-
};
|
|
981
|
-
export declare const QueryTallyResultRequest: {
|
|
982
|
-
typeUrl: string;
|
|
983
|
-
aminoType: string;
|
|
984
|
-
is(o: any): o is QueryTallyResultRequest;
|
|
985
|
-
isAmino(o: any): o is QueryTallyResultRequestAmino;
|
|
986
|
-
encode(message: QueryTallyResultRequest, writer?: BinaryWriter): BinaryWriter;
|
|
987
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryTallyResultRequest;
|
|
988
|
-
fromPartial(object: DeepPartial<QueryTallyResultRequest>): QueryTallyResultRequest;
|
|
989
|
-
fromAmino(object: QueryTallyResultRequestAmino): QueryTallyResultRequest;
|
|
990
|
-
toAmino(message: QueryTallyResultRequest): QueryTallyResultRequestAmino;
|
|
991
|
-
fromAminoMsg(object: QueryTallyResultRequestAminoMsg): QueryTallyResultRequest;
|
|
992
|
-
toAminoMsg(message: QueryTallyResultRequest): QueryTallyResultRequestAminoMsg;
|
|
993
|
-
fromProtoMsg(message: QueryTallyResultRequestProtoMsg): QueryTallyResultRequest;
|
|
994
|
-
toProto(message: QueryTallyResultRequest): Uint8Array;
|
|
995
|
-
toProtoMsg(message: QueryTallyResultRequest): QueryTallyResultRequestProtoMsg;
|
|
996
|
-
};
|
|
997
|
-
export declare const QueryTallyResultResponse: {
|
|
998
|
-
typeUrl: string;
|
|
999
|
-
aminoType: string;
|
|
1000
|
-
is(o: any): o is QueryTallyResultResponse;
|
|
1001
|
-
isAmino(o: any): o is QueryTallyResultResponseAmino;
|
|
1002
|
-
encode(message: QueryTallyResultResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1003
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryTallyResultResponse;
|
|
1004
|
-
fromPartial(object: DeepPartial<QueryTallyResultResponse>): QueryTallyResultResponse;
|
|
1005
|
-
fromAmino(object: QueryTallyResultResponseAmino): QueryTallyResultResponse;
|
|
1006
|
-
toAmino(message: QueryTallyResultResponse): QueryTallyResultResponseAmino;
|
|
1007
|
-
fromAminoMsg(object: QueryTallyResultResponseAminoMsg): QueryTallyResultResponse;
|
|
1008
|
-
toAminoMsg(message: QueryTallyResultResponse): QueryTallyResultResponseAminoMsg;
|
|
1009
|
-
fromProtoMsg(message: QueryTallyResultResponseProtoMsg): QueryTallyResultResponse;
|
|
1010
|
-
toProto(message: QueryTallyResultResponse): Uint8Array;
|
|
1011
|
-
toProtoMsg(message: QueryTallyResultResponse): QueryTallyResultResponseProtoMsg;
|
|
1012
|
-
};
|
|
1013
|
-
export declare const QueryGroupsRequest: {
|
|
1014
|
-
typeUrl: string;
|
|
1015
|
-
aminoType: string;
|
|
1016
|
-
is(o: any): o is QueryGroupsRequest;
|
|
1017
|
-
isAmino(o: any): o is QueryGroupsRequestAmino;
|
|
1018
|
-
encode(message: QueryGroupsRequest, writer?: BinaryWriter): BinaryWriter;
|
|
1019
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupsRequest;
|
|
1020
|
-
fromPartial(object: DeepPartial<QueryGroupsRequest>): QueryGroupsRequest;
|
|
1021
|
-
fromAmino(object: QueryGroupsRequestAmino): QueryGroupsRequest;
|
|
1022
|
-
toAmino(message: QueryGroupsRequest): QueryGroupsRequestAmino;
|
|
1023
|
-
fromAminoMsg(object: QueryGroupsRequestAminoMsg): QueryGroupsRequest;
|
|
1024
|
-
toAminoMsg(message: QueryGroupsRequest): QueryGroupsRequestAminoMsg;
|
|
1025
|
-
fromProtoMsg(message: QueryGroupsRequestProtoMsg): QueryGroupsRequest;
|
|
1026
|
-
toProto(message: QueryGroupsRequest): Uint8Array;
|
|
1027
|
-
toProtoMsg(message: QueryGroupsRequest): QueryGroupsRequestProtoMsg;
|
|
1028
|
-
};
|
|
1029
|
-
export declare const QueryGroupsResponse: {
|
|
1030
|
-
typeUrl: string;
|
|
1031
|
-
aminoType: string;
|
|
1032
|
-
is(o: any): o is QueryGroupsResponse;
|
|
1033
|
-
isAmino(o: any): o is QueryGroupsResponseAmino;
|
|
1034
|
-
encode(message: QueryGroupsResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1035
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryGroupsResponse;
|
|
1036
|
-
fromPartial(object: DeepPartial<QueryGroupsResponse>): QueryGroupsResponse;
|
|
1037
|
-
fromAmino(object: QueryGroupsResponseAmino): QueryGroupsResponse;
|
|
1038
|
-
toAmino(message: QueryGroupsResponse): QueryGroupsResponseAmino;
|
|
1039
|
-
fromAminoMsg(object: QueryGroupsResponseAminoMsg): QueryGroupsResponse;
|
|
1040
|
-
toAminoMsg(message: QueryGroupsResponse): QueryGroupsResponseAminoMsg;
|
|
1041
|
-
fromProtoMsg(message: QueryGroupsResponseProtoMsg): QueryGroupsResponse;
|
|
1042
|
-
toProto(message: QueryGroupsResponse): Uint8Array;
|
|
1043
|
-
toProtoMsg(message: QueryGroupsResponse): QueryGroupsResponseProtoMsg;
|
|
1044
|
-
};
|