@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
package/cosmos/gov/v1/query.d.ts
CHANGED
|
@@ -2,21 +2,36 @@ import { ProposalStatus, Proposal, ProposalAmino, Vote, VoteAmino, VotingParams,
|
|
|
2
2
|
import { PageRequest, PageRequestAmino, PageResponse, PageResponseAmino } from "../../base/query/v1beta1/pagination";
|
|
3
3
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
4
4
|
import { DeepPartial } from "../../../helpers";
|
|
5
|
-
/**
|
|
5
|
+
/**
|
|
6
|
+
* QueryConstitutionRequest is the request type for the Query/Constitution RPC method
|
|
7
|
+
* @name QueryConstitutionRequest
|
|
8
|
+
* @package cosmos.gov.v1
|
|
9
|
+
* @see proto type: cosmos.gov.v1.QueryConstitutionRequest
|
|
10
|
+
*/
|
|
6
11
|
export interface QueryConstitutionRequest {
|
|
7
12
|
}
|
|
8
13
|
export interface QueryConstitutionRequestProtoMsg {
|
|
9
14
|
typeUrl: "/cosmos.gov.v1.QueryConstitutionRequest";
|
|
10
15
|
value: Uint8Array;
|
|
11
16
|
}
|
|
12
|
-
/**
|
|
17
|
+
/**
|
|
18
|
+
* QueryConstitutionRequest is the request type for the Query/Constitution RPC method
|
|
19
|
+
* @name QueryConstitutionRequestAmino
|
|
20
|
+
* @package cosmos.gov.v1
|
|
21
|
+
* @see proto type: cosmos.gov.v1.QueryConstitutionRequest
|
|
22
|
+
*/
|
|
13
23
|
export interface QueryConstitutionRequestAmino {
|
|
14
24
|
}
|
|
15
25
|
export interface QueryConstitutionRequestAminoMsg {
|
|
16
26
|
type: "cosmos-sdk/v1/QueryConstitutionRequest";
|
|
17
27
|
value: QueryConstitutionRequestAmino;
|
|
18
28
|
}
|
|
19
|
-
/**
|
|
29
|
+
/**
|
|
30
|
+
* QueryConstitutionResponse is the response type for the Query/Constitution RPC method
|
|
31
|
+
* @name QueryConstitutionResponse
|
|
32
|
+
* @package cosmos.gov.v1
|
|
33
|
+
* @see proto type: cosmos.gov.v1.QueryConstitutionResponse
|
|
34
|
+
*/
|
|
20
35
|
export interface QueryConstitutionResponse {
|
|
21
36
|
constitution: string;
|
|
22
37
|
}
|
|
@@ -24,7 +39,12 @@ export interface QueryConstitutionResponseProtoMsg {
|
|
|
24
39
|
typeUrl: "/cosmos.gov.v1.QueryConstitutionResponse";
|
|
25
40
|
value: Uint8Array;
|
|
26
41
|
}
|
|
27
|
-
/**
|
|
42
|
+
/**
|
|
43
|
+
* QueryConstitutionResponse is the response type for the Query/Constitution RPC method
|
|
44
|
+
* @name QueryConstitutionResponseAmino
|
|
45
|
+
* @package cosmos.gov.v1
|
|
46
|
+
* @see proto type: cosmos.gov.v1.QueryConstitutionResponse
|
|
47
|
+
*/
|
|
28
48
|
export interface QueryConstitutionResponseAmino {
|
|
29
49
|
constitution: string;
|
|
30
50
|
}
|
|
@@ -32,66 +52,120 @@ export interface QueryConstitutionResponseAminoMsg {
|
|
|
32
52
|
type: "cosmos-sdk/v1/QueryConstitutionResponse";
|
|
33
53
|
value: QueryConstitutionResponseAmino;
|
|
34
54
|
}
|
|
35
|
-
/**
|
|
55
|
+
/**
|
|
56
|
+
* QueryProposalRequest is the request type for the Query/Proposal RPC method.
|
|
57
|
+
* @name QueryProposalRequest
|
|
58
|
+
* @package cosmos.gov.v1
|
|
59
|
+
* @see proto type: cosmos.gov.v1.QueryProposalRequest
|
|
60
|
+
*/
|
|
36
61
|
export interface QueryProposalRequest {
|
|
37
|
-
/**
|
|
62
|
+
/**
|
|
63
|
+
* proposal_id defines the unique id of the proposal.
|
|
64
|
+
*/
|
|
38
65
|
proposalId: bigint;
|
|
39
66
|
}
|
|
40
67
|
export interface QueryProposalRequestProtoMsg {
|
|
41
68
|
typeUrl: "/cosmos.gov.v1.QueryProposalRequest";
|
|
42
69
|
value: Uint8Array;
|
|
43
70
|
}
|
|
44
|
-
/**
|
|
71
|
+
/**
|
|
72
|
+
* QueryProposalRequest is the request type for the Query/Proposal RPC method.
|
|
73
|
+
* @name QueryProposalRequestAmino
|
|
74
|
+
* @package cosmos.gov.v1
|
|
75
|
+
* @see proto type: cosmos.gov.v1.QueryProposalRequest
|
|
76
|
+
*/
|
|
45
77
|
export interface QueryProposalRequestAmino {
|
|
46
|
-
/**
|
|
78
|
+
/**
|
|
79
|
+
* proposal_id defines the unique id of the proposal.
|
|
80
|
+
*/
|
|
47
81
|
proposal_id: string;
|
|
48
82
|
}
|
|
49
83
|
export interface QueryProposalRequestAminoMsg {
|
|
50
84
|
type: "cosmos-sdk/v1/QueryProposalRequest";
|
|
51
85
|
value: QueryProposalRequestAmino;
|
|
52
86
|
}
|
|
53
|
-
/**
|
|
87
|
+
/**
|
|
88
|
+
* QueryProposalResponse is the response type for the Query/Proposal RPC method.
|
|
89
|
+
* @name QueryProposalResponse
|
|
90
|
+
* @package cosmos.gov.v1
|
|
91
|
+
* @see proto type: cosmos.gov.v1.QueryProposalResponse
|
|
92
|
+
*/
|
|
54
93
|
export interface QueryProposalResponse {
|
|
55
|
-
/**
|
|
94
|
+
/**
|
|
95
|
+
* proposal is the requested governance proposal.
|
|
96
|
+
*/
|
|
56
97
|
proposal?: Proposal;
|
|
57
98
|
}
|
|
58
99
|
export interface QueryProposalResponseProtoMsg {
|
|
59
100
|
typeUrl: "/cosmos.gov.v1.QueryProposalResponse";
|
|
60
101
|
value: Uint8Array;
|
|
61
102
|
}
|
|
62
|
-
/**
|
|
103
|
+
/**
|
|
104
|
+
* QueryProposalResponse is the response type for the Query/Proposal RPC method.
|
|
105
|
+
* @name QueryProposalResponseAmino
|
|
106
|
+
* @package cosmos.gov.v1
|
|
107
|
+
* @see proto type: cosmos.gov.v1.QueryProposalResponse
|
|
108
|
+
*/
|
|
63
109
|
export interface QueryProposalResponseAmino {
|
|
64
|
-
/**
|
|
110
|
+
/**
|
|
111
|
+
* proposal is the requested governance proposal.
|
|
112
|
+
*/
|
|
65
113
|
proposal?: ProposalAmino;
|
|
66
114
|
}
|
|
67
115
|
export interface QueryProposalResponseAminoMsg {
|
|
68
116
|
type: "cosmos-sdk/v1/QueryProposalResponse";
|
|
69
117
|
value: QueryProposalResponseAmino;
|
|
70
118
|
}
|
|
71
|
-
/**
|
|
119
|
+
/**
|
|
120
|
+
* QueryProposalsRequest is the request type for the Query/Proposals RPC method.
|
|
121
|
+
* @name QueryProposalsRequest
|
|
122
|
+
* @package cosmos.gov.v1
|
|
123
|
+
* @see proto type: cosmos.gov.v1.QueryProposalsRequest
|
|
124
|
+
*/
|
|
72
125
|
export interface QueryProposalsRequest {
|
|
73
|
-
/**
|
|
126
|
+
/**
|
|
127
|
+
* proposal_status defines the status of the proposals.
|
|
128
|
+
*/
|
|
74
129
|
proposalStatus: ProposalStatus;
|
|
75
|
-
/**
|
|
130
|
+
/**
|
|
131
|
+
* voter defines the voter address for the proposals.
|
|
132
|
+
*/
|
|
76
133
|
voter: string;
|
|
77
|
-
/**
|
|
134
|
+
/**
|
|
135
|
+
* depositor defines the deposit addresses from the proposals.
|
|
136
|
+
*/
|
|
78
137
|
depositor: string;
|
|
79
|
-
/**
|
|
138
|
+
/**
|
|
139
|
+
* pagination defines an optional pagination for the request.
|
|
140
|
+
*/
|
|
80
141
|
pagination?: PageRequest;
|
|
81
142
|
}
|
|
82
143
|
export interface QueryProposalsRequestProtoMsg {
|
|
83
144
|
typeUrl: "/cosmos.gov.v1.QueryProposalsRequest";
|
|
84
145
|
value: Uint8Array;
|
|
85
146
|
}
|
|
86
|
-
/**
|
|
147
|
+
/**
|
|
148
|
+
* QueryProposalsRequest is the request type for the Query/Proposals RPC method.
|
|
149
|
+
* @name QueryProposalsRequestAmino
|
|
150
|
+
* @package cosmos.gov.v1
|
|
151
|
+
* @see proto type: cosmos.gov.v1.QueryProposalsRequest
|
|
152
|
+
*/
|
|
87
153
|
export interface QueryProposalsRequestAmino {
|
|
88
|
-
/**
|
|
154
|
+
/**
|
|
155
|
+
* proposal_status defines the status of the proposals.
|
|
156
|
+
*/
|
|
89
157
|
proposal_status: ProposalStatus;
|
|
90
|
-
/**
|
|
158
|
+
/**
|
|
159
|
+
* voter defines the voter address for the proposals.
|
|
160
|
+
*/
|
|
91
161
|
voter: string;
|
|
92
|
-
/**
|
|
162
|
+
/**
|
|
163
|
+
* depositor defines the deposit addresses from the proposals.
|
|
164
|
+
*/
|
|
93
165
|
depositor: string;
|
|
94
|
-
/**
|
|
166
|
+
/**
|
|
167
|
+
* pagination defines an optional pagination for the request.
|
|
168
|
+
*/
|
|
95
169
|
pagination?: PageRequestAmino;
|
|
96
170
|
}
|
|
97
171
|
export interface QueryProposalsRequestAminoMsg {
|
|
@@ -101,11 +175,18 @@ export interface QueryProposalsRequestAminoMsg {
|
|
|
101
175
|
/**
|
|
102
176
|
* QueryProposalsResponse is the response type for the Query/Proposals RPC
|
|
103
177
|
* method.
|
|
178
|
+
* @name QueryProposalsResponse
|
|
179
|
+
* @package cosmos.gov.v1
|
|
180
|
+
* @see proto type: cosmos.gov.v1.QueryProposalsResponse
|
|
104
181
|
*/
|
|
105
182
|
export interface QueryProposalsResponse {
|
|
106
|
-
/**
|
|
183
|
+
/**
|
|
184
|
+
* proposals defines all the requested governance proposals.
|
|
185
|
+
*/
|
|
107
186
|
proposals: Proposal[];
|
|
108
|
-
/**
|
|
187
|
+
/**
|
|
188
|
+
* pagination defines the pagination in the response.
|
|
189
|
+
*/
|
|
109
190
|
pagination?: PageResponse;
|
|
110
191
|
}
|
|
111
192
|
export interface QueryProposalsResponseProtoMsg {
|
|
@@ -115,102 +196,182 @@ export interface QueryProposalsResponseProtoMsg {
|
|
|
115
196
|
/**
|
|
116
197
|
* QueryProposalsResponse is the response type for the Query/Proposals RPC
|
|
117
198
|
* method.
|
|
199
|
+
* @name QueryProposalsResponseAmino
|
|
200
|
+
* @package cosmos.gov.v1
|
|
201
|
+
* @see proto type: cosmos.gov.v1.QueryProposalsResponse
|
|
118
202
|
*/
|
|
119
203
|
export interface QueryProposalsResponseAmino {
|
|
120
|
-
/**
|
|
204
|
+
/**
|
|
205
|
+
* proposals defines all the requested governance proposals.
|
|
206
|
+
*/
|
|
121
207
|
proposals: ProposalAmino[];
|
|
122
|
-
/**
|
|
208
|
+
/**
|
|
209
|
+
* pagination defines the pagination in the response.
|
|
210
|
+
*/
|
|
123
211
|
pagination?: PageResponseAmino;
|
|
124
212
|
}
|
|
125
213
|
export interface QueryProposalsResponseAminoMsg {
|
|
126
214
|
type: "cosmos-sdk/v1/QueryProposalsResponse";
|
|
127
215
|
value: QueryProposalsResponseAmino;
|
|
128
216
|
}
|
|
129
|
-
/**
|
|
217
|
+
/**
|
|
218
|
+
* QueryVoteRequest is the request type for the Query/Vote RPC method.
|
|
219
|
+
* @name QueryVoteRequest
|
|
220
|
+
* @package cosmos.gov.v1
|
|
221
|
+
* @see proto type: cosmos.gov.v1.QueryVoteRequest
|
|
222
|
+
*/
|
|
130
223
|
export interface QueryVoteRequest {
|
|
131
|
-
/**
|
|
224
|
+
/**
|
|
225
|
+
* proposal_id defines the unique id of the proposal.
|
|
226
|
+
*/
|
|
132
227
|
proposalId: bigint;
|
|
133
|
-
/**
|
|
228
|
+
/**
|
|
229
|
+
* voter defines the voter address for the proposals.
|
|
230
|
+
*/
|
|
134
231
|
voter: string;
|
|
135
232
|
}
|
|
136
233
|
export interface QueryVoteRequestProtoMsg {
|
|
137
234
|
typeUrl: "/cosmos.gov.v1.QueryVoteRequest";
|
|
138
235
|
value: Uint8Array;
|
|
139
236
|
}
|
|
140
|
-
/**
|
|
237
|
+
/**
|
|
238
|
+
* QueryVoteRequest is the request type for the Query/Vote RPC method.
|
|
239
|
+
* @name QueryVoteRequestAmino
|
|
240
|
+
* @package cosmos.gov.v1
|
|
241
|
+
* @see proto type: cosmos.gov.v1.QueryVoteRequest
|
|
242
|
+
*/
|
|
141
243
|
export interface QueryVoteRequestAmino {
|
|
142
|
-
/**
|
|
244
|
+
/**
|
|
245
|
+
* proposal_id defines the unique id of the proposal.
|
|
246
|
+
*/
|
|
143
247
|
proposal_id: string;
|
|
144
|
-
/**
|
|
248
|
+
/**
|
|
249
|
+
* voter defines the voter address for the proposals.
|
|
250
|
+
*/
|
|
145
251
|
voter: string;
|
|
146
252
|
}
|
|
147
253
|
export interface QueryVoteRequestAminoMsg {
|
|
148
254
|
type: "cosmos-sdk/v1/QueryVoteRequest";
|
|
149
255
|
value: QueryVoteRequestAmino;
|
|
150
256
|
}
|
|
151
|
-
/**
|
|
257
|
+
/**
|
|
258
|
+
* QueryVoteResponse is the response type for the Query/Vote RPC method.
|
|
259
|
+
* @name QueryVoteResponse
|
|
260
|
+
* @package cosmos.gov.v1
|
|
261
|
+
* @see proto type: cosmos.gov.v1.QueryVoteResponse
|
|
262
|
+
*/
|
|
152
263
|
export interface QueryVoteResponse {
|
|
153
|
-
/**
|
|
264
|
+
/**
|
|
265
|
+
* vote defines the queried vote.
|
|
266
|
+
*/
|
|
154
267
|
vote?: Vote;
|
|
155
268
|
}
|
|
156
269
|
export interface QueryVoteResponseProtoMsg {
|
|
157
270
|
typeUrl: "/cosmos.gov.v1.QueryVoteResponse";
|
|
158
271
|
value: Uint8Array;
|
|
159
272
|
}
|
|
160
|
-
/**
|
|
273
|
+
/**
|
|
274
|
+
* QueryVoteResponse is the response type for the Query/Vote RPC method.
|
|
275
|
+
* @name QueryVoteResponseAmino
|
|
276
|
+
* @package cosmos.gov.v1
|
|
277
|
+
* @see proto type: cosmos.gov.v1.QueryVoteResponse
|
|
278
|
+
*/
|
|
161
279
|
export interface QueryVoteResponseAmino {
|
|
162
|
-
/**
|
|
280
|
+
/**
|
|
281
|
+
* vote defines the queried vote.
|
|
282
|
+
*/
|
|
163
283
|
vote?: VoteAmino;
|
|
164
284
|
}
|
|
165
285
|
export interface QueryVoteResponseAminoMsg {
|
|
166
286
|
type: "cosmos-sdk/v1/QueryVoteResponse";
|
|
167
287
|
value: QueryVoteResponseAmino;
|
|
168
288
|
}
|
|
169
|
-
/**
|
|
289
|
+
/**
|
|
290
|
+
* QueryVotesRequest is the request type for the Query/Votes RPC method.
|
|
291
|
+
* @name QueryVotesRequest
|
|
292
|
+
* @package cosmos.gov.v1
|
|
293
|
+
* @see proto type: cosmos.gov.v1.QueryVotesRequest
|
|
294
|
+
*/
|
|
170
295
|
export interface QueryVotesRequest {
|
|
171
|
-
/**
|
|
296
|
+
/**
|
|
297
|
+
* proposal_id defines the unique id of the proposal.
|
|
298
|
+
*/
|
|
172
299
|
proposalId: bigint;
|
|
173
|
-
/**
|
|
300
|
+
/**
|
|
301
|
+
* pagination defines an optional pagination for the request.
|
|
302
|
+
*/
|
|
174
303
|
pagination?: PageRequest;
|
|
175
304
|
}
|
|
176
305
|
export interface QueryVotesRequestProtoMsg {
|
|
177
306
|
typeUrl: "/cosmos.gov.v1.QueryVotesRequest";
|
|
178
307
|
value: Uint8Array;
|
|
179
308
|
}
|
|
180
|
-
/**
|
|
309
|
+
/**
|
|
310
|
+
* QueryVotesRequest is the request type for the Query/Votes RPC method.
|
|
311
|
+
* @name QueryVotesRequestAmino
|
|
312
|
+
* @package cosmos.gov.v1
|
|
313
|
+
* @see proto type: cosmos.gov.v1.QueryVotesRequest
|
|
314
|
+
*/
|
|
181
315
|
export interface QueryVotesRequestAmino {
|
|
182
|
-
/**
|
|
316
|
+
/**
|
|
317
|
+
* proposal_id defines the unique id of the proposal.
|
|
318
|
+
*/
|
|
183
319
|
proposal_id: string;
|
|
184
|
-
/**
|
|
320
|
+
/**
|
|
321
|
+
* pagination defines an optional pagination for the request.
|
|
322
|
+
*/
|
|
185
323
|
pagination?: PageRequestAmino;
|
|
186
324
|
}
|
|
187
325
|
export interface QueryVotesRequestAminoMsg {
|
|
188
326
|
type: "cosmos-sdk/v1/QueryVotesRequest";
|
|
189
327
|
value: QueryVotesRequestAmino;
|
|
190
328
|
}
|
|
191
|
-
/**
|
|
329
|
+
/**
|
|
330
|
+
* QueryVotesResponse is the response type for the Query/Votes RPC method.
|
|
331
|
+
* @name QueryVotesResponse
|
|
332
|
+
* @package cosmos.gov.v1
|
|
333
|
+
* @see proto type: cosmos.gov.v1.QueryVotesResponse
|
|
334
|
+
*/
|
|
192
335
|
export interface QueryVotesResponse {
|
|
193
|
-
/**
|
|
336
|
+
/**
|
|
337
|
+
* votes defines the queried votes.
|
|
338
|
+
*/
|
|
194
339
|
votes: Vote[];
|
|
195
|
-
/**
|
|
340
|
+
/**
|
|
341
|
+
* pagination defines the pagination in the response.
|
|
342
|
+
*/
|
|
196
343
|
pagination?: PageResponse;
|
|
197
344
|
}
|
|
198
345
|
export interface QueryVotesResponseProtoMsg {
|
|
199
346
|
typeUrl: "/cosmos.gov.v1.QueryVotesResponse";
|
|
200
347
|
value: Uint8Array;
|
|
201
348
|
}
|
|
202
|
-
/**
|
|
349
|
+
/**
|
|
350
|
+
* QueryVotesResponse is the response type for the Query/Votes RPC method.
|
|
351
|
+
* @name QueryVotesResponseAmino
|
|
352
|
+
* @package cosmos.gov.v1
|
|
353
|
+
* @see proto type: cosmos.gov.v1.QueryVotesResponse
|
|
354
|
+
*/
|
|
203
355
|
export interface QueryVotesResponseAmino {
|
|
204
|
-
/**
|
|
356
|
+
/**
|
|
357
|
+
* votes defines the queried votes.
|
|
358
|
+
*/
|
|
205
359
|
votes: VoteAmino[];
|
|
206
|
-
/**
|
|
360
|
+
/**
|
|
361
|
+
* pagination defines the pagination in the response.
|
|
362
|
+
*/
|
|
207
363
|
pagination?: PageResponseAmino;
|
|
208
364
|
}
|
|
209
365
|
export interface QueryVotesResponseAminoMsg {
|
|
210
366
|
type: "cosmos-sdk/v1/QueryVotesResponse";
|
|
211
367
|
value: QueryVotesResponseAmino;
|
|
212
368
|
}
|
|
213
|
-
/**
|
|
369
|
+
/**
|
|
370
|
+
* QueryParamsRequest is the request type for the Query/Params RPC method.
|
|
371
|
+
* @name QueryParamsRequest
|
|
372
|
+
* @package cosmos.gov.v1
|
|
373
|
+
* @see proto type: cosmos.gov.v1.QueryParamsRequest
|
|
374
|
+
*/
|
|
214
375
|
export interface QueryParamsRequest {
|
|
215
376
|
/**
|
|
216
377
|
* params_type defines which parameters to query for, can be one of "voting",
|
|
@@ -222,7 +383,12 @@ export interface QueryParamsRequestProtoMsg {
|
|
|
222
383
|
typeUrl: "/cosmos.gov.v1.QueryParamsRequest";
|
|
223
384
|
value: Uint8Array;
|
|
224
385
|
}
|
|
225
|
-
/**
|
|
386
|
+
/**
|
|
387
|
+
* QueryParamsRequest is the request type for the Query/Params RPC method.
|
|
388
|
+
* @name QueryParamsRequestAmino
|
|
389
|
+
* @package cosmos.gov.v1
|
|
390
|
+
* @see proto type: cosmos.gov.v1.QueryParamsRequest
|
|
391
|
+
*/
|
|
226
392
|
export interface QueryParamsRequestAmino {
|
|
227
393
|
/**
|
|
228
394
|
* params_type defines which parameters to query for, can be one of "voting",
|
|
@@ -234,25 +400,30 @@ export interface QueryParamsRequestAminoMsg {
|
|
|
234
400
|
type: "cosmos-sdk/v1/QueryParamsRequest";
|
|
235
401
|
value: QueryParamsRequestAmino;
|
|
236
402
|
}
|
|
237
|
-
/**
|
|
403
|
+
/**
|
|
404
|
+
* QueryParamsResponse is the response type for the Query/Params RPC method.
|
|
405
|
+
* @name QueryParamsResponse
|
|
406
|
+
* @package cosmos.gov.v1
|
|
407
|
+
* @see proto type: cosmos.gov.v1.QueryParamsResponse
|
|
408
|
+
*/
|
|
238
409
|
export interface QueryParamsResponse {
|
|
239
410
|
/**
|
|
240
411
|
* Deprecated: Prefer to use `params` instead.
|
|
241
412
|
* voting_params defines the parameters related to voting.
|
|
413
|
+
* @deprecated
|
|
242
414
|
*/
|
|
243
|
-
/** @deprecated */
|
|
244
415
|
votingParams?: VotingParams;
|
|
245
416
|
/**
|
|
246
417
|
* Deprecated: Prefer to use `params` instead.
|
|
247
418
|
* deposit_params defines the parameters related to deposit.
|
|
419
|
+
* @deprecated
|
|
248
420
|
*/
|
|
249
|
-
/** @deprecated */
|
|
250
421
|
depositParams?: DepositParams;
|
|
251
422
|
/**
|
|
252
423
|
* Deprecated: Prefer to use `params` instead.
|
|
253
424
|
* tally_params defines the parameters related to tally.
|
|
425
|
+
* @deprecated
|
|
254
426
|
*/
|
|
255
|
-
/** @deprecated */
|
|
256
427
|
tallyParams?: TallyParams;
|
|
257
428
|
/**
|
|
258
429
|
* params defines all the paramaters of x/gov module.
|
|
@@ -265,25 +436,30 @@ export interface QueryParamsResponseProtoMsg {
|
|
|
265
436
|
typeUrl: "/cosmos.gov.v1.QueryParamsResponse";
|
|
266
437
|
value: Uint8Array;
|
|
267
438
|
}
|
|
268
|
-
/**
|
|
439
|
+
/**
|
|
440
|
+
* QueryParamsResponse is the response type for the Query/Params RPC method.
|
|
441
|
+
* @name QueryParamsResponseAmino
|
|
442
|
+
* @package cosmos.gov.v1
|
|
443
|
+
* @see proto type: cosmos.gov.v1.QueryParamsResponse
|
|
444
|
+
*/
|
|
269
445
|
export interface QueryParamsResponseAmino {
|
|
270
446
|
/**
|
|
271
447
|
* Deprecated: Prefer to use `params` instead.
|
|
272
448
|
* voting_params defines the parameters related to voting.
|
|
449
|
+
* @deprecated
|
|
273
450
|
*/
|
|
274
|
-
/** @deprecated */
|
|
275
451
|
voting_params?: VotingParamsAmino;
|
|
276
452
|
/**
|
|
277
453
|
* Deprecated: Prefer to use `params` instead.
|
|
278
454
|
* deposit_params defines the parameters related to deposit.
|
|
455
|
+
* @deprecated
|
|
279
456
|
*/
|
|
280
|
-
/** @deprecated */
|
|
281
457
|
deposit_params?: DepositParamsAmino;
|
|
282
458
|
/**
|
|
283
459
|
* Deprecated: Prefer to use `params` instead.
|
|
284
460
|
* tally_params defines the parameters related to tally.
|
|
461
|
+
* @deprecated
|
|
285
462
|
*/
|
|
286
|
-
/** @deprecated */
|
|
287
463
|
tally_params?: TallyParamsAmino;
|
|
288
464
|
/**
|
|
289
465
|
* params defines all the paramaters of x/gov module.
|
|
@@ -296,126 +472,228 @@ export interface QueryParamsResponseAminoMsg {
|
|
|
296
472
|
type: "cosmos-sdk/v1/QueryParamsResponse";
|
|
297
473
|
value: QueryParamsResponseAmino;
|
|
298
474
|
}
|
|
299
|
-
/**
|
|
475
|
+
/**
|
|
476
|
+
* QueryDepositRequest is the request type for the Query/Deposit RPC method.
|
|
477
|
+
* @name QueryDepositRequest
|
|
478
|
+
* @package cosmos.gov.v1
|
|
479
|
+
* @see proto type: cosmos.gov.v1.QueryDepositRequest
|
|
480
|
+
*/
|
|
300
481
|
export interface QueryDepositRequest {
|
|
301
|
-
/**
|
|
482
|
+
/**
|
|
483
|
+
* proposal_id defines the unique id of the proposal.
|
|
484
|
+
*/
|
|
302
485
|
proposalId: bigint;
|
|
303
|
-
/**
|
|
486
|
+
/**
|
|
487
|
+
* depositor defines the deposit addresses from the proposals.
|
|
488
|
+
*/
|
|
304
489
|
depositor: string;
|
|
305
490
|
}
|
|
306
491
|
export interface QueryDepositRequestProtoMsg {
|
|
307
492
|
typeUrl: "/cosmos.gov.v1.QueryDepositRequest";
|
|
308
493
|
value: Uint8Array;
|
|
309
494
|
}
|
|
310
|
-
/**
|
|
495
|
+
/**
|
|
496
|
+
* QueryDepositRequest is the request type for the Query/Deposit RPC method.
|
|
497
|
+
* @name QueryDepositRequestAmino
|
|
498
|
+
* @package cosmos.gov.v1
|
|
499
|
+
* @see proto type: cosmos.gov.v1.QueryDepositRequest
|
|
500
|
+
*/
|
|
311
501
|
export interface QueryDepositRequestAmino {
|
|
312
|
-
/**
|
|
502
|
+
/**
|
|
503
|
+
* proposal_id defines the unique id of the proposal.
|
|
504
|
+
*/
|
|
313
505
|
proposal_id: string;
|
|
314
|
-
/**
|
|
506
|
+
/**
|
|
507
|
+
* depositor defines the deposit addresses from the proposals.
|
|
508
|
+
*/
|
|
315
509
|
depositor: string;
|
|
316
510
|
}
|
|
317
511
|
export interface QueryDepositRequestAminoMsg {
|
|
318
512
|
type: "cosmos-sdk/v1/QueryDepositRequest";
|
|
319
513
|
value: QueryDepositRequestAmino;
|
|
320
514
|
}
|
|
321
|
-
/**
|
|
515
|
+
/**
|
|
516
|
+
* QueryDepositResponse is the response type for the Query/Deposit RPC method.
|
|
517
|
+
* @name QueryDepositResponse
|
|
518
|
+
* @package cosmos.gov.v1
|
|
519
|
+
* @see proto type: cosmos.gov.v1.QueryDepositResponse
|
|
520
|
+
*/
|
|
322
521
|
export interface QueryDepositResponse {
|
|
323
|
-
/**
|
|
522
|
+
/**
|
|
523
|
+
* deposit defines the requested deposit.
|
|
524
|
+
*/
|
|
324
525
|
deposit?: Deposit;
|
|
325
526
|
}
|
|
326
527
|
export interface QueryDepositResponseProtoMsg {
|
|
327
528
|
typeUrl: "/cosmos.gov.v1.QueryDepositResponse";
|
|
328
529
|
value: Uint8Array;
|
|
329
530
|
}
|
|
330
|
-
/**
|
|
531
|
+
/**
|
|
532
|
+
* QueryDepositResponse is the response type for the Query/Deposit RPC method.
|
|
533
|
+
* @name QueryDepositResponseAmino
|
|
534
|
+
* @package cosmos.gov.v1
|
|
535
|
+
* @see proto type: cosmos.gov.v1.QueryDepositResponse
|
|
536
|
+
*/
|
|
331
537
|
export interface QueryDepositResponseAmino {
|
|
332
|
-
/**
|
|
538
|
+
/**
|
|
539
|
+
* deposit defines the requested deposit.
|
|
540
|
+
*/
|
|
333
541
|
deposit?: DepositAmino;
|
|
334
542
|
}
|
|
335
543
|
export interface QueryDepositResponseAminoMsg {
|
|
336
544
|
type: "cosmos-sdk/v1/QueryDepositResponse";
|
|
337
545
|
value: QueryDepositResponseAmino;
|
|
338
546
|
}
|
|
339
|
-
/**
|
|
547
|
+
/**
|
|
548
|
+
* QueryDepositsRequest is the request type for the Query/Deposits RPC method.
|
|
549
|
+
* @name QueryDepositsRequest
|
|
550
|
+
* @package cosmos.gov.v1
|
|
551
|
+
* @see proto type: cosmos.gov.v1.QueryDepositsRequest
|
|
552
|
+
*/
|
|
340
553
|
export interface QueryDepositsRequest {
|
|
341
|
-
/**
|
|
554
|
+
/**
|
|
555
|
+
* proposal_id defines the unique id of the proposal.
|
|
556
|
+
*/
|
|
342
557
|
proposalId: bigint;
|
|
343
|
-
/**
|
|
558
|
+
/**
|
|
559
|
+
* pagination defines an optional pagination for the request.
|
|
560
|
+
*/
|
|
344
561
|
pagination?: PageRequest;
|
|
345
562
|
}
|
|
346
563
|
export interface QueryDepositsRequestProtoMsg {
|
|
347
564
|
typeUrl: "/cosmos.gov.v1.QueryDepositsRequest";
|
|
348
565
|
value: Uint8Array;
|
|
349
566
|
}
|
|
350
|
-
/**
|
|
567
|
+
/**
|
|
568
|
+
* QueryDepositsRequest is the request type for the Query/Deposits RPC method.
|
|
569
|
+
* @name QueryDepositsRequestAmino
|
|
570
|
+
* @package cosmos.gov.v1
|
|
571
|
+
* @see proto type: cosmos.gov.v1.QueryDepositsRequest
|
|
572
|
+
*/
|
|
351
573
|
export interface QueryDepositsRequestAmino {
|
|
352
|
-
/**
|
|
574
|
+
/**
|
|
575
|
+
* proposal_id defines the unique id of the proposal.
|
|
576
|
+
*/
|
|
353
577
|
proposal_id: string;
|
|
354
|
-
/**
|
|
578
|
+
/**
|
|
579
|
+
* pagination defines an optional pagination for the request.
|
|
580
|
+
*/
|
|
355
581
|
pagination?: PageRequestAmino;
|
|
356
582
|
}
|
|
357
583
|
export interface QueryDepositsRequestAminoMsg {
|
|
358
584
|
type: "cosmos-sdk/v1/QueryDepositsRequest";
|
|
359
585
|
value: QueryDepositsRequestAmino;
|
|
360
586
|
}
|
|
361
|
-
/**
|
|
587
|
+
/**
|
|
588
|
+
* QueryDepositsResponse is the response type for the Query/Deposits RPC method.
|
|
589
|
+
* @name QueryDepositsResponse
|
|
590
|
+
* @package cosmos.gov.v1
|
|
591
|
+
* @see proto type: cosmos.gov.v1.QueryDepositsResponse
|
|
592
|
+
*/
|
|
362
593
|
export interface QueryDepositsResponse {
|
|
363
|
-
/**
|
|
594
|
+
/**
|
|
595
|
+
* deposits defines the requested deposits.
|
|
596
|
+
*/
|
|
364
597
|
deposits: Deposit[];
|
|
365
|
-
/**
|
|
598
|
+
/**
|
|
599
|
+
* pagination defines the pagination in the response.
|
|
600
|
+
*/
|
|
366
601
|
pagination?: PageResponse;
|
|
367
602
|
}
|
|
368
603
|
export interface QueryDepositsResponseProtoMsg {
|
|
369
604
|
typeUrl: "/cosmos.gov.v1.QueryDepositsResponse";
|
|
370
605
|
value: Uint8Array;
|
|
371
606
|
}
|
|
372
|
-
/**
|
|
607
|
+
/**
|
|
608
|
+
* QueryDepositsResponse is the response type for the Query/Deposits RPC method.
|
|
609
|
+
* @name QueryDepositsResponseAmino
|
|
610
|
+
* @package cosmos.gov.v1
|
|
611
|
+
* @see proto type: cosmos.gov.v1.QueryDepositsResponse
|
|
612
|
+
*/
|
|
373
613
|
export interface QueryDepositsResponseAmino {
|
|
374
|
-
/**
|
|
614
|
+
/**
|
|
615
|
+
* deposits defines the requested deposits.
|
|
616
|
+
*/
|
|
375
617
|
deposits: DepositAmino[];
|
|
376
|
-
/**
|
|
618
|
+
/**
|
|
619
|
+
* pagination defines the pagination in the response.
|
|
620
|
+
*/
|
|
377
621
|
pagination?: PageResponseAmino;
|
|
378
622
|
}
|
|
379
623
|
export interface QueryDepositsResponseAminoMsg {
|
|
380
624
|
type: "cosmos-sdk/v1/QueryDepositsResponse";
|
|
381
625
|
value: QueryDepositsResponseAmino;
|
|
382
626
|
}
|
|
383
|
-
/**
|
|
627
|
+
/**
|
|
628
|
+
* QueryTallyResultRequest is the request type for the Query/Tally RPC method.
|
|
629
|
+
* @name QueryTallyResultRequest
|
|
630
|
+
* @package cosmos.gov.v1
|
|
631
|
+
* @see proto type: cosmos.gov.v1.QueryTallyResultRequest
|
|
632
|
+
*/
|
|
384
633
|
export interface QueryTallyResultRequest {
|
|
385
|
-
/**
|
|
634
|
+
/**
|
|
635
|
+
* proposal_id defines the unique id of the proposal.
|
|
636
|
+
*/
|
|
386
637
|
proposalId: bigint;
|
|
387
638
|
}
|
|
388
639
|
export interface QueryTallyResultRequestProtoMsg {
|
|
389
640
|
typeUrl: "/cosmos.gov.v1.QueryTallyResultRequest";
|
|
390
641
|
value: Uint8Array;
|
|
391
642
|
}
|
|
392
|
-
/**
|
|
643
|
+
/**
|
|
644
|
+
* QueryTallyResultRequest is the request type for the Query/Tally RPC method.
|
|
645
|
+
* @name QueryTallyResultRequestAmino
|
|
646
|
+
* @package cosmos.gov.v1
|
|
647
|
+
* @see proto type: cosmos.gov.v1.QueryTallyResultRequest
|
|
648
|
+
*/
|
|
393
649
|
export interface QueryTallyResultRequestAmino {
|
|
394
|
-
/**
|
|
650
|
+
/**
|
|
651
|
+
* proposal_id defines the unique id of the proposal.
|
|
652
|
+
*/
|
|
395
653
|
proposal_id: string;
|
|
396
654
|
}
|
|
397
655
|
export interface QueryTallyResultRequestAminoMsg {
|
|
398
656
|
type: "cosmos-sdk/v1/QueryTallyResultRequest";
|
|
399
657
|
value: QueryTallyResultRequestAmino;
|
|
400
658
|
}
|
|
401
|
-
/**
|
|
659
|
+
/**
|
|
660
|
+
* QueryTallyResultResponse is the response type for the Query/Tally RPC method.
|
|
661
|
+
* @name QueryTallyResultResponse
|
|
662
|
+
* @package cosmos.gov.v1
|
|
663
|
+
* @see proto type: cosmos.gov.v1.QueryTallyResultResponse
|
|
664
|
+
*/
|
|
402
665
|
export interface QueryTallyResultResponse {
|
|
403
|
-
/**
|
|
666
|
+
/**
|
|
667
|
+
* tally defines the requested tally.
|
|
668
|
+
*/
|
|
404
669
|
tally?: TallyResult;
|
|
405
670
|
}
|
|
406
671
|
export interface QueryTallyResultResponseProtoMsg {
|
|
407
672
|
typeUrl: "/cosmos.gov.v1.QueryTallyResultResponse";
|
|
408
673
|
value: Uint8Array;
|
|
409
674
|
}
|
|
410
|
-
/**
|
|
675
|
+
/**
|
|
676
|
+
* QueryTallyResultResponse is the response type for the Query/Tally RPC method.
|
|
677
|
+
* @name QueryTallyResultResponseAmino
|
|
678
|
+
* @package cosmos.gov.v1
|
|
679
|
+
* @see proto type: cosmos.gov.v1.QueryTallyResultResponse
|
|
680
|
+
*/
|
|
411
681
|
export interface QueryTallyResultResponseAmino {
|
|
412
|
-
/**
|
|
682
|
+
/**
|
|
683
|
+
* tally defines the requested tally.
|
|
684
|
+
*/
|
|
413
685
|
tally?: TallyResultAmino;
|
|
414
686
|
}
|
|
415
687
|
export interface QueryTallyResultResponseAminoMsg {
|
|
416
688
|
type: "cosmos-sdk/v1/QueryTallyResultResponse";
|
|
417
689
|
value: QueryTallyResultResponseAmino;
|
|
418
690
|
}
|
|
691
|
+
/**
|
|
692
|
+
* QueryConstitutionRequest is the request type for the Query/Constitution RPC method
|
|
693
|
+
* @name QueryConstitutionRequest
|
|
694
|
+
* @package cosmos.gov.v1
|
|
695
|
+
* @see proto type: cosmos.gov.v1.QueryConstitutionRequest
|
|
696
|
+
*/
|
|
419
697
|
export declare const QueryConstitutionRequest: {
|
|
420
698
|
typeUrl: string;
|
|
421
699
|
aminoType: string;
|
|
@@ -433,6 +711,12 @@ export declare const QueryConstitutionRequest: {
|
|
|
433
711
|
toProtoMsg(message: QueryConstitutionRequest): QueryConstitutionRequestProtoMsg;
|
|
434
712
|
registerTypeUrl(): void;
|
|
435
713
|
};
|
|
714
|
+
/**
|
|
715
|
+
* QueryConstitutionResponse is the response type for the Query/Constitution RPC method
|
|
716
|
+
* @name QueryConstitutionResponse
|
|
717
|
+
* @package cosmos.gov.v1
|
|
718
|
+
* @see proto type: cosmos.gov.v1.QueryConstitutionResponse
|
|
719
|
+
*/
|
|
436
720
|
export declare const QueryConstitutionResponse: {
|
|
437
721
|
typeUrl: string;
|
|
438
722
|
aminoType: string;
|
|
@@ -450,6 +734,12 @@ export declare const QueryConstitutionResponse: {
|
|
|
450
734
|
toProtoMsg(message: QueryConstitutionResponse): QueryConstitutionResponseProtoMsg;
|
|
451
735
|
registerTypeUrl(): void;
|
|
452
736
|
};
|
|
737
|
+
/**
|
|
738
|
+
* QueryProposalRequest is the request type for the Query/Proposal RPC method.
|
|
739
|
+
* @name QueryProposalRequest
|
|
740
|
+
* @package cosmos.gov.v1
|
|
741
|
+
* @see proto type: cosmos.gov.v1.QueryProposalRequest
|
|
742
|
+
*/
|
|
453
743
|
export declare const QueryProposalRequest: {
|
|
454
744
|
typeUrl: string;
|
|
455
745
|
aminoType: string;
|
|
@@ -467,6 +757,12 @@ export declare const QueryProposalRequest: {
|
|
|
467
757
|
toProtoMsg(message: QueryProposalRequest): QueryProposalRequestProtoMsg;
|
|
468
758
|
registerTypeUrl(): void;
|
|
469
759
|
};
|
|
760
|
+
/**
|
|
761
|
+
* QueryProposalResponse is the response type for the Query/Proposal RPC method.
|
|
762
|
+
* @name QueryProposalResponse
|
|
763
|
+
* @package cosmos.gov.v1
|
|
764
|
+
* @see proto type: cosmos.gov.v1.QueryProposalResponse
|
|
765
|
+
*/
|
|
470
766
|
export declare const QueryProposalResponse: {
|
|
471
767
|
typeUrl: string;
|
|
472
768
|
aminoType: string;
|
|
@@ -484,6 +780,12 @@ export declare const QueryProposalResponse: {
|
|
|
484
780
|
toProtoMsg(message: QueryProposalResponse): QueryProposalResponseProtoMsg;
|
|
485
781
|
registerTypeUrl(): void;
|
|
486
782
|
};
|
|
783
|
+
/**
|
|
784
|
+
* QueryProposalsRequest is the request type for the Query/Proposals RPC method.
|
|
785
|
+
* @name QueryProposalsRequest
|
|
786
|
+
* @package cosmos.gov.v1
|
|
787
|
+
* @see proto type: cosmos.gov.v1.QueryProposalsRequest
|
|
788
|
+
*/
|
|
487
789
|
export declare const QueryProposalsRequest: {
|
|
488
790
|
typeUrl: string;
|
|
489
791
|
aminoType: string;
|
|
@@ -501,6 +803,13 @@ export declare const QueryProposalsRequest: {
|
|
|
501
803
|
toProtoMsg(message: QueryProposalsRequest): QueryProposalsRequestProtoMsg;
|
|
502
804
|
registerTypeUrl(): void;
|
|
503
805
|
};
|
|
806
|
+
/**
|
|
807
|
+
* QueryProposalsResponse is the response type for the Query/Proposals RPC
|
|
808
|
+
* method.
|
|
809
|
+
* @name QueryProposalsResponse
|
|
810
|
+
* @package cosmos.gov.v1
|
|
811
|
+
* @see proto type: cosmos.gov.v1.QueryProposalsResponse
|
|
812
|
+
*/
|
|
504
813
|
export declare const QueryProposalsResponse: {
|
|
505
814
|
typeUrl: string;
|
|
506
815
|
aminoType: string;
|
|
@@ -518,6 +827,12 @@ export declare const QueryProposalsResponse: {
|
|
|
518
827
|
toProtoMsg(message: QueryProposalsResponse): QueryProposalsResponseProtoMsg;
|
|
519
828
|
registerTypeUrl(): void;
|
|
520
829
|
};
|
|
830
|
+
/**
|
|
831
|
+
* QueryVoteRequest is the request type for the Query/Vote RPC method.
|
|
832
|
+
* @name QueryVoteRequest
|
|
833
|
+
* @package cosmos.gov.v1
|
|
834
|
+
* @see proto type: cosmos.gov.v1.QueryVoteRequest
|
|
835
|
+
*/
|
|
521
836
|
export declare const QueryVoteRequest: {
|
|
522
837
|
typeUrl: string;
|
|
523
838
|
aminoType: string;
|
|
@@ -535,6 +850,12 @@ export declare const QueryVoteRequest: {
|
|
|
535
850
|
toProtoMsg(message: QueryVoteRequest): QueryVoteRequestProtoMsg;
|
|
536
851
|
registerTypeUrl(): void;
|
|
537
852
|
};
|
|
853
|
+
/**
|
|
854
|
+
* QueryVoteResponse is the response type for the Query/Vote RPC method.
|
|
855
|
+
* @name QueryVoteResponse
|
|
856
|
+
* @package cosmos.gov.v1
|
|
857
|
+
* @see proto type: cosmos.gov.v1.QueryVoteResponse
|
|
858
|
+
*/
|
|
538
859
|
export declare const QueryVoteResponse: {
|
|
539
860
|
typeUrl: string;
|
|
540
861
|
aminoType: string;
|
|
@@ -552,6 +873,12 @@ export declare const QueryVoteResponse: {
|
|
|
552
873
|
toProtoMsg(message: QueryVoteResponse): QueryVoteResponseProtoMsg;
|
|
553
874
|
registerTypeUrl(): void;
|
|
554
875
|
};
|
|
876
|
+
/**
|
|
877
|
+
* QueryVotesRequest is the request type for the Query/Votes RPC method.
|
|
878
|
+
* @name QueryVotesRequest
|
|
879
|
+
* @package cosmos.gov.v1
|
|
880
|
+
* @see proto type: cosmos.gov.v1.QueryVotesRequest
|
|
881
|
+
*/
|
|
555
882
|
export declare const QueryVotesRequest: {
|
|
556
883
|
typeUrl: string;
|
|
557
884
|
aminoType: string;
|
|
@@ -569,6 +896,12 @@ export declare const QueryVotesRequest: {
|
|
|
569
896
|
toProtoMsg(message: QueryVotesRequest): QueryVotesRequestProtoMsg;
|
|
570
897
|
registerTypeUrl(): void;
|
|
571
898
|
};
|
|
899
|
+
/**
|
|
900
|
+
* QueryVotesResponse is the response type for the Query/Votes RPC method.
|
|
901
|
+
* @name QueryVotesResponse
|
|
902
|
+
* @package cosmos.gov.v1
|
|
903
|
+
* @see proto type: cosmos.gov.v1.QueryVotesResponse
|
|
904
|
+
*/
|
|
572
905
|
export declare const QueryVotesResponse: {
|
|
573
906
|
typeUrl: string;
|
|
574
907
|
aminoType: string;
|
|
@@ -586,6 +919,12 @@ export declare const QueryVotesResponse: {
|
|
|
586
919
|
toProtoMsg(message: QueryVotesResponse): QueryVotesResponseProtoMsg;
|
|
587
920
|
registerTypeUrl(): void;
|
|
588
921
|
};
|
|
922
|
+
/**
|
|
923
|
+
* QueryParamsRequest is the request type for the Query/Params RPC method.
|
|
924
|
+
* @name QueryParamsRequest
|
|
925
|
+
* @package cosmos.gov.v1
|
|
926
|
+
* @see proto type: cosmos.gov.v1.QueryParamsRequest
|
|
927
|
+
*/
|
|
589
928
|
export declare const QueryParamsRequest: {
|
|
590
929
|
typeUrl: string;
|
|
591
930
|
aminoType: string;
|
|
@@ -603,6 +942,12 @@ export declare const QueryParamsRequest: {
|
|
|
603
942
|
toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg;
|
|
604
943
|
registerTypeUrl(): void;
|
|
605
944
|
};
|
|
945
|
+
/**
|
|
946
|
+
* QueryParamsResponse is the response type for the Query/Params RPC method.
|
|
947
|
+
* @name QueryParamsResponse
|
|
948
|
+
* @package cosmos.gov.v1
|
|
949
|
+
* @see proto type: cosmos.gov.v1.QueryParamsResponse
|
|
950
|
+
*/
|
|
606
951
|
export declare const QueryParamsResponse: {
|
|
607
952
|
typeUrl: string;
|
|
608
953
|
aminoType: string;
|
|
@@ -620,6 +965,12 @@ export declare const QueryParamsResponse: {
|
|
|
620
965
|
toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg;
|
|
621
966
|
registerTypeUrl(): void;
|
|
622
967
|
};
|
|
968
|
+
/**
|
|
969
|
+
* QueryDepositRequest is the request type for the Query/Deposit RPC method.
|
|
970
|
+
* @name QueryDepositRequest
|
|
971
|
+
* @package cosmos.gov.v1
|
|
972
|
+
* @see proto type: cosmos.gov.v1.QueryDepositRequest
|
|
973
|
+
*/
|
|
623
974
|
export declare const QueryDepositRequest: {
|
|
624
975
|
typeUrl: string;
|
|
625
976
|
aminoType: string;
|
|
@@ -637,6 +988,12 @@ export declare const QueryDepositRequest: {
|
|
|
637
988
|
toProtoMsg(message: QueryDepositRequest): QueryDepositRequestProtoMsg;
|
|
638
989
|
registerTypeUrl(): void;
|
|
639
990
|
};
|
|
991
|
+
/**
|
|
992
|
+
* QueryDepositResponse is the response type for the Query/Deposit RPC method.
|
|
993
|
+
* @name QueryDepositResponse
|
|
994
|
+
* @package cosmos.gov.v1
|
|
995
|
+
* @see proto type: cosmos.gov.v1.QueryDepositResponse
|
|
996
|
+
*/
|
|
640
997
|
export declare const QueryDepositResponse: {
|
|
641
998
|
typeUrl: string;
|
|
642
999
|
aminoType: string;
|
|
@@ -654,6 +1011,12 @@ export declare const QueryDepositResponse: {
|
|
|
654
1011
|
toProtoMsg(message: QueryDepositResponse): QueryDepositResponseProtoMsg;
|
|
655
1012
|
registerTypeUrl(): void;
|
|
656
1013
|
};
|
|
1014
|
+
/**
|
|
1015
|
+
* QueryDepositsRequest is the request type for the Query/Deposits RPC method.
|
|
1016
|
+
* @name QueryDepositsRequest
|
|
1017
|
+
* @package cosmos.gov.v1
|
|
1018
|
+
* @see proto type: cosmos.gov.v1.QueryDepositsRequest
|
|
1019
|
+
*/
|
|
657
1020
|
export declare const QueryDepositsRequest: {
|
|
658
1021
|
typeUrl: string;
|
|
659
1022
|
aminoType: string;
|
|
@@ -671,6 +1034,12 @@ export declare const QueryDepositsRequest: {
|
|
|
671
1034
|
toProtoMsg(message: QueryDepositsRequest): QueryDepositsRequestProtoMsg;
|
|
672
1035
|
registerTypeUrl(): void;
|
|
673
1036
|
};
|
|
1037
|
+
/**
|
|
1038
|
+
* QueryDepositsResponse is the response type for the Query/Deposits RPC method.
|
|
1039
|
+
* @name QueryDepositsResponse
|
|
1040
|
+
* @package cosmos.gov.v1
|
|
1041
|
+
* @see proto type: cosmos.gov.v1.QueryDepositsResponse
|
|
1042
|
+
*/
|
|
674
1043
|
export declare const QueryDepositsResponse: {
|
|
675
1044
|
typeUrl: string;
|
|
676
1045
|
aminoType: string;
|
|
@@ -688,6 +1057,12 @@ export declare const QueryDepositsResponse: {
|
|
|
688
1057
|
toProtoMsg(message: QueryDepositsResponse): QueryDepositsResponseProtoMsg;
|
|
689
1058
|
registerTypeUrl(): void;
|
|
690
1059
|
};
|
|
1060
|
+
/**
|
|
1061
|
+
* QueryTallyResultRequest is the request type for the Query/Tally RPC method.
|
|
1062
|
+
* @name QueryTallyResultRequest
|
|
1063
|
+
* @package cosmos.gov.v1
|
|
1064
|
+
* @see proto type: cosmos.gov.v1.QueryTallyResultRequest
|
|
1065
|
+
*/
|
|
691
1066
|
export declare const QueryTallyResultRequest: {
|
|
692
1067
|
typeUrl: string;
|
|
693
1068
|
aminoType: string;
|
|
@@ -705,6 +1080,12 @@ export declare const QueryTallyResultRequest: {
|
|
|
705
1080
|
toProtoMsg(message: QueryTallyResultRequest): QueryTallyResultRequestProtoMsg;
|
|
706
1081
|
registerTypeUrl(): void;
|
|
707
1082
|
};
|
|
1083
|
+
/**
|
|
1084
|
+
* QueryTallyResultResponse is the response type for the Query/Tally RPC method.
|
|
1085
|
+
* @name QueryTallyResultResponse
|
|
1086
|
+
* @package cosmos.gov.v1
|
|
1087
|
+
* @see proto type: cosmos.gov.v1.QueryTallyResultResponse
|
|
1088
|
+
*/
|
|
708
1089
|
export declare const QueryTallyResultResponse: {
|
|
709
1090
|
typeUrl: string;
|
|
710
1091
|
aminoType: string;
|