@xpla/xpla-react 1.7.0 → 1.8.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/app/runtime/v1alpha1/module.d.ts +49 -8
- package/cosmos/app/runtime/v1alpha1/module.js +17 -0
- package/cosmos/app/v1alpha1/config.d.ts +72 -10
- package/cosmos/app/v1alpha1/config.js +31 -0
- package/cosmos/app/v1alpha1/module.d.ts +55 -6
- package/cosmos/app/v1alpha1/module.js +23 -0
- package/cosmos/app/v1alpha1/query.d.ts +42 -6
- package/cosmos/app/v1alpha1/query.js +16 -0
- package/cosmos/app/v1alpha1/query.rpc.func.d.ts +7 -2
- package/cosmos/app/v1alpha1/query.rpc.func.js +8 -4
- package/cosmos/app/v1alpha1/query.rpc.react.d.ts +6 -0
- package/cosmos/app/v1alpha1/query.rpc.react.js +7 -1
- package/cosmos/auth/module/v1/module.d.ts +60 -12
- package/cosmos/auth/module/v1/module.js +16 -0
- package/cosmos/auth/v1beta1/auth.d.ts +70 -6
- package/cosmos/auth/v1beta1/auth.js +34 -0
- package/cosmos/auth/v1beta1/genesis.d.ts +30 -6
- package/cosmos/auth/v1beta1/genesis.js +6 -0
- package/cosmos/auth/v1beta1/query.d.ts +362 -32
- package/cosmos/auth/v1beta1/query.js +169 -0
- package/cosmos/auth/v1beta1/query.rpc.func.d.ts +87 -11
- package/cosmos/auth/v1beta1/query.rpc.func.js +88 -31
- package/cosmos/auth/v1beta1/query.rpc.react.d.ts +77 -0
- package/cosmos/auth/v1beta1/query.rpc.react.js +87 -10
- package/cosmos/auth/v1beta1/tx.d.ts +35 -2
- package/cosmos/auth/v1beta1/tx.js +21 -0
- package/cosmos/auth/v1beta1/tx.registry.d.ts +21 -0
- package/cosmos/auth/v1beta1/tx.registry.js +27 -1
- package/cosmos/auth/v1beta1/tx.rpc.func.d.ts +10 -2
- package/cosmos/auth/v1beta1/tx.rpc.func.js +12 -9
- package/cosmos/auth/v1beta1/tx.rpc.react.d.ts +10 -1
- package/cosmos/auth/v1beta1/tx.rpc.react.js +10 -1
- package/cosmos/authz/module/v1/module.d.ts +18 -2
- package/cosmos/authz/module/v1/module.js +6 -0
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +36 -0
- package/cosmos/authz/v1beta1/event.d.ts +72 -16
- package/cosmos/authz/v1beta1/event.js +12 -0
- package/cosmos/authz/v1beta1/genesis.d.ts +18 -2
- package/cosmos/authz/v1beta1/genesis.js +10 -0
- package/cosmos/authz/v1beta1/query.d.ts +168 -32
- package/cosmos/authz/v1beta1/query.js +55 -0
- package/cosmos/authz/v1beta1/query.rpc.func.d.ts +25 -4
- package/cosmos/authz/v1beta1/query.rpc.func.js +26 -10
- package/cosmos/authz/v1beta1/query.rpc.react.d.ts +22 -0
- package/cosmos/authz/v1beta1/query.rpc.react.js +25 -3
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +43 -0
- package/cosmos/authz/v1beta1/tx.registry.d.ts +45 -0
- package/cosmos/authz/v1beta1/tx.registry.js +63 -1
- package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +27 -4
- package/cosmos/authz/v1beta1/tx.rpc.func.js +31 -23
- package/cosmos/authz/v1beta1/tx.rpc.react.d.ts +27 -3
- package/cosmos/authz/v1beta1/tx.rpc.react.js +27 -3
- package/cosmos/autocli/v1/options.d.ts +208 -38
- package/cosmos/autocli/v1/options.js +54 -0
- package/cosmos/autocli/v1/query.d.ts +57 -6
- package/cosmos/autocli/v1/query.js +21 -0
- package/cosmos/autocli/v1/query.rpc.func.d.ts +7 -2
- package/cosmos/autocli/v1/query.rpc.func.js +8 -4
- package/cosmos/autocli/v1/query.rpc.react.d.ts +6 -0
- package/cosmos/autocli/v1/query.rpc.react.js +7 -1
- package/cosmos/bank/module/v1/module.d.ts +24 -4
- package/cosmos/bank/module/v1/module.js +6 -0
- package/cosmos/bank/v1beta1/authz.d.ts +15 -0
- package/cosmos/bank/v1beta1/authz.js +12 -0
- package/cosmos/bank/v1beta1/bank.d.ts +136 -18
- package/cosmos/bank/v1beta1/bank.js +63 -0
- package/cosmos/bank/v1beta1/genesis.d.ts +61 -12
- package/cosmos/bank/v1beta1/genesis.js +20 -0
- package/cosmos/bank/v1beta1/query.d.ts +619 -86
- package/cosmos/bank/v1beta1/query.js +263 -0
- package/cosmos/bank/v1beta1/query.rpc.func.d.ts +128 -14
- package/cosmos/bank/v1beta1/query.rpc.func.js +129 -40
- package/cosmos/bank/v1beta1/query.rpc.react.d.ts +115 -0
- package/cosmos/bank/v1beta1/query.rpc.react.js +128 -13
- package/cosmos/bank/v1beta1/tx.d.ts +151 -14
- package/cosmos/bank/v1beta1/tx.js +74 -0
- package/cosmos/bank/v1beta1/tx.registry.d.ts +57 -0
- package/cosmos/bank/v1beta1/tx.registry.js +81 -1
- package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +36 -5
- package/cosmos/bank/v1beta1/tx.rpc.func.js +41 -30
- package/cosmos/bank/v1beta1/tx.rpc.react.d.ts +36 -4
- package/cosmos/bank/v1beta1/tx.rpc.react.js +36 -4
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -68
- package/cosmos/base/abci/v1beta1/abci.js +92 -0
- package/cosmos/base/node/v1beta1/query.d.ts +102 -18
- package/cosmos/base/node/v1beta1/query.js +24 -0
- package/cosmos/base/node/v1beta1/query.rpc.func.d.ts +14 -3
- package/cosmos/base/node/v1beta1/query.rpc.func.js +15 -7
- package/cosmos/base/node/v1beta1/query.rpc.react.d.ts +12 -0
- package/cosmos/base/node/v1beta1/query.rpc.react.js +14 -2
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -0
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/reflection/v1beta1/reflection.d.ts +74 -8
- package/cosmos/base/reflection/v1beta1/reflection.js +26 -0
- package/cosmos/base/reflection/v1beta1/reflection.rpc.func.d.ts +16 -3
- package/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +17 -7
- package/cosmos/base/reflection/v1beta1/reflection.rpc.react.d.ts +14 -0
- package/cosmos/base/reflection/v1beta1/reflection.rpc.react.js +16 -2
- package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
- package/cosmos/base/reflection/v2alpha1/reflection.js +203 -0
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.d.ts +44 -7
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +45 -19
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.react.d.ts +38 -0
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.react.js +44 -6
- package/cosmos/base/tendermint/v1beta1/query.d.ts +417 -60
- package/cosmos/base/tendermint/v1beta1/query.js +154 -0
- package/cosmos/base/tendermint/v1beta1/query.rpc.func.d.ts +53 -8
- package/cosmos/base/tendermint/v1beta1/query.rpc.func.js +54 -22
- package/cosmos/base/tendermint/v1beta1/query.rpc.react.d.ts +46 -0
- package/cosmos/base/tendermint/v1beta1/query.rpc.react.js +53 -7
- package/cosmos/base/tendermint/v1beta1/types.d.ts +91 -22
- package/cosmos/base/tendermint/v1beta1/types.js +20 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/bundle.d.ts +188 -0
- package/cosmos/bundle.js +990 -0
- package/cosmos/consensus/module/v1/module.d.ts +24 -4
- package/cosmos/consensus/module/v1/module.js +6 -0
- package/cosmos/consensus/v1/query.d.ts +36 -4
- package/cosmos/consensus/v1/query.js +16 -0
- package/cosmos/consensus/v1/query.rpc.func.d.ts +7 -2
- package/cosmos/consensus/v1/query.rpc.func.js +8 -4
- package/cosmos/consensus/v1/query.rpc.react.d.ts +6 -0
- package/cosmos/consensus/v1/query.rpc.react.js +7 -1
- package/cosmos/consensus/v1/tx.d.ts +43 -6
- package/cosmos/consensus/v1/tx.js +17 -0
- package/cosmos/consensus/v1/tx.registry.d.ts +21 -0
- package/cosmos/consensus/v1/tx.registry.js +27 -1
- package/cosmos/consensus/v1/tx.rpc.func.d.ts +10 -2
- package/cosmos/consensus/v1/tx.rpc.func.js +12 -9
- package/cosmos/consensus/v1/tx.rpc.react.d.ts +10 -1
- package/cosmos/consensus/v1/tx.rpc.react.js +10 -1
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/distribution/module/v1/module.d.ts +24 -4
- package/cosmos/distribution/module/v1/module.js +6 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +132 -0
- package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
- package/cosmos/distribution/v1beta1/genesis.js +74 -0
- package/cosmos/distribution/v1beta1/query.d.ts +430 -58
- package/cosmos/distribution/v1beta1/query.js +164 -0
- package/cosmos/distribution/v1beta1/query.rpc.func.d.ts +71 -11
- package/cosmos/distribution/v1beta1/query.rpc.func.js +72 -31
- package/cosmos/distribution/v1beta1/query.rpc.react.d.ts +61 -0
- package/cosmos/distribution/v1beta1/query.rpc.react.js +71 -10
- package/cosmos/distribution/v1beta1/tx.d.ts +223 -10
- package/cosmos/distribution/v1beta1/tx.js +128 -0
- package/cosmos/distribution/v1beta1/tx.registry.d.ts +93 -0
- package/cosmos/distribution/v1beta1/tx.registry.js +135 -1
- package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +64 -8
- package/cosmos/distribution/v1beta1/tx.rpc.func.js +72 -51
- package/cosmos/distribution/v1beta1/tx.rpc.react.d.ts +64 -7
- package/cosmos/distribution/v1beta1/tx.rpc.react.js +64 -7
- package/cosmos/evidence/module/v1/module.d.ts +18 -2
- package/cosmos/evidence/module/v1/module.js +6 -0
- package/cosmos/evidence/v1beta1/evidence.d.ts +37 -8
- package/cosmos/evidence/v1beta1/evidence.js +7 -0
- package/cosmos/evidence/v1beta1/genesis.d.ts +24 -4
- package/cosmos/evidence/v1beta1/genesis.js +6 -0
- package/cosmos/evidence/v1beta1/query.d.ts +88 -14
- package/cosmos/evidence/v1beta1/query.js +33 -0
- package/cosmos/evidence/v1beta1/query.rpc.func.d.ts +14 -3
- package/cosmos/evidence/v1beta1/query.rpc.func.js +15 -7
- package/cosmos/evidence/v1beta1/query.rpc.react.d.ts +12 -0
- package/cosmos/evidence/v1beta1/query.rpc.react.js +14 -2
- package/cosmos/evidence/v1beta1/tx.d.ts +53 -9
- package/cosmos/evidence/v1beta1/tx.js +13 -0
- package/cosmos/evidence/v1beta1/tx.registry.d.ts +21 -0
- package/cosmos/evidence/v1beta1/tx.registry.js +27 -1
- package/cosmos/evidence/v1beta1/tx.rpc.func.d.ts +8 -2
- package/cosmos/evidence/v1beta1/tx.rpc.func.js +10 -9
- package/cosmos/evidence/v1beta1/tx.rpc.react.d.ts +8 -1
- package/cosmos/evidence/v1beta1/tx.rpc.react.js +8 -1
- package/cosmos/evm/feemarket/v1/events.d.ts +120 -0
- package/cosmos/evm/feemarket/v1/events.js +182 -0
- package/cosmos/evm/feemarket/v1/feemarket.d.ts +115 -0
- package/cosmos/evm/feemarket/v1/feemarket.js +160 -0
- package/cosmos/evm/feemarket/v1/genesis.d.ts +68 -0
- package/cosmos/evm/feemarket/v1/genesis.js +106 -0
- package/cosmos/evm/feemarket/v1/query.d.ts +315 -0
- package/cosmos/evm/feemarket/v1/query.js +473 -0
- package/cosmos/evm/feemarket/v1/query.rpc.func.d.ts +22 -0
- package/cosmos/evm/feemarket/v1/query.rpc.func.js +44 -0
- package/cosmos/evm/feemarket/v1/query.rpc.react.d.ts +22 -0
- package/cosmos/evm/feemarket/v1/query.rpc.react.js +35 -0
- package/cosmos/evm/feemarket/v1/tx.d.ts +118 -0
- package/cosmos/evm/feemarket/v1/tx.js +177 -0
- package/cosmos/evm/feemarket/v1/tx.registry.d.ts +23 -0
- package/cosmos/evm/feemarket/v1/tx.registry.js +31 -0
- package/cosmos/evm/feemarket/v1/tx.rpc.func.d.ts +10 -0
- package/cosmos/evm/feemarket/v1/tx.rpc.func.js +16 -0
- package/cosmos/evm/feemarket/v1/tx.rpc.react.d.ts +10 -0
- package/cosmos/evm/feemarket/v1/tx.rpc.react.js +16 -0
- package/cosmos/evm/vm/v1/events.d.ts +286 -0
- package/cosmos/evm/vm/v1/events.js +435 -0
- package/cosmos/evm/vm/v1/evm.d.ts +1090 -0
- package/cosmos/evm/vm/v1/evm.js +1617 -0
- package/cosmos/evm/vm/v1/genesis.d.ts +143 -0
- package/cosmos/evm/vm/v1/genesis.js +227 -0
- package/cosmos/evm/vm/v1/query.d.ts +1773 -0
- package/cosmos/evm/vm/v1/query.js +2680 -0
- package/cosmos/evm/vm/v1/query.rpc.func.d.ts +108 -0
- package/cosmos/evm/vm/v1/query.rpc.func.js +196 -0
- package/cosmos/evm/vm/v1/query.rpc.react.d.ts +108 -0
- package/cosmos/evm/vm/v1/query.rpc.react.js +153 -0
- package/cosmos/evm/vm/v1/tx.d.ts +747 -0
- package/cosmos/evm/vm/v1/tx.js +1132 -0
- package/cosmos/{crisis/v1beta1 → evm/vm/v1}/tx.registry.d.ts +7 -7
- package/cosmos/{crisis/v1beta1 → evm/vm/v1}/tx.registry.js +12 -12
- package/cosmos/evm/vm/v1/tx.rpc.func.d.ts +17 -0
- package/cosmos/evm/vm/v1/tx.rpc.func.js +25 -0
- package/cosmos/evm/vm/v1/tx.rpc.react.d.ts +17 -0
- package/cosmos/evm/vm/v1/tx.rpc.react.js +25 -0
- package/cosmos/feegrant/module/v1/module.d.ts +18 -2
- package/cosmos/feegrant/module/v1/module.js +6 -0
- package/cosmos/feegrant/v1beta1/feegrant.d.ts +118 -22
- package/cosmos/feegrant/v1beta1/feegrant.js +38 -0
- package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
- package/cosmos/feegrant/v1beta1/genesis.js +10 -0
- package/cosmos/feegrant/v1beta1/query.d.ts +154 -26
- package/cosmos/feegrant/v1beta1/query.js +56 -0
- package/cosmos/feegrant/v1beta1/query.rpc.func.d.ts +23 -4
- package/cosmos/feegrant/v1beta1/query.rpc.func.js +24 -10
- package/cosmos/feegrant/v1beta1/query.rpc.react.d.ts +20 -0
- package/cosmos/feegrant/v1beta1/query.rpc.react.js +23 -3
- package/cosmos/feegrant/v1beta1/tx.d.ts +135 -19
- package/cosmos/feegrant/v1beta1/tx.js +44 -0
- package/cosmos/feegrant/v1beta1/tx.registry.d.ts +45 -0
- package/cosmos/feegrant/v1beta1/tx.registry.js +63 -1
- package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +25 -4
- package/cosmos/feegrant/v1beta1/tx.rpc.func.js +29 -23
- package/cosmos/feegrant/v1beta1/tx.rpc.react.d.ts +25 -3
- package/cosmos/feegrant/v1beta1/tx.rpc.react.js +25 -3
- package/cosmos/gov/module/v1/module.d.ts +24 -4
- package/cosmos/gov/module/v1/module.js +6 -0
- package/cosmos/gov/v1/genesis.d.ts +48 -16
- package/cosmos/gov/v1/genesis.js +10 -0
- package/cosmos/gov/v1/gov.d.ts +343 -80
- package/cosmos/gov/v1/gov.js +77 -0
- package/cosmos/gov/v1/query.d.ts +469 -88
- package/cosmos/gov/v1/query.js +143 -0
- package/cosmos/gov/v1/query.rpc.func.d.ts +63 -10
- package/cosmos/gov/v1/query.rpc.func.js +64 -28
- package/cosmos/gov/v1/query.rpc.react.d.ts +54 -0
- package/cosmos/gov/v1/query.rpc.react.js +63 -9
- package/cosmos/gov/v1/tx.d.ts +377 -67
- package/cosmos/gov/v1/tx.js +111 -3
- package/cosmos/gov/v1/tx.registry.d.ts +93 -0
- package/cosmos/gov/v1/tx.registry.js +135 -1
- package/cosmos/gov/v1/tx.rpc.func.d.ts +55 -8
- package/cosmos/gov/v1/tx.rpc.func.js +63 -51
- package/cosmos/gov/v1/tx.rpc.react.d.ts +55 -7
- package/cosmos/gov/v1/tx.rpc.react.js +55 -7
- package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
- package/cosmos/gov/v1beta1/genesis.js +10 -0
- package/cosmos/gov/v1beta1/gov.d.ts +294 -63
- package/cosmos/gov/v1beta1/gov.js +74 -3
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +131 -0
- package/cosmos/gov/v1beta1/query.rpc.func.d.ts +56 -9
- package/cosmos/gov/v1beta1/query.rpc.func.js +57 -25
- package/cosmos/gov/v1beta1/query.rpc.react.d.ts +48 -0
- package/cosmos/gov/v1beta1/query.rpc.react.js +56 -8
- package/cosmos/gov/v1beta1/tx.d.ts +214 -39
- package/cosmos/gov/v1beta1/tx.js +62 -3
- package/cosmos/gov/v1beta1/tx.registry.d.ts +57 -0
- package/cosmos/gov/v1beta1/tx.registry.js +81 -1
- package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +30 -5
- package/cosmos/gov/v1beta1/tx.rpc.func.js +35 -30
- package/cosmos/gov/v1beta1/tx.rpc.react.d.ts +30 -4
- package/cosmos/gov/v1beta1/tx.rpc.react.js +30 -4
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +169 -0
- package/cosmos/mint/module/v1/module.d.ts +24 -4
- package/cosmos/mint/module/v1/module.js +6 -0
- package/cosmos/mint/v1beta1/genesis.d.ts +30 -6
- package/cosmos/mint/v1beta1/genesis.js +10 -0
- package/cosmos/mint/v1beta1/mint.d.ts +84 -20
- package/cosmos/mint/v1beta1/mint.js +12 -0
- package/cosmos/mint/v1beta1/query.d.ts +111 -12
- package/cosmos/mint/v1beta1/query.js +43 -0
- package/cosmos/mint/v1beta1/query.rpc.func.d.ts +21 -4
- package/cosmos/mint/v1beta1/query.rpc.func.js +22 -10
- package/cosmos/mint/v1beta1/query.rpc.react.d.ts +18 -0
- package/cosmos/mint/v1beta1/query.rpc.react.js +21 -3
- package/cosmos/mint/v1beta1/tx.d.ts +35 -2
- package/cosmos/mint/v1beta1/tx.js +21 -0
- package/cosmos/mint/v1beta1/tx.registry.d.ts +21 -0
- package/cosmos/mint/v1beta1/tx.registry.js +27 -1
- package/cosmos/mint/v1beta1/tx.rpc.func.d.ts +10 -2
- package/cosmos/mint/v1beta1/tx.rpc.func.js +12 -9
- package/cosmos/mint/v1beta1/tx.rpc.react.d.ts +10 -1
- package/cosmos/mint/v1beta1/tx.rpc.react.js +10 -1
- package/cosmos/params/module/v1/module.d.ts +18 -2
- package/cosmos/params/module/v1/module.js +6 -0
- package/cosmos/params/v1beta1/params.d.ts +31 -2
- package/cosmos/params/v1beta1/params.js +16 -0
- package/cosmos/params/v1beta1/query.d.ts +99 -10
- package/cosmos/params/v1beta1/query.js +46 -0
- package/cosmos/params/v1beta1/query.rpc.func.d.ts +17 -3
- package/cosmos/params/v1beta1/query.rpc.func.js +18 -7
- package/cosmos/params/v1beta1/query.rpc.react.d.ts +15 -0
- package/cosmos/params/v1beta1/query.rpc.react.js +17 -2
- package/cosmos/slashing/module/v1/module.d.ts +24 -4
- package/cosmos/slashing/module/v1/module.js +6 -0
- package/cosmos/slashing/v1beta1/genesis.d.ts +109 -20
- package/cosmos/slashing/v1beta1/genesis.js +35 -0
- package/cosmos/slashing/v1beta1/query.d.ts +106 -10
- package/cosmos/slashing/v1beta1/query.js +53 -0
- package/cosmos/slashing/v1beta1/query.rpc.func.d.ts +21 -4
- package/cosmos/slashing/v1beta1/query.rpc.func.js +22 -10
- package/cosmos/slashing/v1beta1/query.rpc.react.d.ts +18 -0
- package/cosmos/slashing/v1beta1/query.rpc.react.js +21 -3
- package/cosmos/slashing/v1beta1/slashing.d.ts +43 -6
- package/cosmos/slashing/v1beta1/slashing.js +13 -0
- package/cosmos/slashing/v1beta1/tx.d.ts +71 -6
- package/cosmos/slashing/v1beta1/tx.js +33 -0
- package/cosmos/slashing/v1beta1/tx.registry.d.ts +33 -0
- package/cosmos/slashing/v1beta1/tx.registry.js +45 -1
- package/cosmos/slashing/v1beta1/tx.rpc.func.d.ts +19 -3
- package/cosmos/slashing/v1beta1/tx.rpc.func.js +22 -16
- package/cosmos/slashing/v1beta1/tx.rpc.react.d.ts +19 -2
- package/cosmos/slashing/v1beta1/tx.rpc.react.js +19 -2
- package/cosmos/staking/module/v1/module.d.ts +36 -8
- package/cosmos/staking/module/v1/module.js +6 -0
- package/cosmos/staking/v1beta1/authz.d.ts +44 -6
- package/cosmos/staking/v1beta1/authz.js +17 -0
- package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
- package/cosmos/staking/v1beta1/genesis.js +16 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +250 -0
- package/cosmos/staking/v1beta1/query.rpc.func.d.ts +123 -15
- package/cosmos/staking/v1beta1/query.rpc.func.js +124 -43
- package/cosmos/staking/v1beta1/query.rpc.react.d.ts +109 -0
- package/cosmos/staking/v1beta1/query.rpc.react.js +123 -14
- package/cosmos/staking/v1beta1/staking.d.ts +631 -117
- package/cosmos/staking/v1beta1/staking.js +186 -0
- package/cosmos/staking/v1beta1/tx.d.ts +242 -22
- package/cosmos/staking/v1beta1/tx.js +120 -0
- package/cosmos/staking/v1beta1/tx.registry.d.ts +93 -0
- package/cosmos/staking/v1beta1/tx.registry.js +135 -1
- package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +57 -8
- package/cosmos/staking/v1beta1/tx.rpc.func.js +65 -51
- package/cosmos/staking/v1beta1/tx.rpc.react.d.ts +57 -7
- package/cosmos/staking/v1beta1/tx.rpc.react.js +57 -7
- package/cosmos/tx/config/v1/config.d.ts +18 -2
- package/cosmos/tx/config/v1/config.js +6 -0
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +46 -0
- package/cosmos/tx/v1beta1/service.d.ts +375 -46
- package/cosmos/tx/v1beta1/service.js +176 -0
- package/cosmos/tx/v1beta1/service.rpc.func.d.ts +73 -10
- package/cosmos/tx/v1beta1/service.rpc.func.js +74 -28
- package/cosmos/tx/v1beta1/service.rpc.react.d.ts +67 -3
- package/cosmos/tx/v1beta1/service.rpc.react.js +77 -13
- package/cosmos/tx/v1beta1/tx.d.ts +303 -46
- package/cosmos/tx/v1beta1/tx.js +127 -0
- package/cosmos/upgrade/module/v1/module.d.ts +24 -4
- package/cosmos/upgrade/module/v1/module.js +6 -0
- package/cosmos/upgrade/v1beta1/query.d.ts +172 -14
- package/cosmos/upgrade/v1beta1/query.js +85 -0
- package/cosmos/upgrade/v1beta1/query.rpc.func.d.ts +45 -6
- package/cosmos/upgrade/v1beta1/query.rpc.func.js +46 -16
- package/cosmos/upgrade/v1beta1/query.rpc.react.d.ts +40 -0
- package/cosmos/upgrade/v1beta1/query.rpc.react.js +45 -5
- package/cosmos/upgrade/v1beta1/tx.d.ts +74 -6
- package/cosmos/upgrade/v1beta1/tx.js +36 -0
- package/cosmos/upgrade/v1beta1/tx.registry.d.ts +33 -0
- package/cosmos/upgrade/v1beta1/tx.registry.js +45 -1
- package/cosmos/upgrade/v1beta1/tx.rpc.func.d.ts +19 -3
- package/cosmos/upgrade/v1beta1/tx.rpc.func.js +22 -16
- package/cosmos/upgrade/v1beta1/tx.rpc.react.d.ts +19 -2
- package/cosmos/upgrade/v1beta1/tx.rpc.react.js +19 -2
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
- package/cosmos/upgrade/v1beta1/upgrade.js +40 -0
- package/cosmos_proto/bundle.d.ts +1 -0
- package/cosmos_proto/bundle.js +8 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/cosmwasm/bundle.d.ts +12 -0
- package/cosmwasm/bundle.js +174 -0
- package/cosmwasm/wasm/v1/authz.d.ts +212 -22
- package/cosmwasm/wasm/v1/authz.js +113 -0
- package/cosmwasm/wasm/v1/genesis.d.ts +78 -10
- package/cosmwasm/wasm/v1/genesis.js +34 -0
- package/cosmwasm/wasm/v1/ibc.d.ts +84 -12
- package/cosmwasm/wasm/v1/ibc.js +24 -0
- package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
- package/cosmwasm/wasm/v1/proposal_legacy.js +166 -0
- package/cosmwasm/wasm/v1/query.d.ts +761 -76
- package/cosmwasm/wasm/v1/query.js +581 -1
- package/cosmwasm/wasm/v1/query.rpc.func.d.ts +100 -14
- package/cosmwasm/wasm/v1/query.rpc.func.js +112 -37
- package/cosmwasm/wasm/v1/query.rpc.react.d.ts +88 -1
- package/cosmwasm/wasm/v1/query.rpc.react.js +106 -13
- package/cosmwasm/wasm/v1/tx.d.ts +956 -170
- package/cosmwasm/wasm/v1/tx.js +267 -0
- package/cosmwasm/wasm/v1/tx.registry.d.ts +213 -0
- package/cosmwasm/wasm/v1/tx.registry.js +315 -1
- package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +145 -18
- package/cosmwasm/wasm/v1/tx.rpc.func.js +180 -138
- package/cosmwasm/wasm/v1/tx.rpc.react.d.ts +145 -17
- package/cosmwasm/wasm/v1/tx.rpc.react.js +161 -33
- package/cosmwasm/wasm/v1/types.d.ts +217 -40
- package/cosmwasm/wasm/v1/types.js +58 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/app/runtime/v1alpha1/module.js +17 -0
- package/esm/cosmos/app/v1alpha1/config.js +31 -0
- package/esm/cosmos/app/v1alpha1/module.js +23 -0
- package/esm/cosmos/app/v1alpha1/query.js +16 -0
- package/esm/cosmos/app/v1alpha1/query.rpc.func.js +7 -2
- package/esm/cosmos/app/v1alpha1/query.rpc.react.js +8 -2
- package/esm/cosmos/auth/module/v1/module.js +16 -0
- package/esm/cosmos/auth/v1beta1/auth.js +34 -0
- package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
- package/esm/cosmos/auth/v1beta1/query.js +169 -0
- package/esm/cosmos/auth/v1beta1/query.rpc.func.js +87 -20
- package/esm/cosmos/auth/v1beta1/query.rpc.react.js +88 -11
- package/esm/cosmos/auth/v1beta1/tx.js +21 -0
- package/esm/cosmos/auth/v1beta1/tx.registry.js +26 -0
- package/esm/cosmos/auth/v1beta1/tx.rpc.func.js +11 -7
- package/esm/cosmos/auth/v1beta1/tx.rpc.react.js +11 -2
- package/esm/cosmos/authz/module/v1/module.js +6 -0
- package/esm/cosmos/authz/v1beta1/authz.js +36 -0
- package/esm/cosmos/authz/v1beta1/event.js +12 -0
- package/esm/cosmos/authz/v1beta1/genesis.js +10 -0
- package/esm/cosmos/authz/v1beta1/query.js +55 -0
- package/esm/cosmos/authz/v1beta1/query.rpc.func.js +25 -6
- package/esm/cosmos/authz/v1beta1/query.rpc.react.js +26 -4
- package/esm/cosmos/authz/v1beta1/tx.js +43 -0
- package/esm/cosmos/authz/v1beta1/tx.registry.js +62 -0
- package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +30 -19
- package/esm/cosmos/authz/v1beta1/tx.rpc.react.js +28 -4
- package/esm/cosmos/autocli/v1/options.js +54 -0
- package/esm/cosmos/autocli/v1/query.js +21 -0
- package/esm/cosmos/autocli/v1/query.rpc.func.js +7 -2
- package/esm/cosmos/autocli/v1/query.rpc.react.js +8 -2
- package/esm/cosmos/bank/module/v1/module.js +6 -0
- package/esm/cosmos/bank/v1beta1/authz.js +12 -0
- package/esm/cosmos/bank/v1beta1/bank.js +63 -0
- package/esm/cosmos/bank/v1beta1/genesis.js +20 -0
- package/esm/cosmos/bank/v1beta1/query.js +263 -0
- package/esm/cosmos/bank/v1beta1/query.rpc.func.js +128 -26
- package/esm/cosmos/bank/v1beta1/query.rpc.react.js +129 -14
- package/esm/cosmos/bank/v1beta1/tx.js +74 -0
- package/esm/cosmos/bank/v1beta1/tx.registry.js +80 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +40 -25
- package/esm/cosmos/bank/v1beta1/tx.rpc.react.js +37 -5
- package/esm/cosmos/base/abci/v1beta1/abci.js +92 -0
- package/esm/cosmos/base/node/v1beta1/query.js +24 -0
- package/esm/cosmos/base/node/v1beta1/query.rpc.func.js +14 -4
- package/esm/cosmos/base/node/v1beta1/query.rpc.react.js +15 -3
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/reflection/v1beta1/reflection.js +26 -0
- package/esm/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +16 -4
- package/esm/cosmos/base/reflection/v1beta1/reflection.rpc.react.js +17 -3
- package/esm/cosmos/base/reflection/v2alpha1/reflection.js +203 -0
- package/esm/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +44 -12
- package/esm/cosmos/base/reflection/v2alpha1/reflection.rpc.react.js +45 -7
- package/esm/cosmos/base/tendermint/v1beta1/query.js +154 -0
- package/esm/cosmos/base/tendermint/v1beta1/query.rpc.func.js +53 -14
- package/esm/cosmos/base/tendermint/v1beta1/query.rpc.react.js +54 -8
- package/esm/cosmos/base/tendermint/v1beta1/types.js +20 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/bundle.js +188 -0
- package/esm/cosmos/consensus/module/v1/module.js +6 -0
- package/esm/cosmos/consensus/v1/query.js +16 -0
- package/esm/cosmos/consensus/v1/query.rpc.func.js +7 -2
- package/esm/cosmos/consensus/v1/query.rpc.react.js +8 -2
- package/esm/cosmos/consensus/v1/tx.js +17 -0
- package/esm/cosmos/consensus/v1/tx.registry.js +26 -0
- package/esm/cosmos/consensus/v1/tx.rpc.func.js +11 -7
- package/esm/cosmos/consensus/v1/tx.rpc.react.js +11 -2
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/distribution/module/v1/module.js +6 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +132 -0
- package/esm/cosmos/distribution/v1beta1/genesis.js +74 -0
- package/esm/cosmos/distribution/v1beta1/query.js +164 -0
- package/esm/cosmos/distribution/v1beta1/query.rpc.func.js +71 -20
- package/esm/cosmos/distribution/v1beta1/query.rpc.react.js +72 -11
- package/esm/cosmos/distribution/v1beta1/tx.js +128 -0
- package/esm/cosmos/distribution/v1beta1/tx.registry.js +134 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +71 -43
- package/esm/cosmos/distribution/v1beta1/tx.rpc.react.js +65 -8
- package/esm/cosmos/evidence/module/v1/module.js +6 -0
- package/esm/cosmos/evidence/v1beta1/evidence.js +7 -0
- package/esm/cosmos/evidence/v1beta1/genesis.js +6 -0
- package/esm/cosmos/evidence/v1beta1/query.js +33 -0
- package/esm/cosmos/evidence/v1beta1/query.rpc.func.js +14 -4
- package/esm/cosmos/evidence/v1beta1/query.rpc.react.js +15 -3
- package/esm/cosmos/evidence/v1beta1/tx.js +13 -0
- package/esm/cosmos/evidence/v1beta1/tx.registry.js +26 -0
- package/esm/cosmos/evidence/v1beta1/tx.rpc.func.js +9 -7
- package/esm/cosmos/evidence/v1beta1/tx.rpc.react.js +9 -2
- package/esm/cosmos/evm/feemarket/v1/events.js +179 -0
- package/esm/cosmos/evm/feemarket/v1/feemarket.js +157 -0
- package/esm/cosmos/evm/feemarket/v1/genesis.js +103 -0
- package/esm/cosmos/evm/feemarket/v1/query.js +470 -0
- package/esm/cosmos/evm/feemarket/v1/query.rpc.func.js +41 -0
- package/esm/cosmos/evm/feemarket/v1/query.rpc.react.js +32 -0
- package/esm/cosmos/evm/feemarket/v1/tx.js +174 -0
- package/esm/cosmos/evm/feemarket/v1/tx.registry.js +28 -0
- package/esm/cosmos/evm/feemarket/v1/tx.rpc.func.js +13 -0
- package/esm/cosmos/evm/feemarket/v1/tx.rpc.react.js +13 -0
- package/esm/cosmos/evm/vm/v1/events.js +432 -0
- package/esm/cosmos/evm/vm/v1/evm.js +1612 -0
- package/esm/cosmos/evm/vm/v1/genesis.js +224 -0
- package/esm/cosmos/evm/vm/v1/query.js +2677 -0
- package/esm/cosmos/evm/vm/v1/query.rpc.func.js +193 -0
- package/esm/cosmos/evm/vm/v1/query.rpc.react.js +150 -0
- package/esm/cosmos/evm/vm/v1/tx.js +1129 -0
- package/esm/cosmos/evm/vm/v1/tx.registry.js +46 -0
- package/esm/cosmos/evm/vm/v1/tx.rpc.func.js +22 -0
- package/esm/cosmos/evm/vm/v1/tx.rpc.react.js +22 -0
- package/esm/cosmos/feegrant/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/feegrant.js +38 -0
- package/esm/cosmos/feegrant/v1beta1/genesis.js +10 -0
- package/esm/cosmos/feegrant/v1beta1/query.js +56 -0
- package/esm/cosmos/feegrant/v1beta1/query.rpc.func.js +23 -6
- package/esm/cosmos/feegrant/v1beta1/query.rpc.react.js +24 -4
- package/esm/cosmos/feegrant/v1beta1/tx.js +44 -0
- package/esm/cosmos/feegrant/v1beta1/tx.registry.js +62 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +28 -19
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.react.js +26 -4
- package/esm/cosmos/gov/module/v1/module.js +6 -0
- package/esm/cosmos/gov/v1/genesis.js +10 -0
- package/esm/cosmos/gov/v1/gov.js +77 -0
- package/esm/cosmos/gov/v1/query.js +143 -0
- package/esm/cosmos/gov/v1/query.rpc.func.js +63 -18
- package/esm/cosmos/gov/v1/query.rpc.react.js +64 -10
- package/esm/cosmos/gov/v1/tx.js +111 -3
- package/esm/cosmos/gov/v1/tx.registry.js +134 -0
- package/esm/cosmos/gov/v1/tx.rpc.func.js +62 -43
- package/esm/cosmos/gov/v1/tx.rpc.react.js +56 -8
- package/esm/cosmos/gov/v1beta1/genesis.js +10 -0
- package/esm/cosmos/gov/v1beta1/gov.js +74 -3
- package/esm/cosmos/gov/v1beta1/query.js +131 -0
- package/esm/cosmos/gov/v1beta1/query.rpc.func.js +56 -16
- package/esm/cosmos/gov/v1beta1/query.rpc.react.js +57 -9
- package/esm/cosmos/gov/v1beta1/tx.js +62 -3
- package/esm/cosmos/gov/v1beta1/tx.registry.js +80 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +34 -25
- package/esm/cosmos/gov/v1beta1/tx.rpc.react.js +31 -5
- package/esm/cosmos/ics23/v1/proofs.js +169 -0
- package/esm/cosmos/mint/module/v1/module.js +6 -0
- package/esm/cosmos/mint/v1beta1/genesis.js +10 -0
- package/esm/cosmos/mint/v1beta1/mint.js +12 -0
- package/esm/cosmos/mint/v1beta1/query.js +43 -0
- package/esm/cosmos/mint/v1beta1/query.rpc.func.js +21 -6
- package/esm/cosmos/mint/v1beta1/query.rpc.react.js +22 -4
- package/esm/cosmos/mint/v1beta1/tx.js +21 -0
- package/esm/cosmos/mint/v1beta1/tx.registry.js +26 -0
- package/esm/cosmos/mint/v1beta1/tx.rpc.func.js +11 -7
- package/esm/cosmos/mint/v1beta1/tx.rpc.react.js +11 -2
- package/esm/cosmos/params/module/v1/module.js +6 -0
- package/esm/cosmos/params/v1beta1/params.js +16 -0
- package/esm/cosmos/params/v1beta1/query.js +46 -0
- package/esm/cosmos/params/v1beta1/query.rpc.func.js +17 -4
- package/esm/cosmos/params/v1beta1/query.rpc.react.js +18 -3
- package/esm/cosmos/slashing/module/v1/module.js +6 -0
- package/esm/cosmos/slashing/v1beta1/genesis.js +35 -0
- package/esm/cosmos/slashing/v1beta1/query.js +53 -0
- package/esm/cosmos/slashing/v1beta1/query.rpc.func.js +21 -6
- package/esm/cosmos/slashing/v1beta1/query.rpc.react.js +22 -4
- package/esm/cosmos/slashing/v1beta1/slashing.js +13 -0
- package/esm/cosmos/slashing/v1beta1/tx.js +33 -0
- package/esm/cosmos/slashing/v1beta1/tx.registry.js +44 -0
- package/esm/cosmos/slashing/v1beta1/tx.rpc.func.js +21 -13
- package/esm/cosmos/slashing/v1beta1/tx.rpc.react.js +20 -3
- package/esm/cosmos/staking/module/v1/module.js +6 -0
- package/esm/cosmos/staking/v1beta1/authz.js +17 -0
- package/esm/cosmos/staking/v1beta1/genesis.js +16 -0
- package/esm/cosmos/staking/v1beta1/query.js +250 -0
- package/esm/cosmos/staking/v1beta1/query.rpc.func.js +123 -28
- package/esm/cosmos/staking/v1beta1/query.rpc.react.js +124 -15
- package/esm/cosmos/staking/v1beta1/staking.js +186 -0
- package/esm/cosmos/staking/v1beta1/tx.js +120 -0
- package/esm/cosmos/staking/v1beta1/tx.registry.js +134 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +64 -43
- package/esm/cosmos/staking/v1beta1/tx.rpc.react.js +58 -8
- package/esm/cosmos/tx/config/v1/config.js +6 -0
- package/esm/cosmos/tx/signing/v1beta1/signing.js +46 -0
- package/esm/cosmos/tx/v1beta1/service.js +176 -0
- package/esm/cosmos/tx/v1beta1/service.rpc.func.js +73 -18
- package/esm/cosmos/tx/v1beta1/service.rpc.react.js +77 -13
- package/esm/cosmos/tx/v1beta1/tx.js +127 -0
- package/esm/cosmos/upgrade/module/v1/module.js +6 -0
- package/esm/cosmos/upgrade/v1beta1/query.js +85 -0
- package/esm/cosmos/upgrade/v1beta1/query.rpc.func.js +45 -10
- package/esm/cosmos/upgrade/v1beta1/query.rpc.react.js +46 -6
- package/esm/cosmos/upgrade/v1beta1/tx.js +36 -0
- package/esm/cosmos/upgrade/v1beta1/tx.registry.js +44 -0
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.func.js +21 -13
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.react.js +20 -3
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +40 -0
- package/esm/cosmos_proto/bundle.js +1 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/cosmwasm/bundle.js +12 -0
- package/esm/cosmwasm/wasm/v1/authz.js +113 -0
- package/esm/cosmwasm/wasm/v1/genesis.js +34 -0
- package/esm/cosmwasm/wasm/v1/ibc.js +24 -0
- package/esm/cosmwasm/wasm/v1/proposal_legacy.js +166 -0
- package/esm/cosmwasm/wasm/v1/query.js +580 -0
- package/esm/cosmwasm/wasm/v1/query.rpc.func.js +112 -25
- package/esm/cosmwasm/wasm/v1/query.rpc.react.js +106 -13
- package/esm/cosmwasm/wasm/v1/tx.js +267 -0
- package/esm/cosmwasm/wasm/v1/tx.registry.js +314 -0
- package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +178 -119
- package/esm/cosmwasm/wasm/v1/tx.rpc.react.js +162 -34
- package/esm/cosmwasm/wasm/v1/types.js +58 -0
- package/esm/ethermint/bundle.js +25 -0
- package/esm/ethermint/crypto/v1/ethsecp256k1/keys.js +15 -0
- package/esm/ethermint/evm/v1/events.js +24 -0
- package/esm/ethermint/evm/v1/evm.js +69 -0
- package/esm/ethermint/evm/v1/genesis.js +21 -0
- package/esm/ethermint/evm/v1/query.js +167 -0
- package/esm/ethermint/evm/v1/query.rpc.func.js +87 -24
- package/esm/ethermint/evm/v1/query.rpc.react.js +88 -13
- package/esm/ethermint/evm/v1/tx.js +66 -0
- package/esm/ethermint/evm/v1/tx.registry.js +44 -0
- package/esm/ethermint/evm/v1/tx.rpc.func.js +17 -13
- package/esm/ethermint/evm/v1/tx.rpc.react.js +16 -3
- package/esm/ethermint/feemarket/v1/events.js +12 -0
- package/esm/ethermint/feemarket/v1/feemarket.js +6 -0
- package/esm/ethermint/feemarket/v1/genesis.js +10 -0
- package/esm/ethermint/feemarket/v1/query.js +42 -0
- package/esm/ethermint/feemarket/v1/query.rpc.func.js +21 -6
- package/esm/ethermint/feemarket/v1/query.rpc.react.js +22 -4
- package/esm/ethermint/feemarket/v1/tx.js +17 -0
- package/esm/ethermint/feemarket/v1/tx.registry.js +26 -0
- package/esm/ethermint/feemarket/v1/tx.rpc.func.js +9 -7
- package/esm/ethermint/feemarket/v1/tx.rpc.react.js +9 -2
- package/esm/ethermint/types/v1/account.js +10 -0
- package/esm/ethermint/types/v1/dynamic_fee.js +6 -0
- package/esm/ethermint/types/v1/indexer.js +6 -0
- package/esm/ethermint/types/v1/web3.js +7 -0
- package/esm/extern.js +14 -4
- package/esm/google/api/http.js +290 -0
- package/esm/google/bundle.js +5 -0
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +553 -11
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helper-func-types.js +14 -22
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +28 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +14 -4
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.js +15 -3
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +43 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +62 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +24 -19
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.js +22 -4
- package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +41 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.js +16 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +7 -2
- package/esm/ibc/applications/interchain_accounts/host/v1/query.rpc.react.js +8 -2
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +31 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.registry.js +44 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +16 -13
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.js +15 -3
- package/esm/ibc/applications/interchain_accounts/v1/account.js +9 -0
- package/esm/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/esm/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/esm/ibc/applications/transfer/v1/authz.js +19 -0
- package/esm/ibc/applications/transfer/v1/denomtrace.js +98 -0
- package/esm/ibc/applications/transfer/v1/genesis.js +24 -13
- package/esm/ibc/applications/transfer/{v2 → v1}/packet.js +10 -2
- package/esm/ibc/applications/transfer/v1/query.js +270 -175
- package/esm/ibc/applications/transfer/v1/query.rpc.func.js +55 -25
- package/esm/ibc/applications/transfer/v1/query.rpc.react.js +49 -13
- package/esm/ibc/applications/transfer/v1/token.js +300 -0
- package/esm/ibc/applications/transfer/v1/transfer.js +9 -89
- package/esm/ibc/applications/transfer/v1/tx.js +49 -3
- package/esm/ibc/applications/transfer/v1/tx.registry.js +44 -0
- package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +16 -13
- package/esm/ibc/applications/transfer/v1/tx.rpc.react.js +15 -3
- package/esm/ibc/bundle.js +94 -0
- package/esm/ibc/core/channel/v1/channel.js +84 -124
- package/esm/ibc/core/channel/v1/genesis.js +21 -17
- package/esm/ibc/core/channel/v1/query.js +252 -530
- package/esm/ibc/core/channel/v1/query.rpc.func.js +107 -53
- package/esm/ibc/core/channel/v1/query.rpc.react.js +107 -27
- package/esm/ibc/core/channel/v1/tx.js +164 -1970
- package/esm/ibc/core/channel/v1/tx.registry.js +190 -2
- package/esm/ibc/core/channel/v1/tx.rpc.func.js +91 -134
- package/esm/ibc/core/channel/v1/tx.rpc.react.js +81 -47
- package/esm/ibc/core/channel/v2/genesis.js +360 -0
- package/esm/ibc/core/channel/v2/packet.js +508 -0
- package/esm/ibc/core/channel/v2/query.js +1727 -0
- package/esm/ibc/core/channel/v2/query.rpc.func.js +106 -0
- package/esm/ibc/core/channel/v2/query.rpc.react.js +82 -0
- package/esm/ibc/core/channel/v2/tx.js +901 -0
- package/esm/ibc/core/channel/v2/tx.registry.js +82 -0
- package/esm/ibc/core/channel/v2/tx.rpc.func.js +38 -0
- package/esm/ibc/core/channel/v2/tx.rpc.react.js +38 -0
- package/esm/ibc/core/client/v1/client.js +50 -235
- package/esm/ibc/core/client/v1/genesis.js +27 -0
- package/esm/ibc/core/client/v1/query.js +355 -16
- package/esm/ibc/core/client/v1/query.rpc.func.js +86 -21
- package/esm/ibc/core/client/v1/query.rpc.react.js +83 -11
- package/esm/ibc/core/client/v1/tx.js +279 -7
- package/esm/ibc/core/client/v1/tx.registry.js +154 -2
- package/esm/ibc/core/client/v1/tx.rpc.func.js +72 -50
- package/esm/ibc/core/client/v1/tx.rpc.react.js +59 -8
- package/esm/ibc/core/client/v2/config.js +90 -0
- package/esm/ibc/core/client/v2/counterparty.js +100 -0
- package/esm/ibc/core/client/v2/genesis.js +194 -0
- package/esm/ibc/core/client/v2/query.js +348 -0
- package/esm/ibc/core/client/v2/query.rpc.func.js +28 -0
- package/esm/ibc/core/client/v2/query.rpc.react.js +22 -0
- package/esm/ibc/core/client/v2/tx.js +378 -0
- package/esm/ibc/core/client/v2/tx.registry.js +46 -0
- package/esm/ibc/core/client/v2/tx.rpc.func.js +20 -0
- package/esm/ibc/core/client/v2/tx.rpc.react.js +20 -0
- package/esm/ibc/core/commitment/v1/commitment.js +29 -80
- package/esm/ibc/core/commitment/v2/commitment.js +118 -0
- package/esm/ibc/core/connection/v1/connection.js +57 -0
- package/esm/ibc/core/connection/v1/genesis.js +10 -0
- package/esm/ibc/core/connection/v1/query.js +105 -0
- package/esm/ibc/core/connection/v1/query.rpc.func.js +45 -12
- package/esm/ibc/core/connection/v1/query.rpc.react.js +46 -7
- package/esm/ibc/core/connection/v1/tx.js +82 -0
- package/esm/ibc/core/connection/v1/tx.registry.js +98 -0
- package/esm/ibc/core/connection/v1/tx.rpc.func.js +42 -31
- package/esm/ibc/core/connection/v1/tx.rpc.react.js +38 -6
- package/esm/ibc/core/types/v1/genesis.js +41 -3
- package/esm/ibc/lightclients/solomachine/v2/solomachine.js +122 -0
- package/esm/ibc/lightclients/solomachine/v3/solomachine.js +61 -0
- package/esm/ibc/lightclients/tendermint/v1/tendermint.js +57 -0
- package/esm/ibc/lightclients/wasm/v1/genesis.js +16 -0
- package/esm/ibc/lightclients/wasm/v1/query.js +31 -0
- package/esm/ibc/lightclients/wasm/v1/query.rpc.func.js +14 -4
- package/esm/ibc/lightclients/wasm/v1/query.rpc.react.js +15 -3
- package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/esm/ibc/lightclients/wasm/v1/tx.registry.js +62 -0
- package/esm/ibc/lightclients/wasm/v1/tx.rpc.func.js +24 -19
- package/esm/ibc/lightclients/wasm/v1/tx.rpc.react.js +22 -4
- package/esm/ibc/lightclients/wasm/v1/wasm.js +32 -0
- package/esm/index.js +21 -0
- package/esm/react-query.js +4 -6
- package/esm/registry.js +9 -1
- package/esm/tendermint/abci/types.js +322 -0
- package/esm/tendermint/bundle.js +10 -0
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +36 -0
- package/esm/tendermint/p2p/types.js +24 -0
- package/esm/tendermint/types/block.js +9 -0
- package/esm/tendermint/types/evidence.js +35 -0
- package/esm/tendermint/types/params.js +50 -0
- package/esm/tendermint/types/types.js +121 -0
- package/esm/tendermint/types/validator.js +25 -0
- package/esm/tendermint/version/types.js +16 -0
- package/esm/types.js +1 -1
- package/esm/utf8.js +1 -1
- package/esm/varint.js +1 -1
- package/esm/xpla/bundle.js +28 -0
- package/esm/xpla/burn/v1beta1/burn.js +111 -0
- package/esm/{cosmos/genutil → xpla/burn}/v1beta1/genesis.js +26 -23
- package/esm/xpla/burn/v1beta1/query.js +327 -0
- package/esm/xpla/burn/v1beta1/query.rpc.func.js +28 -0
- package/esm/xpla/burn/v1beta1/query.rpc.react.js +22 -0
- package/esm/xpla/burn/v1beta1/tx.js +169 -0
- package/esm/xpla/burn/v1beta1/tx.registry.js +28 -0
- package/esm/xpla/burn/v1beta1/tx.rpc.func.js +11 -0
- package/esm/xpla/burn/v1beta1/tx.rpc.react.js +11 -0
- package/esm/xpla/reward/v1beta1/genesis.js +10 -0
- package/esm/xpla/reward/v1beta1/query.js +33 -0
- package/esm/xpla/reward/v1beta1/query.rpc.func.js +14 -4
- package/esm/xpla/reward/v1beta1/query.rpc.react.js +15 -3
- package/esm/xpla/reward/v1beta1/reward.js +6 -0
- package/esm/xpla/reward/v1beta1/tx.js +35 -0
- package/esm/xpla/reward/v1beta1/tx.registry.js +44 -0
- package/esm/xpla/reward/v1beta1/tx.rpc.func.js +19 -13
- package/esm/xpla/reward/v1beta1/tx.rpc.react.js +18 -3
- package/esm/xpla/volunteer/v1beta1/genesis.js +10 -0
- package/esm/xpla/volunteer/v1beta1/proposal.js +34 -0
- package/esm/xpla/volunteer/v1beta1/query.js +12 -0
- package/esm/xpla/volunteer/v1beta1/query.rpc.func.js +7 -2
- package/esm/xpla/volunteer/v1beta1/query.rpc.react.js +8 -2
- package/esm/xpla/volunteer/v1beta1/tx.js +31 -0
- package/esm/xpla/volunteer/v1beta1/tx.registry.js +44 -0
- package/esm/xpla/volunteer/v1beta1/tx.rpc.func.js +17 -13
- package/esm/xpla/volunteer/v1beta1/tx.rpc.react.js +16 -3
- package/esm/xpla/volunteer/v1beta1/volunteervalidator.js +6 -0
- package/ethermint/bundle.d.ts +25 -0
- package/ethermint/bundle.js +142 -0
- package/ethermint/crypto/v1/ethsecp256k1/keys.d.ts +39 -4
- package/ethermint/crypto/v1/ethsecp256k1/keys.js +15 -0
- package/ethermint/evm/v1/events.d.ts +144 -32
- package/ethermint/evm/v1/events.js +24 -0
- package/ethermint/evm/v1/evm.d.ts +434 -110
- package/ethermint/evm/v1/evm.js +69 -0
- package/ethermint/evm/v1/genesis.d.ts +62 -12
- package/ethermint/evm/v1/genesis.js +21 -0
- package/ethermint/evm/v1/query.d.ts +673 -126
- package/ethermint/evm/v1/query.js +167 -0
- package/ethermint/evm/v1/query.rpc.func.d.ts +87 -13
- package/ethermint/evm/v1/query.rpc.func.js +88 -37
- package/ethermint/evm/v1/query.rpc.react.d.ts +75 -0
- package/ethermint/evm/v1/query.rpc.react.js +87 -12
- package/ethermint/evm/v1/tx.d.ts +363 -88
- package/ethermint/evm/v1/tx.js +66 -0
- package/ethermint/evm/v1/tx.registry.d.ts +33 -0
- package/ethermint/evm/v1/tx.registry.js +45 -1
- package/ethermint/evm/v1/tx.rpc.func.d.ts +15 -3
- package/ethermint/evm/v1/tx.rpc.func.js +18 -16
- package/ethermint/evm/v1/tx.rpc.react.d.ts +15 -2
- package/ethermint/evm/v1/tx.rpc.react.js +15 -2
- package/ethermint/feemarket/v1/events.d.ts +54 -10
- package/ethermint/feemarket/v1/events.js +12 -0
- package/ethermint/feemarket/v1/feemarket.d.ts +42 -10
- package/ethermint/feemarket/v1/feemarket.js +6 -0
- package/ethermint/feemarket/v1/genesis.d.ts +24 -4
- package/ethermint/feemarket/v1/genesis.js +10 -0
- package/ethermint/feemarket/v1/query.d.ts +116 -14
- package/ethermint/feemarket/v1/query.js +42 -0
- package/ethermint/feemarket/v1/query.rpc.func.d.ts +21 -4
- package/ethermint/feemarket/v1/query.rpc.func.js +22 -10
- package/ethermint/feemarket/v1/query.rpc.react.d.ts +18 -0
- package/ethermint/feemarket/v1/query.rpc.react.js +21 -3
- package/ethermint/feemarket/v1/tx.d.ts +37 -4
- package/ethermint/feemarket/v1/tx.js +17 -0
- package/ethermint/feemarket/v1/tx.registry.d.ts +21 -0
- package/ethermint/feemarket/v1/tx.registry.js +27 -1
- package/ethermint/feemarket/v1/tx.rpc.func.d.ts +8 -2
- package/ethermint/feemarket/v1/tx.rpc.func.js +10 -9
- package/ethermint/feemarket/v1/tx.rpc.react.d.ts +8 -1
- package/ethermint/feemarket/v1/tx.rpc.react.js +8 -1
- package/ethermint/types/v1/account.d.ts +25 -4
- package/ethermint/types/v1/account.js +10 -0
- package/ethermint/types/v1/dynamic_fee.d.ts +24 -4
- package/ethermint/types/v1/dynamic_fee.js +6 -0
- package/ethermint/types/v1/indexer.d.ts +42 -10
- package/ethermint/types/v1/indexer.js +6 -0
- package/ethermint/types/v1/web3.d.ts +13 -0
- package/ethermint/types/v1/web3.js +7 -0
- package/extern.d.ts +3 -2
- package/extern.js +14 -4
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +290 -0
- package/google/bundle.d.ts +5 -0
- package/google/bundle.js +21 -0
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +833 -86
- package/google/protobuf/descriptor.js +561 -13
- package/google/protobuf/duration.d.ts +69 -0
- package/google/protobuf/duration.js +63 -0
- package/google/protobuf/timestamp.d.ts +100 -0
- package/google/protobuf/timestamp.js +94 -0
- package/helper-func-types.d.ts +7 -87
- package/helper-func-types.js +15 -24
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +19 -2
- package/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +78 -10
- package/ibc/applications/interchain_accounts/controller/v1/query.js +28 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.d.ts +14 -3
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +15 -7
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.d.ts +12 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.js +14 -2
- package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
- package/ibc/applications/interchain_accounts/controller/v1/tx.js +43 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.registry.d.ts +45 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +63 -1
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.d.ts +21 -4
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +25 -23
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.d.ts +21 -3
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.js +21 -3
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +41 -0
- package/ibc/applications/interchain_accounts/host/v1/host.d.ts +38 -4
- package/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/ibc/applications/interchain_accounts/host/v1/query.d.ts +42 -6
- package/ibc/applications/interchain_accounts/host/v1/query.js +16 -0
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.d.ts +7 -2
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +8 -4
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.react.d.ts +6 -0
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.react.js +7 -1
- package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
- package/ibc/applications/interchain_accounts/host/v1/tx.js +31 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.registry.d.ts +33 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.registry.js +45 -1
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.d.ts +14 -3
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +17 -16
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.d.ts +14 -2
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.js +14 -2
- package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
- package/ibc/applications/interchain_accounts/v1/account.js +9 -0
- package/ibc/applications/interchain_accounts/v1/metadata.d.ts +43 -10
- package/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/ibc/applications/interchain_accounts/v1/packet.d.ts +36 -4
- package/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/ibc/applications/transfer/v1/authz.d.ts +61 -12
- package/ibc/applications/transfer/v1/authz.js +19 -0
- package/ibc/applications/transfer/v1/denomtrace.d.ts +73 -0
- package/ibc/applications/transfer/v1/denomtrace.js +101 -0
- package/ibc/applications/transfer/v1/genesis.d.ts +22 -5
- package/ibc/applications/transfer/v1/genesis.js +23 -12
- package/ibc/applications/transfer/{v2 → v1}/packet.d.ts +45 -11
- package/ibc/applications/transfer/{v2 → v1}/packet.js +10 -2
- package/ibc/applications/transfer/v1/query.d.ts +389 -170
- package/ibc/applications/transfer/v1/query.js +270 -175
- package/ibc/applications/transfer/v1/query.rpc.func.d.ts +43 -8
- package/ibc/applications/transfer/v1/query.rpc.func.js +55 -31
- package/ibc/applications/transfer/v1/query.rpc.react.d.ts +39 -3
- package/ibc/applications/transfer/v1/query.rpc.react.js +49 -13
- package/ibc/applications/transfer/v1/token.d.ts +179 -0
- package/ibc/applications/transfer/v1/token.js +303 -0
- package/ibc/applications/transfer/v1/transfer.d.ts +15 -51
- package/ibc/applications/transfer/v1/transfer.js +10 -90
- package/ibc/applications/transfer/v1/tx.d.ts +127 -24
- package/ibc/applications/transfer/v1/tx.js +49 -3
- package/ibc/applications/transfer/v1/tx.registry.d.ts +33 -0
- package/ibc/applications/transfer/v1/tx.registry.js +45 -1
- package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +14 -3
- package/ibc/applications/transfer/v1/tx.rpc.func.js +17 -16
- package/ibc/applications/transfer/v1/tx.rpc.react.d.ts +14 -2
- package/ibc/applications/transfer/v1/tx.rpc.react.js +14 -2
- package/ibc/bundle.d.ts +94 -0
- package/ibc/bundle.js +540 -0
- package/ibc/core/channel/v1/channel.d.ts +293 -120
- package/ibc/core/channel/v1/channel.js +85 -125
- package/ibc/core/channel/v1/genesis.d.ts +38 -7
- package/ibc/core/channel/v1/genesis.js +20 -16
- package/ibc/core/channel/v1/query.d.ts +840 -378
- package/ibc/core/channel/v1/query.js +252 -530
- package/ibc/core/channel/v1/query.rpc.func.d.ts +107 -19
- package/ibc/core/channel/v1/query.rpc.func.js +107 -70
- package/ibc/core/channel/v1/query.rpc.react.d.ts +93 -4
- package/ibc/core/channel/v1/query.rpc.react.js +107 -27
- package/ibc/core/channel/v1/tx.d.ts +335 -747
- package/ibc/core/channel/v1/tx.js +164 -1970
- package/ibc/core/channel/v1/tx.registry.d.ts +129 -0
- package/ibc/core/channel/v1/tx.registry.js +190 -2
- package/ibc/core/channel/v1/tx.rpc.func.d.ts +72 -21
- package/ibc/core/channel/v1/tx.rpc.func.js +91 -153
- package/ibc/core/channel/v1/tx.rpc.react.d.ts +72 -20
- package/ibc/core/channel/v1/tx.rpc.react.js +81 -47
- package/ibc/core/channel/v2/genesis.d.ts +202 -0
- package/ibc/core/channel/v2/genesis.js +363 -0
- package/ibc/core/channel/v2/packet.d.ts +322 -0
- package/ibc/core/channel/v2/packet.js +513 -0
- package/ibc/core/channel/v2/query.d.ts +1067 -0
- package/ibc/core/channel/v2/query.js +1730 -0
- package/ibc/core/channel/v2/query.rpc.func.d.ts +57 -0
- package/ibc/core/channel/v2/query.rpc.func.js +109 -0
- package/ibc/core/channel/v2/query.rpc.react.d.ts +57 -0
- package/ibc/core/channel/v2/query.rpc.react.js +85 -0
- package/ibc/core/channel/v2/tx.d.ts +437 -0
- package/ibc/core/channel/v2/tx.js +906 -0
- package/ibc/core/channel/v2/tx.registry.d.ts +59 -0
- package/ibc/core/channel/v2/tx.registry.js +85 -0
- package/ibc/core/channel/v2/tx.rpc.func.d.ts +29 -0
- package/ibc/core/channel/v2/tx.rpc.func.js +41 -0
- package/ibc/core/channel/v2/tx.rpc.react.d.ts +29 -0
- package/ibc/core/channel/v2/tx.rpc.react.js +41 -0
- package/ibc/core/client/v1/client.d.ts +133 -153
- package/ibc/core/client/v1/client.js +51 -236
- package/ibc/core/client/v1/genesis.d.ts +86 -20
- package/ibc/core/client/v1/genesis.js +27 -0
- package/ibc/core/client/v1/query.d.ts +591 -75
- package/ibc/core/client/v1/query.js +356 -17
- package/ibc/core/client/v1/query.rpc.func.d.ts +80 -12
- package/ibc/core/client/v1/query.rpc.func.js +86 -31
- package/ibc/core/client/v1/query.rpc.react.d.ts +70 -1
- package/ibc/core/client/v1/query.rpc.react.js +83 -11
- package/ibc/core/client/v1/tx.d.ts +454 -60
- package/ibc/core/client/v1/tx.js +280 -8
- package/ibc/core/client/v1/tx.registry.d.ts +105 -0
- package/ibc/core/client/v1/tx.registry.js +154 -2
- package/ibc/core/client/v1/tx.rpc.func.d.ts +57 -9
- package/ibc/core/client/v1/tx.rpc.func.js +73 -58
- package/ibc/core/client/v1/tx.rpc.react.d.ts +57 -8
- package/ibc/core/client/v1/tx.rpc.react.js +59 -8
- package/ibc/core/client/v2/config.d.ts +66 -0
- package/ibc/core/client/v2/config.js +93 -0
- package/ibc/core/client/v2/counterparty.d.ts +65 -0
- package/ibc/core/client/v2/counterparty.js +103 -0
- package/ibc/core/client/v2/genesis.d.ts +121 -0
- package/ibc/core/client/v2/genesis.js +197 -0
- package/ibc/core/client/v2/query.d.ts +218 -0
- package/ibc/core/client/v2/query.js +351 -0
- package/ibc/core/client/v2/query.rpc.func.d.ts +15 -0
- package/ibc/core/client/v2/query.rpc.func.js +31 -0
- package/ibc/core/client/v2/query.rpc.react.d.ts +15 -0
- package/ibc/core/client/v2/query.rpc.react.js +25 -0
- package/ibc/core/client/v2/tx.d.ts +251 -0
- package/ibc/core/client/v2/tx.js +381 -0
- package/ibc/core/client/v2/tx.registry.d.ts +35 -0
- package/ibc/core/client/v2/tx.registry.js +49 -0
- package/ibc/core/client/v2/tx.rpc.func.d.ts +15 -0
- package/ibc/core/client/v2/tx.rpc.func.js +23 -0
- package/ibc/core/client/v2/tx.rpc.react.d.ts +15 -0
- package/ibc/core/client/v2/tx.rpc.react.js +23 -0
- package/ibc/core/commitment/v1/commitment.d.ts +43 -41
- package/ibc/core/commitment/v1/commitment.js +30 -81
- package/ibc/core/commitment/v2/commitment.d.ts +141 -0
- package/ibc/core/commitment/v2/commitment.js +121 -0
- package/ibc/core/connection/v1/connection.d.ts +199 -38
- package/ibc/core/connection/v1/connection.js +57 -0
- package/ibc/core/connection/v1/genesis.d.ts +24 -4
- package/ibc/core/connection/v1/genesis.js +10 -0
- package/ibc/core/connection/v1/query.d.ts +293 -46
- package/ibc/core/connection/v1/query.js +105 -0
- package/ibc/core/connection/v1/query.rpc.func.d.ts +45 -7
- package/ibc/core/connection/v1/query.rpc.func.js +46 -19
- package/ibc/core/connection/v1/query.rpc.react.d.ts +39 -0
- package/ibc/core/connection/v1/query.rpc.react.js +45 -6
- package/ibc/core/connection/v1/tx.d.ts +254 -32
- package/ibc/core/connection/v1/tx.js +82 -0
- package/ibc/core/connection/v1/tx.registry.d.ts +69 -0
- package/ibc/core/connection/v1/tx.registry.js +99 -1
- package/ibc/core/connection/v1/tx.rpc.func.d.ts +37 -6
- package/ibc/core/connection/v1/tx.rpc.func.js +43 -37
- package/ibc/core/connection/v1/tx.rpc.react.d.ts +37 -5
- package/ibc/core/connection/v1/tx.rpc.react.js +37 -5
- package/ibc/core/types/v1/genesis.d.ts +56 -8
- package/ibc/core/types/v1/genesis.js +41 -3
- package/ibc/lightclients/solomachine/v2/solomachine.d.ts +279 -26
- package/ibc/lightclients/solomachine/v2/solomachine.js +122 -0
- package/ibc/lightclients/solomachine/v3/solomachine.d.ts +182 -28
- package/ibc/lightclients/solomachine/v3/solomachine.js +61 -0
- package/ibc/lightclients/tendermint/v1/tendermint.d.ts +142 -28
- package/ibc/lightclients/tendermint/v1/tendermint.js +57 -0
- package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
- package/ibc/lightclients/wasm/v1/genesis.js +16 -0
- package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
- package/ibc/lightclients/wasm/v1/query.js +31 -0
- package/ibc/lightclients/wasm/v1/query.rpc.func.d.ts +14 -3
- package/ibc/lightclients/wasm/v1/query.rpc.func.js +15 -7
- package/ibc/lightclients/wasm/v1/query.rpc.react.d.ts +12 -0
- package/ibc/lightclients/wasm/v1/query.rpc.react.js +14 -2
- package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
- package/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/ibc/lightclients/wasm/v1/tx.registry.d.ts +45 -0
- package/ibc/lightclients/wasm/v1/tx.registry.js +63 -1
- package/ibc/lightclients/wasm/v1/tx.rpc.func.d.ts +21 -4
- package/ibc/lightclients/wasm/v1/tx.rpc.func.js +25 -23
- package/ibc/lightclients/wasm/v1/tx.rpc.react.d.ts +21 -3
- package/ibc/lightclients/wasm/v1/tx.rpc.react.js +21 -3
- package/ibc/lightclients/wasm/v1/wasm.d.ts +72 -8
- package/ibc/lightclients/wasm/v1/wasm.js +32 -0
- package/index.d.ts +21 -0
- package/index.js +37 -0
- package/package.json +8 -9
- package/react-query.d.ts +8 -6
- package/react-query.js +5 -7
- package/registry.d.ts +3 -1
- package/registry.js +9 -1
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +322 -0
- package/tendermint/bundle.d.ts +10 -0
- package/tendermint/bundle.js +115 -0
- package/tendermint/crypto/keys.d.ts +18 -2
- package/tendermint/crypto/keys.js +6 -0
- package/tendermint/crypto/proof.d.ts +89 -6
- package/tendermint/crypto/proof.js +36 -0
- package/tendermint/p2p/types.d.ts +60 -0
- package/tendermint/p2p/types.js +24 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +9 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +35 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +50 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +121 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +25 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +4 -49
- package/types.js +1 -1
- package/utf8.d.ts +1 -1
- package/utf8.js +1 -1
- package/varint.d.ts +1 -1
- package/varint.js +1 -1
- package/xpla/bundle.d.ts +28 -0
- package/xpla/bundle.js +71 -0
- package/xpla/burn/v1beta1/burn.d.ts +54 -0
- package/xpla/burn/v1beta1/burn.js +114 -0
- package/{cosmos/crisis → xpla/burn}/v1beta1/genesis.d.ts +26 -13
- package/{cosmos/genutil → xpla/burn}/v1beta1/genesis.js +26 -23
- package/xpla/burn/v1beta1/query.d.ts +204 -0
- package/xpla/burn/v1beta1/query.js +330 -0
- package/xpla/burn/v1beta1/query.rpc.func.d.ts +15 -0
- package/xpla/burn/v1beta1/query.rpc.func.js +31 -0
- package/xpla/burn/v1beta1/query.rpc.react.d.ts +15 -0
- package/xpla/burn/v1beta1/query.rpc.react.js +25 -0
- package/xpla/burn/v1beta1/tx.d.ts +105 -0
- package/xpla/burn/v1beta1/tx.js +172 -0
- package/{cosmos/nft → xpla/burn}/v1beta1/tx.registry.d.ts +6 -6
- package/{cosmos/nft → xpla/burn}/v1beta1/tx.registry.js +9 -9
- package/xpla/burn/v1beta1/tx.rpc.func.d.ts +8 -0
- package/xpla/burn/v1beta1/tx.rpc.func.js +14 -0
- package/xpla/burn/v1beta1/tx.rpc.react.d.ts +8 -0
- package/xpla/burn/v1beta1/tx.rpc.react.js +14 -0
- package/xpla/reward/v1beta1/genesis.d.ts +24 -4
- package/xpla/reward/v1beta1/genesis.js +10 -0
- package/xpla/reward/v1beta1/query.d.ts +74 -8
- package/xpla/reward/v1beta1/query.js +33 -0
- package/xpla/reward/v1beta1/query.rpc.func.d.ts +14 -3
- package/xpla/reward/v1beta1/query.rpc.func.js +15 -7
- package/xpla/reward/v1beta1/query.rpc.react.d.ts +12 -0
- package/xpla/reward/v1beta1/query.rpc.react.js +14 -2
- package/xpla/reward/v1beta1/reward.d.ts +18 -2
- package/xpla/reward/v1beta1/reward.js +6 -0
- package/xpla/reward/v1beta1/tx.d.ts +64 -4
- package/xpla/reward/v1beta1/tx.js +35 -0
- package/xpla/reward/v1beta1/tx.registry.d.ts +33 -0
- package/xpla/reward/v1beta1/tx.registry.js +45 -1
- package/xpla/reward/v1beta1/tx.rpc.func.d.ts +17 -3
- package/xpla/reward/v1beta1/tx.rpc.func.js +20 -16
- package/xpla/reward/v1beta1/tx.rpc.react.d.ts +17 -2
- package/xpla/reward/v1beta1/tx.rpc.react.js +17 -2
- package/xpla/volunteer/v1beta1/genesis.d.ts +18 -2
- package/xpla/volunteer/v1beta1/genesis.js +10 -0
- package/xpla/volunteer/v1beta1/proposal.d.ts +84 -16
- package/xpla/volunteer/v1beta1/proposal.js +34 -0
- package/xpla/volunteer/v1beta1/query.d.ts +36 -4
- package/xpla/volunteer/v1beta1/query.js +12 -0
- package/xpla/volunteer/v1beta1/query.rpc.func.d.ts +7 -2
- package/xpla/volunteer/v1beta1/query.rpc.func.js +8 -4
- package/xpla/volunteer/v1beta1/query.rpc.react.d.ts +6 -0
- package/xpla/volunteer/v1beta1/query.rpc.react.js +7 -1
- package/xpla/volunteer/v1beta1/tx.d.ts +64 -4
- package/xpla/volunteer/v1beta1/tx.js +31 -0
- package/xpla/volunteer/v1beta1/tx.registry.d.ts +33 -0
- package/xpla/volunteer/v1beta1/tx.registry.js +45 -1
- package/xpla/volunteer/v1beta1/tx.rpc.func.d.ts +15 -3
- package/xpla/volunteer/v1beta1/tx.rpc.func.js +18 -16
- package/xpla/volunteer/v1beta1/tx.rpc.react.d.ts +15 -2
- package/xpla/volunteer/v1beta1/tx.rpc.react.js +15 -2
- package/xpla/volunteer/v1beta1/volunteervalidator.d.ts +30 -6
- package/xpla/volunteer/v1beta1/volunteervalidator.js +6 -0
- package/cosmos/app/runtime/v2/module.d.ts +0 -231
- package/cosmos/app/runtime/v2/module.js +0 -421
- package/cosmos/auth/v1beta1/accounts.d.ts +0 -106
- package/cosmos/auth/v1beta1/accounts.js +0 -161
- package/cosmos/base/grpc/v2/service.d.ts +0 -168
- package/cosmos/base/grpc/v2/service.js +0 -394
- package/cosmos/base/grpc/v2/service.rpc.func.d.ts +0 -4
- package/cosmos/base/grpc/v2/service.rpc.func.js +0 -23
- package/cosmos/base/grpc/v2/service.rpc.react.d.ts +0 -3
- package/cosmos/base/grpc/v2/service.rpc.react.js +0 -13
- package/cosmos/circuit/module/v1/module.d.ts +0 -36
- package/cosmos/circuit/module/v1/module.js +0 -83
- package/cosmos/circuit/v1/query.d.ts +0 -200
- package/cosmos/circuit/v1/query.js +0 -480
- package/cosmos/circuit/v1/query.rpc.func.d.ts +0 -8
- package/cosmos/circuit/v1/query.rpc.func.js +0 -42
- package/cosmos/circuit/v1/tx.d.ts +0 -251
- package/cosmos/circuit/v1/tx.js +0 -528
- package/cosmos/circuit/v1/tx.registry.d.ts +0 -47
- package/cosmos/circuit/v1/tx.registry.js +0 -67
- package/cosmos/circuit/v1/tx.rpc.func.d.ts +0 -8
- package/cosmos/circuit/v1/tx.rpc.func.js +0 -37
- package/cosmos/circuit/v1/types.d.ts +0 -151
- package/cosmos/circuit/v1/types.js +0 -350
- package/cosmos/crisis/module/v1/module.d.ts +0 -40
- package/cosmos/crisis/module/v1/module.js +0 -95
- package/cosmos/crisis/v1beta1/genesis.js +0 -84
- package/cosmos/crisis/v1beta1/tx.d.ts +0 -161
- package/cosmos/crisis/v1beta1/tx.js +0 -328
- package/cosmos/crisis/v1beta1/tx.rpc.func.d.ts +0 -6
- package/cosmos/crisis/v1beta1/tx.rpc.func.js +0 -27
- package/cosmos/crypto/ed25519/keys.d.ts +0 -84
- package/cosmos/crypto/ed25519/keys.js +0 -162
- package/cosmos/crypto/hd/v1/hd.d.ts +0 -58
- package/cosmos/crypto/hd/v1/hd.js +0 -131
- package/cosmos/crypto/keyring/v1/record.d.ts +0 -188
- package/cosmos/crypto/keyring/v1/record.js +0 -431
- package/cosmos/crypto/multisig/keys.d.ts +0 -45
- package/cosmos/crypto/multisig/keys.js +0 -99
- package/cosmos/crypto/secp256k1/keys.d.ts +0 -78
- package/cosmos/crypto/secp256k1/keys.js +0 -162
- package/cosmos/crypto/secp256r1/keys.d.ts +0 -76
- package/cosmos/crypto/secp256r1/keys.js +0 -162
- package/cosmos/genutil/module/v1/module.d.ts +0 -32
- package/cosmos/genutil/module/v1/module.js +0 -70
- package/cosmos/genutil/v1beta1/genesis.d.ts +0 -36
- package/cosmos/group/module/v1/module.d.ts +0 -53
- package/cosmos/group/module/v1/module.js +0 -96
- package/cosmos/group/v1/events.d.ts +0 -363
- package/cosmos/group/v1/events.js +0 -847
- package/cosmos/group/v1/genesis.d.ts +0 -83
- package/cosmos/group/v1/genesis.js +0 -183
- package/cosmos/group/v1/query.d.ts +0 -1044
- package/cosmos/group/v1/query.js +0 -2434
- package/cosmos/group/v1/query.rpc.func.d.ts +0 -30
- package/cosmos/group/v1/query.rpc.func.js +0 -174
- package/cosmos/group/v1/tx.d.ts +0 -1140
- package/cosmos/group/v1/tx.js +0 -2567
- package/cosmos/group/v1/tx.registry.d.ts +0 -179
- package/cosmos/group/v1/tx.registry.js +0 -265
- package/cosmos/group/v1/tx.rpc.func.d.ts +0 -30
- package/cosmos/group/v1/tx.rpc.func.js +0 -147
- package/cosmos/group/v1/types.d.ts +0 -799
- package/cosmos/group/v1/types.js +0 -1542
- package/cosmos/msg/textual/v1/textual.d.ts +0 -1
- package/cosmos/msg/textual/v1/textual.js +0 -2
- package/cosmos/nft/module/v1/module.d.ts +0 -32
- package/cosmos/nft/module/v1/module.js +0 -70
- package/cosmos/nft/v1beta1/event.d.ts +0 -132
- package/cosmos/nft/v1beta1/event.js +0 -323
- package/cosmos/nft/v1beta1/genesis.d.ts +0 -79
- package/cosmos/nft/v1beta1/genesis.js +0 -195
- package/cosmos/nft/v1beta1/nft.d.ts +0 -111
- package/cosmos/nft/v1beta1/nft.js +0 -282
- package/cosmos/nft/v1beta1/query.d.ts +0 -508
- package/cosmos/nft/v1beta1/query.js +0 -1189
- package/cosmos/nft/v1beta1/query.rpc.func.d.ts +0 -16
- package/cosmos/nft/v1beta1/query.rpc.func.js +0 -90
- package/cosmos/nft/v1beta1/tx.d.ts +0 -78
- package/cosmos/nft/v1beta1/tx.js +0 -184
- package/cosmos/nft/v1beta1/tx.rpc.func.d.ts +0 -4
- package/cosmos/nft/v1beta1/tx.rpc.func.js +0 -17
- package/cosmos/orm/module/v1alpha1/module.d.ts +0 -40
- package/cosmos/orm/module/v1alpha1/module.js +0 -70
- package/cosmos/orm/query/v1alpha1/query.d.ts +0 -367
- package/cosmos/orm/query/v1alpha1/query.js +0 -751
- package/cosmos/orm/query/v1alpha1/query.rpc.func.d.ts +0 -6
- package/cosmos/orm/query/v1alpha1/query.rpc.func.js +0 -30
- package/cosmos/orm/v1/orm.d.ts +0 -278
- package/cosmos/orm/v1/orm.js +0 -380
- package/cosmos/orm/v1alpha1/schema.d.ts +0 -134
- package/cosmos/orm/v1alpha1/schema.js +0 -258
- package/cosmos/reflection/v1/reflection.d.ts +0 -67
- package/cosmos/reflection/v1/reflection.js +0 -152
- package/cosmos/reflection/v1/reflection.rpc.func.d.ts +0 -4
- package/cosmos/reflection/v1/reflection.rpc.func.js +0 -18
- package/cosmos/store/internal/kv/v1beta1/kv.d.ts +0 -68
- package/cosmos/store/internal/kv/v1beta1/kv.js +0 -177
- package/cosmos/store/snapshots/v1/snapshot.d.ts +0 -294
- package/cosmos/store/snapshots/v1/snapshot.js +0 -687
- package/cosmos/store/snapshots/v2/snapshot.d.ts +0 -254
- package/cosmos/store/snapshots/v2/snapshot.js +0 -687
- package/cosmos/store/streaming/abci/grpc.d.ts +0 -136
- package/cosmos/store/streaming/abci/grpc.js +0 -332
- package/cosmos/store/v1beta1/commit_info.d.ts +0 -124
- package/cosmos/store/v1beta1/commit_info.js +0 -292
- package/cosmos/store/v1beta1/listening.d.ts +0 -101
- package/cosmos/store/v1beta1/listening.js +0 -223
- package/cosmos/streaming/v1/grpc.d.ts +0 -302
- package/cosmos/streaming/v1/grpc.js +0 -826
- package/cosmos/validate/module/v1/module.d.ts +0 -32
- package/cosmos/validate/module/v1/module.js +0 -70
- package/cosmos/vesting/module/v1/module.d.ts +0 -32
- package/cosmos/vesting/module/v1/module.js +0 -70
- package/cosmos/vesting/v1beta1/tx.d.ts +0 -256
- package/cosmos/vesting/v1beta1/tx.js +0 -553
- package/cosmos/vesting/v1beta1/tx.registry.d.ts +0 -47
- package/cosmos/vesting/v1beta1/tx.registry.js +0 -67
- package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +0 -8
- package/cosmos/vesting/v1beta1/tx.rpc.func.js +0 -37
- package/cosmos/vesting/v1beta1/vesting.d.ts +0 -256
- package/cosmos/vesting/v1beta1/vesting.js +0 -586
- package/dist/package.json +0 -50
- package/esm/cosmos/app/runtime/v2/module.js +0 -418
- package/esm/cosmos/auth/v1beta1/accounts.js +0 -158
- package/esm/cosmos/base/grpc/v2/service.js +0 -391
- package/esm/cosmos/base/grpc/v2/service.rpc.func.js +0 -18
- package/esm/cosmos/base/grpc/v2/service.rpc.react.js +0 -10
- package/esm/cosmos/circuit/module/v1/module.js +0 -80
- package/esm/cosmos/circuit/v1/query.js +0 -477
- package/esm/cosmos/circuit/v1/query.rpc.func.js +0 -36
- package/esm/cosmos/circuit/v1/tx.js +0 -525
- package/esm/cosmos/circuit/v1/tx.registry.js +0 -64
- package/esm/cosmos/circuit/v1/tx.rpc.func.js +0 -31
- package/esm/cosmos/circuit/v1/types.js +0 -345
- package/esm/cosmos/crisis/module/v1/module.js +0 -92
- package/esm/cosmos/crisis/v1beta1/genesis.js +0 -81
- package/esm/cosmos/crisis/v1beta1/tx.js +0 -325
- package/esm/cosmos/crisis/v1beta1/tx.registry.js +0 -46
- package/esm/cosmos/crisis/v1beta1/tx.rpc.func.js +0 -22
- package/esm/cosmos/crypto/ed25519/keys.js +0 -159
- package/esm/cosmos/crypto/hd/v1/hd.js +0 -128
- package/esm/cosmos/crypto/keyring/v1/record.js +0 -428
- package/esm/cosmos/crypto/multisig/keys.js +0 -96
- package/esm/cosmos/crypto/secp256k1/keys.js +0 -159
- package/esm/cosmos/crypto/secp256r1/keys.js +0 -159
- package/esm/cosmos/genutil/module/v1/module.js +0 -67
- package/esm/cosmos/group/module/v1/module.js +0 -93
- package/esm/cosmos/group/v1/events.js +0 -844
- package/esm/cosmos/group/v1/genesis.js +0 -180
- package/esm/cosmos/group/v1/query.js +0 -2431
- package/esm/cosmos/group/v1/query.rpc.func.js +0 -157
- package/esm/cosmos/group/v1/tx.js +0 -2562
- package/esm/cosmos/group/v1/tx.registry.js +0 -262
- package/esm/cosmos/group/v1/tx.rpc.func.js +0 -130
- package/esm/cosmos/group/v1/types.js +0 -1533
- package/esm/cosmos/msg/textual/v1/textual.js +0 -1
- package/esm/cosmos/nft/module/v1/module.js +0 -67
- package/esm/cosmos/nft/v1beta1/event.js +0 -320
- package/esm/cosmos/nft/v1beta1/genesis.js +0 -192
- package/esm/cosmos/nft/v1beta1/nft.js +0 -279
- package/esm/cosmos/nft/v1beta1/query.js +0 -1186
- package/esm/cosmos/nft/v1beta1/query.rpc.func.js +0 -80
- package/esm/cosmos/nft/v1beta1/tx.js +0 -181
- package/esm/cosmos/nft/v1beta1/tx.registry.js +0 -28
- package/esm/cosmos/nft/v1beta1/tx.rpc.func.js +0 -13
- package/esm/cosmos/orm/module/v1alpha1/module.js +0 -67
- package/esm/cosmos/orm/query/v1alpha1/query.js +0 -748
- package/esm/cosmos/orm/query/v1alpha1/query.rpc.func.js +0 -25
- package/esm/cosmos/orm/v1/orm.js +0 -377
- package/esm/cosmos/orm/v1alpha1/schema.js +0 -253
- package/esm/cosmos/reflection/v1/reflection.js +0 -149
- package/esm/cosmos/reflection/v1/reflection.rpc.func.js +0 -14
- package/esm/cosmos/store/internal/kv/v1beta1/kv.js +0 -174
- package/esm/cosmos/store/snapshots/v1/snapshot.js +0 -684
- package/esm/cosmos/store/snapshots/v2/snapshot.js +0 -684
- package/esm/cosmos/store/streaming/abci/grpc.js +0 -329
- package/esm/cosmos/store/v1beta1/commit_info.js +0 -289
- package/esm/cosmos/store/v1beta1/listening.js +0 -220
- package/esm/cosmos/streaming/v1/grpc.js +0 -823
- package/esm/cosmos/validate/module/v1/module.js +0 -67
- package/esm/cosmos/vesting/module/v1/module.js +0 -67
- package/esm/cosmos/vesting/v1beta1/tx.js +0 -550
- package/esm/cosmos/vesting/v1beta1/tx.registry.js +0 -64
- package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +0 -31
- package/esm/cosmos/vesting/v1beta1/vesting.js +0 -583
- package/esm/ibc/applications/fee/v1/ack.js +0 -103
- package/esm/ibc/applications/fee/v1/fee.js +0 -398
- package/esm/ibc/applications/fee/v1/genesis.js +0 -531
- package/esm/ibc/applications/fee/v1/metadata.js +0 -90
- package/esm/ibc/applications/fee/v1/query.js +0 -1739
- package/esm/ibc/applications/fee/v1/query.rpc.func.js +0 -82
- package/esm/ibc/applications/fee/v1/query.rpc.react.js +0 -42
- package/esm/ibc/applications/fee/v1/tx.js +0 -707
- package/esm/ibc/applications/fee/v1/tx.registry.js +0 -2
- package/esm/ibc/applications/fee/v1/tx.rpc.func.js +0 -31
- package/esm/ibc/applications/fee/v1/tx.rpc.react.js +0 -14
- package/esm/ibc/core/channel/v1/upgrade.js +0 -300
- package/esm/ibc/lightclients/localhost/v2/localhost.js +0 -81
- package/ibc/applications/fee/v1/ack.d.ts +0 -45
- package/ibc/applications/fee/v1/ack.js +0 -106
- package/ibc/applications/fee/v1/fee.d.ts +0 -164
- package/ibc/applications/fee/v1/fee.js +0 -401
- package/ibc/applications/fee/v1/genesis.d.ts +0 -225
- package/ibc/applications/fee/v1/genesis.js +0 -534
- package/ibc/applications/fee/v1/metadata.d.ts +0 -47
- package/ibc/applications/fee/v1/metadata.js +0 -93
- package/ibc/applications/fee/v1/query.d.ts +0 -757
- package/ibc/applications/fee/v1/query.js +0 -1742
- package/ibc/applications/fee/v1/query.rpc.func.d.ts +0 -12
- package/ibc/applications/fee/v1/query.rpc.func.js +0 -95
- package/ibc/applications/fee/v1/query.rpc.react.d.ts +0 -11
- package/ibc/applications/fee/v1/query.rpc.react.js +0 -45
- package/ibc/applications/fee/v1/tx.d.ts +0 -326
- package/ibc/applications/fee/v1/tx.js +0 -710
- package/ibc/applications/fee/v1/tx.registry.d.ts +0 -2
- package/ibc/applications/fee/v1/tx.registry.js +0 -5
- package/ibc/applications/fee/v1/tx.rpc.func.d.ts +0 -6
- package/ibc/applications/fee/v1/tx.rpc.func.js +0 -38
- package/ibc/applications/fee/v1/tx.rpc.react.d.ts +0 -5
- package/ibc/applications/fee/v1/tx.rpc.react.js +0 -17
- package/ibc/core/channel/v1/upgrade.d.ts +0 -142
- package/ibc/core/channel/v1/upgrade.js +0 -303
- package/ibc/lightclients/localhost/v2/localhost.d.ts +0 -38
- package/ibc/lightclients/localhost/v2/localhost.js +0 -84
|
@@ -1,15 +1,20 @@
|
|
|
1
1
|
import { PageRequest, PageRequestAmino, PageResponse, PageResponseAmino } from "../../../../cosmos/base/query/v1beta1/pagination";
|
|
2
2
|
import { Height, HeightAmino, IdentifiedClientState, IdentifiedClientStateAmino, ConsensusStateWithHeight, ConsensusStateWithHeightAmino, Params, ParamsAmino } from "./client";
|
|
3
|
-
import { MerklePath, MerklePathAmino } from "../../commitment/
|
|
3
|
+
import { MerklePath, MerklePathAmino } from "../../commitment/v2/commitment";
|
|
4
4
|
import { Any, AnyAmino } from "../../../../google/protobuf/any";
|
|
5
5
|
import { BinaryReader, BinaryWriter } from "../../../../binary";
|
|
6
6
|
import { DeepPartial } from "../../../../helpers";
|
|
7
7
|
/**
|
|
8
8
|
* QueryClientStateRequest is the request type for the Query/ClientState RPC
|
|
9
9
|
* method
|
|
10
|
+
* @name QueryClientStateRequest
|
|
11
|
+
* @package ibc.core.client.v1
|
|
12
|
+
* @see proto type: ibc.core.client.v1.QueryClientStateRequest
|
|
10
13
|
*/
|
|
11
14
|
export interface QueryClientStateRequest {
|
|
12
|
-
/**
|
|
15
|
+
/**
|
|
16
|
+
* client state unique identifier
|
|
17
|
+
*/
|
|
13
18
|
clientId: string;
|
|
14
19
|
}
|
|
15
20
|
export interface QueryClientStateRequestProtoMsg {
|
|
@@ -19,9 +24,14 @@ export interface QueryClientStateRequestProtoMsg {
|
|
|
19
24
|
/**
|
|
20
25
|
* QueryClientStateRequest is the request type for the Query/ClientState RPC
|
|
21
26
|
* method
|
|
27
|
+
* @name QueryClientStateRequestAmino
|
|
28
|
+
* @package ibc.core.client.v1
|
|
29
|
+
* @see proto type: ibc.core.client.v1.QueryClientStateRequest
|
|
22
30
|
*/
|
|
23
31
|
export interface QueryClientStateRequestAmino {
|
|
24
|
-
/**
|
|
32
|
+
/**
|
|
33
|
+
* client state unique identifier
|
|
34
|
+
*/
|
|
25
35
|
client_id: string;
|
|
26
36
|
}
|
|
27
37
|
export interface QueryClientStateRequestAminoMsg {
|
|
@@ -32,13 +42,22 @@ export interface QueryClientStateRequestAminoMsg {
|
|
|
32
42
|
* QueryClientStateResponse is the response type for the Query/ClientState RPC
|
|
33
43
|
* method. Besides the client state, it includes a proof and the height from
|
|
34
44
|
* which the proof was retrieved.
|
|
45
|
+
* @name QueryClientStateResponse
|
|
46
|
+
* @package ibc.core.client.v1
|
|
47
|
+
* @see proto type: ibc.core.client.v1.QueryClientStateResponse
|
|
35
48
|
*/
|
|
36
49
|
export interface QueryClientStateResponse {
|
|
37
|
-
/**
|
|
50
|
+
/**
|
|
51
|
+
* client state associated with the request identifier
|
|
52
|
+
*/
|
|
38
53
|
clientState?: Any;
|
|
39
|
-
/**
|
|
54
|
+
/**
|
|
55
|
+
* merkle proof of existence
|
|
56
|
+
*/
|
|
40
57
|
proof: Uint8Array;
|
|
41
|
-
/**
|
|
58
|
+
/**
|
|
59
|
+
* height at which the proof was retrieved
|
|
60
|
+
*/
|
|
42
61
|
proofHeight: Height;
|
|
43
62
|
}
|
|
44
63
|
export interface QueryClientStateResponseProtoMsg {
|
|
@@ -49,13 +68,22 @@ export interface QueryClientStateResponseProtoMsg {
|
|
|
49
68
|
* QueryClientStateResponse is the response type for the Query/ClientState RPC
|
|
50
69
|
* method. Besides the client state, it includes a proof and the height from
|
|
51
70
|
* which the proof was retrieved.
|
|
71
|
+
* @name QueryClientStateResponseAmino
|
|
72
|
+
* @package ibc.core.client.v1
|
|
73
|
+
* @see proto type: ibc.core.client.v1.QueryClientStateResponse
|
|
52
74
|
*/
|
|
53
75
|
export interface QueryClientStateResponseAmino {
|
|
54
|
-
/**
|
|
76
|
+
/**
|
|
77
|
+
* client state associated with the request identifier
|
|
78
|
+
*/
|
|
55
79
|
client_state?: AnyAmino;
|
|
56
|
-
/**
|
|
80
|
+
/**
|
|
81
|
+
* merkle proof of existence
|
|
82
|
+
*/
|
|
57
83
|
proof: string;
|
|
58
|
-
/**
|
|
84
|
+
/**
|
|
85
|
+
* height at which the proof was retrieved
|
|
86
|
+
*/
|
|
59
87
|
proof_height: HeightAmino;
|
|
60
88
|
}
|
|
61
89
|
export interface QueryClientStateResponseAminoMsg {
|
|
@@ -65,9 +93,14 @@ export interface QueryClientStateResponseAminoMsg {
|
|
|
65
93
|
/**
|
|
66
94
|
* QueryClientStatesRequest is the request type for the Query/ClientStates RPC
|
|
67
95
|
* method
|
|
96
|
+
* @name QueryClientStatesRequest
|
|
97
|
+
* @package ibc.core.client.v1
|
|
98
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatesRequest
|
|
68
99
|
*/
|
|
69
100
|
export interface QueryClientStatesRequest {
|
|
70
|
-
/**
|
|
101
|
+
/**
|
|
102
|
+
* pagination request
|
|
103
|
+
*/
|
|
71
104
|
pagination?: PageRequest;
|
|
72
105
|
}
|
|
73
106
|
export interface QueryClientStatesRequestProtoMsg {
|
|
@@ -77,9 +110,14 @@ export interface QueryClientStatesRequestProtoMsg {
|
|
|
77
110
|
/**
|
|
78
111
|
* QueryClientStatesRequest is the request type for the Query/ClientStates RPC
|
|
79
112
|
* method
|
|
113
|
+
* @name QueryClientStatesRequestAmino
|
|
114
|
+
* @package ibc.core.client.v1
|
|
115
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatesRequest
|
|
80
116
|
*/
|
|
81
117
|
export interface QueryClientStatesRequestAmino {
|
|
82
|
-
/**
|
|
118
|
+
/**
|
|
119
|
+
* pagination request
|
|
120
|
+
*/
|
|
83
121
|
pagination?: PageRequestAmino;
|
|
84
122
|
}
|
|
85
123
|
export interface QueryClientStatesRequestAminoMsg {
|
|
@@ -89,11 +127,18 @@ export interface QueryClientStatesRequestAminoMsg {
|
|
|
89
127
|
/**
|
|
90
128
|
* QueryClientStatesResponse is the response type for the Query/ClientStates RPC
|
|
91
129
|
* method.
|
|
130
|
+
* @name QueryClientStatesResponse
|
|
131
|
+
* @package ibc.core.client.v1
|
|
132
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatesResponse
|
|
92
133
|
*/
|
|
93
134
|
export interface QueryClientStatesResponse {
|
|
94
|
-
/**
|
|
135
|
+
/**
|
|
136
|
+
* list of stored ClientStates of the chain.
|
|
137
|
+
*/
|
|
95
138
|
clientStates: IdentifiedClientState[];
|
|
96
|
-
/**
|
|
139
|
+
/**
|
|
140
|
+
* pagination response
|
|
141
|
+
*/
|
|
97
142
|
pagination?: PageResponse;
|
|
98
143
|
}
|
|
99
144
|
export interface QueryClientStatesResponseProtoMsg {
|
|
@@ -103,11 +148,18 @@ export interface QueryClientStatesResponseProtoMsg {
|
|
|
103
148
|
/**
|
|
104
149
|
* QueryClientStatesResponse is the response type for the Query/ClientStates RPC
|
|
105
150
|
* method.
|
|
151
|
+
* @name QueryClientStatesResponseAmino
|
|
152
|
+
* @package ibc.core.client.v1
|
|
153
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatesResponse
|
|
106
154
|
*/
|
|
107
155
|
export interface QueryClientStatesResponseAmino {
|
|
108
|
-
/**
|
|
156
|
+
/**
|
|
157
|
+
* list of stored ClientStates of the chain.
|
|
158
|
+
*/
|
|
109
159
|
client_states: IdentifiedClientStateAmino[];
|
|
110
|
-
/**
|
|
160
|
+
/**
|
|
161
|
+
* pagination response
|
|
162
|
+
*/
|
|
111
163
|
pagination?: PageResponseAmino;
|
|
112
164
|
}
|
|
113
165
|
export interface QueryClientStatesResponseAminoMsg {
|
|
@@ -118,16 +170,25 @@ export interface QueryClientStatesResponseAminoMsg {
|
|
|
118
170
|
* QueryConsensusStateRequest is the request type for the Query/ConsensusState
|
|
119
171
|
* RPC method. Besides the consensus state, it includes a proof and the height
|
|
120
172
|
* from which the proof was retrieved.
|
|
173
|
+
* @name QueryConsensusStateRequest
|
|
174
|
+
* @package ibc.core.client.v1
|
|
175
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateRequest
|
|
121
176
|
*/
|
|
122
177
|
export interface QueryConsensusStateRequest {
|
|
123
|
-
/**
|
|
178
|
+
/**
|
|
179
|
+
* client identifier
|
|
180
|
+
*/
|
|
124
181
|
clientId: string;
|
|
125
|
-
/**
|
|
182
|
+
/**
|
|
183
|
+
* consensus state revision number
|
|
184
|
+
*/
|
|
126
185
|
revisionNumber: bigint;
|
|
127
|
-
/**
|
|
186
|
+
/**
|
|
187
|
+
* consensus state revision height
|
|
188
|
+
*/
|
|
128
189
|
revisionHeight: bigint;
|
|
129
190
|
/**
|
|
130
|
-
* latest_height
|
|
191
|
+
* latest_height overrides the height field and queries the latest stored
|
|
131
192
|
* ConsensusState
|
|
132
193
|
*/
|
|
133
194
|
latestHeight: boolean;
|
|
@@ -140,16 +201,25 @@ export interface QueryConsensusStateRequestProtoMsg {
|
|
|
140
201
|
* QueryConsensusStateRequest is the request type for the Query/ConsensusState
|
|
141
202
|
* RPC method. Besides the consensus state, it includes a proof and the height
|
|
142
203
|
* from which the proof was retrieved.
|
|
204
|
+
* @name QueryConsensusStateRequestAmino
|
|
205
|
+
* @package ibc.core.client.v1
|
|
206
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateRequest
|
|
143
207
|
*/
|
|
144
208
|
export interface QueryConsensusStateRequestAmino {
|
|
145
|
-
/**
|
|
209
|
+
/**
|
|
210
|
+
* client identifier
|
|
211
|
+
*/
|
|
146
212
|
client_id: string;
|
|
147
|
-
/**
|
|
213
|
+
/**
|
|
214
|
+
* consensus state revision number
|
|
215
|
+
*/
|
|
148
216
|
revision_number: string;
|
|
149
|
-
/**
|
|
217
|
+
/**
|
|
218
|
+
* consensus state revision height
|
|
219
|
+
*/
|
|
150
220
|
revision_height: string;
|
|
151
221
|
/**
|
|
152
|
-
* latest_height
|
|
222
|
+
* latest_height overrides the height field and queries the latest stored
|
|
153
223
|
* ConsensusState
|
|
154
224
|
*/
|
|
155
225
|
latest_height: boolean;
|
|
@@ -161,13 +231,22 @@ export interface QueryConsensusStateRequestAminoMsg {
|
|
|
161
231
|
/**
|
|
162
232
|
* QueryConsensusStateResponse is the response type for the Query/ConsensusState
|
|
163
233
|
* RPC method
|
|
234
|
+
* @name QueryConsensusStateResponse
|
|
235
|
+
* @package ibc.core.client.v1
|
|
236
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateResponse
|
|
164
237
|
*/
|
|
165
238
|
export interface QueryConsensusStateResponse {
|
|
166
|
-
/**
|
|
239
|
+
/**
|
|
240
|
+
* consensus state associated with the client identifier at the given height
|
|
241
|
+
*/
|
|
167
242
|
consensusState?: Any;
|
|
168
|
-
/**
|
|
243
|
+
/**
|
|
244
|
+
* merkle proof of existence
|
|
245
|
+
*/
|
|
169
246
|
proof: Uint8Array;
|
|
170
|
-
/**
|
|
247
|
+
/**
|
|
248
|
+
* height at which the proof was retrieved
|
|
249
|
+
*/
|
|
171
250
|
proofHeight: Height;
|
|
172
251
|
}
|
|
173
252
|
export interface QueryConsensusStateResponseProtoMsg {
|
|
@@ -177,13 +256,22 @@ export interface QueryConsensusStateResponseProtoMsg {
|
|
|
177
256
|
/**
|
|
178
257
|
* QueryConsensusStateResponse is the response type for the Query/ConsensusState
|
|
179
258
|
* RPC method
|
|
259
|
+
* @name QueryConsensusStateResponseAmino
|
|
260
|
+
* @package ibc.core.client.v1
|
|
261
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateResponse
|
|
180
262
|
*/
|
|
181
263
|
export interface QueryConsensusStateResponseAmino {
|
|
182
|
-
/**
|
|
264
|
+
/**
|
|
265
|
+
* consensus state associated with the client identifier at the given height
|
|
266
|
+
*/
|
|
183
267
|
consensus_state?: AnyAmino;
|
|
184
|
-
/**
|
|
268
|
+
/**
|
|
269
|
+
* merkle proof of existence
|
|
270
|
+
*/
|
|
185
271
|
proof: string;
|
|
186
|
-
/**
|
|
272
|
+
/**
|
|
273
|
+
* height at which the proof was retrieved
|
|
274
|
+
*/
|
|
187
275
|
proof_height: HeightAmino;
|
|
188
276
|
}
|
|
189
277
|
export interface QueryConsensusStateResponseAminoMsg {
|
|
@@ -193,11 +281,18 @@ export interface QueryConsensusStateResponseAminoMsg {
|
|
|
193
281
|
/**
|
|
194
282
|
* QueryConsensusStatesRequest is the request type for the Query/ConsensusStates
|
|
195
283
|
* RPC method.
|
|
284
|
+
* @name QueryConsensusStatesRequest
|
|
285
|
+
* @package ibc.core.client.v1
|
|
286
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStatesRequest
|
|
196
287
|
*/
|
|
197
288
|
export interface QueryConsensusStatesRequest {
|
|
198
|
-
/**
|
|
289
|
+
/**
|
|
290
|
+
* client identifier
|
|
291
|
+
*/
|
|
199
292
|
clientId: string;
|
|
200
|
-
/**
|
|
293
|
+
/**
|
|
294
|
+
* pagination request
|
|
295
|
+
*/
|
|
201
296
|
pagination?: PageRequest;
|
|
202
297
|
}
|
|
203
298
|
export interface QueryConsensusStatesRequestProtoMsg {
|
|
@@ -207,11 +302,18 @@ export interface QueryConsensusStatesRequestProtoMsg {
|
|
|
207
302
|
/**
|
|
208
303
|
* QueryConsensusStatesRequest is the request type for the Query/ConsensusStates
|
|
209
304
|
* RPC method.
|
|
305
|
+
* @name QueryConsensusStatesRequestAmino
|
|
306
|
+
* @package ibc.core.client.v1
|
|
307
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStatesRequest
|
|
210
308
|
*/
|
|
211
309
|
export interface QueryConsensusStatesRequestAmino {
|
|
212
|
-
/**
|
|
310
|
+
/**
|
|
311
|
+
* client identifier
|
|
312
|
+
*/
|
|
213
313
|
client_id: string;
|
|
214
|
-
/**
|
|
314
|
+
/**
|
|
315
|
+
* pagination request
|
|
316
|
+
*/
|
|
215
317
|
pagination?: PageRequestAmino;
|
|
216
318
|
}
|
|
217
319
|
export interface QueryConsensusStatesRequestAminoMsg {
|
|
@@ -221,11 +323,18 @@ export interface QueryConsensusStatesRequestAminoMsg {
|
|
|
221
323
|
/**
|
|
222
324
|
* QueryConsensusStatesResponse is the response type for the
|
|
223
325
|
* Query/ConsensusStates RPC method
|
|
326
|
+
* @name QueryConsensusStatesResponse
|
|
327
|
+
* @package ibc.core.client.v1
|
|
328
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStatesResponse
|
|
224
329
|
*/
|
|
225
330
|
export interface QueryConsensusStatesResponse {
|
|
226
|
-
/**
|
|
331
|
+
/**
|
|
332
|
+
* consensus states associated with the identifier
|
|
333
|
+
*/
|
|
227
334
|
consensusStates: ConsensusStateWithHeight[];
|
|
228
|
-
/**
|
|
335
|
+
/**
|
|
336
|
+
* pagination response
|
|
337
|
+
*/
|
|
229
338
|
pagination?: PageResponse;
|
|
230
339
|
}
|
|
231
340
|
export interface QueryConsensusStatesResponseProtoMsg {
|
|
@@ -235,11 +344,18 @@ export interface QueryConsensusStatesResponseProtoMsg {
|
|
|
235
344
|
/**
|
|
236
345
|
* QueryConsensusStatesResponse is the response type for the
|
|
237
346
|
* Query/ConsensusStates RPC method
|
|
347
|
+
* @name QueryConsensusStatesResponseAmino
|
|
348
|
+
* @package ibc.core.client.v1
|
|
349
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStatesResponse
|
|
238
350
|
*/
|
|
239
351
|
export interface QueryConsensusStatesResponseAmino {
|
|
240
|
-
/**
|
|
352
|
+
/**
|
|
353
|
+
* consensus states associated with the identifier
|
|
354
|
+
*/
|
|
241
355
|
consensus_states: ConsensusStateWithHeightAmino[];
|
|
242
|
-
/**
|
|
356
|
+
/**
|
|
357
|
+
* pagination response
|
|
358
|
+
*/
|
|
243
359
|
pagination?: PageResponseAmino;
|
|
244
360
|
}
|
|
245
361
|
export interface QueryConsensusStatesResponseAminoMsg {
|
|
@@ -249,11 +365,18 @@ export interface QueryConsensusStatesResponseAminoMsg {
|
|
|
249
365
|
/**
|
|
250
366
|
* QueryConsensusStateHeightsRequest is the request type for Query/ConsensusStateHeights
|
|
251
367
|
* RPC method.
|
|
368
|
+
* @name QueryConsensusStateHeightsRequest
|
|
369
|
+
* @package ibc.core.client.v1
|
|
370
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateHeightsRequest
|
|
252
371
|
*/
|
|
253
372
|
export interface QueryConsensusStateHeightsRequest {
|
|
254
|
-
/**
|
|
373
|
+
/**
|
|
374
|
+
* client identifier
|
|
375
|
+
*/
|
|
255
376
|
clientId: string;
|
|
256
|
-
/**
|
|
377
|
+
/**
|
|
378
|
+
* pagination request
|
|
379
|
+
*/
|
|
257
380
|
pagination?: PageRequest;
|
|
258
381
|
}
|
|
259
382
|
export interface QueryConsensusStateHeightsRequestProtoMsg {
|
|
@@ -263,11 +386,18 @@ export interface QueryConsensusStateHeightsRequestProtoMsg {
|
|
|
263
386
|
/**
|
|
264
387
|
* QueryConsensusStateHeightsRequest is the request type for Query/ConsensusStateHeights
|
|
265
388
|
* RPC method.
|
|
389
|
+
* @name QueryConsensusStateHeightsRequestAmino
|
|
390
|
+
* @package ibc.core.client.v1
|
|
391
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateHeightsRequest
|
|
266
392
|
*/
|
|
267
393
|
export interface QueryConsensusStateHeightsRequestAmino {
|
|
268
|
-
/**
|
|
394
|
+
/**
|
|
395
|
+
* client identifier
|
|
396
|
+
*/
|
|
269
397
|
client_id: string;
|
|
270
|
-
/**
|
|
398
|
+
/**
|
|
399
|
+
* pagination request
|
|
400
|
+
*/
|
|
271
401
|
pagination?: PageRequestAmino;
|
|
272
402
|
}
|
|
273
403
|
export interface QueryConsensusStateHeightsRequestAminoMsg {
|
|
@@ -277,11 +407,18 @@ export interface QueryConsensusStateHeightsRequestAminoMsg {
|
|
|
277
407
|
/**
|
|
278
408
|
* QueryConsensusStateHeightsResponse is the response type for the
|
|
279
409
|
* Query/ConsensusStateHeights RPC method
|
|
410
|
+
* @name QueryConsensusStateHeightsResponse
|
|
411
|
+
* @package ibc.core.client.v1
|
|
412
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateHeightsResponse
|
|
280
413
|
*/
|
|
281
414
|
export interface QueryConsensusStateHeightsResponse {
|
|
282
|
-
/**
|
|
415
|
+
/**
|
|
416
|
+
* consensus state heights
|
|
417
|
+
*/
|
|
283
418
|
consensusStateHeights: Height[];
|
|
284
|
-
/**
|
|
419
|
+
/**
|
|
420
|
+
* pagination response
|
|
421
|
+
*/
|
|
285
422
|
pagination?: PageResponse;
|
|
286
423
|
}
|
|
287
424
|
export interface QueryConsensusStateHeightsResponseProtoMsg {
|
|
@@ -291,11 +428,18 @@ export interface QueryConsensusStateHeightsResponseProtoMsg {
|
|
|
291
428
|
/**
|
|
292
429
|
* QueryConsensusStateHeightsResponse is the response type for the
|
|
293
430
|
* Query/ConsensusStateHeights RPC method
|
|
431
|
+
* @name QueryConsensusStateHeightsResponseAmino
|
|
432
|
+
* @package ibc.core.client.v1
|
|
433
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateHeightsResponse
|
|
294
434
|
*/
|
|
295
435
|
export interface QueryConsensusStateHeightsResponseAmino {
|
|
296
|
-
/**
|
|
436
|
+
/**
|
|
437
|
+
* consensus state heights
|
|
438
|
+
*/
|
|
297
439
|
consensus_state_heights: HeightAmino[];
|
|
298
|
-
/**
|
|
440
|
+
/**
|
|
441
|
+
* pagination response
|
|
442
|
+
*/
|
|
299
443
|
pagination?: PageResponseAmino;
|
|
300
444
|
}
|
|
301
445
|
export interface QueryConsensusStateHeightsResponseAminoMsg {
|
|
@@ -305,9 +449,14 @@ export interface QueryConsensusStateHeightsResponseAminoMsg {
|
|
|
305
449
|
/**
|
|
306
450
|
* QueryClientStatusRequest is the request type for the Query/ClientStatus RPC
|
|
307
451
|
* method
|
|
452
|
+
* @name QueryClientStatusRequest
|
|
453
|
+
* @package ibc.core.client.v1
|
|
454
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatusRequest
|
|
308
455
|
*/
|
|
309
456
|
export interface QueryClientStatusRequest {
|
|
310
|
-
/**
|
|
457
|
+
/**
|
|
458
|
+
* client unique identifier
|
|
459
|
+
*/
|
|
311
460
|
clientId: string;
|
|
312
461
|
}
|
|
313
462
|
export interface QueryClientStatusRequestProtoMsg {
|
|
@@ -317,9 +466,14 @@ export interface QueryClientStatusRequestProtoMsg {
|
|
|
317
466
|
/**
|
|
318
467
|
* QueryClientStatusRequest is the request type for the Query/ClientStatus RPC
|
|
319
468
|
* method
|
|
469
|
+
* @name QueryClientStatusRequestAmino
|
|
470
|
+
* @package ibc.core.client.v1
|
|
471
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatusRequest
|
|
320
472
|
*/
|
|
321
473
|
export interface QueryClientStatusRequestAmino {
|
|
322
|
-
/**
|
|
474
|
+
/**
|
|
475
|
+
* client unique identifier
|
|
476
|
+
*/
|
|
323
477
|
client_id: string;
|
|
324
478
|
}
|
|
325
479
|
export interface QueryClientStatusRequestAminoMsg {
|
|
@@ -329,6 +483,9 @@ export interface QueryClientStatusRequestAminoMsg {
|
|
|
329
483
|
/**
|
|
330
484
|
* QueryClientStatusResponse is the response type for the Query/ClientStatus RPC
|
|
331
485
|
* method. It returns the current status of the IBC client.
|
|
486
|
+
* @name QueryClientStatusResponse
|
|
487
|
+
* @package ibc.core.client.v1
|
|
488
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatusResponse
|
|
332
489
|
*/
|
|
333
490
|
export interface QueryClientStatusResponse {
|
|
334
491
|
status: string;
|
|
@@ -340,6 +497,9 @@ export interface QueryClientStatusResponseProtoMsg {
|
|
|
340
497
|
/**
|
|
341
498
|
* QueryClientStatusResponse is the response type for the Query/ClientStatus RPC
|
|
342
499
|
* method. It returns the current status of the IBC client.
|
|
500
|
+
* @name QueryClientStatusResponseAmino
|
|
501
|
+
* @package ibc.core.client.v1
|
|
502
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatusResponse
|
|
343
503
|
*/
|
|
344
504
|
export interface QueryClientStatusResponseAmino {
|
|
345
505
|
status: string;
|
|
@@ -351,6 +511,9 @@ export interface QueryClientStatusResponseAminoMsg {
|
|
|
351
511
|
/**
|
|
352
512
|
* QueryClientParamsRequest is the request type for the Query/ClientParams RPC
|
|
353
513
|
* method.
|
|
514
|
+
* @name QueryClientParamsRequest
|
|
515
|
+
* @package ibc.core.client.v1
|
|
516
|
+
* @see proto type: ibc.core.client.v1.QueryClientParamsRequest
|
|
354
517
|
*/
|
|
355
518
|
export interface QueryClientParamsRequest {
|
|
356
519
|
}
|
|
@@ -361,6 +524,9 @@ export interface QueryClientParamsRequestProtoMsg {
|
|
|
361
524
|
/**
|
|
362
525
|
* QueryClientParamsRequest is the request type for the Query/ClientParams RPC
|
|
363
526
|
* method.
|
|
527
|
+
* @name QueryClientParamsRequestAmino
|
|
528
|
+
* @package ibc.core.client.v1
|
|
529
|
+
* @see proto type: ibc.core.client.v1.QueryClientParamsRequest
|
|
364
530
|
*/
|
|
365
531
|
export interface QueryClientParamsRequestAmino {
|
|
366
532
|
}
|
|
@@ -371,9 +537,14 @@ export interface QueryClientParamsRequestAminoMsg {
|
|
|
371
537
|
/**
|
|
372
538
|
* QueryClientParamsResponse is the response type for the Query/ClientParams RPC
|
|
373
539
|
* method.
|
|
540
|
+
* @name QueryClientParamsResponse
|
|
541
|
+
* @package ibc.core.client.v1
|
|
542
|
+
* @see proto type: ibc.core.client.v1.QueryClientParamsResponse
|
|
374
543
|
*/
|
|
375
544
|
export interface QueryClientParamsResponse {
|
|
376
|
-
/**
|
|
545
|
+
/**
|
|
546
|
+
* params defines the parameters of the module.
|
|
547
|
+
*/
|
|
377
548
|
params?: Params;
|
|
378
549
|
}
|
|
379
550
|
export interface QueryClientParamsResponseProtoMsg {
|
|
@@ -383,18 +554,94 @@ export interface QueryClientParamsResponseProtoMsg {
|
|
|
383
554
|
/**
|
|
384
555
|
* QueryClientParamsResponse is the response type for the Query/ClientParams RPC
|
|
385
556
|
* method.
|
|
557
|
+
* @name QueryClientParamsResponseAmino
|
|
558
|
+
* @package ibc.core.client.v1
|
|
559
|
+
* @see proto type: ibc.core.client.v1.QueryClientParamsResponse
|
|
386
560
|
*/
|
|
387
561
|
export interface QueryClientParamsResponseAmino {
|
|
388
|
-
/**
|
|
562
|
+
/**
|
|
563
|
+
* params defines the parameters of the module.
|
|
564
|
+
*/
|
|
389
565
|
params?: ParamsAmino;
|
|
390
566
|
}
|
|
391
567
|
export interface QueryClientParamsResponseAminoMsg {
|
|
392
568
|
type: "cosmos-sdk/QueryClientParamsResponse";
|
|
393
569
|
value: QueryClientParamsResponseAmino;
|
|
394
570
|
}
|
|
571
|
+
/**
|
|
572
|
+
* QueryClientCreatorRequest is the request type for the Query/ClientCreator RPC
|
|
573
|
+
* method.
|
|
574
|
+
* @name QueryClientCreatorRequest
|
|
575
|
+
* @package ibc.core.client.v1
|
|
576
|
+
* @see proto type: ibc.core.client.v1.QueryClientCreatorRequest
|
|
577
|
+
*/
|
|
578
|
+
export interface QueryClientCreatorRequest {
|
|
579
|
+
/**
|
|
580
|
+
* client unique identifier
|
|
581
|
+
*/
|
|
582
|
+
clientId: string;
|
|
583
|
+
}
|
|
584
|
+
export interface QueryClientCreatorRequestProtoMsg {
|
|
585
|
+
typeUrl: "/ibc.core.client.v1.QueryClientCreatorRequest";
|
|
586
|
+
value: Uint8Array;
|
|
587
|
+
}
|
|
588
|
+
/**
|
|
589
|
+
* QueryClientCreatorRequest is the request type for the Query/ClientCreator RPC
|
|
590
|
+
* method.
|
|
591
|
+
* @name QueryClientCreatorRequestAmino
|
|
592
|
+
* @package ibc.core.client.v1
|
|
593
|
+
* @see proto type: ibc.core.client.v1.QueryClientCreatorRequest
|
|
594
|
+
*/
|
|
595
|
+
export interface QueryClientCreatorRequestAmino {
|
|
596
|
+
/**
|
|
597
|
+
* client unique identifier
|
|
598
|
+
*/
|
|
599
|
+
client_id: string;
|
|
600
|
+
}
|
|
601
|
+
export interface QueryClientCreatorRequestAminoMsg {
|
|
602
|
+
type: "cosmos-sdk/QueryClientCreatorRequest";
|
|
603
|
+
value: QueryClientCreatorRequestAmino;
|
|
604
|
+
}
|
|
605
|
+
/**
|
|
606
|
+
* QueryClientCreatorResponse is the response type for the Query/ClientCreator RPC
|
|
607
|
+
* method.
|
|
608
|
+
* @name QueryClientCreatorResponse
|
|
609
|
+
* @package ibc.core.client.v1
|
|
610
|
+
* @see proto type: ibc.core.client.v1.QueryClientCreatorResponse
|
|
611
|
+
*/
|
|
612
|
+
export interface QueryClientCreatorResponse {
|
|
613
|
+
/**
|
|
614
|
+
* creator of the client
|
|
615
|
+
*/
|
|
616
|
+
creator: string;
|
|
617
|
+
}
|
|
618
|
+
export interface QueryClientCreatorResponseProtoMsg {
|
|
619
|
+
typeUrl: "/ibc.core.client.v1.QueryClientCreatorResponse";
|
|
620
|
+
value: Uint8Array;
|
|
621
|
+
}
|
|
622
|
+
/**
|
|
623
|
+
* QueryClientCreatorResponse is the response type for the Query/ClientCreator RPC
|
|
624
|
+
* method.
|
|
625
|
+
* @name QueryClientCreatorResponseAmino
|
|
626
|
+
* @package ibc.core.client.v1
|
|
627
|
+
* @see proto type: ibc.core.client.v1.QueryClientCreatorResponse
|
|
628
|
+
*/
|
|
629
|
+
export interface QueryClientCreatorResponseAmino {
|
|
630
|
+
/**
|
|
631
|
+
* creator of the client
|
|
632
|
+
*/
|
|
633
|
+
creator: string;
|
|
634
|
+
}
|
|
635
|
+
export interface QueryClientCreatorResponseAminoMsg {
|
|
636
|
+
type: "cosmos-sdk/QueryClientCreatorResponse";
|
|
637
|
+
value: QueryClientCreatorResponseAmino;
|
|
638
|
+
}
|
|
395
639
|
/**
|
|
396
640
|
* QueryUpgradedClientStateRequest is the request type for the
|
|
397
641
|
* Query/UpgradedClientState RPC method
|
|
642
|
+
* @name QueryUpgradedClientStateRequest
|
|
643
|
+
* @package ibc.core.client.v1
|
|
644
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedClientStateRequest
|
|
398
645
|
*/
|
|
399
646
|
export interface QueryUpgradedClientStateRequest {
|
|
400
647
|
}
|
|
@@ -405,6 +652,9 @@ export interface QueryUpgradedClientStateRequestProtoMsg {
|
|
|
405
652
|
/**
|
|
406
653
|
* QueryUpgradedClientStateRequest is the request type for the
|
|
407
654
|
* Query/UpgradedClientState RPC method
|
|
655
|
+
* @name QueryUpgradedClientStateRequestAmino
|
|
656
|
+
* @package ibc.core.client.v1
|
|
657
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedClientStateRequest
|
|
408
658
|
*/
|
|
409
659
|
export interface QueryUpgradedClientStateRequestAmino {
|
|
410
660
|
}
|
|
@@ -415,9 +665,14 @@ export interface QueryUpgradedClientStateRequestAminoMsg {
|
|
|
415
665
|
/**
|
|
416
666
|
* QueryUpgradedClientStateResponse is the response type for the
|
|
417
667
|
* Query/UpgradedClientState RPC method.
|
|
668
|
+
* @name QueryUpgradedClientStateResponse
|
|
669
|
+
* @package ibc.core.client.v1
|
|
670
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedClientStateResponse
|
|
418
671
|
*/
|
|
419
672
|
export interface QueryUpgradedClientStateResponse {
|
|
420
|
-
/**
|
|
673
|
+
/**
|
|
674
|
+
* client state associated with the request identifier
|
|
675
|
+
*/
|
|
421
676
|
upgradedClientState?: Any;
|
|
422
677
|
}
|
|
423
678
|
export interface QueryUpgradedClientStateResponseProtoMsg {
|
|
@@ -427,9 +682,14 @@ export interface QueryUpgradedClientStateResponseProtoMsg {
|
|
|
427
682
|
/**
|
|
428
683
|
* QueryUpgradedClientStateResponse is the response type for the
|
|
429
684
|
* Query/UpgradedClientState RPC method.
|
|
685
|
+
* @name QueryUpgradedClientStateResponseAmino
|
|
686
|
+
* @package ibc.core.client.v1
|
|
687
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedClientStateResponse
|
|
430
688
|
*/
|
|
431
689
|
export interface QueryUpgradedClientStateResponseAmino {
|
|
432
|
-
/**
|
|
690
|
+
/**
|
|
691
|
+
* client state associated with the request identifier
|
|
692
|
+
*/
|
|
433
693
|
upgraded_client_state?: AnyAmino;
|
|
434
694
|
}
|
|
435
695
|
export interface QueryUpgradedClientStateResponseAminoMsg {
|
|
@@ -439,6 +699,9 @@ export interface QueryUpgradedClientStateResponseAminoMsg {
|
|
|
439
699
|
/**
|
|
440
700
|
* QueryUpgradedConsensusStateRequest is the request type for the
|
|
441
701
|
* Query/UpgradedConsensusState RPC method
|
|
702
|
+
* @name QueryUpgradedConsensusStateRequest
|
|
703
|
+
* @package ibc.core.client.v1
|
|
704
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedConsensusStateRequest
|
|
442
705
|
*/
|
|
443
706
|
export interface QueryUpgradedConsensusStateRequest {
|
|
444
707
|
}
|
|
@@ -449,6 +712,9 @@ export interface QueryUpgradedConsensusStateRequestProtoMsg {
|
|
|
449
712
|
/**
|
|
450
713
|
* QueryUpgradedConsensusStateRequest is the request type for the
|
|
451
714
|
* Query/UpgradedConsensusState RPC method
|
|
715
|
+
* @name QueryUpgradedConsensusStateRequestAmino
|
|
716
|
+
* @package ibc.core.client.v1
|
|
717
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedConsensusStateRequest
|
|
452
718
|
*/
|
|
453
719
|
export interface QueryUpgradedConsensusStateRequestAmino {
|
|
454
720
|
}
|
|
@@ -459,9 +725,14 @@ export interface QueryUpgradedConsensusStateRequestAminoMsg {
|
|
|
459
725
|
/**
|
|
460
726
|
* QueryUpgradedConsensusStateResponse is the response type for the
|
|
461
727
|
* Query/UpgradedConsensusState RPC method.
|
|
728
|
+
* @name QueryUpgradedConsensusStateResponse
|
|
729
|
+
* @package ibc.core.client.v1
|
|
730
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedConsensusStateResponse
|
|
462
731
|
*/
|
|
463
732
|
export interface QueryUpgradedConsensusStateResponse {
|
|
464
|
-
/**
|
|
733
|
+
/**
|
|
734
|
+
* Consensus state associated with the request identifier
|
|
735
|
+
*/
|
|
465
736
|
upgradedConsensusState?: Any;
|
|
466
737
|
}
|
|
467
738
|
export interface QueryUpgradedConsensusStateResponseProtoMsg {
|
|
@@ -471,75 +742,139 @@ export interface QueryUpgradedConsensusStateResponseProtoMsg {
|
|
|
471
742
|
/**
|
|
472
743
|
* QueryUpgradedConsensusStateResponse is the response type for the
|
|
473
744
|
* Query/UpgradedConsensusState RPC method.
|
|
745
|
+
* @name QueryUpgradedConsensusStateResponseAmino
|
|
746
|
+
* @package ibc.core.client.v1
|
|
747
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedConsensusStateResponse
|
|
474
748
|
*/
|
|
475
749
|
export interface QueryUpgradedConsensusStateResponseAmino {
|
|
476
|
-
/**
|
|
750
|
+
/**
|
|
751
|
+
* Consensus state associated with the request identifier
|
|
752
|
+
*/
|
|
477
753
|
upgraded_consensus_state?: AnyAmino;
|
|
478
754
|
}
|
|
479
755
|
export interface QueryUpgradedConsensusStateResponseAminoMsg {
|
|
480
756
|
type: "cosmos-sdk/QueryUpgradedConsensusStateResponse";
|
|
481
757
|
value: QueryUpgradedConsensusStateResponseAmino;
|
|
482
758
|
}
|
|
483
|
-
/**
|
|
759
|
+
/**
|
|
760
|
+
* QueryVerifyMembershipRequest is the request type for the Query/VerifyMembership RPC method
|
|
761
|
+
* @name QueryVerifyMembershipRequest
|
|
762
|
+
* @package ibc.core.client.v1
|
|
763
|
+
* @see proto type: ibc.core.client.v1.QueryVerifyMembershipRequest
|
|
764
|
+
*/
|
|
484
765
|
export interface QueryVerifyMembershipRequest {
|
|
485
|
-
/**
|
|
766
|
+
/**
|
|
767
|
+
* client unique identifier.
|
|
768
|
+
*/
|
|
486
769
|
clientId: string;
|
|
487
|
-
/**
|
|
770
|
+
/**
|
|
771
|
+
* the proof to be verified by the client.
|
|
772
|
+
*/
|
|
488
773
|
proof: Uint8Array;
|
|
489
|
-
/**
|
|
774
|
+
/**
|
|
775
|
+
* the height of the commitment root at which the proof is verified.
|
|
776
|
+
*/
|
|
490
777
|
proofHeight: Height;
|
|
491
|
-
/**
|
|
492
|
-
|
|
493
|
-
|
|
778
|
+
/**
|
|
779
|
+
* the value which is proven.
|
|
780
|
+
*/
|
|
494
781
|
value: Uint8Array;
|
|
495
|
-
/**
|
|
782
|
+
/**
|
|
783
|
+
* optional time delay
|
|
784
|
+
*/
|
|
496
785
|
timeDelay: bigint;
|
|
497
|
-
/**
|
|
786
|
+
/**
|
|
787
|
+
* optional block delay
|
|
788
|
+
*/
|
|
498
789
|
blockDelay: bigint;
|
|
790
|
+
/**
|
|
791
|
+
* the commitment key path.
|
|
792
|
+
*/
|
|
793
|
+
merklePath: MerklePath;
|
|
499
794
|
}
|
|
500
795
|
export interface QueryVerifyMembershipRequestProtoMsg {
|
|
501
796
|
typeUrl: "/ibc.core.client.v1.QueryVerifyMembershipRequest";
|
|
502
797
|
value: Uint8Array;
|
|
503
798
|
}
|
|
504
|
-
/**
|
|
799
|
+
/**
|
|
800
|
+
* QueryVerifyMembershipRequest is the request type for the Query/VerifyMembership RPC method
|
|
801
|
+
* @name QueryVerifyMembershipRequestAmino
|
|
802
|
+
* @package ibc.core.client.v1
|
|
803
|
+
* @see proto type: ibc.core.client.v1.QueryVerifyMembershipRequest
|
|
804
|
+
*/
|
|
505
805
|
export interface QueryVerifyMembershipRequestAmino {
|
|
506
|
-
/**
|
|
806
|
+
/**
|
|
807
|
+
* client unique identifier.
|
|
808
|
+
*/
|
|
507
809
|
client_id: string;
|
|
508
|
-
/**
|
|
810
|
+
/**
|
|
811
|
+
* the proof to be verified by the client.
|
|
812
|
+
*/
|
|
509
813
|
proof: string;
|
|
510
|
-
/**
|
|
814
|
+
/**
|
|
815
|
+
* the height of the commitment root at which the proof is verified.
|
|
816
|
+
*/
|
|
511
817
|
proof_height: HeightAmino;
|
|
512
|
-
/**
|
|
513
|
-
|
|
514
|
-
|
|
818
|
+
/**
|
|
819
|
+
* the value which is proven.
|
|
820
|
+
*/
|
|
515
821
|
value: string;
|
|
516
|
-
/**
|
|
822
|
+
/**
|
|
823
|
+
* optional time delay
|
|
824
|
+
*/
|
|
517
825
|
time_delay: string;
|
|
518
|
-
/**
|
|
826
|
+
/**
|
|
827
|
+
* optional block delay
|
|
828
|
+
*/
|
|
519
829
|
block_delay: string;
|
|
830
|
+
/**
|
|
831
|
+
* the commitment key path.
|
|
832
|
+
*/
|
|
833
|
+
merkle_path: MerklePathAmino;
|
|
520
834
|
}
|
|
521
835
|
export interface QueryVerifyMembershipRequestAminoMsg {
|
|
522
836
|
type: "cosmos-sdk/QueryVerifyMembershipRequest";
|
|
523
837
|
value: QueryVerifyMembershipRequestAmino;
|
|
524
838
|
}
|
|
525
|
-
/**
|
|
839
|
+
/**
|
|
840
|
+
* QueryVerifyMembershipResponse is the response type for the Query/VerifyMembership RPC method
|
|
841
|
+
* @name QueryVerifyMembershipResponse
|
|
842
|
+
* @package ibc.core.client.v1
|
|
843
|
+
* @see proto type: ibc.core.client.v1.QueryVerifyMembershipResponse
|
|
844
|
+
*/
|
|
526
845
|
export interface QueryVerifyMembershipResponse {
|
|
527
|
-
/**
|
|
846
|
+
/**
|
|
847
|
+
* boolean indicating success or failure of proof verification.
|
|
848
|
+
*/
|
|
528
849
|
success: boolean;
|
|
529
850
|
}
|
|
530
851
|
export interface QueryVerifyMembershipResponseProtoMsg {
|
|
531
852
|
typeUrl: "/ibc.core.client.v1.QueryVerifyMembershipResponse";
|
|
532
853
|
value: Uint8Array;
|
|
533
854
|
}
|
|
534
|
-
/**
|
|
855
|
+
/**
|
|
856
|
+
* QueryVerifyMembershipResponse is the response type for the Query/VerifyMembership RPC method
|
|
857
|
+
* @name QueryVerifyMembershipResponseAmino
|
|
858
|
+
* @package ibc.core.client.v1
|
|
859
|
+
* @see proto type: ibc.core.client.v1.QueryVerifyMembershipResponse
|
|
860
|
+
*/
|
|
535
861
|
export interface QueryVerifyMembershipResponseAmino {
|
|
536
|
-
/**
|
|
862
|
+
/**
|
|
863
|
+
* boolean indicating success or failure of proof verification.
|
|
864
|
+
*/
|
|
537
865
|
success: boolean;
|
|
538
866
|
}
|
|
539
867
|
export interface QueryVerifyMembershipResponseAminoMsg {
|
|
540
868
|
type: "cosmos-sdk/QueryVerifyMembershipResponse";
|
|
541
869
|
value: QueryVerifyMembershipResponseAmino;
|
|
542
870
|
}
|
|
871
|
+
/**
|
|
872
|
+
* QueryClientStateRequest is the request type for the Query/ClientState RPC
|
|
873
|
+
* method
|
|
874
|
+
* @name QueryClientStateRequest
|
|
875
|
+
* @package ibc.core.client.v1
|
|
876
|
+
* @see proto type: ibc.core.client.v1.QueryClientStateRequest
|
|
877
|
+
*/
|
|
543
878
|
export declare const QueryClientStateRequest: {
|
|
544
879
|
typeUrl: string;
|
|
545
880
|
aminoType: string;
|
|
@@ -557,6 +892,14 @@ export declare const QueryClientStateRequest: {
|
|
|
557
892
|
toProtoMsg(message: QueryClientStateRequest): QueryClientStateRequestProtoMsg;
|
|
558
893
|
registerTypeUrl(): void;
|
|
559
894
|
};
|
|
895
|
+
/**
|
|
896
|
+
* QueryClientStateResponse is the response type for the Query/ClientState RPC
|
|
897
|
+
* method. Besides the client state, it includes a proof and the height from
|
|
898
|
+
* which the proof was retrieved.
|
|
899
|
+
* @name QueryClientStateResponse
|
|
900
|
+
* @package ibc.core.client.v1
|
|
901
|
+
* @see proto type: ibc.core.client.v1.QueryClientStateResponse
|
|
902
|
+
*/
|
|
560
903
|
export declare const QueryClientStateResponse: {
|
|
561
904
|
typeUrl: string;
|
|
562
905
|
aminoType: string;
|
|
@@ -574,6 +917,13 @@ export declare const QueryClientStateResponse: {
|
|
|
574
917
|
toProtoMsg(message: QueryClientStateResponse): QueryClientStateResponseProtoMsg;
|
|
575
918
|
registerTypeUrl(): void;
|
|
576
919
|
};
|
|
920
|
+
/**
|
|
921
|
+
* QueryClientStatesRequest is the request type for the Query/ClientStates RPC
|
|
922
|
+
* method
|
|
923
|
+
* @name QueryClientStatesRequest
|
|
924
|
+
* @package ibc.core.client.v1
|
|
925
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatesRequest
|
|
926
|
+
*/
|
|
577
927
|
export declare const QueryClientStatesRequest: {
|
|
578
928
|
typeUrl: string;
|
|
579
929
|
aminoType: string;
|
|
@@ -591,6 +941,13 @@ export declare const QueryClientStatesRequest: {
|
|
|
591
941
|
toProtoMsg(message: QueryClientStatesRequest): QueryClientStatesRequestProtoMsg;
|
|
592
942
|
registerTypeUrl(): void;
|
|
593
943
|
};
|
|
944
|
+
/**
|
|
945
|
+
* QueryClientStatesResponse is the response type for the Query/ClientStates RPC
|
|
946
|
+
* method.
|
|
947
|
+
* @name QueryClientStatesResponse
|
|
948
|
+
* @package ibc.core.client.v1
|
|
949
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatesResponse
|
|
950
|
+
*/
|
|
594
951
|
export declare const QueryClientStatesResponse: {
|
|
595
952
|
typeUrl: string;
|
|
596
953
|
aminoType: string;
|
|
@@ -608,6 +965,14 @@ export declare const QueryClientStatesResponse: {
|
|
|
608
965
|
toProtoMsg(message: QueryClientStatesResponse): QueryClientStatesResponseProtoMsg;
|
|
609
966
|
registerTypeUrl(): void;
|
|
610
967
|
};
|
|
968
|
+
/**
|
|
969
|
+
* QueryConsensusStateRequest is the request type for the Query/ConsensusState
|
|
970
|
+
* RPC method. Besides the consensus state, it includes a proof and the height
|
|
971
|
+
* from which the proof was retrieved.
|
|
972
|
+
* @name QueryConsensusStateRequest
|
|
973
|
+
* @package ibc.core.client.v1
|
|
974
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateRequest
|
|
975
|
+
*/
|
|
611
976
|
export declare const QueryConsensusStateRequest: {
|
|
612
977
|
typeUrl: string;
|
|
613
978
|
aminoType: string;
|
|
@@ -625,6 +990,13 @@ export declare const QueryConsensusStateRequest: {
|
|
|
625
990
|
toProtoMsg(message: QueryConsensusStateRequest): QueryConsensusStateRequestProtoMsg;
|
|
626
991
|
registerTypeUrl(): void;
|
|
627
992
|
};
|
|
993
|
+
/**
|
|
994
|
+
* QueryConsensusStateResponse is the response type for the Query/ConsensusState
|
|
995
|
+
* RPC method
|
|
996
|
+
* @name QueryConsensusStateResponse
|
|
997
|
+
* @package ibc.core.client.v1
|
|
998
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateResponse
|
|
999
|
+
*/
|
|
628
1000
|
export declare const QueryConsensusStateResponse: {
|
|
629
1001
|
typeUrl: string;
|
|
630
1002
|
aminoType: string;
|
|
@@ -642,6 +1014,13 @@ export declare const QueryConsensusStateResponse: {
|
|
|
642
1014
|
toProtoMsg(message: QueryConsensusStateResponse): QueryConsensusStateResponseProtoMsg;
|
|
643
1015
|
registerTypeUrl(): void;
|
|
644
1016
|
};
|
|
1017
|
+
/**
|
|
1018
|
+
* QueryConsensusStatesRequest is the request type for the Query/ConsensusStates
|
|
1019
|
+
* RPC method.
|
|
1020
|
+
* @name QueryConsensusStatesRequest
|
|
1021
|
+
* @package ibc.core.client.v1
|
|
1022
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStatesRequest
|
|
1023
|
+
*/
|
|
645
1024
|
export declare const QueryConsensusStatesRequest: {
|
|
646
1025
|
typeUrl: string;
|
|
647
1026
|
aminoType: string;
|
|
@@ -659,6 +1038,13 @@ export declare const QueryConsensusStatesRequest: {
|
|
|
659
1038
|
toProtoMsg(message: QueryConsensusStatesRequest): QueryConsensusStatesRequestProtoMsg;
|
|
660
1039
|
registerTypeUrl(): void;
|
|
661
1040
|
};
|
|
1041
|
+
/**
|
|
1042
|
+
* QueryConsensusStatesResponse is the response type for the
|
|
1043
|
+
* Query/ConsensusStates RPC method
|
|
1044
|
+
* @name QueryConsensusStatesResponse
|
|
1045
|
+
* @package ibc.core.client.v1
|
|
1046
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStatesResponse
|
|
1047
|
+
*/
|
|
662
1048
|
export declare const QueryConsensusStatesResponse: {
|
|
663
1049
|
typeUrl: string;
|
|
664
1050
|
aminoType: string;
|
|
@@ -676,6 +1062,13 @@ export declare const QueryConsensusStatesResponse: {
|
|
|
676
1062
|
toProtoMsg(message: QueryConsensusStatesResponse): QueryConsensusStatesResponseProtoMsg;
|
|
677
1063
|
registerTypeUrl(): void;
|
|
678
1064
|
};
|
|
1065
|
+
/**
|
|
1066
|
+
* QueryConsensusStateHeightsRequest is the request type for Query/ConsensusStateHeights
|
|
1067
|
+
* RPC method.
|
|
1068
|
+
* @name QueryConsensusStateHeightsRequest
|
|
1069
|
+
* @package ibc.core.client.v1
|
|
1070
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateHeightsRequest
|
|
1071
|
+
*/
|
|
679
1072
|
export declare const QueryConsensusStateHeightsRequest: {
|
|
680
1073
|
typeUrl: string;
|
|
681
1074
|
aminoType: string;
|
|
@@ -693,6 +1086,13 @@ export declare const QueryConsensusStateHeightsRequest: {
|
|
|
693
1086
|
toProtoMsg(message: QueryConsensusStateHeightsRequest): QueryConsensusStateHeightsRequestProtoMsg;
|
|
694
1087
|
registerTypeUrl(): void;
|
|
695
1088
|
};
|
|
1089
|
+
/**
|
|
1090
|
+
* QueryConsensusStateHeightsResponse is the response type for the
|
|
1091
|
+
* Query/ConsensusStateHeights RPC method
|
|
1092
|
+
* @name QueryConsensusStateHeightsResponse
|
|
1093
|
+
* @package ibc.core.client.v1
|
|
1094
|
+
* @see proto type: ibc.core.client.v1.QueryConsensusStateHeightsResponse
|
|
1095
|
+
*/
|
|
696
1096
|
export declare const QueryConsensusStateHeightsResponse: {
|
|
697
1097
|
typeUrl: string;
|
|
698
1098
|
aminoType: string;
|
|
@@ -710,6 +1110,13 @@ export declare const QueryConsensusStateHeightsResponse: {
|
|
|
710
1110
|
toProtoMsg(message: QueryConsensusStateHeightsResponse): QueryConsensusStateHeightsResponseProtoMsg;
|
|
711
1111
|
registerTypeUrl(): void;
|
|
712
1112
|
};
|
|
1113
|
+
/**
|
|
1114
|
+
* QueryClientStatusRequest is the request type for the Query/ClientStatus RPC
|
|
1115
|
+
* method
|
|
1116
|
+
* @name QueryClientStatusRequest
|
|
1117
|
+
* @package ibc.core.client.v1
|
|
1118
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatusRequest
|
|
1119
|
+
*/
|
|
713
1120
|
export declare const QueryClientStatusRequest: {
|
|
714
1121
|
typeUrl: string;
|
|
715
1122
|
aminoType: string;
|
|
@@ -727,6 +1134,13 @@ export declare const QueryClientStatusRequest: {
|
|
|
727
1134
|
toProtoMsg(message: QueryClientStatusRequest): QueryClientStatusRequestProtoMsg;
|
|
728
1135
|
registerTypeUrl(): void;
|
|
729
1136
|
};
|
|
1137
|
+
/**
|
|
1138
|
+
* QueryClientStatusResponse is the response type for the Query/ClientStatus RPC
|
|
1139
|
+
* method. It returns the current status of the IBC client.
|
|
1140
|
+
* @name QueryClientStatusResponse
|
|
1141
|
+
* @package ibc.core.client.v1
|
|
1142
|
+
* @see proto type: ibc.core.client.v1.QueryClientStatusResponse
|
|
1143
|
+
*/
|
|
730
1144
|
export declare const QueryClientStatusResponse: {
|
|
731
1145
|
typeUrl: string;
|
|
732
1146
|
aminoType: string;
|
|
@@ -744,6 +1158,13 @@ export declare const QueryClientStatusResponse: {
|
|
|
744
1158
|
toProtoMsg(message: QueryClientStatusResponse): QueryClientStatusResponseProtoMsg;
|
|
745
1159
|
registerTypeUrl(): void;
|
|
746
1160
|
};
|
|
1161
|
+
/**
|
|
1162
|
+
* QueryClientParamsRequest is the request type for the Query/ClientParams RPC
|
|
1163
|
+
* method.
|
|
1164
|
+
* @name QueryClientParamsRequest
|
|
1165
|
+
* @package ibc.core.client.v1
|
|
1166
|
+
* @see proto type: ibc.core.client.v1.QueryClientParamsRequest
|
|
1167
|
+
*/
|
|
747
1168
|
export declare const QueryClientParamsRequest: {
|
|
748
1169
|
typeUrl: string;
|
|
749
1170
|
aminoType: string;
|
|
@@ -761,6 +1182,13 @@ export declare const QueryClientParamsRequest: {
|
|
|
761
1182
|
toProtoMsg(message: QueryClientParamsRequest): QueryClientParamsRequestProtoMsg;
|
|
762
1183
|
registerTypeUrl(): void;
|
|
763
1184
|
};
|
|
1185
|
+
/**
|
|
1186
|
+
* QueryClientParamsResponse is the response type for the Query/ClientParams RPC
|
|
1187
|
+
* method.
|
|
1188
|
+
* @name QueryClientParamsResponse
|
|
1189
|
+
* @package ibc.core.client.v1
|
|
1190
|
+
* @see proto type: ibc.core.client.v1.QueryClientParamsResponse
|
|
1191
|
+
*/
|
|
764
1192
|
export declare const QueryClientParamsResponse: {
|
|
765
1193
|
typeUrl: string;
|
|
766
1194
|
aminoType: string;
|
|
@@ -778,6 +1206,61 @@ export declare const QueryClientParamsResponse: {
|
|
|
778
1206
|
toProtoMsg(message: QueryClientParamsResponse): QueryClientParamsResponseProtoMsg;
|
|
779
1207
|
registerTypeUrl(): void;
|
|
780
1208
|
};
|
|
1209
|
+
/**
|
|
1210
|
+
* QueryClientCreatorRequest is the request type for the Query/ClientCreator RPC
|
|
1211
|
+
* method.
|
|
1212
|
+
* @name QueryClientCreatorRequest
|
|
1213
|
+
* @package ibc.core.client.v1
|
|
1214
|
+
* @see proto type: ibc.core.client.v1.QueryClientCreatorRequest
|
|
1215
|
+
*/
|
|
1216
|
+
export declare const QueryClientCreatorRequest: {
|
|
1217
|
+
typeUrl: string;
|
|
1218
|
+
aminoType: string;
|
|
1219
|
+
is(o: any): o is QueryClientCreatorRequest;
|
|
1220
|
+
isAmino(o: any): o is QueryClientCreatorRequestAmino;
|
|
1221
|
+
encode(message: QueryClientCreatorRequest, writer?: BinaryWriter): BinaryWriter;
|
|
1222
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryClientCreatorRequest;
|
|
1223
|
+
fromPartial(object: DeepPartial<QueryClientCreatorRequest>): QueryClientCreatorRequest;
|
|
1224
|
+
fromAmino(object: QueryClientCreatorRequestAmino): QueryClientCreatorRequest;
|
|
1225
|
+
toAmino(message: QueryClientCreatorRequest): QueryClientCreatorRequestAmino;
|
|
1226
|
+
fromAminoMsg(object: QueryClientCreatorRequestAminoMsg): QueryClientCreatorRequest;
|
|
1227
|
+
toAminoMsg(message: QueryClientCreatorRequest): QueryClientCreatorRequestAminoMsg;
|
|
1228
|
+
fromProtoMsg(message: QueryClientCreatorRequestProtoMsg): QueryClientCreatorRequest;
|
|
1229
|
+
toProto(message: QueryClientCreatorRequest): Uint8Array;
|
|
1230
|
+
toProtoMsg(message: QueryClientCreatorRequest): QueryClientCreatorRequestProtoMsg;
|
|
1231
|
+
registerTypeUrl(): void;
|
|
1232
|
+
};
|
|
1233
|
+
/**
|
|
1234
|
+
* QueryClientCreatorResponse is the response type for the Query/ClientCreator RPC
|
|
1235
|
+
* method.
|
|
1236
|
+
* @name QueryClientCreatorResponse
|
|
1237
|
+
* @package ibc.core.client.v1
|
|
1238
|
+
* @see proto type: ibc.core.client.v1.QueryClientCreatorResponse
|
|
1239
|
+
*/
|
|
1240
|
+
export declare const QueryClientCreatorResponse: {
|
|
1241
|
+
typeUrl: string;
|
|
1242
|
+
aminoType: string;
|
|
1243
|
+
is(o: any): o is QueryClientCreatorResponse;
|
|
1244
|
+
isAmino(o: any): o is QueryClientCreatorResponseAmino;
|
|
1245
|
+
encode(message: QueryClientCreatorResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1246
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryClientCreatorResponse;
|
|
1247
|
+
fromPartial(object: DeepPartial<QueryClientCreatorResponse>): QueryClientCreatorResponse;
|
|
1248
|
+
fromAmino(object: QueryClientCreatorResponseAmino): QueryClientCreatorResponse;
|
|
1249
|
+
toAmino(message: QueryClientCreatorResponse): QueryClientCreatorResponseAmino;
|
|
1250
|
+
fromAminoMsg(object: QueryClientCreatorResponseAminoMsg): QueryClientCreatorResponse;
|
|
1251
|
+
toAminoMsg(message: QueryClientCreatorResponse): QueryClientCreatorResponseAminoMsg;
|
|
1252
|
+
fromProtoMsg(message: QueryClientCreatorResponseProtoMsg): QueryClientCreatorResponse;
|
|
1253
|
+
toProto(message: QueryClientCreatorResponse): Uint8Array;
|
|
1254
|
+
toProtoMsg(message: QueryClientCreatorResponse): QueryClientCreatorResponseProtoMsg;
|
|
1255
|
+
registerTypeUrl(): void;
|
|
1256
|
+
};
|
|
1257
|
+
/**
|
|
1258
|
+
* QueryUpgradedClientStateRequest is the request type for the
|
|
1259
|
+
* Query/UpgradedClientState RPC method
|
|
1260
|
+
* @name QueryUpgradedClientStateRequest
|
|
1261
|
+
* @package ibc.core.client.v1
|
|
1262
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedClientStateRequest
|
|
1263
|
+
*/
|
|
781
1264
|
export declare const QueryUpgradedClientStateRequest: {
|
|
782
1265
|
typeUrl: string;
|
|
783
1266
|
aminoType: string;
|
|
@@ -795,6 +1278,13 @@ export declare const QueryUpgradedClientStateRequest: {
|
|
|
795
1278
|
toProtoMsg(message: QueryUpgradedClientStateRequest): QueryUpgradedClientStateRequestProtoMsg;
|
|
796
1279
|
registerTypeUrl(): void;
|
|
797
1280
|
};
|
|
1281
|
+
/**
|
|
1282
|
+
* QueryUpgradedClientStateResponse is the response type for the
|
|
1283
|
+
* Query/UpgradedClientState RPC method.
|
|
1284
|
+
* @name QueryUpgradedClientStateResponse
|
|
1285
|
+
* @package ibc.core.client.v1
|
|
1286
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedClientStateResponse
|
|
1287
|
+
*/
|
|
798
1288
|
export declare const QueryUpgradedClientStateResponse: {
|
|
799
1289
|
typeUrl: string;
|
|
800
1290
|
aminoType: string;
|
|
@@ -812,6 +1302,13 @@ export declare const QueryUpgradedClientStateResponse: {
|
|
|
812
1302
|
toProtoMsg(message: QueryUpgradedClientStateResponse): QueryUpgradedClientStateResponseProtoMsg;
|
|
813
1303
|
registerTypeUrl(): void;
|
|
814
1304
|
};
|
|
1305
|
+
/**
|
|
1306
|
+
* QueryUpgradedConsensusStateRequest is the request type for the
|
|
1307
|
+
* Query/UpgradedConsensusState RPC method
|
|
1308
|
+
* @name QueryUpgradedConsensusStateRequest
|
|
1309
|
+
* @package ibc.core.client.v1
|
|
1310
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedConsensusStateRequest
|
|
1311
|
+
*/
|
|
815
1312
|
export declare const QueryUpgradedConsensusStateRequest: {
|
|
816
1313
|
typeUrl: string;
|
|
817
1314
|
aminoType: string;
|
|
@@ -829,6 +1326,13 @@ export declare const QueryUpgradedConsensusStateRequest: {
|
|
|
829
1326
|
toProtoMsg(message: QueryUpgradedConsensusStateRequest): QueryUpgradedConsensusStateRequestProtoMsg;
|
|
830
1327
|
registerTypeUrl(): void;
|
|
831
1328
|
};
|
|
1329
|
+
/**
|
|
1330
|
+
* QueryUpgradedConsensusStateResponse is the response type for the
|
|
1331
|
+
* Query/UpgradedConsensusState RPC method.
|
|
1332
|
+
* @name QueryUpgradedConsensusStateResponse
|
|
1333
|
+
* @package ibc.core.client.v1
|
|
1334
|
+
* @see proto type: ibc.core.client.v1.QueryUpgradedConsensusStateResponse
|
|
1335
|
+
*/
|
|
832
1336
|
export declare const QueryUpgradedConsensusStateResponse: {
|
|
833
1337
|
typeUrl: string;
|
|
834
1338
|
aminoType: string;
|
|
@@ -846,6 +1350,12 @@ export declare const QueryUpgradedConsensusStateResponse: {
|
|
|
846
1350
|
toProtoMsg(message: QueryUpgradedConsensusStateResponse): QueryUpgradedConsensusStateResponseProtoMsg;
|
|
847
1351
|
registerTypeUrl(): void;
|
|
848
1352
|
};
|
|
1353
|
+
/**
|
|
1354
|
+
* QueryVerifyMembershipRequest is the request type for the Query/VerifyMembership RPC method
|
|
1355
|
+
* @name QueryVerifyMembershipRequest
|
|
1356
|
+
* @package ibc.core.client.v1
|
|
1357
|
+
* @see proto type: ibc.core.client.v1.QueryVerifyMembershipRequest
|
|
1358
|
+
*/
|
|
849
1359
|
export declare const QueryVerifyMembershipRequest: {
|
|
850
1360
|
typeUrl: string;
|
|
851
1361
|
aminoType: string;
|
|
@@ -863,6 +1373,12 @@ export declare const QueryVerifyMembershipRequest: {
|
|
|
863
1373
|
toProtoMsg(message: QueryVerifyMembershipRequest): QueryVerifyMembershipRequestProtoMsg;
|
|
864
1374
|
registerTypeUrl(): void;
|
|
865
1375
|
};
|
|
1376
|
+
/**
|
|
1377
|
+
* QueryVerifyMembershipResponse is the response type for the Query/VerifyMembership RPC method
|
|
1378
|
+
* @name QueryVerifyMembershipResponse
|
|
1379
|
+
* @package ibc.core.client.v1
|
|
1380
|
+
* @see proto type: ibc.core.client.v1.QueryVerifyMembershipResponse
|
|
1381
|
+
*/
|
|
866
1382
|
export declare const QueryVerifyMembershipResponse: {
|
|
867
1383
|
typeUrl: string;
|
|
868
1384
|
aminoType: string;
|