@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
|
@@ -2,80 +2,144 @@ import { PageRequest, PageRequestAmino, PageResponse, PageResponseAmino } from "
|
|
|
2
2
|
import { Validator, ValidatorAmino, DelegationResponse, DelegationResponseAmino, UnbondingDelegation, UnbondingDelegationAmino, RedelegationResponse, RedelegationResponseAmino, HistoricalInfo, HistoricalInfoAmino, Pool, PoolAmino, Params, ParamsAmino } from "./staking";
|
|
3
3
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
4
4
|
import { DeepPartial } from "../../../helpers";
|
|
5
|
-
/**
|
|
5
|
+
/**
|
|
6
|
+
* QueryValidatorsRequest is request type for Query/Validators RPC method.
|
|
7
|
+
* @name QueryValidatorsRequest
|
|
8
|
+
* @package cosmos.staking.v1beta1
|
|
9
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorsRequest
|
|
10
|
+
*/
|
|
6
11
|
export interface QueryValidatorsRequest {
|
|
7
|
-
/**
|
|
12
|
+
/**
|
|
13
|
+
* status enables to query for validators matching a given status.
|
|
14
|
+
*/
|
|
8
15
|
status: string;
|
|
9
|
-
/**
|
|
16
|
+
/**
|
|
17
|
+
* pagination defines an optional pagination for the request.
|
|
18
|
+
*/
|
|
10
19
|
pagination?: PageRequest;
|
|
11
20
|
}
|
|
12
21
|
export interface QueryValidatorsRequestProtoMsg {
|
|
13
22
|
typeUrl: "/cosmos.staking.v1beta1.QueryValidatorsRequest";
|
|
14
23
|
value: Uint8Array;
|
|
15
24
|
}
|
|
16
|
-
/**
|
|
25
|
+
/**
|
|
26
|
+
* QueryValidatorsRequest is request type for Query/Validators RPC method.
|
|
27
|
+
* @name QueryValidatorsRequestAmino
|
|
28
|
+
* @package cosmos.staking.v1beta1
|
|
29
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorsRequest
|
|
30
|
+
*/
|
|
17
31
|
export interface QueryValidatorsRequestAmino {
|
|
18
|
-
/**
|
|
32
|
+
/**
|
|
33
|
+
* status enables to query for validators matching a given status.
|
|
34
|
+
*/
|
|
19
35
|
status: string;
|
|
20
|
-
/**
|
|
36
|
+
/**
|
|
37
|
+
* pagination defines an optional pagination for the request.
|
|
38
|
+
*/
|
|
21
39
|
pagination?: PageRequestAmino;
|
|
22
40
|
}
|
|
23
41
|
export interface QueryValidatorsRequestAminoMsg {
|
|
24
42
|
type: "cosmos-sdk/QueryValidatorsRequest";
|
|
25
43
|
value: QueryValidatorsRequestAmino;
|
|
26
44
|
}
|
|
27
|
-
/**
|
|
45
|
+
/**
|
|
46
|
+
* QueryValidatorsResponse is response type for the Query/Validators RPC method
|
|
47
|
+
* @name QueryValidatorsResponse
|
|
48
|
+
* @package cosmos.staking.v1beta1
|
|
49
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorsResponse
|
|
50
|
+
*/
|
|
28
51
|
export interface QueryValidatorsResponse {
|
|
29
|
-
/**
|
|
52
|
+
/**
|
|
53
|
+
* validators contains all the queried validators.
|
|
54
|
+
*/
|
|
30
55
|
validators: Validator[];
|
|
31
|
-
/**
|
|
56
|
+
/**
|
|
57
|
+
* pagination defines the pagination in the response.
|
|
58
|
+
*/
|
|
32
59
|
pagination?: PageResponse;
|
|
33
60
|
}
|
|
34
61
|
export interface QueryValidatorsResponseProtoMsg {
|
|
35
62
|
typeUrl: "/cosmos.staking.v1beta1.QueryValidatorsResponse";
|
|
36
63
|
value: Uint8Array;
|
|
37
64
|
}
|
|
38
|
-
/**
|
|
65
|
+
/**
|
|
66
|
+
* QueryValidatorsResponse is response type for the Query/Validators RPC method
|
|
67
|
+
* @name QueryValidatorsResponseAmino
|
|
68
|
+
* @package cosmos.staking.v1beta1
|
|
69
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorsResponse
|
|
70
|
+
*/
|
|
39
71
|
export interface QueryValidatorsResponseAmino {
|
|
40
|
-
/**
|
|
72
|
+
/**
|
|
73
|
+
* validators contains all the queried validators.
|
|
74
|
+
*/
|
|
41
75
|
validators: ValidatorAmino[];
|
|
42
|
-
/**
|
|
76
|
+
/**
|
|
77
|
+
* pagination defines the pagination in the response.
|
|
78
|
+
*/
|
|
43
79
|
pagination?: PageResponseAmino;
|
|
44
80
|
}
|
|
45
81
|
export interface QueryValidatorsResponseAminoMsg {
|
|
46
82
|
type: "cosmos-sdk/QueryValidatorsResponse";
|
|
47
83
|
value: QueryValidatorsResponseAmino;
|
|
48
84
|
}
|
|
49
|
-
/**
|
|
85
|
+
/**
|
|
86
|
+
* QueryValidatorRequest is response type for the Query/Validator RPC method
|
|
87
|
+
* @name QueryValidatorRequest
|
|
88
|
+
* @package cosmos.staking.v1beta1
|
|
89
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorRequest
|
|
90
|
+
*/
|
|
50
91
|
export interface QueryValidatorRequest {
|
|
51
|
-
/**
|
|
92
|
+
/**
|
|
93
|
+
* validator_addr defines the validator address to query for.
|
|
94
|
+
*/
|
|
52
95
|
validatorAddr: string;
|
|
53
96
|
}
|
|
54
97
|
export interface QueryValidatorRequestProtoMsg {
|
|
55
98
|
typeUrl: "/cosmos.staking.v1beta1.QueryValidatorRequest";
|
|
56
99
|
value: Uint8Array;
|
|
57
100
|
}
|
|
58
|
-
/**
|
|
101
|
+
/**
|
|
102
|
+
* QueryValidatorRequest is response type for the Query/Validator RPC method
|
|
103
|
+
* @name QueryValidatorRequestAmino
|
|
104
|
+
* @package cosmos.staking.v1beta1
|
|
105
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorRequest
|
|
106
|
+
*/
|
|
59
107
|
export interface QueryValidatorRequestAmino {
|
|
60
|
-
/**
|
|
108
|
+
/**
|
|
109
|
+
* validator_addr defines the validator address to query for.
|
|
110
|
+
*/
|
|
61
111
|
validator_addr: string;
|
|
62
112
|
}
|
|
63
113
|
export interface QueryValidatorRequestAminoMsg {
|
|
64
114
|
type: "cosmos-sdk/QueryValidatorRequest";
|
|
65
115
|
value: QueryValidatorRequestAmino;
|
|
66
116
|
}
|
|
67
|
-
/**
|
|
117
|
+
/**
|
|
118
|
+
* QueryValidatorResponse is response type for the Query/Validator RPC method
|
|
119
|
+
* @name QueryValidatorResponse
|
|
120
|
+
* @package cosmos.staking.v1beta1
|
|
121
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorResponse
|
|
122
|
+
*/
|
|
68
123
|
export interface QueryValidatorResponse {
|
|
69
|
-
/**
|
|
124
|
+
/**
|
|
125
|
+
* validator defines the validator info.
|
|
126
|
+
*/
|
|
70
127
|
validator: Validator;
|
|
71
128
|
}
|
|
72
129
|
export interface QueryValidatorResponseProtoMsg {
|
|
73
130
|
typeUrl: "/cosmos.staking.v1beta1.QueryValidatorResponse";
|
|
74
131
|
value: Uint8Array;
|
|
75
132
|
}
|
|
76
|
-
/**
|
|
133
|
+
/**
|
|
134
|
+
* QueryValidatorResponse is response type for the Query/Validator RPC method
|
|
135
|
+
* @name QueryValidatorResponseAmino
|
|
136
|
+
* @package cosmos.staking.v1beta1
|
|
137
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorResponse
|
|
138
|
+
*/
|
|
77
139
|
export interface QueryValidatorResponseAmino {
|
|
78
|
-
/**
|
|
140
|
+
/**
|
|
141
|
+
* validator defines the validator info.
|
|
142
|
+
*/
|
|
79
143
|
validator: ValidatorAmino;
|
|
80
144
|
}
|
|
81
145
|
export interface QueryValidatorResponseAminoMsg {
|
|
@@ -85,11 +149,18 @@ export interface QueryValidatorResponseAminoMsg {
|
|
|
85
149
|
/**
|
|
86
150
|
* QueryValidatorDelegationsRequest is request type for the
|
|
87
151
|
* Query/ValidatorDelegations RPC method
|
|
152
|
+
* @name QueryValidatorDelegationsRequest
|
|
153
|
+
* @package cosmos.staking.v1beta1
|
|
154
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorDelegationsRequest
|
|
88
155
|
*/
|
|
89
156
|
export interface QueryValidatorDelegationsRequest {
|
|
90
|
-
/**
|
|
157
|
+
/**
|
|
158
|
+
* validator_addr defines the validator address to query for.
|
|
159
|
+
*/
|
|
91
160
|
validatorAddr: string;
|
|
92
|
-
/**
|
|
161
|
+
/**
|
|
162
|
+
* pagination defines an optional pagination for the request.
|
|
163
|
+
*/
|
|
93
164
|
pagination?: PageRequest;
|
|
94
165
|
}
|
|
95
166
|
export interface QueryValidatorDelegationsRequestProtoMsg {
|
|
@@ -99,11 +170,18 @@ export interface QueryValidatorDelegationsRequestProtoMsg {
|
|
|
99
170
|
/**
|
|
100
171
|
* QueryValidatorDelegationsRequest is request type for the
|
|
101
172
|
* Query/ValidatorDelegations RPC method
|
|
173
|
+
* @name QueryValidatorDelegationsRequestAmino
|
|
174
|
+
* @package cosmos.staking.v1beta1
|
|
175
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorDelegationsRequest
|
|
102
176
|
*/
|
|
103
177
|
export interface QueryValidatorDelegationsRequestAmino {
|
|
104
|
-
/**
|
|
178
|
+
/**
|
|
179
|
+
* validator_addr defines the validator address to query for.
|
|
180
|
+
*/
|
|
105
181
|
validator_addr: string;
|
|
106
|
-
/**
|
|
182
|
+
/**
|
|
183
|
+
* pagination defines an optional pagination for the request.
|
|
184
|
+
*/
|
|
107
185
|
pagination?: PageRequestAmino;
|
|
108
186
|
}
|
|
109
187
|
export interface QueryValidatorDelegationsRequestAminoMsg {
|
|
@@ -113,10 +191,15 @@ export interface QueryValidatorDelegationsRequestAminoMsg {
|
|
|
113
191
|
/**
|
|
114
192
|
* QueryValidatorDelegationsResponse is response type for the
|
|
115
193
|
* Query/ValidatorDelegations RPC method
|
|
194
|
+
* @name QueryValidatorDelegationsResponse
|
|
195
|
+
* @package cosmos.staking.v1beta1
|
|
196
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorDelegationsResponse
|
|
116
197
|
*/
|
|
117
198
|
export interface QueryValidatorDelegationsResponse {
|
|
118
199
|
delegationResponses: DelegationResponse[];
|
|
119
|
-
/**
|
|
200
|
+
/**
|
|
201
|
+
* pagination defines the pagination in the response.
|
|
202
|
+
*/
|
|
120
203
|
pagination?: PageResponse;
|
|
121
204
|
}
|
|
122
205
|
export interface QueryValidatorDelegationsResponseProtoMsg {
|
|
@@ -126,10 +209,15 @@ export interface QueryValidatorDelegationsResponseProtoMsg {
|
|
|
126
209
|
/**
|
|
127
210
|
* QueryValidatorDelegationsResponse is response type for the
|
|
128
211
|
* Query/ValidatorDelegations RPC method
|
|
212
|
+
* @name QueryValidatorDelegationsResponseAmino
|
|
213
|
+
* @package cosmos.staking.v1beta1
|
|
214
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorDelegationsResponse
|
|
129
215
|
*/
|
|
130
216
|
export interface QueryValidatorDelegationsResponseAmino {
|
|
131
217
|
delegation_responses: DelegationResponseAmino[];
|
|
132
|
-
/**
|
|
218
|
+
/**
|
|
219
|
+
* pagination defines the pagination in the response.
|
|
220
|
+
*/
|
|
133
221
|
pagination?: PageResponseAmino;
|
|
134
222
|
}
|
|
135
223
|
export interface QueryValidatorDelegationsResponseAminoMsg {
|
|
@@ -139,11 +227,18 @@ export interface QueryValidatorDelegationsResponseAminoMsg {
|
|
|
139
227
|
/**
|
|
140
228
|
* QueryValidatorUnbondingDelegationsRequest is required type for the
|
|
141
229
|
* Query/ValidatorUnbondingDelegations RPC method
|
|
230
|
+
* @name QueryValidatorUnbondingDelegationsRequest
|
|
231
|
+
* @package cosmos.staking.v1beta1
|
|
232
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsRequest
|
|
142
233
|
*/
|
|
143
234
|
export interface QueryValidatorUnbondingDelegationsRequest {
|
|
144
|
-
/**
|
|
235
|
+
/**
|
|
236
|
+
* validator_addr defines the validator address to query for.
|
|
237
|
+
*/
|
|
145
238
|
validatorAddr: string;
|
|
146
|
-
/**
|
|
239
|
+
/**
|
|
240
|
+
* pagination defines an optional pagination for the request.
|
|
241
|
+
*/
|
|
147
242
|
pagination?: PageRequest;
|
|
148
243
|
}
|
|
149
244
|
export interface QueryValidatorUnbondingDelegationsRequestProtoMsg {
|
|
@@ -153,11 +248,18 @@ export interface QueryValidatorUnbondingDelegationsRequestProtoMsg {
|
|
|
153
248
|
/**
|
|
154
249
|
* QueryValidatorUnbondingDelegationsRequest is required type for the
|
|
155
250
|
* Query/ValidatorUnbondingDelegations RPC method
|
|
251
|
+
* @name QueryValidatorUnbondingDelegationsRequestAmino
|
|
252
|
+
* @package cosmos.staking.v1beta1
|
|
253
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsRequest
|
|
156
254
|
*/
|
|
157
255
|
export interface QueryValidatorUnbondingDelegationsRequestAmino {
|
|
158
|
-
/**
|
|
256
|
+
/**
|
|
257
|
+
* validator_addr defines the validator address to query for.
|
|
258
|
+
*/
|
|
159
259
|
validator_addr: string;
|
|
160
|
-
/**
|
|
260
|
+
/**
|
|
261
|
+
* pagination defines an optional pagination for the request.
|
|
262
|
+
*/
|
|
161
263
|
pagination?: PageRequestAmino;
|
|
162
264
|
}
|
|
163
265
|
export interface QueryValidatorUnbondingDelegationsRequestAminoMsg {
|
|
@@ -167,10 +269,15 @@ export interface QueryValidatorUnbondingDelegationsRequestAminoMsg {
|
|
|
167
269
|
/**
|
|
168
270
|
* QueryValidatorUnbondingDelegationsResponse is response type for the
|
|
169
271
|
* Query/ValidatorUnbondingDelegations RPC method.
|
|
272
|
+
* @name QueryValidatorUnbondingDelegationsResponse
|
|
273
|
+
* @package cosmos.staking.v1beta1
|
|
274
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse
|
|
170
275
|
*/
|
|
171
276
|
export interface QueryValidatorUnbondingDelegationsResponse {
|
|
172
277
|
unbondingResponses: UnbondingDelegation[];
|
|
173
|
-
/**
|
|
278
|
+
/**
|
|
279
|
+
* pagination defines the pagination in the response.
|
|
280
|
+
*/
|
|
174
281
|
pagination?: PageResponse;
|
|
175
282
|
}
|
|
176
283
|
export interface QueryValidatorUnbondingDelegationsResponseProtoMsg {
|
|
@@ -180,50 +287,87 @@ export interface QueryValidatorUnbondingDelegationsResponseProtoMsg {
|
|
|
180
287
|
/**
|
|
181
288
|
* QueryValidatorUnbondingDelegationsResponse is response type for the
|
|
182
289
|
* Query/ValidatorUnbondingDelegations RPC method.
|
|
290
|
+
* @name QueryValidatorUnbondingDelegationsResponseAmino
|
|
291
|
+
* @package cosmos.staking.v1beta1
|
|
292
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse
|
|
183
293
|
*/
|
|
184
294
|
export interface QueryValidatorUnbondingDelegationsResponseAmino {
|
|
185
295
|
unbonding_responses: UnbondingDelegationAmino[];
|
|
186
|
-
/**
|
|
296
|
+
/**
|
|
297
|
+
* pagination defines the pagination in the response.
|
|
298
|
+
*/
|
|
187
299
|
pagination?: PageResponseAmino;
|
|
188
300
|
}
|
|
189
301
|
export interface QueryValidatorUnbondingDelegationsResponseAminoMsg {
|
|
190
302
|
type: "cosmos-sdk/QueryValidatorUnbondingDelegationsResponse";
|
|
191
303
|
value: QueryValidatorUnbondingDelegationsResponseAmino;
|
|
192
304
|
}
|
|
193
|
-
/**
|
|
305
|
+
/**
|
|
306
|
+
* QueryDelegationRequest is request type for the Query/Delegation RPC method.
|
|
307
|
+
* @name QueryDelegationRequest
|
|
308
|
+
* @package cosmos.staking.v1beta1
|
|
309
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegationRequest
|
|
310
|
+
*/
|
|
194
311
|
export interface QueryDelegationRequest {
|
|
195
|
-
/**
|
|
312
|
+
/**
|
|
313
|
+
* delegator_addr defines the delegator address to query for.
|
|
314
|
+
*/
|
|
196
315
|
delegatorAddr: string;
|
|
197
|
-
/**
|
|
316
|
+
/**
|
|
317
|
+
* validator_addr defines the validator address to query for.
|
|
318
|
+
*/
|
|
198
319
|
validatorAddr: string;
|
|
199
320
|
}
|
|
200
321
|
export interface QueryDelegationRequestProtoMsg {
|
|
201
322
|
typeUrl: "/cosmos.staking.v1beta1.QueryDelegationRequest";
|
|
202
323
|
value: Uint8Array;
|
|
203
324
|
}
|
|
204
|
-
/**
|
|
325
|
+
/**
|
|
326
|
+
* QueryDelegationRequest is request type for the Query/Delegation RPC method.
|
|
327
|
+
* @name QueryDelegationRequestAmino
|
|
328
|
+
* @package cosmos.staking.v1beta1
|
|
329
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegationRequest
|
|
330
|
+
*/
|
|
205
331
|
export interface QueryDelegationRequestAmino {
|
|
206
|
-
/**
|
|
332
|
+
/**
|
|
333
|
+
* delegator_addr defines the delegator address to query for.
|
|
334
|
+
*/
|
|
207
335
|
delegator_addr: string;
|
|
208
|
-
/**
|
|
336
|
+
/**
|
|
337
|
+
* validator_addr defines the validator address to query for.
|
|
338
|
+
*/
|
|
209
339
|
validator_addr: string;
|
|
210
340
|
}
|
|
211
341
|
export interface QueryDelegationRequestAminoMsg {
|
|
212
342
|
type: "cosmos-sdk/QueryDelegationRequest";
|
|
213
343
|
value: QueryDelegationRequestAmino;
|
|
214
344
|
}
|
|
215
|
-
/**
|
|
345
|
+
/**
|
|
346
|
+
* QueryDelegationResponse is response type for the Query/Delegation RPC method.
|
|
347
|
+
* @name QueryDelegationResponse
|
|
348
|
+
* @package cosmos.staking.v1beta1
|
|
349
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegationResponse
|
|
350
|
+
*/
|
|
216
351
|
export interface QueryDelegationResponse {
|
|
217
|
-
/**
|
|
352
|
+
/**
|
|
353
|
+
* delegation_responses defines the delegation info of a delegation.
|
|
354
|
+
*/
|
|
218
355
|
delegationResponse?: DelegationResponse;
|
|
219
356
|
}
|
|
220
357
|
export interface QueryDelegationResponseProtoMsg {
|
|
221
358
|
typeUrl: "/cosmos.staking.v1beta1.QueryDelegationResponse";
|
|
222
359
|
value: Uint8Array;
|
|
223
360
|
}
|
|
224
|
-
/**
|
|
361
|
+
/**
|
|
362
|
+
* QueryDelegationResponse is response type for the Query/Delegation RPC method.
|
|
363
|
+
* @name QueryDelegationResponseAmino
|
|
364
|
+
* @package cosmos.staking.v1beta1
|
|
365
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegationResponse
|
|
366
|
+
*/
|
|
225
367
|
export interface QueryDelegationResponseAmino {
|
|
226
|
-
/**
|
|
368
|
+
/**
|
|
369
|
+
* delegation_responses defines the delegation info of a delegation.
|
|
370
|
+
*/
|
|
227
371
|
delegation_response?: DelegationResponseAmino;
|
|
228
372
|
}
|
|
229
373
|
export interface QueryDelegationResponseAminoMsg {
|
|
@@ -233,11 +377,18 @@ export interface QueryDelegationResponseAminoMsg {
|
|
|
233
377
|
/**
|
|
234
378
|
* QueryUnbondingDelegationRequest is request type for the
|
|
235
379
|
* Query/UnbondingDelegation RPC method.
|
|
380
|
+
* @name QueryUnbondingDelegationRequest
|
|
381
|
+
* @package cosmos.staking.v1beta1
|
|
382
|
+
* @see proto type: cosmos.staking.v1beta1.QueryUnbondingDelegationRequest
|
|
236
383
|
*/
|
|
237
384
|
export interface QueryUnbondingDelegationRequest {
|
|
238
|
-
/**
|
|
385
|
+
/**
|
|
386
|
+
* delegator_addr defines the delegator address to query for.
|
|
387
|
+
*/
|
|
239
388
|
delegatorAddr: string;
|
|
240
|
-
/**
|
|
389
|
+
/**
|
|
390
|
+
* validator_addr defines the validator address to query for.
|
|
391
|
+
*/
|
|
241
392
|
validatorAddr: string;
|
|
242
393
|
}
|
|
243
394
|
export interface QueryUnbondingDelegationRequestProtoMsg {
|
|
@@ -247,11 +398,18 @@ export interface QueryUnbondingDelegationRequestProtoMsg {
|
|
|
247
398
|
/**
|
|
248
399
|
* QueryUnbondingDelegationRequest is request type for the
|
|
249
400
|
* Query/UnbondingDelegation RPC method.
|
|
401
|
+
* @name QueryUnbondingDelegationRequestAmino
|
|
402
|
+
* @package cosmos.staking.v1beta1
|
|
403
|
+
* @see proto type: cosmos.staking.v1beta1.QueryUnbondingDelegationRequest
|
|
250
404
|
*/
|
|
251
405
|
export interface QueryUnbondingDelegationRequestAmino {
|
|
252
|
-
/**
|
|
406
|
+
/**
|
|
407
|
+
* delegator_addr defines the delegator address to query for.
|
|
408
|
+
*/
|
|
253
409
|
delegator_addr: string;
|
|
254
|
-
/**
|
|
410
|
+
/**
|
|
411
|
+
* validator_addr defines the validator address to query for.
|
|
412
|
+
*/
|
|
255
413
|
validator_addr: string;
|
|
256
414
|
}
|
|
257
415
|
export interface QueryUnbondingDelegationRequestAminoMsg {
|
|
@@ -261,9 +419,14 @@ export interface QueryUnbondingDelegationRequestAminoMsg {
|
|
|
261
419
|
/**
|
|
262
420
|
* QueryDelegationResponse is response type for the Query/UnbondingDelegation
|
|
263
421
|
* RPC method.
|
|
422
|
+
* @name QueryUnbondingDelegationResponse
|
|
423
|
+
* @package cosmos.staking.v1beta1
|
|
424
|
+
* @see proto type: cosmos.staking.v1beta1.QueryUnbondingDelegationResponse
|
|
264
425
|
*/
|
|
265
426
|
export interface QueryUnbondingDelegationResponse {
|
|
266
|
-
/**
|
|
427
|
+
/**
|
|
428
|
+
* unbond defines the unbonding information of a delegation.
|
|
429
|
+
*/
|
|
267
430
|
unbond: UnbondingDelegation;
|
|
268
431
|
}
|
|
269
432
|
export interface QueryUnbondingDelegationResponseProtoMsg {
|
|
@@ -273,9 +436,14 @@ export interface QueryUnbondingDelegationResponseProtoMsg {
|
|
|
273
436
|
/**
|
|
274
437
|
* QueryDelegationResponse is response type for the Query/UnbondingDelegation
|
|
275
438
|
* RPC method.
|
|
439
|
+
* @name QueryUnbondingDelegationResponseAmino
|
|
440
|
+
* @package cosmos.staking.v1beta1
|
|
441
|
+
* @see proto type: cosmos.staking.v1beta1.QueryUnbondingDelegationResponse
|
|
276
442
|
*/
|
|
277
443
|
export interface QueryUnbondingDelegationResponseAmino {
|
|
278
|
-
/**
|
|
444
|
+
/**
|
|
445
|
+
* unbond defines the unbonding information of a delegation.
|
|
446
|
+
*/
|
|
279
447
|
unbond: UnbondingDelegationAmino;
|
|
280
448
|
}
|
|
281
449
|
export interface QueryUnbondingDelegationResponseAminoMsg {
|
|
@@ -285,11 +453,18 @@ export interface QueryUnbondingDelegationResponseAminoMsg {
|
|
|
285
453
|
/**
|
|
286
454
|
* QueryDelegatorDelegationsRequest is request type for the
|
|
287
455
|
* Query/DelegatorDelegations RPC method.
|
|
456
|
+
* @name QueryDelegatorDelegationsRequest
|
|
457
|
+
* @package cosmos.staking.v1beta1
|
|
458
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorDelegationsRequest
|
|
288
459
|
*/
|
|
289
460
|
export interface QueryDelegatorDelegationsRequest {
|
|
290
|
-
/**
|
|
461
|
+
/**
|
|
462
|
+
* delegator_addr defines the delegator address to query for.
|
|
463
|
+
*/
|
|
291
464
|
delegatorAddr: string;
|
|
292
|
-
/**
|
|
465
|
+
/**
|
|
466
|
+
* pagination defines an optional pagination for the request.
|
|
467
|
+
*/
|
|
293
468
|
pagination?: PageRequest;
|
|
294
469
|
}
|
|
295
470
|
export interface QueryDelegatorDelegationsRequestProtoMsg {
|
|
@@ -299,11 +474,18 @@ export interface QueryDelegatorDelegationsRequestProtoMsg {
|
|
|
299
474
|
/**
|
|
300
475
|
* QueryDelegatorDelegationsRequest is request type for the
|
|
301
476
|
* Query/DelegatorDelegations RPC method.
|
|
477
|
+
* @name QueryDelegatorDelegationsRequestAmino
|
|
478
|
+
* @package cosmos.staking.v1beta1
|
|
479
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorDelegationsRequest
|
|
302
480
|
*/
|
|
303
481
|
export interface QueryDelegatorDelegationsRequestAmino {
|
|
304
|
-
/**
|
|
482
|
+
/**
|
|
483
|
+
* delegator_addr defines the delegator address to query for.
|
|
484
|
+
*/
|
|
305
485
|
delegator_addr: string;
|
|
306
|
-
/**
|
|
486
|
+
/**
|
|
487
|
+
* pagination defines an optional pagination for the request.
|
|
488
|
+
*/
|
|
307
489
|
pagination?: PageRequestAmino;
|
|
308
490
|
}
|
|
309
491
|
export interface QueryDelegatorDelegationsRequestAminoMsg {
|
|
@@ -313,11 +495,18 @@ export interface QueryDelegatorDelegationsRequestAminoMsg {
|
|
|
313
495
|
/**
|
|
314
496
|
* QueryDelegatorDelegationsResponse is response type for the
|
|
315
497
|
* Query/DelegatorDelegations RPC method.
|
|
498
|
+
* @name QueryDelegatorDelegationsResponse
|
|
499
|
+
* @package cosmos.staking.v1beta1
|
|
500
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorDelegationsResponse
|
|
316
501
|
*/
|
|
317
502
|
export interface QueryDelegatorDelegationsResponse {
|
|
318
|
-
/**
|
|
503
|
+
/**
|
|
504
|
+
* delegation_responses defines all the delegations' info of a delegator.
|
|
505
|
+
*/
|
|
319
506
|
delegationResponses: DelegationResponse[];
|
|
320
|
-
/**
|
|
507
|
+
/**
|
|
508
|
+
* pagination defines the pagination in the response.
|
|
509
|
+
*/
|
|
321
510
|
pagination?: PageResponse;
|
|
322
511
|
}
|
|
323
512
|
export interface QueryDelegatorDelegationsResponseProtoMsg {
|
|
@@ -327,11 +516,18 @@ export interface QueryDelegatorDelegationsResponseProtoMsg {
|
|
|
327
516
|
/**
|
|
328
517
|
* QueryDelegatorDelegationsResponse is response type for the
|
|
329
518
|
* Query/DelegatorDelegations RPC method.
|
|
519
|
+
* @name QueryDelegatorDelegationsResponseAmino
|
|
520
|
+
* @package cosmos.staking.v1beta1
|
|
521
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorDelegationsResponse
|
|
330
522
|
*/
|
|
331
523
|
export interface QueryDelegatorDelegationsResponseAmino {
|
|
332
|
-
/**
|
|
524
|
+
/**
|
|
525
|
+
* delegation_responses defines all the delegations' info of a delegator.
|
|
526
|
+
*/
|
|
333
527
|
delegation_responses: DelegationResponseAmino[];
|
|
334
|
-
/**
|
|
528
|
+
/**
|
|
529
|
+
* pagination defines the pagination in the response.
|
|
530
|
+
*/
|
|
335
531
|
pagination?: PageResponseAmino;
|
|
336
532
|
}
|
|
337
533
|
export interface QueryDelegatorDelegationsResponseAminoMsg {
|
|
@@ -341,11 +537,18 @@ export interface QueryDelegatorDelegationsResponseAminoMsg {
|
|
|
341
537
|
/**
|
|
342
538
|
* QueryDelegatorUnbondingDelegationsRequest is request type for the
|
|
343
539
|
* Query/DelegatorUnbondingDelegations RPC method.
|
|
540
|
+
* @name QueryDelegatorUnbondingDelegationsRequest
|
|
541
|
+
* @package cosmos.staking.v1beta1
|
|
542
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsRequest
|
|
344
543
|
*/
|
|
345
544
|
export interface QueryDelegatorUnbondingDelegationsRequest {
|
|
346
|
-
/**
|
|
545
|
+
/**
|
|
546
|
+
* delegator_addr defines the delegator address to query for.
|
|
547
|
+
*/
|
|
347
548
|
delegatorAddr: string;
|
|
348
|
-
/**
|
|
549
|
+
/**
|
|
550
|
+
* pagination defines an optional pagination for the request.
|
|
551
|
+
*/
|
|
349
552
|
pagination?: PageRequest;
|
|
350
553
|
}
|
|
351
554
|
export interface QueryDelegatorUnbondingDelegationsRequestProtoMsg {
|
|
@@ -355,11 +558,18 @@ export interface QueryDelegatorUnbondingDelegationsRequestProtoMsg {
|
|
|
355
558
|
/**
|
|
356
559
|
* QueryDelegatorUnbondingDelegationsRequest is request type for the
|
|
357
560
|
* Query/DelegatorUnbondingDelegations RPC method.
|
|
561
|
+
* @name QueryDelegatorUnbondingDelegationsRequestAmino
|
|
562
|
+
* @package cosmos.staking.v1beta1
|
|
563
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsRequest
|
|
358
564
|
*/
|
|
359
565
|
export interface QueryDelegatorUnbondingDelegationsRequestAmino {
|
|
360
|
-
/**
|
|
566
|
+
/**
|
|
567
|
+
* delegator_addr defines the delegator address to query for.
|
|
568
|
+
*/
|
|
361
569
|
delegator_addr: string;
|
|
362
|
-
/**
|
|
570
|
+
/**
|
|
571
|
+
* pagination defines an optional pagination for the request.
|
|
572
|
+
*/
|
|
363
573
|
pagination?: PageRequestAmino;
|
|
364
574
|
}
|
|
365
575
|
export interface QueryDelegatorUnbondingDelegationsRequestAminoMsg {
|
|
@@ -369,10 +579,15 @@ export interface QueryDelegatorUnbondingDelegationsRequestAminoMsg {
|
|
|
369
579
|
/**
|
|
370
580
|
* QueryUnbondingDelegatorDelegationsResponse is response type for the
|
|
371
581
|
* Query/UnbondingDelegatorDelegations RPC method.
|
|
582
|
+
* @name QueryDelegatorUnbondingDelegationsResponse
|
|
583
|
+
* @package cosmos.staking.v1beta1
|
|
584
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsResponse
|
|
372
585
|
*/
|
|
373
586
|
export interface QueryDelegatorUnbondingDelegationsResponse {
|
|
374
587
|
unbondingResponses: UnbondingDelegation[];
|
|
375
|
-
/**
|
|
588
|
+
/**
|
|
589
|
+
* pagination defines the pagination in the response.
|
|
590
|
+
*/
|
|
376
591
|
pagination?: PageResponse;
|
|
377
592
|
}
|
|
378
593
|
export interface QueryDelegatorUnbondingDelegationsResponseProtoMsg {
|
|
@@ -382,10 +597,15 @@ export interface QueryDelegatorUnbondingDelegationsResponseProtoMsg {
|
|
|
382
597
|
/**
|
|
383
598
|
* QueryUnbondingDelegatorDelegationsResponse is response type for the
|
|
384
599
|
* Query/UnbondingDelegatorDelegations RPC method.
|
|
600
|
+
* @name QueryDelegatorUnbondingDelegationsResponseAmino
|
|
601
|
+
* @package cosmos.staking.v1beta1
|
|
602
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsResponse
|
|
385
603
|
*/
|
|
386
604
|
export interface QueryDelegatorUnbondingDelegationsResponseAmino {
|
|
387
605
|
unbonding_responses: UnbondingDelegationAmino[];
|
|
388
|
-
/**
|
|
606
|
+
/**
|
|
607
|
+
* pagination defines the pagination in the response.
|
|
608
|
+
*/
|
|
389
609
|
pagination?: PageResponseAmino;
|
|
390
610
|
}
|
|
391
611
|
export interface QueryDelegatorUnbondingDelegationsResponseAminoMsg {
|
|
@@ -395,15 +615,26 @@ export interface QueryDelegatorUnbondingDelegationsResponseAminoMsg {
|
|
|
395
615
|
/**
|
|
396
616
|
* QueryRedelegationsRequest is request type for the Query/Redelegations RPC
|
|
397
617
|
* method.
|
|
618
|
+
* @name QueryRedelegationsRequest
|
|
619
|
+
* @package cosmos.staking.v1beta1
|
|
620
|
+
* @see proto type: cosmos.staking.v1beta1.QueryRedelegationsRequest
|
|
398
621
|
*/
|
|
399
622
|
export interface QueryRedelegationsRequest {
|
|
400
|
-
/**
|
|
623
|
+
/**
|
|
624
|
+
* delegator_addr defines the delegator address to query for.
|
|
625
|
+
*/
|
|
401
626
|
delegatorAddr: string;
|
|
402
|
-
/**
|
|
627
|
+
/**
|
|
628
|
+
* src_validator_addr defines the validator address to redelegate from.
|
|
629
|
+
*/
|
|
403
630
|
srcValidatorAddr: string;
|
|
404
|
-
/**
|
|
631
|
+
/**
|
|
632
|
+
* dst_validator_addr defines the validator address to redelegate to.
|
|
633
|
+
*/
|
|
405
634
|
dstValidatorAddr: string;
|
|
406
|
-
/**
|
|
635
|
+
/**
|
|
636
|
+
* pagination defines an optional pagination for the request.
|
|
637
|
+
*/
|
|
407
638
|
pagination?: PageRequest;
|
|
408
639
|
}
|
|
409
640
|
export interface QueryRedelegationsRequestProtoMsg {
|
|
@@ -413,15 +644,26 @@ export interface QueryRedelegationsRequestProtoMsg {
|
|
|
413
644
|
/**
|
|
414
645
|
* QueryRedelegationsRequest is request type for the Query/Redelegations RPC
|
|
415
646
|
* method.
|
|
647
|
+
* @name QueryRedelegationsRequestAmino
|
|
648
|
+
* @package cosmos.staking.v1beta1
|
|
649
|
+
* @see proto type: cosmos.staking.v1beta1.QueryRedelegationsRequest
|
|
416
650
|
*/
|
|
417
651
|
export interface QueryRedelegationsRequestAmino {
|
|
418
|
-
/**
|
|
652
|
+
/**
|
|
653
|
+
* delegator_addr defines the delegator address to query for.
|
|
654
|
+
*/
|
|
419
655
|
delegator_addr: string;
|
|
420
|
-
/**
|
|
656
|
+
/**
|
|
657
|
+
* src_validator_addr defines the validator address to redelegate from.
|
|
658
|
+
*/
|
|
421
659
|
src_validator_addr: string;
|
|
422
|
-
/**
|
|
660
|
+
/**
|
|
661
|
+
* dst_validator_addr defines the validator address to redelegate to.
|
|
662
|
+
*/
|
|
423
663
|
dst_validator_addr: string;
|
|
424
|
-
/**
|
|
664
|
+
/**
|
|
665
|
+
* pagination defines an optional pagination for the request.
|
|
666
|
+
*/
|
|
425
667
|
pagination?: PageRequestAmino;
|
|
426
668
|
}
|
|
427
669
|
export interface QueryRedelegationsRequestAminoMsg {
|
|
@@ -431,10 +673,15 @@ export interface QueryRedelegationsRequestAminoMsg {
|
|
|
431
673
|
/**
|
|
432
674
|
* QueryRedelegationsResponse is response type for the Query/Redelegations RPC
|
|
433
675
|
* method.
|
|
676
|
+
* @name QueryRedelegationsResponse
|
|
677
|
+
* @package cosmos.staking.v1beta1
|
|
678
|
+
* @see proto type: cosmos.staking.v1beta1.QueryRedelegationsResponse
|
|
434
679
|
*/
|
|
435
680
|
export interface QueryRedelegationsResponse {
|
|
436
681
|
redelegationResponses: RedelegationResponse[];
|
|
437
|
-
/**
|
|
682
|
+
/**
|
|
683
|
+
* pagination defines the pagination in the response.
|
|
684
|
+
*/
|
|
438
685
|
pagination?: PageResponse;
|
|
439
686
|
}
|
|
440
687
|
export interface QueryRedelegationsResponseProtoMsg {
|
|
@@ -444,10 +691,15 @@ export interface QueryRedelegationsResponseProtoMsg {
|
|
|
444
691
|
/**
|
|
445
692
|
* QueryRedelegationsResponse is response type for the Query/Redelegations RPC
|
|
446
693
|
* method.
|
|
694
|
+
* @name QueryRedelegationsResponseAmino
|
|
695
|
+
* @package cosmos.staking.v1beta1
|
|
696
|
+
* @see proto type: cosmos.staking.v1beta1.QueryRedelegationsResponse
|
|
447
697
|
*/
|
|
448
698
|
export interface QueryRedelegationsResponseAmino {
|
|
449
699
|
redelegation_responses: RedelegationResponseAmino[];
|
|
450
|
-
/**
|
|
700
|
+
/**
|
|
701
|
+
* pagination defines the pagination in the response.
|
|
702
|
+
*/
|
|
451
703
|
pagination?: PageResponseAmino;
|
|
452
704
|
}
|
|
453
705
|
export interface QueryRedelegationsResponseAminoMsg {
|
|
@@ -457,11 +709,18 @@ export interface QueryRedelegationsResponseAminoMsg {
|
|
|
457
709
|
/**
|
|
458
710
|
* QueryDelegatorValidatorsRequest is request type for the
|
|
459
711
|
* Query/DelegatorValidators RPC method.
|
|
712
|
+
* @name QueryDelegatorValidatorsRequest
|
|
713
|
+
* @package cosmos.staking.v1beta1
|
|
714
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorsRequest
|
|
460
715
|
*/
|
|
461
716
|
export interface QueryDelegatorValidatorsRequest {
|
|
462
|
-
/**
|
|
717
|
+
/**
|
|
718
|
+
* delegator_addr defines the delegator address to query for.
|
|
719
|
+
*/
|
|
463
720
|
delegatorAddr: string;
|
|
464
|
-
/**
|
|
721
|
+
/**
|
|
722
|
+
* pagination defines an optional pagination for the request.
|
|
723
|
+
*/
|
|
465
724
|
pagination?: PageRequest;
|
|
466
725
|
}
|
|
467
726
|
export interface QueryDelegatorValidatorsRequestProtoMsg {
|
|
@@ -471,11 +730,18 @@ export interface QueryDelegatorValidatorsRequestProtoMsg {
|
|
|
471
730
|
/**
|
|
472
731
|
* QueryDelegatorValidatorsRequest is request type for the
|
|
473
732
|
* Query/DelegatorValidators RPC method.
|
|
733
|
+
* @name QueryDelegatorValidatorsRequestAmino
|
|
734
|
+
* @package cosmos.staking.v1beta1
|
|
735
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorsRequest
|
|
474
736
|
*/
|
|
475
737
|
export interface QueryDelegatorValidatorsRequestAmino {
|
|
476
|
-
/**
|
|
738
|
+
/**
|
|
739
|
+
* delegator_addr defines the delegator address to query for.
|
|
740
|
+
*/
|
|
477
741
|
delegator_addr: string;
|
|
478
|
-
/**
|
|
742
|
+
/**
|
|
743
|
+
* pagination defines an optional pagination for the request.
|
|
744
|
+
*/
|
|
479
745
|
pagination?: PageRequestAmino;
|
|
480
746
|
}
|
|
481
747
|
export interface QueryDelegatorValidatorsRequestAminoMsg {
|
|
@@ -485,11 +751,18 @@ export interface QueryDelegatorValidatorsRequestAminoMsg {
|
|
|
485
751
|
/**
|
|
486
752
|
* QueryDelegatorValidatorsResponse is response type for the
|
|
487
753
|
* Query/DelegatorValidators RPC method.
|
|
754
|
+
* @name QueryDelegatorValidatorsResponse
|
|
755
|
+
* @package cosmos.staking.v1beta1
|
|
756
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorsResponse
|
|
488
757
|
*/
|
|
489
758
|
export interface QueryDelegatorValidatorsResponse {
|
|
490
|
-
/**
|
|
759
|
+
/**
|
|
760
|
+
* validators defines the validators' info of a delegator.
|
|
761
|
+
*/
|
|
491
762
|
validators: Validator[];
|
|
492
|
-
/**
|
|
763
|
+
/**
|
|
764
|
+
* pagination defines the pagination in the response.
|
|
765
|
+
*/
|
|
493
766
|
pagination?: PageResponse;
|
|
494
767
|
}
|
|
495
768
|
export interface QueryDelegatorValidatorsResponseProtoMsg {
|
|
@@ -499,11 +772,18 @@ export interface QueryDelegatorValidatorsResponseProtoMsg {
|
|
|
499
772
|
/**
|
|
500
773
|
* QueryDelegatorValidatorsResponse is response type for the
|
|
501
774
|
* Query/DelegatorValidators RPC method.
|
|
775
|
+
* @name QueryDelegatorValidatorsResponseAmino
|
|
776
|
+
* @package cosmos.staking.v1beta1
|
|
777
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorsResponse
|
|
502
778
|
*/
|
|
503
779
|
export interface QueryDelegatorValidatorsResponseAmino {
|
|
504
|
-
/**
|
|
780
|
+
/**
|
|
781
|
+
* validators defines the validators' info of a delegator.
|
|
782
|
+
*/
|
|
505
783
|
validators: ValidatorAmino[];
|
|
506
|
-
/**
|
|
784
|
+
/**
|
|
785
|
+
* pagination defines the pagination in the response.
|
|
786
|
+
*/
|
|
507
787
|
pagination?: PageResponseAmino;
|
|
508
788
|
}
|
|
509
789
|
export interface QueryDelegatorValidatorsResponseAminoMsg {
|
|
@@ -513,11 +793,18 @@ export interface QueryDelegatorValidatorsResponseAminoMsg {
|
|
|
513
793
|
/**
|
|
514
794
|
* QueryDelegatorValidatorRequest is request type for the
|
|
515
795
|
* Query/DelegatorValidator RPC method.
|
|
796
|
+
* @name QueryDelegatorValidatorRequest
|
|
797
|
+
* @package cosmos.staking.v1beta1
|
|
798
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorRequest
|
|
516
799
|
*/
|
|
517
800
|
export interface QueryDelegatorValidatorRequest {
|
|
518
|
-
/**
|
|
801
|
+
/**
|
|
802
|
+
* delegator_addr defines the delegator address to query for.
|
|
803
|
+
*/
|
|
519
804
|
delegatorAddr: string;
|
|
520
|
-
/**
|
|
805
|
+
/**
|
|
806
|
+
* validator_addr defines the validator address to query for.
|
|
807
|
+
*/
|
|
521
808
|
validatorAddr: string;
|
|
522
809
|
}
|
|
523
810
|
export interface QueryDelegatorValidatorRequestProtoMsg {
|
|
@@ -527,11 +814,18 @@ export interface QueryDelegatorValidatorRequestProtoMsg {
|
|
|
527
814
|
/**
|
|
528
815
|
* QueryDelegatorValidatorRequest is request type for the
|
|
529
816
|
* Query/DelegatorValidator RPC method.
|
|
817
|
+
* @name QueryDelegatorValidatorRequestAmino
|
|
818
|
+
* @package cosmos.staking.v1beta1
|
|
819
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorRequest
|
|
530
820
|
*/
|
|
531
821
|
export interface QueryDelegatorValidatorRequestAmino {
|
|
532
|
-
/**
|
|
822
|
+
/**
|
|
823
|
+
* delegator_addr defines the delegator address to query for.
|
|
824
|
+
*/
|
|
533
825
|
delegator_addr: string;
|
|
534
|
-
/**
|
|
826
|
+
/**
|
|
827
|
+
* validator_addr defines the validator address to query for.
|
|
828
|
+
*/
|
|
535
829
|
validator_addr: string;
|
|
536
830
|
}
|
|
537
831
|
export interface QueryDelegatorValidatorRequestAminoMsg {
|
|
@@ -541,9 +835,14 @@ export interface QueryDelegatorValidatorRequestAminoMsg {
|
|
|
541
835
|
/**
|
|
542
836
|
* QueryDelegatorValidatorResponse response type for the
|
|
543
837
|
* Query/DelegatorValidator RPC method.
|
|
838
|
+
* @name QueryDelegatorValidatorResponse
|
|
839
|
+
* @package cosmos.staking.v1beta1
|
|
840
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorResponse
|
|
544
841
|
*/
|
|
545
842
|
export interface QueryDelegatorValidatorResponse {
|
|
546
|
-
/**
|
|
843
|
+
/**
|
|
844
|
+
* validator defines the validator info.
|
|
845
|
+
*/
|
|
547
846
|
validator: Validator;
|
|
548
847
|
}
|
|
549
848
|
export interface QueryDelegatorValidatorResponseProtoMsg {
|
|
@@ -553,9 +852,14 @@ export interface QueryDelegatorValidatorResponseProtoMsg {
|
|
|
553
852
|
/**
|
|
554
853
|
* QueryDelegatorValidatorResponse response type for the
|
|
555
854
|
* Query/DelegatorValidator RPC method.
|
|
855
|
+
* @name QueryDelegatorValidatorResponseAmino
|
|
856
|
+
* @package cosmos.staking.v1beta1
|
|
857
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorResponse
|
|
556
858
|
*/
|
|
557
859
|
export interface QueryDelegatorValidatorResponseAmino {
|
|
558
|
-
/**
|
|
860
|
+
/**
|
|
861
|
+
* validator defines the validator info.
|
|
862
|
+
*/
|
|
559
863
|
validator: ValidatorAmino;
|
|
560
864
|
}
|
|
561
865
|
export interface QueryDelegatorValidatorResponseAminoMsg {
|
|
@@ -565,9 +869,14 @@ export interface QueryDelegatorValidatorResponseAminoMsg {
|
|
|
565
869
|
/**
|
|
566
870
|
* QueryHistoricalInfoRequest is request type for the Query/HistoricalInfo RPC
|
|
567
871
|
* method.
|
|
872
|
+
* @name QueryHistoricalInfoRequest
|
|
873
|
+
* @package cosmos.staking.v1beta1
|
|
874
|
+
* @see proto type: cosmos.staking.v1beta1.QueryHistoricalInfoRequest
|
|
568
875
|
*/
|
|
569
876
|
export interface QueryHistoricalInfoRequest {
|
|
570
|
-
/**
|
|
877
|
+
/**
|
|
878
|
+
* height defines at which height to query the historical info.
|
|
879
|
+
*/
|
|
571
880
|
height: bigint;
|
|
572
881
|
}
|
|
573
882
|
export interface QueryHistoricalInfoRequestProtoMsg {
|
|
@@ -577,9 +886,14 @@ export interface QueryHistoricalInfoRequestProtoMsg {
|
|
|
577
886
|
/**
|
|
578
887
|
* QueryHistoricalInfoRequest is request type for the Query/HistoricalInfo RPC
|
|
579
888
|
* method.
|
|
889
|
+
* @name QueryHistoricalInfoRequestAmino
|
|
890
|
+
* @package cosmos.staking.v1beta1
|
|
891
|
+
* @see proto type: cosmos.staking.v1beta1.QueryHistoricalInfoRequest
|
|
580
892
|
*/
|
|
581
893
|
export interface QueryHistoricalInfoRequestAmino {
|
|
582
|
-
/**
|
|
894
|
+
/**
|
|
895
|
+
* height defines at which height to query the historical info.
|
|
896
|
+
*/
|
|
583
897
|
height: string;
|
|
584
898
|
}
|
|
585
899
|
export interface QueryHistoricalInfoRequestAminoMsg {
|
|
@@ -589,9 +903,14 @@ export interface QueryHistoricalInfoRequestAminoMsg {
|
|
|
589
903
|
/**
|
|
590
904
|
* QueryHistoricalInfoResponse is response type for the Query/HistoricalInfo RPC
|
|
591
905
|
* method.
|
|
906
|
+
* @name QueryHistoricalInfoResponse
|
|
907
|
+
* @package cosmos.staking.v1beta1
|
|
908
|
+
* @see proto type: cosmos.staking.v1beta1.QueryHistoricalInfoResponse
|
|
592
909
|
*/
|
|
593
910
|
export interface QueryHistoricalInfoResponse {
|
|
594
|
-
/**
|
|
911
|
+
/**
|
|
912
|
+
* hist defines the historical info at the given height.
|
|
913
|
+
*/
|
|
595
914
|
hist?: HistoricalInfo;
|
|
596
915
|
}
|
|
597
916
|
export interface QueryHistoricalInfoResponseProtoMsg {
|
|
@@ -601,79 +920,138 @@ export interface QueryHistoricalInfoResponseProtoMsg {
|
|
|
601
920
|
/**
|
|
602
921
|
* QueryHistoricalInfoResponse is response type for the Query/HistoricalInfo RPC
|
|
603
922
|
* method.
|
|
923
|
+
* @name QueryHistoricalInfoResponseAmino
|
|
924
|
+
* @package cosmos.staking.v1beta1
|
|
925
|
+
* @see proto type: cosmos.staking.v1beta1.QueryHistoricalInfoResponse
|
|
604
926
|
*/
|
|
605
927
|
export interface QueryHistoricalInfoResponseAmino {
|
|
606
|
-
/**
|
|
928
|
+
/**
|
|
929
|
+
* hist defines the historical info at the given height.
|
|
930
|
+
*/
|
|
607
931
|
hist?: HistoricalInfoAmino;
|
|
608
932
|
}
|
|
609
933
|
export interface QueryHistoricalInfoResponseAminoMsg {
|
|
610
934
|
type: "cosmos-sdk/QueryHistoricalInfoResponse";
|
|
611
935
|
value: QueryHistoricalInfoResponseAmino;
|
|
612
936
|
}
|
|
613
|
-
/**
|
|
937
|
+
/**
|
|
938
|
+
* QueryPoolRequest is request type for the Query/Pool RPC method.
|
|
939
|
+
* @name QueryPoolRequest
|
|
940
|
+
* @package cosmos.staking.v1beta1
|
|
941
|
+
* @see proto type: cosmos.staking.v1beta1.QueryPoolRequest
|
|
942
|
+
*/
|
|
614
943
|
export interface QueryPoolRequest {
|
|
615
944
|
}
|
|
616
945
|
export interface QueryPoolRequestProtoMsg {
|
|
617
946
|
typeUrl: "/cosmos.staking.v1beta1.QueryPoolRequest";
|
|
618
947
|
value: Uint8Array;
|
|
619
948
|
}
|
|
620
|
-
/**
|
|
949
|
+
/**
|
|
950
|
+
* QueryPoolRequest is request type for the Query/Pool RPC method.
|
|
951
|
+
* @name QueryPoolRequestAmino
|
|
952
|
+
* @package cosmos.staking.v1beta1
|
|
953
|
+
* @see proto type: cosmos.staking.v1beta1.QueryPoolRequest
|
|
954
|
+
*/
|
|
621
955
|
export interface QueryPoolRequestAmino {
|
|
622
956
|
}
|
|
623
957
|
export interface QueryPoolRequestAminoMsg {
|
|
624
958
|
type: "cosmos-sdk/QueryPoolRequest";
|
|
625
959
|
value: QueryPoolRequestAmino;
|
|
626
960
|
}
|
|
627
|
-
/**
|
|
961
|
+
/**
|
|
962
|
+
* QueryPoolResponse is response type for the Query/Pool RPC method.
|
|
963
|
+
* @name QueryPoolResponse
|
|
964
|
+
* @package cosmos.staking.v1beta1
|
|
965
|
+
* @see proto type: cosmos.staking.v1beta1.QueryPoolResponse
|
|
966
|
+
*/
|
|
628
967
|
export interface QueryPoolResponse {
|
|
629
|
-
/**
|
|
968
|
+
/**
|
|
969
|
+
* pool defines the pool info.
|
|
970
|
+
*/
|
|
630
971
|
pool: Pool;
|
|
631
972
|
}
|
|
632
973
|
export interface QueryPoolResponseProtoMsg {
|
|
633
974
|
typeUrl: "/cosmos.staking.v1beta1.QueryPoolResponse";
|
|
634
975
|
value: Uint8Array;
|
|
635
976
|
}
|
|
636
|
-
/**
|
|
977
|
+
/**
|
|
978
|
+
* QueryPoolResponse is response type for the Query/Pool RPC method.
|
|
979
|
+
* @name QueryPoolResponseAmino
|
|
980
|
+
* @package cosmos.staking.v1beta1
|
|
981
|
+
* @see proto type: cosmos.staking.v1beta1.QueryPoolResponse
|
|
982
|
+
*/
|
|
637
983
|
export interface QueryPoolResponseAmino {
|
|
638
|
-
/**
|
|
984
|
+
/**
|
|
985
|
+
* pool defines the pool info.
|
|
986
|
+
*/
|
|
639
987
|
pool: PoolAmino;
|
|
640
988
|
}
|
|
641
989
|
export interface QueryPoolResponseAminoMsg {
|
|
642
990
|
type: "cosmos-sdk/QueryPoolResponse";
|
|
643
991
|
value: QueryPoolResponseAmino;
|
|
644
992
|
}
|
|
645
|
-
/**
|
|
993
|
+
/**
|
|
994
|
+
* QueryParamsRequest is request type for the Query/Params RPC method.
|
|
995
|
+
* @name QueryParamsRequest
|
|
996
|
+
* @package cosmos.staking.v1beta1
|
|
997
|
+
* @see proto type: cosmos.staking.v1beta1.QueryParamsRequest
|
|
998
|
+
*/
|
|
646
999
|
export interface QueryParamsRequest {
|
|
647
1000
|
}
|
|
648
1001
|
export interface QueryParamsRequestProtoMsg {
|
|
649
1002
|
typeUrl: "/cosmos.staking.v1beta1.QueryParamsRequest";
|
|
650
1003
|
value: Uint8Array;
|
|
651
1004
|
}
|
|
652
|
-
/**
|
|
1005
|
+
/**
|
|
1006
|
+
* QueryParamsRequest is request type for the Query/Params RPC method.
|
|
1007
|
+
* @name QueryParamsRequestAmino
|
|
1008
|
+
* @package cosmos.staking.v1beta1
|
|
1009
|
+
* @see proto type: cosmos.staking.v1beta1.QueryParamsRequest
|
|
1010
|
+
*/
|
|
653
1011
|
export interface QueryParamsRequestAmino {
|
|
654
1012
|
}
|
|
655
1013
|
export interface QueryParamsRequestAminoMsg {
|
|
656
1014
|
type: "cosmos-sdk/QueryParamsRequest";
|
|
657
1015
|
value: QueryParamsRequestAmino;
|
|
658
1016
|
}
|
|
659
|
-
/**
|
|
1017
|
+
/**
|
|
1018
|
+
* QueryParamsResponse is response type for the Query/Params RPC method.
|
|
1019
|
+
* @name QueryParamsResponse
|
|
1020
|
+
* @package cosmos.staking.v1beta1
|
|
1021
|
+
* @see proto type: cosmos.staking.v1beta1.QueryParamsResponse
|
|
1022
|
+
*/
|
|
660
1023
|
export interface QueryParamsResponse {
|
|
661
|
-
/**
|
|
1024
|
+
/**
|
|
1025
|
+
* params holds all the parameters of this module.
|
|
1026
|
+
*/
|
|
662
1027
|
params: Params;
|
|
663
1028
|
}
|
|
664
1029
|
export interface QueryParamsResponseProtoMsg {
|
|
665
1030
|
typeUrl: "/cosmos.staking.v1beta1.QueryParamsResponse";
|
|
666
1031
|
value: Uint8Array;
|
|
667
1032
|
}
|
|
668
|
-
/**
|
|
1033
|
+
/**
|
|
1034
|
+
* QueryParamsResponse is response type for the Query/Params RPC method.
|
|
1035
|
+
* @name QueryParamsResponseAmino
|
|
1036
|
+
* @package cosmos.staking.v1beta1
|
|
1037
|
+
* @see proto type: cosmos.staking.v1beta1.QueryParamsResponse
|
|
1038
|
+
*/
|
|
669
1039
|
export interface QueryParamsResponseAmino {
|
|
670
|
-
/**
|
|
1040
|
+
/**
|
|
1041
|
+
* params holds all the parameters of this module.
|
|
1042
|
+
*/
|
|
671
1043
|
params: ParamsAmino;
|
|
672
1044
|
}
|
|
673
1045
|
export interface QueryParamsResponseAminoMsg {
|
|
674
1046
|
type: "cosmos-sdk/QueryParamsResponse";
|
|
675
1047
|
value: QueryParamsResponseAmino;
|
|
676
1048
|
}
|
|
1049
|
+
/**
|
|
1050
|
+
* QueryValidatorsRequest is request type for Query/Validators RPC method.
|
|
1051
|
+
* @name QueryValidatorsRequest
|
|
1052
|
+
* @package cosmos.staking.v1beta1
|
|
1053
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorsRequest
|
|
1054
|
+
*/
|
|
677
1055
|
export declare const QueryValidatorsRequest: {
|
|
678
1056
|
typeUrl: string;
|
|
679
1057
|
aminoType: string;
|
|
@@ -691,6 +1069,12 @@ export declare const QueryValidatorsRequest: {
|
|
|
691
1069
|
toProtoMsg(message: QueryValidatorsRequest): QueryValidatorsRequestProtoMsg;
|
|
692
1070
|
registerTypeUrl(): void;
|
|
693
1071
|
};
|
|
1072
|
+
/**
|
|
1073
|
+
* QueryValidatorsResponse is response type for the Query/Validators RPC method
|
|
1074
|
+
* @name QueryValidatorsResponse
|
|
1075
|
+
* @package cosmos.staking.v1beta1
|
|
1076
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorsResponse
|
|
1077
|
+
*/
|
|
694
1078
|
export declare const QueryValidatorsResponse: {
|
|
695
1079
|
typeUrl: string;
|
|
696
1080
|
aminoType: string;
|
|
@@ -708,6 +1092,12 @@ export declare const QueryValidatorsResponse: {
|
|
|
708
1092
|
toProtoMsg(message: QueryValidatorsResponse): QueryValidatorsResponseProtoMsg;
|
|
709
1093
|
registerTypeUrl(): void;
|
|
710
1094
|
};
|
|
1095
|
+
/**
|
|
1096
|
+
* QueryValidatorRequest is response type for the Query/Validator RPC method
|
|
1097
|
+
* @name QueryValidatorRequest
|
|
1098
|
+
* @package cosmos.staking.v1beta1
|
|
1099
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorRequest
|
|
1100
|
+
*/
|
|
711
1101
|
export declare const QueryValidatorRequest: {
|
|
712
1102
|
typeUrl: string;
|
|
713
1103
|
aminoType: string;
|
|
@@ -725,6 +1115,12 @@ export declare const QueryValidatorRequest: {
|
|
|
725
1115
|
toProtoMsg(message: QueryValidatorRequest): QueryValidatorRequestProtoMsg;
|
|
726
1116
|
registerTypeUrl(): void;
|
|
727
1117
|
};
|
|
1118
|
+
/**
|
|
1119
|
+
* QueryValidatorResponse is response type for the Query/Validator RPC method
|
|
1120
|
+
* @name QueryValidatorResponse
|
|
1121
|
+
* @package cosmos.staking.v1beta1
|
|
1122
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorResponse
|
|
1123
|
+
*/
|
|
728
1124
|
export declare const QueryValidatorResponse: {
|
|
729
1125
|
typeUrl: string;
|
|
730
1126
|
aminoType: string;
|
|
@@ -742,6 +1138,13 @@ export declare const QueryValidatorResponse: {
|
|
|
742
1138
|
toProtoMsg(message: QueryValidatorResponse): QueryValidatorResponseProtoMsg;
|
|
743
1139
|
registerTypeUrl(): void;
|
|
744
1140
|
};
|
|
1141
|
+
/**
|
|
1142
|
+
* QueryValidatorDelegationsRequest is request type for the
|
|
1143
|
+
* Query/ValidatorDelegations RPC method
|
|
1144
|
+
* @name QueryValidatorDelegationsRequest
|
|
1145
|
+
* @package cosmos.staking.v1beta1
|
|
1146
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorDelegationsRequest
|
|
1147
|
+
*/
|
|
745
1148
|
export declare const QueryValidatorDelegationsRequest: {
|
|
746
1149
|
typeUrl: string;
|
|
747
1150
|
aminoType: string;
|
|
@@ -759,6 +1162,13 @@ export declare const QueryValidatorDelegationsRequest: {
|
|
|
759
1162
|
toProtoMsg(message: QueryValidatorDelegationsRequest): QueryValidatorDelegationsRequestProtoMsg;
|
|
760
1163
|
registerTypeUrl(): void;
|
|
761
1164
|
};
|
|
1165
|
+
/**
|
|
1166
|
+
* QueryValidatorDelegationsResponse is response type for the
|
|
1167
|
+
* Query/ValidatorDelegations RPC method
|
|
1168
|
+
* @name QueryValidatorDelegationsResponse
|
|
1169
|
+
* @package cosmos.staking.v1beta1
|
|
1170
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorDelegationsResponse
|
|
1171
|
+
*/
|
|
762
1172
|
export declare const QueryValidatorDelegationsResponse: {
|
|
763
1173
|
typeUrl: string;
|
|
764
1174
|
aminoType: string;
|
|
@@ -776,6 +1186,13 @@ export declare const QueryValidatorDelegationsResponse: {
|
|
|
776
1186
|
toProtoMsg(message: QueryValidatorDelegationsResponse): QueryValidatorDelegationsResponseProtoMsg;
|
|
777
1187
|
registerTypeUrl(): void;
|
|
778
1188
|
};
|
|
1189
|
+
/**
|
|
1190
|
+
* QueryValidatorUnbondingDelegationsRequest is required type for the
|
|
1191
|
+
* Query/ValidatorUnbondingDelegations RPC method
|
|
1192
|
+
* @name QueryValidatorUnbondingDelegationsRequest
|
|
1193
|
+
* @package cosmos.staking.v1beta1
|
|
1194
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsRequest
|
|
1195
|
+
*/
|
|
779
1196
|
export declare const QueryValidatorUnbondingDelegationsRequest: {
|
|
780
1197
|
typeUrl: string;
|
|
781
1198
|
aminoType: string;
|
|
@@ -793,6 +1210,13 @@ export declare const QueryValidatorUnbondingDelegationsRequest: {
|
|
|
793
1210
|
toProtoMsg(message: QueryValidatorUnbondingDelegationsRequest): QueryValidatorUnbondingDelegationsRequestProtoMsg;
|
|
794
1211
|
registerTypeUrl(): void;
|
|
795
1212
|
};
|
|
1213
|
+
/**
|
|
1214
|
+
* QueryValidatorUnbondingDelegationsResponse is response type for the
|
|
1215
|
+
* Query/ValidatorUnbondingDelegations RPC method.
|
|
1216
|
+
* @name QueryValidatorUnbondingDelegationsResponse
|
|
1217
|
+
* @package cosmos.staking.v1beta1
|
|
1218
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse
|
|
1219
|
+
*/
|
|
796
1220
|
export declare const QueryValidatorUnbondingDelegationsResponse: {
|
|
797
1221
|
typeUrl: string;
|
|
798
1222
|
aminoType: string;
|
|
@@ -810,6 +1234,12 @@ export declare const QueryValidatorUnbondingDelegationsResponse: {
|
|
|
810
1234
|
toProtoMsg(message: QueryValidatorUnbondingDelegationsResponse): QueryValidatorUnbondingDelegationsResponseProtoMsg;
|
|
811
1235
|
registerTypeUrl(): void;
|
|
812
1236
|
};
|
|
1237
|
+
/**
|
|
1238
|
+
* QueryDelegationRequest is request type for the Query/Delegation RPC method.
|
|
1239
|
+
* @name QueryDelegationRequest
|
|
1240
|
+
* @package cosmos.staking.v1beta1
|
|
1241
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegationRequest
|
|
1242
|
+
*/
|
|
813
1243
|
export declare const QueryDelegationRequest: {
|
|
814
1244
|
typeUrl: string;
|
|
815
1245
|
aminoType: string;
|
|
@@ -827,6 +1257,12 @@ export declare const QueryDelegationRequest: {
|
|
|
827
1257
|
toProtoMsg(message: QueryDelegationRequest): QueryDelegationRequestProtoMsg;
|
|
828
1258
|
registerTypeUrl(): void;
|
|
829
1259
|
};
|
|
1260
|
+
/**
|
|
1261
|
+
* QueryDelegationResponse is response type for the Query/Delegation RPC method.
|
|
1262
|
+
* @name QueryDelegationResponse
|
|
1263
|
+
* @package cosmos.staking.v1beta1
|
|
1264
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegationResponse
|
|
1265
|
+
*/
|
|
830
1266
|
export declare const QueryDelegationResponse: {
|
|
831
1267
|
typeUrl: string;
|
|
832
1268
|
aminoType: string;
|
|
@@ -844,6 +1280,13 @@ export declare const QueryDelegationResponse: {
|
|
|
844
1280
|
toProtoMsg(message: QueryDelegationResponse): QueryDelegationResponseProtoMsg;
|
|
845
1281
|
registerTypeUrl(): void;
|
|
846
1282
|
};
|
|
1283
|
+
/**
|
|
1284
|
+
* QueryUnbondingDelegationRequest is request type for the
|
|
1285
|
+
* Query/UnbondingDelegation RPC method.
|
|
1286
|
+
* @name QueryUnbondingDelegationRequest
|
|
1287
|
+
* @package cosmos.staking.v1beta1
|
|
1288
|
+
* @see proto type: cosmos.staking.v1beta1.QueryUnbondingDelegationRequest
|
|
1289
|
+
*/
|
|
847
1290
|
export declare const QueryUnbondingDelegationRequest: {
|
|
848
1291
|
typeUrl: string;
|
|
849
1292
|
aminoType: string;
|
|
@@ -861,6 +1304,13 @@ export declare const QueryUnbondingDelegationRequest: {
|
|
|
861
1304
|
toProtoMsg(message: QueryUnbondingDelegationRequest): QueryUnbondingDelegationRequestProtoMsg;
|
|
862
1305
|
registerTypeUrl(): void;
|
|
863
1306
|
};
|
|
1307
|
+
/**
|
|
1308
|
+
* QueryDelegationResponse is response type for the Query/UnbondingDelegation
|
|
1309
|
+
* RPC method.
|
|
1310
|
+
* @name QueryUnbondingDelegationResponse
|
|
1311
|
+
* @package cosmos.staking.v1beta1
|
|
1312
|
+
* @see proto type: cosmos.staking.v1beta1.QueryUnbondingDelegationResponse
|
|
1313
|
+
*/
|
|
864
1314
|
export declare const QueryUnbondingDelegationResponse: {
|
|
865
1315
|
typeUrl: string;
|
|
866
1316
|
aminoType: string;
|
|
@@ -878,6 +1328,13 @@ export declare const QueryUnbondingDelegationResponse: {
|
|
|
878
1328
|
toProtoMsg(message: QueryUnbondingDelegationResponse): QueryUnbondingDelegationResponseProtoMsg;
|
|
879
1329
|
registerTypeUrl(): void;
|
|
880
1330
|
};
|
|
1331
|
+
/**
|
|
1332
|
+
* QueryDelegatorDelegationsRequest is request type for the
|
|
1333
|
+
* Query/DelegatorDelegations RPC method.
|
|
1334
|
+
* @name QueryDelegatorDelegationsRequest
|
|
1335
|
+
* @package cosmos.staking.v1beta1
|
|
1336
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorDelegationsRequest
|
|
1337
|
+
*/
|
|
881
1338
|
export declare const QueryDelegatorDelegationsRequest: {
|
|
882
1339
|
typeUrl: string;
|
|
883
1340
|
aminoType: string;
|
|
@@ -895,6 +1352,13 @@ export declare const QueryDelegatorDelegationsRequest: {
|
|
|
895
1352
|
toProtoMsg(message: QueryDelegatorDelegationsRequest): QueryDelegatorDelegationsRequestProtoMsg;
|
|
896
1353
|
registerTypeUrl(): void;
|
|
897
1354
|
};
|
|
1355
|
+
/**
|
|
1356
|
+
* QueryDelegatorDelegationsResponse is response type for the
|
|
1357
|
+
* Query/DelegatorDelegations RPC method.
|
|
1358
|
+
* @name QueryDelegatorDelegationsResponse
|
|
1359
|
+
* @package cosmos.staking.v1beta1
|
|
1360
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorDelegationsResponse
|
|
1361
|
+
*/
|
|
898
1362
|
export declare const QueryDelegatorDelegationsResponse: {
|
|
899
1363
|
typeUrl: string;
|
|
900
1364
|
aminoType: string;
|
|
@@ -912,6 +1376,13 @@ export declare const QueryDelegatorDelegationsResponse: {
|
|
|
912
1376
|
toProtoMsg(message: QueryDelegatorDelegationsResponse): QueryDelegatorDelegationsResponseProtoMsg;
|
|
913
1377
|
registerTypeUrl(): void;
|
|
914
1378
|
};
|
|
1379
|
+
/**
|
|
1380
|
+
* QueryDelegatorUnbondingDelegationsRequest is request type for the
|
|
1381
|
+
* Query/DelegatorUnbondingDelegations RPC method.
|
|
1382
|
+
* @name QueryDelegatorUnbondingDelegationsRequest
|
|
1383
|
+
* @package cosmos.staking.v1beta1
|
|
1384
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsRequest
|
|
1385
|
+
*/
|
|
915
1386
|
export declare const QueryDelegatorUnbondingDelegationsRequest: {
|
|
916
1387
|
typeUrl: string;
|
|
917
1388
|
aminoType: string;
|
|
@@ -929,6 +1400,13 @@ export declare const QueryDelegatorUnbondingDelegationsRequest: {
|
|
|
929
1400
|
toProtoMsg(message: QueryDelegatorUnbondingDelegationsRequest): QueryDelegatorUnbondingDelegationsRequestProtoMsg;
|
|
930
1401
|
registerTypeUrl(): void;
|
|
931
1402
|
};
|
|
1403
|
+
/**
|
|
1404
|
+
* QueryUnbondingDelegatorDelegationsResponse is response type for the
|
|
1405
|
+
* Query/UnbondingDelegatorDelegations RPC method.
|
|
1406
|
+
* @name QueryDelegatorUnbondingDelegationsResponse
|
|
1407
|
+
* @package cosmos.staking.v1beta1
|
|
1408
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsResponse
|
|
1409
|
+
*/
|
|
932
1410
|
export declare const QueryDelegatorUnbondingDelegationsResponse: {
|
|
933
1411
|
typeUrl: string;
|
|
934
1412
|
aminoType: string;
|
|
@@ -946,6 +1424,13 @@ export declare const QueryDelegatorUnbondingDelegationsResponse: {
|
|
|
946
1424
|
toProtoMsg(message: QueryDelegatorUnbondingDelegationsResponse): QueryDelegatorUnbondingDelegationsResponseProtoMsg;
|
|
947
1425
|
registerTypeUrl(): void;
|
|
948
1426
|
};
|
|
1427
|
+
/**
|
|
1428
|
+
* QueryRedelegationsRequest is request type for the Query/Redelegations RPC
|
|
1429
|
+
* method.
|
|
1430
|
+
* @name QueryRedelegationsRequest
|
|
1431
|
+
* @package cosmos.staking.v1beta1
|
|
1432
|
+
* @see proto type: cosmos.staking.v1beta1.QueryRedelegationsRequest
|
|
1433
|
+
*/
|
|
949
1434
|
export declare const QueryRedelegationsRequest: {
|
|
950
1435
|
typeUrl: string;
|
|
951
1436
|
aminoType: string;
|
|
@@ -963,6 +1448,13 @@ export declare const QueryRedelegationsRequest: {
|
|
|
963
1448
|
toProtoMsg(message: QueryRedelegationsRequest): QueryRedelegationsRequestProtoMsg;
|
|
964
1449
|
registerTypeUrl(): void;
|
|
965
1450
|
};
|
|
1451
|
+
/**
|
|
1452
|
+
* QueryRedelegationsResponse is response type for the Query/Redelegations RPC
|
|
1453
|
+
* method.
|
|
1454
|
+
* @name QueryRedelegationsResponse
|
|
1455
|
+
* @package cosmos.staking.v1beta1
|
|
1456
|
+
* @see proto type: cosmos.staking.v1beta1.QueryRedelegationsResponse
|
|
1457
|
+
*/
|
|
966
1458
|
export declare const QueryRedelegationsResponse: {
|
|
967
1459
|
typeUrl: string;
|
|
968
1460
|
aminoType: string;
|
|
@@ -980,6 +1472,13 @@ export declare const QueryRedelegationsResponse: {
|
|
|
980
1472
|
toProtoMsg(message: QueryRedelegationsResponse): QueryRedelegationsResponseProtoMsg;
|
|
981
1473
|
registerTypeUrl(): void;
|
|
982
1474
|
};
|
|
1475
|
+
/**
|
|
1476
|
+
* QueryDelegatorValidatorsRequest is request type for the
|
|
1477
|
+
* Query/DelegatorValidators RPC method.
|
|
1478
|
+
* @name QueryDelegatorValidatorsRequest
|
|
1479
|
+
* @package cosmos.staking.v1beta1
|
|
1480
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorsRequest
|
|
1481
|
+
*/
|
|
983
1482
|
export declare const QueryDelegatorValidatorsRequest: {
|
|
984
1483
|
typeUrl: string;
|
|
985
1484
|
aminoType: string;
|
|
@@ -997,6 +1496,13 @@ export declare const QueryDelegatorValidatorsRequest: {
|
|
|
997
1496
|
toProtoMsg(message: QueryDelegatorValidatorsRequest): QueryDelegatorValidatorsRequestProtoMsg;
|
|
998
1497
|
registerTypeUrl(): void;
|
|
999
1498
|
};
|
|
1499
|
+
/**
|
|
1500
|
+
* QueryDelegatorValidatorsResponse is response type for the
|
|
1501
|
+
* Query/DelegatorValidators RPC method.
|
|
1502
|
+
* @name QueryDelegatorValidatorsResponse
|
|
1503
|
+
* @package cosmos.staking.v1beta1
|
|
1504
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorsResponse
|
|
1505
|
+
*/
|
|
1000
1506
|
export declare const QueryDelegatorValidatorsResponse: {
|
|
1001
1507
|
typeUrl: string;
|
|
1002
1508
|
aminoType: string;
|
|
@@ -1014,6 +1520,13 @@ export declare const QueryDelegatorValidatorsResponse: {
|
|
|
1014
1520
|
toProtoMsg(message: QueryDelegatorValidatorsResponse): QueryDelegatorValidatorsResponseProtoMsg;
|
|
1015
1521
|
registerTypeUrl(): void;
|
|
1016
1522
|
};
|
|
1523
|
+
/**
|
|
1524
|
+
* QueryDelegatorValidatorRequest is request type for the
|
|
1525
|
+
* Query/DelegatorValidator RPC method.
|
|
1526
|
+
* @name QueryDelegatorValidatorRequest
|
|
1527
|
+
* @package cosmos.staking.v1beta1
|
|
1528
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorRequest
|
|
1529
|
+
*/
|
|
1017
1530
|
export declare const QueryDelegatorValidatorRequest: {
|
|
1018
1531
|
typeUrl: string;
|
|
1019
1532
|
aminoType: string;
|
|
@@ -1031,6 +1544,13 @@ export declare const QueryDelegatorValidatorRequest: {
|
|
|
1031
1544
|
toProtoMsg(message: QueryDelegatorValidatorRequest): QueryDelegatorValidatorRequestProtoMsg;
|
|
1032
1545
|
registerTypeUrl(): void;
|
|
1033
1546
|
};
|
|
1547
|
+
/**
|
|
1548
|
+
* QueryDelegatorValidatorResponse response type for the
|
|
1549
|
+
* Query/DelegatorValidator RPC method.
|
|
1550
|
+
* @name QueryDelegatorValidatorResponse
|
|
1551
|
+
* @package cosmos.staking.v1beta1
|
|
1552
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorResponse
|
|
1553
|
+
*/
|
|
1034
1554
|
export declare const QueryDelegatorValidatorResponse: {
|
|
1035
1555
|
typeUrl: string;
|
|
1036
1556
|
aminoType: string;
|
|
@@ -1048,6 +1568,13 @@ export declare const QueryDelegatorValidatorResponse: {
|
|
|
1048
1568
|
toProtoMsg(message: QueryDelegatorValidatorResponse): QueryDelegatorValidatorResponseProtoMsg;
|
|
1049
1569
|
registerTypeUrl(): void;
|
|
1050
1570
|
};
|
|
1571
|
+
/**
|
|
1572
|
+
* QueryHistoricalInfoRequest is request type for the Query/HistoricalInfo RPC
|
|
1573
|
+
* method.
|
|
1574
|
+
* @name QueryHistoricalInfoRequest
|
|
1575
|
+
* @package cosmos.staking.v1beta1
|
|
1576
|
+
* @see proto type: cosmos.staking.v1beta1.QueryHistoricalInfoRequest
|
|
1577
|
+
*/
|
|
1051
1578
|
export declare const QueryHistoricalInfoRequest: {
|
|
1052
1579
|
typeUrl: string;
|
|
1053
1580
|
aminoType: string;
|
|
@@ -1065,6 +1592,13 @@ export declare const QueryHistoricalInfoRequest: {
|
|
|
1065
1592
|
toProtoMsg(message: QueryHistoricalInfoRequest): QueryHistoricalInfoRequestProtoMsg;
|
|
1066
1593
|
registerTypeUrl(): void;
|
|
1067
1594
|
};
|
|
1595
|
+
/**
|
|
1596
|
+
* QueryHistoricalInfoResponse is response type for the Query/HistoricalInfo RPC
|
|
1597
|
+
* method.
|
|
1598
|
+
* @name QueryHistoricalInfoResponse
|
|
1599
|
+
* @package cosmos.staking.v1beta1
|
|
1600
|
+
* @see proto type: cosmos.staking.v1beta1.QueryHistoricalInfoResponse
|
|
1601
|
+
*/
|
|
1068
1602
|
export declare const QueryHistoricalInfoResponse: {
|
|
1069
1603
|
typeUrl: string;
|
|
1070
1604
|
aminoType: string;
|
|
@@ -1082,6 +1616,12 @@ export declare const QueryHistoricalInfoResponse: {
|
|
|
1082
1616
|
toProtoMsg(message: QueryHistoricalInfoResponse): QueryHistoricalInfoResponseProtoMsg;
|
|
1083
1617
|
registerTypeUrl(): void;
|
|
1084
1618
|
};
|
|
1619
|
+
/**
|
|
1620
|
+
* QueryPoolRequest is request type for the Query/Pool RPC method.
|
|
1621
|
+
* @name QueryPoolRequest
|
|
1622
|
+
* @package cosmos.staking.v1beta1
|
|
1623
|
+
* @see proto type: cosmos.staking.v1beta1.QueryPoolRequest
|
|
1624
|
+
*/
|
|
1085
1625
|
export declare const QueryPoolRequest: {
|
|
1086
1626
|
typeUrl: string;
|
|
1087
1627
|
aminoType: string;
|
|
@@ -1099,6 +1639,12 @@ export declare const QueryPoolRequest: {
|
|
|
1099
1639
|
toProtoMsg(message: QueryPoolRequest): QueryPoolRequestProtoMsg;
|
|
1100
1640
|
registerTypeUrl(): void;
|
|
1101
1641
|
};
|
|
1642
|
+
/**
|
|
1643
|
+
* QueryPoolResponse is response type for the Query/Pool RPC method.
|
|
1644
|
+
* @name QueryPoolResponse
|
|
1645
|
+
* @package cosmos.staking.v1beta1
|
|
1646
|
+
* @see proto type: cosmos.staking.v1beta1.QueryPoolResponse
|
|
1647
|
+
*/
|
|
1102
1648
|
export declare const QueryPoolResponse: {
|
|
1103
1649
|
typeUrl: string;
|
|
1104
1650
|
aminoType: string;
|
|
@@ -1116,6 +1662,12 @@ export declare const QueryPoolResponse: {
|
|
|
1116
1662
|
toProtoMsg(message: QueryPoolResponse): QueryPoolResponseProtoMsg;
|
|
1117
1663
|
registerTypeUrl(): void;
|
|
1118
1664
|
};
|
|
1665
|
+
/**
|
|
1666
|
+
* QueryParamsRequest is request type for the Query/Params RPC method.
|
|
1667
|
+
* @name QueryParamsRequest
|
|
1668
|
+
* @package cosmos.staking.v1beta1
|
|
1669
|
+
* @see proto type: cosmos.staking.v1beta1.QueryParamsRequest
|
|
1670
|
+
*/
|
|
1119
1671
|
export declare const QueryParamsRequest: {
|
|
1120
1672
|
typeUrl: string;
|
|
1121
1673
|
aminoType: string;
|
|
@@ -1133,6 +1685,12 @@ export declare const QueryParamsRequest: {
|
|
|
1133
1685
|
toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg;
|
|
1134
1686
|
registerTypeUrl(): void;
|
|
1135
1687
|
};
|
|
1688
|
+
/**
|
|
1689
|
+
* QueryParamsResponse is response type for the Query/Params RPC method.
|
|
1690
|
+
* @name QueryParamsResponse
|
|
1691
|
+
* @package cosmos.staking.v1beta1
|
|
1692
|
+
* @see proto type: cosmos.staking.v1beta1.QueryParamsResponse
|
|
1693
|
+
*/
|
|
1136
1694
|
export declare const QueryParamsResponse: {
|
|
1137
1695
|
typeUrl: string;
|
|
1138
1696
|
aminoType: string;
|