@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
|
@@ -3,76 +3,136 @@ import { Params, ParamsAmino, ValidatorOutstandingRewards, ValidatorOutstandingR
|
|
|
3
3
|
import { DecCoin, DecCoinAmino } from "../../base/v1beta1/coin";
|
|
4
4
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
5
5
|
import { DeepPartial } from "../../../helpers";
|
|
6
|
-
/**
|
|
6
|
+
/**
|
|
7
|
+
* QueryParamsRequest is the request type for the Query/Params RPC method.
|
|
8
|
+
* @name QueryParamsRequest
|
|
9
|
+
* @package cosmos.distribution.v1beta1
|
|
10
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryParamsRequest
|
|
11
|
+
*/
|
|
7
12
|
export interface QueryParamsRequest {
|
|
8
13
|
}
|
|
9
14
|
export interface QueryParamsRequestProtoMsg {
|
|
10
15
|
typeUrl: "/cosmos.distribution.v1beta1.QueryParamsRequest";
|
|
11
16
|
value: Uint8Array;
|
|
12
17
|
}
|
|
13
|
-
/**
|
|
18
|
+
/**
|
|
19
|
+
* QueryParamsRequest is the request type for the Query/Params RPC method.
|
|
20
|
+
* @name QueryParamsRequestAmino
|
|
21
|
+
* @package cosmos.distribution.v1beta1
|
|
22
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryParamsRequest
|
|
23
|
+
*/
|
|
14
24
|
export interface QueryParamsRequestAmino {
|
|
15
25
|
}
|
|
16
26
|
export interface QueryParamsRequestAminoMsg {
|
|
17
27
|
type: "cosmos-sdk/QueryParamsRequest";
|
|
18
28
|
value: QueryParamsRequestAmino;
|
|
19
29
|
}
|
|
20
|
-
/**
|
|
30
|
+
/**
|
|
31
|
+
* QueryParamsResponse is the response type for the Query/Params RPC method.
|
|
32
|
+
* @name QueryParamsResponse
|
|
33
|
+
* @package cosmos.distribution.v1beta1
|
|
34
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryParamsResponse
|
|
35
|
+
*/
|
|
21
36
|
export interface QueryParamsResponse {
|
|
22
|
-
/**
|
|
37
|
+
/**
|
|
38
|
+
* params defines the parameters of the module.
|
|
39
|
+
*/
|
|
23
40
|
params: Params;
|
|
24
41
|
}
|
|
25
42
|
export interface QueryParamsResponseProtoMsg {
|
|
26
43
|
typeUrl: "/cosmos.distribution.v1beta1.QueryParamsResponse";
|
|
27
44
|
value: Uint8Array;
|
|
28
45
|
}
|
|
29
|
-
/**
|
|
46
|
+
/**
|
|
47
|
+
* QueryParamsResponse is the response type for the Query/Params RPC method.
|
|
48
|
+
* @name QueryParamsResponseAmino
|
|
49
|
+
* @package cosmos.distribution.v1beta1
|
|
50
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryParamsResponse
|
|
51
|
+
*/
|
|
30
52
|
export interface QueryParamsResponseAmino {
|
|
31
|
-
/**
|
|
53
|
+
/**
|
|
54
|
+
* params defines the parameters of the module.
|
|
55
|
+
*/
|
|
32
56
|
params: ParamsAmino;
|
|
33
57
|
}
|
|
34
58
|
export interface QueryParamsResponseAminoMsg {
|
|
35
59
|
type: "cosmos-sdk/QueryParamsResponse";
|
|
36
60
|
value: QueryParamsResponseAmino;
|
|
37
61
|
}
|
|
38
|
-
/**
|
|
62
|
+
/**
|
|
63
|
+
* QueryValidatorDistributionInfoRequest is the request type for the Query/ValidatorDistributionInfo RPC method.
|
|
64
|
+
* @name QueryValidatorDistributionInfoRequest
|
|
65
|
+
* @package cosmos.distribution.v1beta1
|
|
66
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorDistributionInfoRequest
|
|
67
|
+
*/
|
|
39
68
|
export interface QueryValidatorDistributionInfoRequest {
|
|
40
|
-
/**
|
|
69
|
+
/**
|
|
70
|
+
* validator_address defines the validator address to query for.
|
|
71
|
+
*/
|
|
41
72
|
validatorAddress: string;
|
|
42
73
|
}
|
|
43
74
|
export interface QueryValidatorDistributionInfoRequestProtoMsg {
|
|
44
75
|
typeUrl: "/cosmos.distribution.v1beta1.QueryValidatorDistributionInfoRequest";
|
|
45
76
|
value: Uint8Array;
|
|
46
77
|
}
|
|
47
|
-
/**
|
|
78
|
+
/**
|
|
79
|
+
* QueryValidatorDistributionInfoRequest is the request type for the Query/ValidatorDistributionInfo RPC method.
|
|
80
|
+
* @name QueryValidatorDistributionInfoRequestAmino
|
|
81
|
+
* @package cosmos.distribution.v1beta1
|
|
82
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorDistributionInfoRequest
|
|
83
|
+
*/
|
|
48
84
|
export interface QueryValidatorDistributionInfoRequestAmino {
|
|
49
|
-
/**
|
|
85
|
+
/**
|
|
86
|
+
* validator_address defines the validator address to query for.
|
|
87
|
+
*/
|
|
50
88
|
validator_address: string;
|
|
51
89
|
}
|
|
52
90
|
export interface QueryValidatorDistributionInfoRequestAminoMsg {
|
|
53
91
|
type: "cosmos-sdk/QueryValidatorDistributionInfoRequest";
|
|
54
92
|
value: QueryValidatorDistributionInfoRequestAmino;
|
|
55
93
|
}
|
|
56
|
-
/**
|
|
94
|
+
/**
|
|
95
|
+
* QueryValidatorDistributionInfoResponse is the response type for the Query/ValidatorDistributionInfo RPC method.
|
|
96
|
+
* @name QueryValidatorDistributionInfoResponse
|
|
97
|
+
* @package cosmos.distribution.v1beta1
|
|
98
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorDistributionInfoResponse
|
|
99
|
+
*/
|
|
57
100
|
export interface QueryValidatorDistributionInfoResponse {
|
|
58
|
-
/**
|
|
101
|
+
/**
|
|
102
|
+
* operator_address defines the validator operator address.
|
|
103
|
+
*/
|
|
59
104
|
operatorAddress: string;
|
|
60
|
-
/**
|
|
105
|
+
/**
|
|
106
|
+
* self_bond_rewards defines the self delegations rewards.
|
|
107
|
+
*/
|
|
61
108
|
selfBondRewards: DecCoin[];
|
|
62
|
-
/**
|
|
109
|
+
/**
|
|
110
|
+
* commission defines the commission the validator received.
|
|
111
|
+
*/
|
|
63
112
|
commission: DecCoin[];
|
|
64
113
|
}
|
|
65
114
|
export interface QueryValidatorDistributionInfoResponseProtoMsg {
|
|
66
115
|
typeUrl: "/cosmos.distribution.v1beta1.QueryValidatorDistributionInfoResponse";
|
|
67
116
|
value: Uint8Array;
|
|
68
117
|
}
|
|
69
|
-
/**
|
|
118
|
+
/**
|
|
119
|
+
* QueryValidatorDistributionInfoResponse is the response type for the Query/ValidatorDistributionInfo RPC method.
|
|
120
|
+
* @name QueryValidatorDistributionInfoResponseAmino
|
|
121
|
+
* @package cosmos.distribution.v1beta1
|
|
122
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorDistributionInfoResponse
|
|
123
|
+
*/
|
|
70
124
|
export interface QueryValidatorDistributionInfoResponseAmino {
|
|
71
|
-
/**
|
|
125
|
+
/**
|
|
126
|
+
* operator_address defines the validator operator address.
|
|
127
|
+
*/
|
|
72
128
|
operator_address: string;
|
|
73
|
-
/**
|
|
129
|
+
/**
|
|
130
|
+
* self_bond_rewards defines the self delegations rewards.
|
|
131
|
+
*/
|
|
74
132
|
self_bond_rewards: DecCoinAmino[];
|
|
75
|
-
/**
|
|
133
|
+
/**
|
|
134
|
+
* commission defines the commission the validator received.
|
|
135
|
+
*/
|
|
76
136
|
commission: DecCoinAmino[];
|
|
77
137
|
}
|
|
78
138
|
export interface QueryValidatorDistributionInfoResponseAminoMsg {
|
|
@@ -82,9 +142,14 @@ export interface QueryValidatorDistributionInfoResponseAminoMsg {
|
|
|
82
142
|
/**
|
|
83
143
|
* QueryValidatorOutstandingRewardsRequest is the request type for the
|
|
84
144
|
* Query/ValidatorOutstandingRewards RPC method.
|
|
145
|
+
* @name QueryValidatorOutstandingRewardsRequest
|
|
146
|
+
* @package cosmos.distribution.v1beta1
|
|
147
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsRequest
|
|
85
148
|
*/
|
|
86
149
|
export interface QueryValidatorOutstandingRewardsRequest {
|
|
87
|
-
/**
|
|
150
|
+
/**
|
|
151
|
+
* validator_address defines the validator address to query for.
|
|
152
|
+
*/
|
|
88
153
|
validatorAddress: string;
|
|
89
154
|
}
|
|
90
155
|
export interface QueryValidatorOutstandingRewardsRequestProtoMsg {
|
|
@@ -94,9 +159,14 @@ export interface QueryValidatorOutstandingRewardsRequestProtoMsg {
|
|
|
94
159
|
/**
|
|
95
160
|
* QueryValidatorOutstandingRewardsRequest is the request type for the
|
|
96
161
|
* Query/ValidatorOutstandingRewards RPC method.
|
|
162
|
+
* @name QueryValidatorOutstandingRewardsRequestAmino
|
|
163
|
+
* @package cosmos.distribution.v1beta1
|
|
164
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsRequest
|
|
97
165
|
*/
|
|
98
166
|
export interface QueryValidatorOutstandingRewardsRequestAmino {
|
|
99
|
-
/**
|
|
167
|
+
/**
|
|
168
|
+
* validator_address defines the validator address to query for.
|
|
169
|
+
*/
|
|
100
170
|
validator_address: string;
|
|
101
171
|
}
|
|
102
172
|
export interface QueryValidatorOutstandingRewardsRequestAminoMsg {
|
|
@@ -106,6 +176,9 @@ export interface QueryValidatorOutstandingRewardsRequestAminoMsg {
|
|
|
106
176
|
/**
|
|
107
177
|
* QueryValidatorOutstandingRewardsResponse is the response type for the
|
|
108
178
|
* Query/ValidatorOutstandingRewards RPC method.
|
|
179
|
+
* @name QueryValidatorOutstandingRewardsResponse
|
|
180
|
+
* @package cosmos.distribution.v1beta1
|
|
181
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsResponse
|
|
109
182
|
*/
|
|
110
183
|
export interface QueryValidatorOutstandingRewardsResponse {
|
|
111
184
|
rewards: ValidatorOutstandingRewards;
|
|
@@ -117,6 +190,9 @@ export interface QueryValidatorOutstandingRewardsResponseProtoMsg {
|
|
|
117
190
|
/**
|
|
118
191
|
* QueryValidatorOutstandingRewardsResponse is the response type for the
|
|
119
192
|
* Query/ValidatorOutstandingRewards RPC method.
|
|
193
|
+
* @name QueryValidatorOutstandingRewardsResponseAmino
|
|
194
|
+
* @package cosmos.distribution.v1beta1
|
|
195
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsResponse
|
|
120
196
|
*/
|
|
121
197
|
export interface QueryValidatorOutstandingRewardsResponseAmino {
|
|
122
198
|
rewards: ValidatorOutstandingRewardsAmino;
|
|
@@ -128,9 +204,14 @@ export interface QueryValidatorOutstandingRewardsResponseAminoMsg {
|
|
|
128
204
|
/**
|
|
129
205
|
* QueryValidatorCommissionRequest is the request type for the
|
|
130
206
|
* Query/ValidatorCommission RPC method
|
|
207
|
+
* @name QueryValidatorCommissionRequest
|
|
208
|
+
* @package cosmos.distribution.v1beta1
|
|
209
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorCommissionRequest
|
|
131
210
|
*/
|
|
132
211
|
export interface QueryValidatorCommissionRequest {
|
|
133
|
-
/**
|
|
212
|
+
/**
|
|
213
|
+
* validator_address defines the validator address to query for.
|
|
214
|
+
*/
|
|
134
215
|
validatorAddress: string;
|
|
135
216
|
}
|
|
136
217
|
export interface QueryValidatorCommissionRequestProtoMsg {
|
|
@@ -140,9 +221,14 @@ export interface QueryValidatorCommissionRequestProtoMsg {
|
|
|
140
221
|
/**
|
|
141
222
|
* QueryValidatorCommissionRequest is the request type for the
|
|
142
223
|
* Query/ValidatorCommission RPC method
|
|
224
|
+
* @name QueryValidatorCommissionRequestAmino
|
|
225
|
+
* @package cosmos.distribution.v1beta1
|
|
226
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorCommissionRequest
|
|
143
227
|
*/
|
|
144
228
|
export interface QueryValidatorCommissionRequestAmino {
|
|
145
|
-
/**
|
|
229
|
+
/**
|
|
230
|
+
* validator_address defines the validator address to query for.
|
|
231
|
+
*/
|
|
146
232
|
validator_address: string;
|
|
147
233
|
}
|
|
148
234
|
export interface QueryValidatorCommissionRequestAminoMsg {
|
|
@@ -152,9 +238,14 @@ export interface QueryValidatorCommissionRequestAminoMsg {
|
|
|
152
238
|
/**
|
|
153
239
|
* QueryValidatorCommissionResponse is the response type for the
|
|
154
240
|
* Query/ValidatorCommission RPC method
|
|
241
|
+
* @name QueryValidatorCommissionResponse
|
|
242
|
+
* @package cosmos.distribution.v1beta1
|
|
243
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorCommissionResponse
|
|
155
244
|
*/
|
|
156
245
|
export interface QueryValidatorCommissionResponse {
|
|
157
|
-
/**
|
|
246
|
+
/**
|
|
247
|
+
* commission defines the commission the validator received.
|
|
248
|
+
*/
|
|
158
249
|
commission: ValidatorAccumulatedCommission;
|
|
159
250
|
}
|
|
160
251
|
export interface QueryValidatorCommissionResponseProtoMsg {
|
|
@@ -164,9 +255,14 @@ export interface QueryValidatorCommissionResponseProtoMsg {
|
|
|
164
255
|
/**
|
|
165
256
|
* QueryValidatorCommissionResponse is the response type for the
|
|
166
257
|
* Query/ValidatorCommission RPC method
|
|
258
|
+
* @name QueryValidatorCommissionResponseAmino
|
|
259
|
+
* @package cosmos.distribution.v1beta1
|
|
260
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorCommissionResponse
|
|
167
261
|
*/
|
|
168
262
|
export interface QueryValidatorCommissionResponseAmino {
|
|
169
|
-
/**
|
|
263
|
+
/**
|
|
264
|
+
* commission defines the commission the validator received.
|
|
265
|
+
*/
|
|
170
266
|
commission: ValidatorAccumulatedCommissionAmino;
|
|
171
267
|
}
|
|
172
268
|
export interface QueryValidatorCommissionResponseAminoMsg {
|
|
@@ -176,15 +272,26 @@ export interface QueryValidatorCommissionResponseAminoMsg {
|
|
|
176
272
|
/**
|
|
177
273
|
* QueryValidatorSlashesRequest is the request type for the
|
|
178
274
|
* Query/ValidatorSlashes RPC method
|
|
275
|
+
* @name QueryValidatorSlashesRequest
|
|
276
|
+
* @package cosmos.distribution.v1beta1
|
|
277
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorSlashesRequest
|
|
179
278
|
*/
|
|
180
279
|
export interface QueryValidatorSlashesRequest {
|
|
181
|
-
/**
|
|
280
|
+
/**
|
|
281
|
+
* validator_address defines the validator address to query for.
|
|
282
|
+
*/
|
|
182
283
|
validatorAddress: string;
|
|
183
|
-
/**
|
|
284
|
+
/**
|
|
285
|
+
* starting_height defines the optional starting height to query the slashes.
|
|
286
|
+
*/
|
|
184
287
|
startingHeight: bigint;
|
|
185
|
-
/**
|
|
288
|
+
/**
|
|
289
|
+
* starting_height defines the optional ending height to query the slashes.
|
|
290
|
+
*/
|
|
186
291
|
endingHeight: bigint;
|
|
187
|
-
/**
|
|
292
|
+
/**
|
|
293
|
+
* pagination defines an optional pagination for the request.
|
|
294
|
+
*/
|
|
188
295
|
pagination?: PageRequest;
|
|
189
296
|
}
|
|
190
297
|
export interface QueryValidatorSlashesRequestProtoMsg {
|
|
@@ -194,15 +301,26 @@ export interface QueryValidatorSlashesRequestProtoMsg {
|
|
|
194
301
|
/**
|
|
195
302
|
* QueryValidatorSlashesRequest is the request type for the
|
|
196
303
|
* Query/ValidatorSlashes RPC method
|
|
304
|
+
* @name QueryValidatorSlashesRequestAmino
|
|
305
|
+
* @package cosmos.distribution.v1beta1
|
|
306
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorSlashesRequest
|
|
197
307
|
*/
|
|
198
308
|
export interface QueryValidatorSlashesRequestAmino {
|
|
199
|
-
/**
|
|
309
|
+
/**
|
|
310
|
+
* validator_address defines the validator address to query for.
|
|
311
|
+
*/
|
|
200
312
|
validator_address: string;
|
|
201
|
-
/**
|
|
313
|
+
/**
|
|
314
|
+
* starting_height defines the optional starting height to query the slashes.
|
|
315
|
+
*/
|
|
202
316
|
starting_height: string;
|
|
203
|
-
/**
|
|
317
|
+
/**
|
|
318
|
+
* starting_height defines the optional ending height to query the slashes.
|
|
319
|
+
*/
|
|
204
320
|
ending_height: string;
|
|
205
|
-
/**
|
|
321
|
+
/**
|
|
322
|
+
* pagination defines an optional pagination for the request.
|
|
323
|
+
*/
|
|
206
324
|
pagination?: PageRequestAmino;
|
|
207
325
|
}
|
|
208
326
|
export interface QueryValidatorSlashesRequestAminoMsg {
|
|
@@ -212,11 +330,18 @@ export interface QueryValidatorSlashesRequestAminoMsg {
|
|
|
212
330
|
/**
|
|
213
331
|
* QueryValidatorSlashesResponse is the response type for the
|
|
214
332
|
* Query/ValidatorSlashes RPC method.
|
|
333
|
+
* @name QueryValidatorSlashesResponse
|
|
334
|
+
* @package cosmos.distribution.v1beta1
|
|
335
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorSlashesResponse
|
|
215
336
|
*/
|
|
216
337
|
export interface QueryValidatorSlashesResponse {
|
|
217
|
-
/**
|
|
338
|
+
/**
|
|
339
|
+
* slashes defines the slashes the validator received.
|
|
340
|
+
*/
|
|
218
341
|
slashes: ValidatorSlashEvent[];
|
|
219
|
-
/**
|
|
342
|
+
/**
|
|
343
|
+
* pagination defines the pagination in the response.
|
|
344
|
+
*/
|
|
220
345
|
pagination?: PageResponse;
|
|
221
346
|
}
|
|
222
347
|
export interface QueryValidatorSlashesResponseProtoMsg {
|
|
@@ -226,11 +351,18 @@ export interface QueryValidatorSlashesResponseProtoMsg {
|
|
|
226
351
|
/**
|
|
227
352
|
* QueryValidatorSlashesResponse is the response type for the
|
|
228
353
|
* Query/ValidatorSlashes RPC method.
|
|
354
|
+
* @name QueryValidatorSlashesResponseAmino
|
|
355
|
+
* @package cosmos.distribution.v1beta1
|
|
356
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorSlashesResponse
|
|
229
357
|
*/
|
|
230
358
|
export interface QueryValidatorSlashesResponseAmino {
|
|
231
|
-
/**
|
|
359
|
+
/**
|
|
360
|
+
* slashes defines the slashes the validator received.
|
|
361
|
+
*/
|
|
232
362
|
slashes: ValidatorSlashEventAmino[];
|
|
233
|
-
/**
|
|
363
|
+
/**
|
|
364
|
+
* pagination defines the pagination in the response.
|
|
365
|
+
*/
|
|
234
366
|
pagination?: PageResponseAmino;
|
|
235
367
|
}
|
|
236
368
|
export interface QueryValidatorSlashesResponseAminoMsg {
|
|
@@ -240,11 +372,18 @@ export interface QueryValidatorSlashesResponseAminoMsg {
|
|
|
240
372
|
/**
|
|
241
373
|
* QueryDelegationRewardsRequest is the request type for the
|
|
242
374
|
* Query/DelegationRewards RPC method.
|
|
375
|
+
* @name QueryDelegationRewardsRequest
|
|
376
|
+
* @package cosmos.distribution.v1beta1
|
|
377
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegationRewardsRequest
|
|
243
378
|
*/
|
|
244
379
|
export interface QueryDelegationRewardsRequest {
|
|
245
|
-
/**
|
|
380
|
+
/**
|
|
381
|
+
* delegator_address defines the delegator address to query for.
|
|
382
|
+
*/
|
|
246
383
|
delegatorAddress: string;
|
|
247
|
-
/**
|
|
384
|
+
/**
|
|
385
|
+
* validator_address defines the validator address to query for.
|
|
386
|
+
*/
|
|
248
387
|
validatorAddress: string;
|
|
249
388
|
}
|
|
250
389
|
export interface QueryDelegationRewardsRequestProtoMsg {
|
|
@@ -254,11 +393,18 @@ export interface QueryDelegationRewardsRequestProtoMsg {
|
|
|
254
393
|
/**
|
|
255
394
|
* QueryDelegationRewardsRequest is the request type for the
|
|
256
395
|
* Query/DelegationRewards RPC method.
|
|
396
|
+
* @name QueryDelegationRewardsRequestAmino
|
|
397
|
+
* @package cosmos.distribution.v1beta1
|
|
398
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegationRewardsRequest
|
|
257
399
|
*/
|
|
258
400
|
export interface QueryDelegationRewardsRequestAmino {
|
|
259
|
-
/**
|
|
401
|
+
/**
|
|
402
|
+
* delegator_address defines the delegator address to query for.
|
|
403
|
+
*/
|
|
260
404
|
delegator_address: string;
|
|
261
|
-
/**
|
|
405
|
+
/**
|
|
406
|
+
* validator_address defines the validator address to query for.
|
|
407
|
+
*/
|
|
262
408
|
validator_address: string;
|
|
263
409
|
}
|
|
264
410
|
export interface QueryDelegationRewardsRequestAminoMsg {
|
|
@@ -268,9 +414,14 @@ export interface QueryDelegationRewardsRequestAminoMsg {
|
|
|
268
414
|
/**
|
|
269
415
|
* QueryDelegationRewardsResponse is the response type for the
|
|
270
416
|
* Query/DelegationRewards RPC method.
|
|
417
|
+
* @name QueryDelegationRewardsResponse
|
|
418
|
+
* @package cosmos.distribution.v1beta1
|
|
419
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegationRewardsResponse
|
|
271
420
|
*/
|
|
272
421
|
export interface QueryDelegationRewardsResponse {
|
|
273
|
-
/**
|
|
422
|
+
/**
|
|
423
|
+
* rewards defines the rewards accrued by a delegation.
|
|
424
|
+
*/
|
|
274
425
|
rewards: DecCoin[];
|
|
275
426
|
}
|
|
276
427
|
export interface QueryDelegationRewardsResponseProtoMsg {
|
|
@@ -280,9 +431,14 @@ export interface QueryDelegationRewardsResponseProtoMsg {
|
|
|
280
431
|
/**
|
|
281
432
|
* QueryDelegationRewardsResponse is the response type for the
|
|
282
433
|
* Query/DelegationRewards RPC method.
|
|
434
|
+
* @name QueryDelegationRewardsResponseAmino
|
|
435
|
+
* @package cosmos.distribution.v1beta1
|
|
436
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegationRewardsResponse
|
|
283
437
|
*/
|
|
284
438
|
export interface QueryDelegationRewardsResponseAmino {
|
|
285
|
-
/**
|
|
439
|
+
/**
|
|
440
|
+
* rewards defines the rewards accrued by a delegation.
|
|
441
|
+
*/
|
|
286
442
|
rewards: DecCoinAmino[];
|
|
287
443
|
}
|
|
288
444
|
export interface QueryDelegationRewardsResponseAminoMsg {
|
|
@@ -292,9 +448,14 @@ export interface QueryDelegationRewardsResponseAminoMsg {
|
|
|
292
448
|
/**
|
|
293
449
|
* QueryDelegationTotalRewardsRequest is the request type for the
|
|
294
450
|
* Query/DelegationTotalRewards RPC method.
|
|
451
|
+
* @name QueryDelegationTotalRewardsRequest
|
|
452
|
+
* @package cosmos.distribution.v1beta1
|
|
453
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegationTotalRewardsRequest
|
|
295
454
|
*/
|
|
296
455
|
export interface QueryDelegationTotalRewardsRequest {
|
|
297
|
-
/**
|
|
456
|
+
/**
|
|
457
|
+
* delegator_address defines the delegator address to query for.
|
|
458
|
+
*/
|
|
298
459
|
delegatorAddress: string;
|
|
299
460
|
}
|
|
300
461
|
export interface QueryDelegationTotalRewardsRequestProtoMsg {
|
|
@@ -304,9 +465,14 @@ export interface QueryDelegationTotalRewardsRequestProtoMsg {
|
|
|
304
465
|
/**
|
|
305
466
|
* QueryDelegationTotalRewardsRequest is the request type for the
|
|
306
467
|
* Query/DelegationTotalRewards RPC method.
|
|
468
|
+
* @name QueryDelegationTotalRewardsRequestAmino
|
|
469
|
+
* @package cosmos.distribution.v1beta1
|
|
470
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegationTotalRewardsRequest
|
|
307
471
|
*/
|
|
308
472
|
export interface QueryDelegationTotalRewardsRequestAmino {
|
|
309
|
-
/**
|
|
473
|
+
/**
|
|
474
|
+
* delegator_address defines the delegator address to query for.
|
|
475
|
+
*/
|
|
310
476
|
delegator_address: string;
|
|
311
477
|
}
|
|
312
478
|
export interface QueryDelegationTotalRewardsRequestAminoMsg {
|
|
@@ -316,11 +482,18 @@ export interface QueryDelegationTotalRewardsRequestAminoMsg {
|
|
|
316
482
|
/**
|
|
317
483
|
* QueryDelegationTotalRewardsResponse is the response type for the
|
|
318
484
|
* Query/DelegationTotalRewards RPC method.
|
|
485
|
+
* @name QueryDelegationTotalRewardsResponse
|
|
486
|
+
* @package cosmos.distribution.v1beta1
|
|
487
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegationTotalRewardsResponse
|
|
319
488
|
*/
|
|
320
489
|
export interface QueryDelegationTotalRewardsResponse {
|
|
321
|
-
/**
|
|
490
|
+
/**
|
|
491
|
+
* rewards defines all the rewards accrued by a delegator.
|
|
492
|
+
*/
|
|
322
493
|
rewards: DelegationDelegatorReward[];
|
|
323
|
-
/**
|
|
494
|
+
/**
|
|
495
|
+
* total defines the sum of all the rewards.
|
|
496
|
+
*/
|
|
324
497
|
total: DecCoin[];
|
|
325
498
|
}
|
|
326
499
|
export interface QueryDelegationTotalRewardsResponseProtoMsg {
|
|
@@ -330,11 +503,18 @@ export interface QueryDelegationTotalRewardsResponseProtoMsg {
|
|
|
330
503
|
/**
|
|
331
504
|
* QueryDelegationTotalRewardsResponse is the response type for the
|
|
332
505
|
* Query/DelegationTotalRewards RPC method.
|
|
506
|
+
* @name QueryDelegationTotalRewardsResponseAmino
|
|
507
|
+
* @package cosmos.distribution.v1beta1
|
|
508
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegationTotalRewardsResponse
|
|
333
509
|
*/
|
|
334
510
|
export interface QueryDelegationTotalRewardsResponseAmino {
|
|
335
|
-
/**
|
|
511
|
+
/**
|
|
512
|
+
* rewards defines all the rewards accrued by a delegator.
|
|
513
|
+
*/
|
|
336
514
|
rewards: DelegationDelegatorRewardAmino[];
|
|
337
|
-
/**
|
|
515
|
+
/**
|
|
516
|
+
* total defines the sum of all the rewards.
|
|
517
|
+
*/
|
|
338
518
|
total: DecCoinAmino[];
|
|
339
519
|
}
|
|
340
520
|
export interface QueryDelegationTotalRewardsResponseAminoMsg {
|
|
@@ -344,9 +524,14 @@ export interface QueryDelegationTotalRewardsResponseAminoMsg {
|
|
|
344
524
|
/**
|
|
345
525
|
* QueryDelegatorValidatorsRequest is the request type for the
|
|
346
526
|
* Query/DelegatorValidators RPC method.
|
|
527
|
+
* @name QueryDelegatorValidatorsRequest
|
|
528
|
+
* @package cosmos.distribution.v1beta1
|
|
529
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegatorValidatorsRequest
|
|
347
530
|
*/
|
|
348
531
|
export interface QueryDelegatorValidatorsRequest {
|
|
349
|
-
/**
|
|
532
|
+
/**
|
|
533
|
+
* delegator_address defines the delegator address to query for.
|
|
534
|
+
*/
|
|
350
535
|
delegatorAddress: string;
|
|
351
536
|
}
|
|
352
537
|
export interface QueryDelegatorValidatorsRequestProtoMsg {
|
|
@@ -356,9 +541,14 @@ export interface QueryDelegatorValidatorsRequestProtoMsg {
|
|
|
356
541
|
/**
|
|
357
542
|
* QueryDelegatorValidatorsRequest is the request type for the
|
|
358
543
|
* Query/DelegatorValidators RPC method.
|
|
544
|
+
* @name QueryDelegatorValidatorsRequestAmino
|
|
545
|
+
* @package cosmos.distribution.v1beta1
|
|
546
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegatorValidatorsRequest
|
|
359
547
|
*/
|
|
360
548
|
export interface QueryDelegatorValidatorsRequestAmino {
|
|
361
|
-
/**
|
|
549
|
+
/**
|
|
550
|
+
* delegator_address defines the delegator address to query for.
|
|
551
|
+
*/
|
|
362
552
|
delegator_address: string;
|
|
363
553
|
}
|
|
364
554
|
export interface QueryDelegatorValidatorsRequestAminoMsg {
|
|
@@ -368,9 +558,14 @@ export interface QueryDelegatorValidatorsRequestAminoMsg {
|
|
|
368
558
|
/**
|
|
369
559
|
* QueryDelegatorValidatorsResponse is the response type for the
|
|
370
560
|
* Query/DelegatorValidators RPC method.
|
|
561
|
+
* @name QueryDelegatorValidatorsResponse
|
|
562
|
+
* @package cosmos.distribution.v1beta1
|
|
563
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegatorValidatorsResponse
|
|
371
564
|
*/
|
|
372
565
|
export interface QueryDelegatorValidatorsResponse {
|
|
373
|
-
/**
|
|
566
|
+
/**
|
|
567
|
+
* validators defines the validators a delegator is delegating for.
|
|
568
|
+
*/
|
|
374
569
|
validators: string[];
|
|
375
570
|
}
|
|
376
571
|
export interface QueryDelegatorValidatorsResponseProtoMsg {
|
|
@@ -380,9 +575,14 @@ export interface QueryDelegatorValidatorsResponseProtoMsg {
|
|
|
380
575
|
/**
|
|
381
576
|
* QueryDelegatorValidatorsResponse is the response type for the
|
|
382
577
|
* Query/DelegatorValidators RPC method.
|
|
578
|
+
* @name QueryDelegatorValidatorsResponseAmino
|
|
579
|
+
* @package cosmos.distribution.v1beta1
|
|
580
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegatorValidatorsResponse
|
|
383
581
|
*/
|
|
384
582
|
export interface QueryDelegatorValidatorsResponseAmino {
|
|
385
|
-
/**
|
|
583
|
+
/**
|
|
584
|
+
* validators defines the validators a delegator is delegating for.
|
|
585
|
+
*/
|
|
386
586
|
validators: string[];
|
|
387
587
|
}
|
|
388
588
|
export interface QueryDelegatorValidatorsResponseAminoMsg {
|
|
@@ -392,9 +592,14 @@ export interface QueryDelegatorValidatorsResponseAminoMsg {
|
|
|
392
592
|
/**
|
|
393
593
|
* QueryDelegatorWithdrawAddressRequest is the request type for the
|
|
394
594
|
* Query/DelegatorWithdrawAddress RPC method.
|
|
595
|
+
* @name QueryDelegatorWithdrawAddressRequest
|
|
596
|
+
* @package cosmos.distribution.v1beta1
|
|
597
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressRequest
|
|
395
598
|
*/
|
|
396
599
|
export interface QueryDelegatorWithdrawAddressRequest {
|
|
397
|
-
/**
|
|
600
|
+
/**
|
|
601
|
+
* delegator_address defines the delegator address to query for.
|
|
602
|
+
*/
|
|
398
603
|
delegatorAddress: string;
|
|
399
604
|
}
|
|
400
605
|
export interface QueryDelegatorWithdrawAddressRequestProtoMsg {
|
|
@@ -404,9 +609,14 @@ export interface QueryDelegatorWithdrawAddressRequestProtoMsg {
|
|
|
404
609
|
/**
|
|
405
610
|
* QueryDelegatorWithdrawAddressRequest is the request type for the
|
|
406
611
|
* Query/DelegatorWithdrawAddress RPC method.
|
|
612
|
+
* @name QueryDelegatorWithdrawAddressRequestAmino
|
|
613
|
+
* @package cosmos.distribution.v1beta1
|
|
614
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressRequest
|
|
407
615
|
*/
|
|
408
616
|
export interface QueryDelegatorWithdrawAddressRequestAmino {
|
|
409
|
-
/**
|
|
617
|
+
/**
|
|
618
|
+
* delegator_address defines the delegator address to query for.
|
|
619
|
+
*/
|
|
410
620
|
delegator_address: string;
|
|
411
621
|
}
|
|
412
622
|
export interface QueryDelegatorWithdrawAddressRequestAminoMsg {
|
|
@@ -416,9 +626,14 @@ export interface QueryDelegatorWithdrawAddressRequestAminoMsg {
|
|
|
416
626
|
/**
|
|
417
627
|
* QueryDelegatorWithdrawAddressResponse is the response type for the
|
|
418
628
|
* Query/DelegatorWithdrawAddress RPC method.
|
|
629
|
+
* @name QueryDelegatorWithdrawAddressResponse
|
|
630
|
+
* @package cosmos.distribution.v1beta1
|
|
631
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressResponse
|
|
419
632
|
*/
|
|
420
633
|
export interface QueryDelegatorWithdrawAddressResponse {
|
|
421
|
-
/**
|
|
634
|
+
/**
|
|
635
|
+
* withdraw_address defines the delegator address to query for.
|
|
636
|
+
*/
|
|
422
637
|
withdrawAddress: string;
|
|
423
638
|
}
|
|
424
639
|
export interface QueryDelegatorWithdrawAddressResponseProtoMsg {
|
|
@@ -428,9 +643,14 @@ export interface QueryDelegatorWithdrawAddressResponseProtoMsg {
|
|
|
428
643
|
/**
|
|
429
644
|
* QueryDelegatorWithdrawAddressResponse is the response type for the
|
|
430
645
|
* Query/DelegatorWithdrawAddress RPC method.
|
|
646
|
+
* @name QueryDelegatorWithdrawAddressResponseAmino
|
|
647
|
+
* @package cosmos.distribution.v1beta1
|
|
648
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressResponse
|
|
431
649
|
*/
|
|
432
650
|
export interface QueryDelegatorWithdrawAddressResponseAmino {
|
|
433
|
-
/**
|
|
651
|
+
/**
|
|
652
|
+
* withdraw_address defines the delegator address to query for.
|
|
653
|
+
*/
|
|
434
654
|
withdraw_address: string;
|
|
435
655
|
}
|
|
436
656
|
export interface QueryDelegatorWithdrawAddressResponseAminoMsg {
|
|
@@ -440,6 +660,9 @@ export interface QueryDelegatorWithdrawAddressResponseAminoMsg {
|
|
|
440
660
|
/**
|
|
441
661
|
* QueryCommunityPoolRequest is the request type for the Query/CommunityPool RPC
|
|
442
662
|
* method.
|
|
663
|
+
* @name QueryCommunityPoolRequest
|
|
664
|
+
* @package cosmos.distribution.v1beta1
|
|
665
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryCommunityPoolRequest
|
|
443
666
|
*/
|
|
444
667
|
export interface QueryCommunityPoolRequest {
|
|
445
668
|
}
|
|
@@ -450,6 +673,9 @@ export interface QueryCommunityPoolRequestProtoMsg {
|
|
|
450
673
|
/**
|
|
451
674
|
* QueryCommunityPoolRequest is the request type for the Query/CommunityPool RPC
|
|
452
675
|
* method.
|
|
676
|
+
* @name QueryCommunityPoolRequestAmino
|
|
677
|
+
* @package cosmos.distribution.v1beta1
|
|
678
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryCommunityPoolRequest
|
|
453
679
|
*/
|
|
454
680
|
export interface QueryCommunityPoolRequestAmino {
|
|
455
681
|
}
|
|
@@ -460,9 +686,14 @@ export interface QueryCommunityPoolRequestAminoMsg {
|
|
|
460
686
|
/**
|
|
461
687
|
* QueryCommunityPoolResponse is the response type for the Query/CommunityPool
|
|
462
688
|
* RPC method.
|
|
689
|
+
* @name QueryCommunityPoolResponse
|
|
690
|
+
* @package cosmos.distribution.v1beta1
|
|
691
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryCommunityPoolResponse
|
|
463
692
|
*/
|
|
464
693
|
export interface QueryCommunityPoolResponse {
|
|
465
|
-
/**
|
|
694
|
+
/**
|
|
695
|
+
* pool defines community pool's coins.
|
|
696
|
+
*/
|
|
466
697
|
pool: DecCoin[];
|
|
467
698
|
}
|
|
468
699
|
export interface QueryCommunityPoolResponseProtoMsg {
|
|
@@ -472,15 +703,26 @@ export interface QueryCommunityPoolResponseProtoMsg {
|
|
|
472
703
|
/**
|
|
473
704
|
* QueryCommunityPoolResponse is the response type for the Query/CommunityPool
|
|
474
705
|
* RPC method.
|
|
706
|
+
* @name QueryCommunityPoolResponseAmino
|
|
707
|
+
* @package cosmos.distribution.v1beta1
|
|
708
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryCommunityPoolResponse
|
|
475
709
|
*/
|
|
476
710
|
export interface QueryCommunityPoolResponseAmino {
|
|
477
|
-
/**
|
|
711
|
+
/**
|
|
712
|
+
* pool defines community pool's coins.
|
|
713
|
+
*/
|
|
478
714
|
pool: DecCoinAmino[];
|
|
479
715
|
}
|
|
480
716
|
export interface QueryCommunityPoolResponseAminoMsg {
|
|
481
717
|
type: "cosmos-sdk/QueryCommunityPoolResponse";
|
|
482
718
|
value: QueryCommunityPoolResponseAmino;
|
|
483
719
|
}
|
|
720
|
+
/**
|
|
721
|
+
* QueryParamsRequest is the request type for the Query/Params RPC method.
|
|
722
|
+
* @name QueryParamsRequest
|
|
723
|
+
* @package cosmos.distribution.v1beta1
|
|
724
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryParamsRequest
|
|
725
|
+
*/
|
|
484
726
|
export declare const QueryParamsRequest: {
|
|
485
727
|
typeUrl: string;
|
|
486
728
|
aminoType: string;
|
|
@@ -498,6 +740,12 @@ export declare const QueryParamsRequest: {
|
|
|
498
740
|
toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg;
|
|
499
741
|
registerTypeUrl(): void;
|
|
500
742
|
};
|
|
743
|
+
/**
|
|
744
|
+
* QueryParamsResponse is the response type for the Query/Params RPC method.
|
|
745
|
+
* @name QueryParamsResponse
|
|
746
|
+
* @package cosmos.distribution.v1beta1
|
|
747
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryParamsResponse
|
|
748
|
+
*/
|
|
501
749
|
export declare const QueryParamsResponse: {
|
|
502
750
|
typeUrl: string;
|
|
503
751
|
aminoType: string;
|
|
@@ -515,6 +763,12 @@ export declare const QueryParamsResponse: {
|
|
|
515
763
|
toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg;
|
|
516
764
|
registerTypeUrl(): void;
|
|
517
765
|
};
|
|
766
|
+
/**
|
|
767
|
+
* QueryValidatorDistributionInfoRequest is the request type for the Query/ValidatorDistributionInfo RPC method.
|
|
768
|
+
* @name QueryValidatorDistributionInfoRequest
|
|
769
|
+
* @package cosmos.distribution.v1beta1
|
|
770
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorDistributionInfoRequest
|
|
771
|
+
*/
|
|
518
772
|
export declare const QueryValidatorDistributionInfoRequest: {
|
|
519
773
|
typeUrl: string;
|
|
520
774
|
aminoType: string;
|
|
@@ -532,6 +786,12 @@ export declare const QueryValidatorDistributionInfoRequest: {
|
|
|
532
786
|
toProtoMsg(message: QueryValidatorDistributionInfoRequest): QueryValidatorDistributionInfoRequestProtoMsg;
|
|
533
787
|
registerTypeUrl(): void;
|
|
534
788
|
};
|
|
789
|
+
/**
|
|
790
|
+
* QueryValidatorDistributionInfoResponse is the response type for the Query/ValidatorDistributionInfo RPC method.
|
|
791
|
+
* @name QueryValidatorDistributionInfoResponse
|
|
792
|
+
* @package cosmos.distribution.v1beta1
|
|
793
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorDistributionInfoResponse
|
|
794
|
+
*/
|
|
535
795
|
export declare const QueryValidatorDistributionInfoResponse: {
|
|
536
796
|
typeUrl: string;
|
|
537
797
|
aminoType: string;
|
|
@@ -549,6 +809,13 @@ export declare const QueryValidatorDistributionInfoResponse: {
|
|
|
549
809
|
toProtoMsg(message: QueryValidatorDistributionInfoResponse): QueryValidatorDistributionInfoResponseProtoMsg;
|
|
550
810
|
registerTypeUrl(): void;
|
|
551
811
|
};
|
|
812
|
+
/**
|
|
813
|
+
* QueryValidatorOutstandingRewardsRequest is the request type for the
|
|
814
|
+
* Query/ValidatorOutstandingRewards RPC method.
|
|
815
|
+
* @name QueryValidatorOutstandingRewardsRequest
|
|
816
|
+
* @package cosmos.distribution.v1beta1
|
|
817
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsRequest
|
|
818
|
+
*/
|
|
552
819
|
export declare const QueryValidatorOutstandingRewardsRequest: {
|
|
553
820
|
typeUrl: string;
|
|
554
821
|
aminoType: string;
|
|
@@ -566,6 +833,13 @@ export declare const QueryValidatorOutstandingRewardsRequest: {
|
|
|
566
833
|
toProtoMsg(message: QueryValidatorOutstandingRewardsRequest): QueryValidatorOutstandingRewardsRequestProtoMsg;
|
|
567
834
|
registerTypeUrl(): void;
|
|
568
835
|
};
|
|
836
|
+
/**
|
|
837
|
+
* QueryValidatorOutstandingRewardsResponse is the response type for the
|
|
838
|
+
* Query/ValidatorOutstandingRewards RPC method.
|
|
839
|
+
* @name QueryValidatorOutstandingRewardsResponse
|
|
840
|
+
* @package cosmos.distribution.v1beta1
|
|
841
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsResponse
|
|
842
|
+
*/
|
|
569
843
|
export declare const QueryValidatorOutstandingRewardsResponse: {
|
|
570
844
|
typeUrl: string;
|
|
571
845
|
aminoType: string;
|
|
@@ -583,6 +857,13 @@ export declare const QueryValidatorOutstandingRewardsResponse: {
|
|
|
583
857
|
toProtoMsg(message: QueryValidatorOutstandingRewardsResponse): QueryValidatorOutstandingRewardsResponseProtoMsg;
|
|
584
858
|
registerTypeUrl(): void;
|
|
585
859
|
};
|
|
860
|
+
/**
|
|
861
|
+
* QueryValidatorCommissionRequest is the request type for the
|
|
862
|
+
* Query/ValidatorCommission RPC method
|
|
863
|
+
* @name QueryValidatorCommissionRequest
|
|
864
|
+
* @package cosmos.distribution.v1beta1
|
|
865
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorCommissionRequest
|
|
866
|
+
*/
|
|
586
867
|
export declare const QueryValidatorCommissionRequest: {
|
|
587
868
|
typeUrl: string;
|
|
588
869
|
aminoType: string;
|
|
@@ -600,6 +881,13 @@ export declare const QueryValidatorCommissionRequest: {
|
|
|
600
881
|
toProtoMsg(message: QueryValidatorCommissionRequest): QueryValidatorCommissionRequestProtoMsg;
|
|
601
882
|
registerTypeUrl(): void;
|
|
602
883
|
};
|
|
884
|
+
/**
|
|
885
|
+
* QueryValidatorCommissionResponse is the response type for the
|
|
886
|
+
* Query/ValidatorCommission RPC method
|
|
887
|
+
* @name QueryValidatorCommissionResponse
|
|
888
|
+
* @package cosmos.distribution.v1beta1
|
|
889
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorCommissionResponse
|
|
890
|
+
*/
|
|
603
891
|
export declare const QueryValidatorCommissionResponse: {
|
|
604
892
|
typeUrl: string;
|
|
605
893
|
aminoType: string;
|
|
@@ -617,6 +905,13 @@ export declare const QueryValidatorCommissionResponse: {
|
|
|
617
905
|
toProtoMsg(message: QueryValidatorCommissionResponse): QueryValidatorCommissionResponseProtoMsg;
|
|
618
906
|
registerTypeUrl(): void;
|
|
619
907
|
};
|
|
908
|
+
/**
|
|
909
|
+
* QueryValidatorSlashesRequest is the request type for the
|
|
910
|
+
* Query/ValidatorSlashes RPC method
|
|
911
|
+
* @name QueryValidatorSlashesRequest
|
|
912
|
+
* @package cosmos.distribution.v1beta1
|
|
913
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorSlashesRequest
|
|
914
|
+
*/
|
|
620
915
|
export declare const QueryValidatorSlashesRequest: {
|
|
621
916
|
typeUrl: string;
|
|
622
917
|
aminoType: string;
|
|
@@ -634,6 +929,13 @@ export declare const QueryValidatorSlashesRequest: {
|
|
|
634
929
|
toProtoMsg(message: QueryValidatorSlashesRequest): QueryValidatorSlashesRequestProtoMsg;
|
|
635
930
|
registerTypeUrl(): void;
|
|
636
931
|
};
|
|
932
|
+
/**
|
|
933
|
+
* QueryValidatorSlashesResponse is the response type for the
|
|
934
|
+
* Query/ValidatorSlashes RPC method.
|
|
935
|
+
* @name QueryValidatorSlashesResponse
|
|
936
|
+
* @package cosmos.distribution.v1beta1
|
|
937
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorSlashesResponse
|
|
938
|
+
*/
|
|
637
939
|
export declare const QueryValidatorSlashesResponse: {
|
|
638
940
|
typeUrl: string;
|
|
639
941
|
aminoType: string;
|
|
@@ -651,6 +953,13 @@ export declare const QueryValidatorSlashesResponse: {
|
|
|
651
953
|
toProtoMsg(message: QueryValidatorSlashesResponse): QueryValidatorSlashesResponseProtoMsg;
|
|
652
954
|
registerTypeUrl(): void;
|
|
653
955
|
};
|
|
956
|
+
/**
|
|
957
|
+
* QueryDelegationRewardsRequest is the request type for the
|
|
958
|
+
* Query/DelegationRewards RPC method.
|
|
959
|
+
* @name QueryDelegationRewardsRequest
|
|
960
|
+
* @package cosmos.distribution.v1beta1
|
|
961
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegationRewardsRequest
|
|
962
|
+
*/
|
|
654
963
|
export declare const QueryDelegationRewardsRequest: {
|
|
655
964
|
typeUrl: string;
|
|
656
965
|
aminoType: string;
|
|
@@ -668,6 +977,13 @@ export declare const QueryDelegationRewardsRequest: {
|
|
|
668
977
|
toProtoMsg(message: QueryDelegationRewardsRequest): QueryDelegationRewardsRequestProtoMsg;
|
|
669
978
|
registerTypeUrl(): void;
|
|
670
979
|
};
|
|
980
|
+
/**
|
|
981
|
+
* QueryDelegationRewardsResponse is the response type for the
|
|
982
|
+
* Query/DelegationRewards RPC method.
|
|
983
|
+
* @name QueryDelegationRewardsResponse
|
|
984
|
+
* @package cosmos.distribution.v1beta1
|
|
985
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegationRewardsResponse
|
|
986
|
+
*/
|
|
671
987
|
export declare const QueryDelegationRewardsResponse: {
|
|
672
988
|
typeUrl: string;
|
|
673
989
|
aminoType: string;
|
|
@@ -685,6 +1001,13 @@ export declare const QueryDelegationRewardsResponse: {
|
|
|
685
1001
|
toProtoMsg(message: QueryDelegationRewardsResponse): QueryDelegationRewardsResponseProtoMsg;
|
|
686
1002
|
registerTypeUrl(): void;
|
|
687
1003
|
};
|
|
1004
|
+
/**
|
|
1005
|
+
* QueryDelegationTotalRewardsRequest is the request type for the
|
|
1006
|
+
* Query/DelegationTotalRewards RPC method.
|
|
1007
|
+
* @name QueryDelegationTotalRewardsRequest
|
|
1008
|
+
* @package cosmos.distribution.v1beta1
|
|
1009
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegationTotalRewardsRequest
|
|
1010
|
+
*/
|
|
688
1011
|
export declare const QueryDelegationTotalRewardsRequest: {
|
|
689
1012
|
typeUrl: string;
|
|
690
1013
|
aminoType: string;
|
|
@@ -702,6 +1025,13 @@ export declare const QueryDelegationTotalRewardsRequest: {
|
|
|
702
1025
|
toProtoMsg(message: QueryDelegationTotalRewardsRequest): QueryDelegationTotalRewardsRequestProtoMsg;
|
|
703
1026
|
registerTypeUrl(): void;
|
|
704
1027
|
};
|
|
1028
|
+
/**
|
|
1029
|
+
* QueryDelegationTotalRewardsResponse is the response type for the
|
|
1030
|
+
* Query/DelegationTotalRewards RPC method.
|
|
1031
|
+
* @name QueryDelegationTotalRewardsResponse
|
|
1032
|
+
* @package cosmos.distribution.v1beta1
|
|
1033
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegationTotalRewardsResponse
|
|
1034
|
+
*/
|
|
705
1035
|
export declare const QueryDelegationTotalRewardsResponse: {
|
|
706
1036
|
typeUrl: string;
|
|
707
1037
|
aminoType: string;
|
|
@@ -719,6 +1049,13 @@ export declare const QueryDelegationTotalRewardsResponse: {
|
|
|
719
1049
|
toProtoMsg(message: QueryDelegationTotalRewardsResponse): QueryDelegationTotalRewardsResponseProtoMsg;
|
|
720
1050
|
registerTypeUrl(): void;
|
|
721
1051
|
};
|
|
1052
|
+
/**
|
|
1053
|
+
* QueryDelegatorValidatorsRequest is the request type for the
|
|
1054
|
+
* Query/DelegatorValidators RPC method.
|
|
1055
|
+
* @name QueryDelegatorValidatorsRequest
|
|
1056
|
+
* @package cosmos.distribution.v1beta1
|
|
1057
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegatorValidatorsRequest
|
|
1058
|
+
*/
|
|
722
1059
|
export declare const QueryDelegatorValidatorsRequest: {
|
|
723
1060
|
typeUrl: string;
|
|
724
1061
|
aminoType: string;
|
|
@@ -736,6 +1073,13 @@ export declare const QueryDelegatorValidatorsRequest: {
|
|
|
736
1073
|
toProtoMsg(message: QueryDelegatorValidatorsRequest): QueryDelegatorValidatorsRequestProtoMsg;
|
|
737
1074
|
registerTypeUrl(): void;
|
|
738
1075
|
};
|
|
1076
|
+
/**
|
|
1077
|
+
* QueryDelegatorValidatorsResponse is the response type for the
|
|
1078
|
+
* Query/DelegatorValidators RPC method.
|
|
1079
|
+
* @name QueryDelegatorValidatorsResponse
|
|
1080
|
+
* @package cosmos.distribution.v1beta1
|
|
1081
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegatorValidatorsResponse
|
|
1082
|
+
*/
|
|
739
1083
|
export declare const QueryDelegatorValidatorsResponse: {
|
|
740
1084
|
typeUrl: string;
|
|
741
1085
|
aminoType: string;
|
|
@@ -753,6 +1097,13 @@ export declare const QueryDelegatorValidatorsResponse: {
|
|
|
753
1097
|
toProtoMsg(message: QueryDelegatorValidatorsResponse): QueryDelegatorValidatorsResponseProtoMsg;
|
|
754
1098
|
registerTypeUrl(): void;
|
|
755
1099
|
};
|
|
1100
|
+
/**
|
|
1101
|
+
* QueryDelegatorWithdrawAddressRequest is the request type for the
|
|
1102
|
+
* Query/DelegatorWithdrawAddress RPC method.
|
|
1103
|
+
* @name QueryDelegatorWithdrawAddressRequest
|
|
1104
|
+
* @package cosmos.distribution.v1beta1
|
|
1105
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressRequest
|
|
1106
|
+
*/
|
|
756
1107
|
export declare const QueryDelegatorWithdrawAddressRequest: {
|
|
757
1108
|
typeUrl: string;
|
|
758
1109
|
aminoType: string;
|
|
@@ -770,6 +1121,13 @@ export declare const QueryDelegatorWithdrawAddressRequest: {
|
|
|
770
1121
|
toProtoMsg(message: QueryDelegatorWithdrawAddressRequest): QueryDelegatorWithdrawAddressRequestProtoMsg;
|
|
771
1122
|
registerTypeUrl(): void;
|
|
772
1123
|
};
|
|
1124
|
+
/**
|
|
1125
|
+
* QueryDelegatorWithdrawAddressResponse is the response type for the
|
|
1126
|
+
* Query/DelegatorWithdrawAddress RPC method.
|
|
1127
|
+
* @name QueryDelegatorWithdrawAddressResponse
|
|
1128
|
+
* @package cosmos.distribution.v1beta1
|
|
1129
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressResponse
|
|
1130
|
+
*/
|
|
773
1131
|
export declare const QueryDelegatorWithdrawAddressResponse: {
|
|
774
1132
|
typeUrl: string;
|
|
775
1133
|
aminoType: string;
|
|
@@ -787,6 +1145,13 @@ export declare const QueryDelegatorWithdrawAddressResponse: {
|
|
|
787
1145
|
toProtoMsg(message: QueryDelegatorWithdrawAddressResponse): QueryDelegatorWithdrawAddressResponseProtoMsg;
|
|
788
1146
|
registerTypeUrl(): void;
|
|
789
1147
|
};
|
|
1148
|
+
/**
|
|
1149
|
+
* QueryCommunityPoolRequest is the request type for the Query/CommunityPool RPC
|
|
1150
|
+
* method.
|
|
1151
|
+
* @name QueryCommunityPoolRequest
|
|
1152
|
+
* @package cosmos.distribution.v1beta1
|
|
1153
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryCommunityPoolRequest
|
|
1154
|
+
*/
|
|
790
1155
|
export declare const QueryCommunityPoolRequest: {
|
|
791
1156
|
typeUrl: string;
|
|
792
1157
|
aminoType: string;
|
|
@@ -804,6 +1169,13 @@ export declare const QueryCommunityPoolRequest: {
|
|
|
804
1169
|
toProtoMsg(message: QueryCommunityPoolRequest): QueryCommunityPoolRequestProtoMsg;
|
|
805
1170
|
registerTypeUrl(): void;
|
|
806
1171
|
};
|
|
1172
|
+
/**
|
|
1173
|
+
* QueryCommunityPoolResponse is the response type for the Query/CommunityPool
|
|
1174
|
+
* RPC method.
|
|
1175
|
+
* @name QueryCommunityPoolResponse
|
|
1176
|
+
* @package cosmos.distribution.v1beta1
|
|
1177
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryCommunityPoolResponse
|
|
1178
|
+
*/
|
|
807
1179
|
export declare const QueryCommunityPoolResponse: {
|
|
808
1180
|
typeUrl: string;
|
|
809
1181
|
aminoType: string;
|