@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,26 +1,43 @@
|
|
|
1
1
|
import { PageRequest, PageRequestAmino, PageResponse, PageResponseAmino } from "../../../../cosmos/base/query/v1beta1/pagination";
|
|
2
2
|
import { Channel, ChannelAmino, IdentifiedChannel, IdentifiedChannelAmino, PacketState, PacketStateAmino } from "./channel";
|
|
3
|
-
import { Height, HeightAmino, IdentifiedClientState, IdentifiedClientStateAmino
|
|
3
|
+
import { Height, HeightAmino, IdentifiedClientState, IdentifiedClientStateAmino } from "../../client/v1/client";
|
|
4
4
|
import { Any, AnyAmino } from "../../../../google/protobuf/any";
|
|
5
|
-
import { ErrorReceipt, ErrorReceiptAmino, Upgrade, UpgradeAmino } from "./upgrade";
|
|
6
5
|
import { BinaryReader, BinaryWriter } from "../../../../binary";
|
|
7
6
|
import { DeepPartial } from "../../../../helpers";
|
|
8
|
-
/**
|
|
7
|
+
/**
|
|
8
|
+
* QueryChannelRequest is the request type for the Query/Channel RPC method
|
|
9
|
+
* @name QueryChannelRequest
|
|
10
|
+
* @package ibc.core.channel.v1
|
|
11
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelRequest
|
|
12
|
+
*/
|
|
9
13
|
export interface QueryChannelRequest {
|
|
10
|
-
/**
|
|
14
|
+
/**
|
|
15
|
+
* port unique identifier
|
|
16
|
+
*/
|
|
11
17
|
portId: string;
|
|
12
|
-
/**
|
|
18
|
+
/**
|
|
19
|
+
* channel unique identifier
|
|
20
|
+
*/
|
|
13
21
|
channelId: string;
|
|
14
22
|
}
|
|
15
23
|
export interface QueryChannelRequestProtoMsg {
|
|
16
24
|
typeUrl: "/ibc.core.channel.v1.QueryChannelRequest";
|
|
17
25
|
value: Uint8Array;
|
|
18
26
|
}
|
|
19
|
-
/**
|
|
27
|
+
/**
|
|
28
|
+
* QueryChannelRequest is the request type for the Query/Channel RPC method
|
|
29
|
+
* @name QueryChannelRequestAmino
|
|
30
|
+
* @package ibc.core.channel.v1
|
|
31
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelRequest
|
|
32
|
+
*/
|
|
20
33
|
export interface QueryChannelRequestAmino {
|
|
21
|
-
/**
|
|
34
|
+
/**
|
|
35
|
+
* port unique identifier
|
|
36
|
+
*/
|
|
22
37
|
port_id: string;
|
|
23
|
-
/**
|
|
38
|
+
/**
|
|
39
|
+
* channel unique identifier
|
|
40
|
+
*/
|
|
24
41
|
channel_id: string;
|
|
25
42
|
}
|
|
26
43
|
export interface QueryChannelRequestAminoMsg {
|
|
@@ -31,13 +48,22 @@ export interface QueryChannelRequestAminoMsg {
|
|
|
31
48
|
* QueryChannelResponse is the response type for the Query/Channel RPC method.
|
|
32
49
|
* Besides the Channel end, it includes a proof and the height from which the
|
|
33
50
|
* proof was retrieved.
|
|
51
|
+
* @name QueryChannelResponse
|
|
52
|
+
* @package ibc.core.channel.v1
|
|
53
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelResponse
|
|
34
54
|
*/
|
|
35
55
|
export interface QueryChannelResponse {
|
|
36
|
-
/**
|
|
56
|
+
/**
|
|
57
|
+
* channel associated with the request identifiers
|
|
58
|
+
*/
|
|
37
59
|
channel?: Channel;
|
|
38
|
-
/**
|
|
60
|
+
/**
|
|
61
|
+
* merkle proof of existence
|
|
62
|
+
*/
|
|
39
63
|
proof: Uint8Array;
|
|
40
|
-
/**
|
|
64
|
+
/**
|
|
65
|
+
* height at which the proof was retrieved
|
|
66
|
+
*/
|
|
41
67
|
proofHeight: Height;
|
|
42
68
|
}
|
|
43
69
|
export interface QueryChannelResponseProtoMsg {
|
|
@@ -48,57 +74,102 @@ export interface QueryChannelResponseProtoMsg {
|
|
|
48
74
|
* QueryChannelResponse is the response type for the Query/Channel RPC method.
|
|
49
75
|
* Besides the Channel end, it includes a proof and the height from which the
|
|
50
76
|
* proof was retrieved.
|
|
77
|
+
* @name QueryChannelResponseAmino
|
|
78
|
+
* @package ibc.core.channel.v1
|
|
79
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelResponse
|
|
51
80
|
*/
|
|
52
81
|
export interface QueryChannelResponseAmino {
|
|
53
|
-
/**
|
|
82
|
+
/**
|
|
83
|
+
* channel associated with the request identifiers
|
|
84
|
+
*/
|
|
54
85
|
channel?: ChannelAmino;
|
|
55
|
-
/**
|
|
86
|
+
/**
|
|
87
|
+
* merkle proof of existence
|
|
88
|
+
*/
|
|
56
89
|
proof: string;
|
|
57
|
-
/**
|
|
90
|
+
/**
|
|
91
|
+
* height at which the proof was retrieved
|
|
92
|
+
*/
|
|
58
93
|
proof_height: HeightAmino;
|
|
59
94
|
}
|
|
60
95
|
export interface QueryChannelResponseAminoMsg {
|
|
61
96
|
type: "cosmos-sdk/QueryChannelResponse";
|
|
62
97
|
value: QueryChannelResponseAmino;
|
|
63
98
|
}
|
|
64
|
-
/**
|
|
99
|
+
/**
|
|
100
|
+
* QueryChannelsRequest is the request type for the Query/Channels RPC method
|
|
101
|
+
* @name QueryChannelsRequest
|
|
102
|
+
* @package ibc.core.channel.v1
|
|
103
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelsRequest
|
|
104
|
+
*/
|
|
65
105
|
export interface QueryChannelsRequest {
|
|
66
|
-
/**
|
|
106
|
+
/**
|
|
107
|
+
* pagination request
|
|
108
|
+
*/
|
|
67
109
|
pagination?: PageRequest;
|
|
68
110
|
}
|
|
69
111
|
export interface QueryChannelsRequestProtoMsg {
|
|
70
112
|
typeUrl: "/ibc.core.channel.v1.QueryChannelsRequest";
|
|
71
113
|
value: Uint8Array;
|
|
72
114
|
}
|
|
73
|
-
/**
|
|
115
|
+
/**
|
|
116
|
+
* QueryChannelsRequest is the request type for the Query/Channels RPC method
|
|
117
|
+
* @name QueryChannelsRequestAmino
|
|
118
|
+
* @package ibc.core.channel.v1
|
|
119
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelsRequest
|
|
120
|
+
*/
|
|
74
121
|
export interface QueryChannelsRequestAmino {
|
|
75
|
-
/**
|
|
122
|
+
/**
|
|
123
|
+
* pagination request
|
|
124
|
+
*/
|
|
76
125
|
pagination?: PageRequestAmino;
|
|
77
126
|
}
|
|
78
127
|
export interface QueryChannelsRequestAminoMsg {
|
|
79
128
|
type: "cosmos-sdk/QueryChannelsRequest";
|
|
80
129
|
value: QueryChannelsRequestAmino;
|
|
81
130
|
}
|
|
82
|
-
/**
|
|
131
|
+
/**
|
|
132
|
+
* QueryChannelsResponse is the response type for the Query/Channels RPC method.
|
|
133
|
+
* @name QueryChannelsResponse
|
|
134
|
+
* @package ibc.core.channel.v1
|
|
135
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelsResponse
|
|
136
|
+
*/
|
|
83
137
|
export interface QueryChannelsResponse {
|
|
84
|
-
/**
|
|
138
|
+
/**
|
|
139
|
+
* list of stored channels of the chain.
|
|
140
|
+
*/
|
|
85
141
|
channels: IdentifiedChannel[];
|
|
86
|
-
/**
|
|
142
|
+
/**
|
|
143
|
+
* pagination response
|
|
144
|
+
*/
|
|
87
145
|
pagination?: PageResponse;
|
|
88
|
-
/**
|
|
146
|
+
/**
|
|
147
|
+
* query block height
|
|
148
|
+
*/
|
|
89
149
|
height: Height;
|
|
90
150
|
}
|
|
91
151
|
export interface QueryChannelsResponseProtoMsg {
|
|
92
152
|
typeUrl: "/ibc.core.channel.v1.QueryChannelsResponse";
|
|
93
153
|
value: Uint8Array;
|
|
94
154
|
}
|
|
95
|
-
/**
|
|
155
|
+
/**
|
|
156
|
+
* QueryChannelsResponse is the response type for the Query/Channels RPC method.
|
|
157
|
+
* @name QueryChannelsResponseAmino
|
|
158
|
+
* @package ibc.core.channel.v1
|
|
159
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelsResponse
|
|
160
|
+
*/
|
|
96
161
|
export interface QueryChannelsResponseAmino {
|
|
97
|
-
/**
|
|
162
|
+
/**
|
|
163
|
+
* list of stored channels of the chain.
|
|
164
|
+
*/
|
|
98
165
|
channels: IdentifiedChannelAmino[];
|
|
99
|
-
/**
|
|
166
|
+
/**
|
|
167
|
+
* pagination response
|
|
168
|
+
*/
|
|
100
169
|
pagination?: PageResponseAmino;
|
|
101
|
-
/**
|
|
170
|
+
/**
|
|
171
|
+
* query block height
|
|
172
|
+
*/
|
|
102
173
|
height: HeightAmino;
|
|
103
174
|
}
|
|
104
175
|
export interface QueryChannelsResponseAminoMsg {
|
|
@@ -108,11 +179,18 @@ export interface QueryChannelsResponseAminoMsg {
|
|
|
108
179
|
/**
|
|
109
180
|
* QueryConnectionChannelsRequest is the request type for the
|
|
110
181
|
* Query/QueryConnectionChannels RPC method
|
|
182
|
+
* @name QueryConnectionChannelsRequest
|
|
183
|
+
* @package ibc.core.channel.v1
|
|
184
|
+
* @see proto type: ibc.core.channel.v1.QueryConnectionChannelsRequest
|
|
111
185
|
*/
|
|
112
186
|
export interface QueryConnectionChannelsRequest {
|
|
113
|
-
/**
|
|
187
|
+
/**
|
|
188
|
+
* connection unique identifier
|
|
189
|
+
*/
|
|
114
190
|
connection: string;
|
|
115
|
-
/**
|
|
191
|
+
/**
|
|
192
|
+
* pagination request
|
|
193
|
+
*/
|
|
116
194
|
pagination?: PageRequest;
|
|
117
195
|
}
|
|
118
196
|
export interface QueryConnectionChannelsRequestProtoMsg {
|
|
@@ -122,11 +200,18 @@ export interface QueryConnectionChannelsRequestProtoMsg {
|
|
|
122
200
|
/**
|
|
123
201
|
* QueryConnectionChannelsRequest is the request type for the
|
|
124
202
|
* Query/QueryConnectionChannels RPC method
|
|
203
|
+
* @name QueryConnectionChannelsRequestAmino
|
|
204
|
+
* @package ibc.core.channel.v1
|
|
205
|
+
* @see proto type: ibc.core.channel.v1.QueryConnectionChannelsRequest
|
|
125
206
|
*/
|
|
126
207
|
export interface QueryConnectionChannelsRequestAmino {
|
|
127
|
-
/**
|
|
208
|
+
/**
|
|
209
|
+
* connection unique identifier
|
|
210
|
+
*/
|
|
128
211
|
connection: string;
|
|
129
|
-
/**
|
|
212
|
+
/**
|
|
213
|
+
* pagination request
|
|
214
|
+
*/
|
|
130
215
|
pagination?: PageRequestAmino;
|
|
131
216
|
}
|
|
132
217
|
export interface QueryConnectionChannelsRequestAminoMsg {
|
|
@@ -136,13 +221,22 @@ export interface QueryConnectionChannelsRequestAminoMsg {
|
|
|
136
221
|
/**
|
|
137
222
|
* QueryConnectionChannelsResponse is the Response type for the
|
|
138
223
|
* Query/QueryConnectionChannels RPC method
|
|
224
|
+
* @name QueryConnectionChannelsResponse
|
|
225
|
+
* @package ibc.core.channel.v1
|
|
226
|
+
* @see proto type: ibc.core.channel.v1.QueryConnectionChannelsResponse
|
|
139
227
|
*/
|
|
140
228
|
export interface QueryConnectionChannelsResponse {
|
|
141
|
-
/**
|
|
229
|
+
/**
|
|
230
|
+
* list of channels associated with a connection.
|
|
231
|
+
*/
|
|
142
232
|
channels: IdentifiedChannel[];
|
|
143
|
-
/**
|
|
233
|
+
/**
|
|
234
|
+
* pagination response
|
|
235
|
+
*/
|
|
144
236
|
pagination?: PageResponse;
|
|
145
|
-
/**
|
|
237
|
+
/**
|
|
238
|
+
* query block height
|
|
239
|
+
*/
|
|
146
240
|
height: Height;
|
|
147
241
|
}
|
|
148
242
|
export interface QueryConnectionChannelsResponseProtoMsg {
|
|
@@ -152,13 +246,22 @@ export interface QueryConnectionChannelsResponseProtoMsg {
|
|
|
152
246
|
/**
|
|
153
247
|
* QueryConnectionChannelsResponse is the Response type for the
|
|
154
248
|
* Query/QueryConnectionChannels RPC method
|
|
249
|
+
* @name QueryConnectionChannelsResponseAmino
|
|
250
|
+
* @package ibc.core.channel.v1
|
|
251
|
+
* @see proto type: ibc.core.channel.v1.QueryConnectionChannelsResponse
|
|
155
252
|
*/
|
|
156
253
|
export interface QueryConnectionChannelsResponseAmino {
|
|
157
|
-
/**
|
|
254
|
+
/**
|
|
255
|
+
* list of channels associated with a connection.
|
|
256
|
+
*/
|
|
158
257
|
channels: IdentifiedChannelAmino[];
|
|
159
|
-
/**
|
|
258
|
+
/**
|
|
259
|
+
* pagination response
|
|
260
|
+
*/
|
|
160
261
|
pagination?: PageResponseAmino;
|
|
161
|
-
/**
|
|
262
|
+
/**
|
|
263
|
+
* query block height
|
|
264
|
+
*/
|
|
162
265
|
height: HeightAmino;
|
|
163
266
|
}
|
|
164
267
|
export interface QueryConnectionChannelsResponseAminoMsg {
|
|
@@ -168,11 +271,18 @@ export interface QueryConnectionChannelsResponseAminoMsg {
|
|
|
168
271
|
/**
|
|
169
272
|
* QueryChannelClientStateRequest is the request type for the Query/ClientState
|
|
170
273
|
* RPC method
|
|
274
|
+
* @name QueryChannelClientStateRequest
|
|
275
|
+
* @package ibc.core.channel.v1
|
|
276
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelClientStateRequest
|
|
171
277
|
*/
|
|
172
278
|
export interface QueryChannelClientStateRequest {
|
|
173
|
-
/**
|
|
279
|
+
/**
|
|
280
|
+
* port unique identifier
|
|
281
|
+
*/
|
|
174
282
|
portId: string;
|
|
175
|
-
/**
|
|
283
|
+
/**
|
|
284
|
+
* channel unique identifier
|
|
285
|
+
*/
|
|
176
286
|
channelId: string;
|
|
177
287
|
}
|
|
178
288
|
export interface QueryChannelClientStateRequestProtoMsg {
|
|
@@ -182,11 +292,18 @@ export interface QueryChannelClientStateRequestProtoMsg {
|
|
|
182
292
|
/**
|
|
183
293
|
* QueryChannelClientStateRequest is the request type for the Query/ClientState
|
|
184
294
|
* RPC method
|
|
295
|
+
* @name QueryChannelClientStateRequestAmino
|
|
296
|
+
* @package ibc.core.channel.v1
|
|
297
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelClientStateRequest
|
|
185
298
|
*/
|
|
186
299
|
export interface QueryChannelClientStateRequestAmino {
|
|
187
|
-
/**
|
|
300
|
+
/**
|
|
301
|
+
* port unique identifier
|
|
302
|
+
*/
|
|
188
303
|
port_id: string;
|
|
189
|
-
/**
|
|
304
|
+
/**
|
|
305
|
+
* channel unique identifier
|
|
306
|
+
*/
|
|
190
307
|
channel_id: string;
|
|
191
308
|
}
|
|
192
309
|
export interface QueryChannelClientStateRequestAminoMsg {
|
|
@@ -196,13 +313,22 @@ export interface QueryChannelClientStateRequestAminoMsg {
|
|
|
196
313
|
/**
|
|
197
314
|
* QueryChannelClientStateResponse is the Response type for the
|
|
198
315
|
* Query/QueryChannelClientState RPC method
|
|
316
|
+
* @name QueryChannelClientStateResponse
|
|
317
|
+
* @package ibc.core.channel.v1
|
|
318
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelClientStateResponse
|
|
199
319
|
*/
|
|
200
320
|
export interface QueryChannelClientStateResponse {
|
|
201
|
-
/**
|
|
321
|
+
/**
|
|
322
|
+
* client state associated with the channel
|
|
323
|
+
*/
|
|
202
324
|
identifiedClientState?: IdentifiedClientState;
|
|
203
|
-
/**
|
|
325
|
+
/**
|
|
326
|
+
* merkle proof of existence
|
|
327
|
+
*/
|
|
204
328
|
proof: Uint8Array;
|
|
205
|
-
/**
|
|
329
|
+
/**
|
|
330
|
+
* height at which the proof was retrieved
|
|
331
|
+
*/
|
|
206
332
|
proofHeight: Height;
|
|
207
333
|
}
|
|
208
334
|
export interface QueryChannelClientStateResponseProtoMsg {
|
|
@@ -212,13 +338,22 @@ export interface QueryChannelClientStateResponseProtoMsg {
|
|
|
212
338
|
/**
|
|
213
339
|
* QueryChannelClientStateResponse is the Response type for the
|
|
214
340
|
* Query/QueryChannelClientState RPC method
|
|
341
|
+
* @name QueryChannelClientStateResponseAmino
|
|
342
|
+
* @package ibc.core.channel.v1
|
|
343
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelClientStateResponse
|
|
215
344
|
*/
|
|
216
345
|
export interface QueryChannelClientStateResponseAmino {
|
|
217
|
-
/**
|
|
346
|
+
/**
|
|
347
|
+
* client state associated with the channel
|
|
348
|
+
*/
|
|
218
349
|
identified_client_state?: IdentifiedClientStateAmino;
|
|
219
|
-
/**
|
|
350
|
+
/**
|
|
351
|
+
* merkle proof of existence
|
|
352
|
+
*/
|
|
220
353
|
proof: string;
|
|
221
|
-
/**
|
|
354
|
+
/**
|
|
355
|
+
* height at which the proof was retrieved
|
|
356
|
+
*/
|
|
222
357
|
proof_height: HeightAmino;
|
|
223
358
|
}
|
|
224
359
|
export interface QueryChannelClientStateResponseAminoMsg {
|
|
@@ -228,15 +363,26 @@ export interface QueryChannelClientStateResponseAminoMsg {
|
|
|
228
363
|
/**
|
|
229
364
|
* QueryChannelConsensusStateRequest is the request type for the
|
|
230
365
|
* Query/ConsensusState RPC method
|
|
366
|
+
* @name QueryChannelConsensusStateRequest
|
|
367
|
+
* @package ibc.core.channel.v1
|
|
368
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelConsensusStateRequest
|
|
231
369
|
*/
|
|
232
370
|
export interface QueryChannelConsensusStateRequest {
|
|
233
|
-
/**
|
|
371
|
+
/**
|
|
372
|
+
* port unique identifier
|
|
373
|
+
*/
|
|
234
374
|
portId: string;
|
|
235
|
-
/**
|
|
375
|
+
/**
|
|
376
|
+
* channel unique identifier
|
|
377
|
+
*/
|
|
236
378
|
channelId: string;
|
|
237
|
-
/**
|
|
379
|
+
/**
|
|
380
|
+
* revision number of the consensus state
|
|
381
|
+
*/
|
|
238
382
|
revisionNumber: bigint;
|
|
239
|
-
/**
|
|
383
|
+
/**
|
|
384
|
+
* revision height of the consensus state
|
|
385
|
+
*/
|
|
240
386
|
revisionHeight: bigint;
|
|
241
387
|
}
|
|
242
388
|
export interface QueryChannelConsensusStateRequestProtoMsg {
|
|
@@ -246,15 +392,26 @@ export interface QueryChannelConsensusStateRequestProtoMsg {
|
|
|
246
392
|
/**
|
|
247
393
|
* QueryChannelConsensusStateRequest is the request type for the
|
|
248
394
|
* Query/ConsensusState RPC method
|
|
395
|
+
* @name QueryChannelConsensusStateRequestAmino
|
|
396
|
+
* @package ibc.core.channel.v1
|
|
397
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelConsensusStateRequest
|
|
249
398
|
*/
|
|
250
399
|
export interface QueryChannelConsensusStateRequestAmino {
|
|
251
|
-
/**
|
|
400
|
+
/**
|
|
401
|
+
* port unique identifier
|
|
402
|
+
*/
|
|
252
403
|
port_id: string;
|
|
253
|
-
/**
|
|
404
|
+
/**
|
|
405
|
+
* channel unique identifier
|
|
406
|
+
*/
|
|
254
407
|
channel_id: string;
|
|
255
|
-
/**
|
|
408
|
+
/**
|
|
409
|
+
* revision number of the consensus state
|
|
410
|
+
*/
|
|
256
411
|
revision_number: string;
|
|
257
|
-
/**
|
|
412
|
+
/**
|
|
413
|
+
* revision height of the consensus state
|
|
414
|
+
*/
|
|
258
415
|
revision_height: string;
|
|
259
416
|
}
|
|
260
417
|
export interface QueryChannelConsensusStateRequestAminoMsg {
|
|
@@ -264,15 +421,26 @@ export interface QueryChannelConsensusStateRequestAminoMsg {
|
|
|
264
421
|
/**
|
|
265
422
|
* QueryChannelClientStateResponse is the Response type for the
|
|
266
423
|
* Query/QueryChannelClientState RPC method
|
|
424
|
+
* @name QueryChannelConsensusStateResponse
|
|
425
|
+
* @package ibc.core.channel.v1
|
|
426
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelConsensusStateResponse
|
|
267
427
|
*/
|
|
268
428
|
export interface QueryChannelConsensusStateResponse {
|
|
269
|
-
/**
|
|
429
|
+
/**
|
|
430
|
+
* consensus state associated with the channel
|
|
431
|
+
*/
|
|
270
432
|
consensusState?: Any;
|
|
271
|
-
/**
|
|
433
|
+
/**
|
|
434
|
+
* client ID associated with the consensus state
|
|
435
|
+
*/
|
|
272
436
|
clientId: string;
|
|
273
|
-
/**
|
|
437
|
+
/**
|
|
438
|
+
* merkle proof of existence
|
|
439
|
+
*/
|
|
274
440
|
proof: Uint8Array;
|
|
275
|
-
/**
|
|
441
|
+
/**
|
|
442
|
+
* height at which the proof was retrieved
|
|
443
|
+
*/
|
|
276
444
|
proofHeight: Height;
|
|
277
445
|
}
|
|
278
446
|
export interface QueryChannelConsensusStateResponseProtoMsg {
|
|
@@ -282,15 +450,26 @@ export interface QueryChannelConsensusStateResponseProtoMsg {
|
|
|
282
450
|
/**
|
|
283
451
|
* QueryChannelClientStateResponse is the Response type for the
|
|
284
452
|
* Query/QueryChannelClientState RPC method
|
|
453
|
+
* @name QueryChannelConsensusStateResponseAmino
|
|
454
|
+
* @package ibc.core.channel.v1
|
|
455
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelConsensusStateResponse
|
|
285
456
|
*/
|
|
286
457
|
export interface QueryChannelConsensusStateResponseAmino {
|
|
287
|
-
/**
|
|
458
|
+
/**
|
|
459
|
+
* consensus state associated with the channel
|
|
460
|
+
*/
|
|
288
461
|
consensus_state?: AnyAmino;
|
|
289
|
-
/**
|
|
462
|
+
/**
|
|
463
|
+
* client ID associated with the consensus state
|
|
464
|
+
*/
|
|
290
465
|
client_id: string;
|
|
291
|
-
/**
|
|
466
|
+
/**
|
|
467
|
+
* merkle proof of existence
|
|
468
|
+
*/
|
|
292
469
|
proof: string;
|
|
293
|
-
/**
|
|
470
|
+
/**
|
|
471
|
+
* height at which the proof was retrieved
|
|
472
|
+
*/
|
|
294
473
|
proof_height: HeightAmino;
|
|
295
474
|
}
|
|
296
475
|
export interface QueryChannelConsensusStateResponseAminoMsg {
|
|
@@ -300,13 +479,22 @@ export interface QueryChannelConsensusStateResponseAminoMsg {
|
|
|
300
479
|
/**
|
|
301
480
|
* QueryPacketCommitmentRequest is the request type for the
|
|
302
481
|
* Query/PacketCommitment RPC method
|
|
482
|
+
* @name QueryPacketCommitmentRequest
|
|
483
|
+
* @package ibc.core.channel.v1
|
|
484
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketCommitmentRequest
|
|
303
485
|
*/
|
|
304
486
|
export interface QueryPacketCommitmentRequest {
|
|
305
|
-
/**
|
|
487
|
+
/**
|
|
488
|
+
* port unique identifier
|
|
489
|
+
*/
|
|
306
490
|
portId: string;
|
|
307
|
-
/**
|
|
491
|
+
/**
|
|
492
|
+
* channel unique identifier
|
|
493
|
+
*/
|
|
308
494
|
channelId: string;
|
|
309
|
-
/**
|
|
495
|
+
/**
|
|
496
|
+
* packet sequence
|
|
497
|
+
*/
|
|
310
498
|
sequence: bigint;
|
|
311
499
|
}
|
|
312
500
|
export interface QueryPacketCommitmentRequestProtoMsg {
|
|
@@ -316,13 +504,22 @@ export interface QueryPacketCommitmentRequestProtoMsg {
|
|
|
316
504
|
/**
|
|
317
505
|
* QueryPacketCommitmentRequest is the request type for the
|
|
318
506
|
* Query/PacketCommitment RPC method
|
|
507
|
+
* @name QueryPacketCommitmentRequestAmino
|
|
508
|
+
* @package ibc.core.channel.v1
|
|
509
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketCommitmentRequest
|
|
319
510
|
*/
|
|
320
511
|
export interface QueryPacketCommitmentRequestAmino {
|
|
321
|
-
/**
|
|
512
|
+
/**
|
|
513
|
+
* port unique identifier
|
|
514
|
+
*/
|
|
322
515
|
port_id: string;
|
|
323
|
-
/**
|
|
516
|
+
/**
|
|
517
|
+
* channel unique identifier
|
|
518
|
+
*/
|
|
324
519
|
channel_id: string;
|
|
325
|
-
/**
|
|
520
|
+
/**
|
|
521
|
+
* packet sequence
|
|
522
|
+
*/
|
|
326
523
|
sequence: string;
|
|
327
524
|
}
|
|
328
525
|
export interface QueryPacketCommitmentRequestAminoMsg {
|
|
@@ -333,13 +530,22 @@ export interface QueryPacketCommitmentRequestAminoMsg {
|
|
|
333
530
|
* QueryPacketCommitmentResponse defines the client query response for a packet
|
|
334
531
|
* which also includes a proof and the height from which the proof was
|
|
335
532
|
* retrieved
|
|
533
|
+
* @name QueryPacketCommitmentResponse
|
|
534
|
+
* @package ibc.core.channel.v1
|
|
535
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketCommitmentResponse
|
|
336
536
|
*/
|
|
337
537
|
export interface QueryPacketCommitmentResponse {
|
|
338
|
-
/**
|
|
538
|
+
/**
|
|
539
|
+
* packet associated with the request fields
|
|
540
|
+
*/
|
|
339
541
|
commitment: Uint8Array;
|
|
340
|
-
/**
|
|
542
|
+
/**
|
|
543
|
+
* merkle proof of existence
|
|
544
|
+
*/
|
|
341
545
|
proof: Uint8Array;
|
|
342
|
-
/**
|
|
546
|
+
/**
|
|
547
|
+
* height at which the proof was retrieved
|
|
548
|
+
*/
|
|
343
549
|
proofHeight: Height;
|
|
344
550
|
}
|
|
345
551
|
export interface QueryPacketCommitmentResponseProtoMsg {
|
|
@@ -350,13 +556,22 @@ export interface QueryPacketCommitmentResponseProtoMsg {
|
|
|
350
556
|
* QueryPacketCommitmentResponse defines the client query response for a packet
|
|
351
557
|
* which also includes a proof and the height from which the proof was
|
|
352
558
|
* retrieved
|
|
559
|
+
* @name QueryPacketCommitmentResponseAmino
|
|
560
|
+
* @package ibc.core.channel.v1
|
|
561
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketCommitmentResponse
|
|
353
562
|
*/
|
|
354
563
|
export interface QueryPacketCommitmentResponseAmino {
|
|
355
|
-
/**
|
|
564
|
+
/**
|
|
565
|
+
* packet associated with the request fields
|
|
566
|
+
*/
|
|
356
567
|
commitment: string;
|
|
357
|
-
/**
|
|
568
|
+
/**
|
|
569
|
+
* merkle proof of existence
|
|
570
|
+
*/
|
|
358
571
|
proof: string;
|
|
359
|
-
/**
|
|
572
|
+
/**
|
|
573
|
+
* height at which the proof was retrieved
|
|
574
|
+
*/
|
|
360
575
|
proof_height: HeightAmino;
|
|
361
576
|
}
|
|
362
577
|
export interface QueryPacketCommitmentResponseAminoMsg {
|
|
@@ -366,13 +581,22 @@ export interface QueryPacketCommitmentResponseAminoMsg {
|
|
|
366
581
|
/**
|
|
367
582
|
* QueryPacketCommitmentsRequest is the request type for the
|
|
368
583
|
* Query/QueryPacketCommitments RPC method
|
|
584
|
+
* @name QueryPacketCommitmentsRequest
|
|
585
|
+
* @package ibc.core.channel.v1
|
|
586
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketCommitmentsRequest
|
|
369
587
|
*/
|
|
370
588
|
export interface QueryPacketCommitmentsRequest {
|
|
371
|
-
/**
|
|
589
|
+
/**
|
|
590
|
+
* port unique identifier
|
|
591
|
+
*/
|
|
372
592
|
portId: string;
|
|
373
|
-
/**
|
|
593
|
+
/**
|
|
594
|
+
* channel unique identifier
|
|
595
|
+
*/
|
|
374
596
|
channelId: string;
|
|
375
|
-
/**
|
|
597
|
+
/**
|
|
598
|
+
* pagination request
|
|
599
|
+
*/
|
|
376
600
|
pagination?: PageRequest;
|
|
377
601
|
}
|
|
378
602
|
export interface QueryPacketCommitmentsRequestProtoMsg {
|
|
@@ -382,13 +606,22 @@ export interface QueryPacketCommitmentsRequestProtoMsg {
|
|
|
382
606
|
/**
|
|
383
607
|
* QueryPacketCommitmentsRequest is the request type for the
|
|
384
608
|
* Query/QueryPacketCommitments RPC method
|
|
609
|
+
* @name QueryPacketCommitmentsRequestAmino
|
|
610
|
+
* @package ibc.core.channel.v1
|
|
611
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketCommitmentsRequest
|
|
385
612
|
*/
|
|
386
613
|
export interface QueryPacketCommitmentsRequestAmino {
|
|
387
|
-
/**
|
|
614
|
+
/**
|
|
615
|
+
* port unique identifier
|
|
616
|
+
*/
|
|
388
617
|
port_id: string;
|
|
389
|
-
/**
|
|
618
|
+
/**
|
|
619
|
+
* channel unique identifier
|
|
620
|
+
*/
|
|
390
621
|
channel_id: string;
|
|
391
|
-
/**
|
|
622
|
+
/**
|
|
623
|
+
* pagination request
|
|
624
|
+
*/
|
|
392
625
|
pagination?: PageRequestAmino;
|
|
393
626
|
}
|
|
394
627
|
export interface QueryPacketCommitmentsRequestAminoMsg {
|
|
@@ -398,12 +631,19 @@ export interface QueryPacketCommitmentsRequestAminoMsg {
|
|
|
398
631
|
/**
|
|
399
632
|
* QueryPacketCommitmentsResponse is the request type for the
|
|
400
633
|
* Query/QueryPacketCommitments RPC method
|
|
634
|
+
* @name QueryPacketCommitmentsResponse
|
|
635
|
+
* @package ibc.core.channel.v1
|
|
636
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketCommitmentsResponse
|
|
401
637
|
*/
|
|
402
638
|
export interface QueryPacketCommitmentsResponse {
|
|
403
639
|
commitments: PacketState[];
|
|
404
|
-
/**
|
|
640
|
+
/**
|
|
641
|
+
* pagination response
|
|
642
|
+
*/
|
|
405
643
|
pagination?: PageResponse;
|
|
406
|
-
/**
|
|
644
|
+
/**
|
|
645
|
+
* query block height
|
|
646
|
+
*/
|
|
407
647
|
height: Height;
|
|
408
648
|
}
|
|
409
649
|
export interface QueryPacketCommitmentsResponseProtoMsg {
|
|
@@ -413,12 +653,19 @@ export interface QueryPacketCommitmentsResponseProtoMsg {
|
|
|
413
653
|
/**
|
|
414
654
|
* QueryPacketCommitmentsResponse is the request type for the
|
|
415
655
|
* Query/QueryPacketCommitments RPC method
|
|
656
|
+
* @name QueryPacketCommitmentsResponseAmino
|
|
657
|
+
* @package ibc.core.channel.v1
|
|
658
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketCommitmentsResponse
|
|
416
659
|
*/
|
|
417
660
|
export interface QueryPacketCommitmentsResponseAmino {
|
|
418
661
|
commitments: PacketStateAmino[];
|
|
419
|
-
/**
|
|
662
|
+
/**
|
|
663
|
+
* pagination response
|
|
664
|
+
*/
|
|
420
665
|
pagination?: PageResponseAmino;
|
|
421
|
-
/**
|
|
666
|
+
/**
|
|
667
|
+
* query block height
|
|
668
|
+
*/
|
|
422
669
|
height: HeightAmino;
|
|
423
670
|
}
|
|
424
671
|
export interface QueryPacketCommitmentsResponseAminoMsg {
|
|
@@ -428,13 +675,22 @@ export interface QueryPacketCommitmentsResponseAminoMsg {
|
|
|
428
675
|
/**
|
|
429
676
|
* QueryPacketReceiptRequest is the request type for the
|
|
430
677
|
* Query/PacketReceipt RPC method
|
|
678
|
+
* @name QueryPacketReceiptRequest
|
|
679
|
+
* @package ibc.core.channel.v1
|
|
680
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketReceiptRequest
|
|
431
681
|
*/
|
|
432
682
|
export interface QueryPacketReceiptRequest {
|
|
433
|
-
/**
|
|
683
|
+
/**
|
|
684
|
+
* port unique identifier
|
|
685
|
+
*/
|
|
434
686
|
portId: string;
|
|
435
|
-
/**
|
|
687
|
+
/**
|
|
688
|
+
* channel unique identifier
|
|
689
|
+
*/
|
|
436
690
|
channelId: string;
|
|
437
|
-
/**
|
|
691
|
+
/**
|
|
692
|
+
* packet sequence
|
|
693
|
+
*/
|
|
438
694
|
sequence: bigint;
|
|
439
695
|
}
|
|
440
696
|
export interface QueryPacketReceiptRequestProtoMsg {
|
|
@@ -444,13 +700,22 @@ export interface QueryPacketReceiptRequestProtoMsg {
|
|
|
444
700
|
/**
|
|
445
701
|
* QueryPacketReceiptRequest is the request type for the
|
|
446
702
|
* Query/PacketReceipt RPC method
|
|
703
|
+
* @name QueryPacketReceiptRequestAmino
|
|
704
|
+
* @package ibc.core.channel.v1
|
|
705
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketReceiptRequest
|
|
447
706
|
*/
|
|
448
707
|
export interface QueryPacketReceiptRequestAmino {
|
|
449
|
-
/**
|
|
708
|
+
/**
|
|
709
|
+
* port unique identifier
|
|
710
|
+
*/
|
|
450
711
|
port_id: string;
|
|
451
|
-
/**
|
|
712
|
+
/**
|
|
713
|
+
* channel unique identifier
|
|
714
|
+
*/
|
|
452
715
|
channel_id: string;
|
|
453
|
-
/**
|
|
716
|
+
/**
|
|
717
|
+
* packet sequence
|
|
718
|
+
*/
|
|
454
719
|
sequence: string;
|
|
455
720
|
}
|
|
456
721
|
export interface QueryPacketReceiptRequestAminoMsg {
|
|
@@ -461,13 +726,22 @@ export interface QueryPacketReceiptRequestAminoMsg {
|
|
|
461
726
|
* QueryPacketReceiptResponse defines the client query response for a packet
|
|
462
727
|
* receipt which also includes a proof, and the height from which the proof was
|
|
463
728
|
* retrieved
|
|
729
|
+
* @name QueryPacketReceiptResponse
|
|
730
|
+
* @package ibc.core.channel.v1
|
|
731
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketReceiptResponse
|
|
464
732
|
*/
|
|
465
733
|
export interface QueryPacketReceiptResponse {
|
|
466
|
-
/**
|
|
734
|
+
/**
|
|
735
|
+
* success flag for if receipt exists
|
|
736
|
+
*/
|
|
467
737
|
received: boolean;
|
|
468
|
-
/**
|
|
738
|
+
/**
|
|
739
|
+
* merkle proof of existence
|
|
740
|
+
*/
|
|
469
741
|
proof: Uint8Array;
|
|
470
|
-
/**
|
|
742
|
+
/**
|
|
743
|
+
* height at which the proof was retrieved
|
|
744
|
+
*/
|
|
471
745
|
proofHeight: Height;
|
|
472
746
|
}
|
|
473
747
|
export interface QueryPacketReceiptResponseProtoMsg {
|
|
@@ -478,13 +752,22 @@ export interface QueryPacketReceiptResponseProtoMsg {
|
|
|
478
752
|
* QueryPacketReceiptResponse defines the client query response for a packet
|
|
479
753
|
* receipt which also includes a proof, and the height from which the proof was
|
|
480
754
|
* retrieved
|
|
755
|
+
* @name QueryPacketReceiptResponseAmino
|
|
756
|
+
* @package ibc.core.channel.v1
|
|
757
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketReceiptResponse
|
|
481
758
|
*/
|
|
482
759
|
export interface QueryPacketReceiptResponseAmino {
|
|
483
|
-
/**
|
|
760
|
+
/**
|
|
761
|
+
* success flag for if receipt exists
|
|
762
|
+
*/
|
|
484
763
|
received: boolean;
|
|
485
|
-
/**
|
|
764
|
+
/**
|
|
765
|
+
* merkle proof of existence
|
|
766
|
+
*/
|
|
486
767
|
proof: string;
|
|
487
|
-
/**
|
|
768
|
+
/**
|
|
769
|
+
* height at which the proof was retrieved
|
|
770
|
+
*/
|
|
488
771
|
proof_height: HeightAmino;
|
|
489
772
|
}
|
|
490
773
|
export interface QueryPacketReceiptResponseAminoMsg {
|
|
@@ -494,13 +777,22 @@ export interface QueryPacketReceiptResponseAminoMsg {
|
|
|
494
777
|
/**
|
|
495
778
|
* QueryPacketAcknowledgementRequest is the request type for the
|
|
496
779
|
* Query/PacketAcknowledgement RPC method
|
|
780
|
+
* @name QueryPacketAcknowledgementRequest
|
|
781
|
+
* @package ibc.core.channel.v1
|
|
782
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketAcknowledgementRequest
|
|
497
783
|
*/
|
|
498
784
|
export interface QueryPacketAcknowledgementRequest {
|
|
499
|
-
/**
|
|
785
|
+
/**
|
|
786
|
+
* port unique identifier
|
|
787
|
+
*/
|
|
500
788
|
portId: string;
|
|
501
|
-
/**
|
|
789
|
+
/**
|
|
790
|
+
* channel unique identifier
|
|
791
|
+
*/
|
|
502
792
|
channelId: string;
|
|
503
|
-
/**
|
|
793
|
+
/**
|
|
794
|
+
* packet sequence
|
|
795
|
+
*/
|
|
504
796
|
sequence: bigint;
|
|
505
797
|
}
|
|
506
798
|
export interface QueryPacketAcknowledgementRequestProtoMsg {
|
|
@@ -510,13 +802,22 @@ export interface QueryPacketAcknowledgementRequestProtoMsg {
|
|
|
510
802
|
/**
|
|
511
803
|
* QueryPacketAcknowledgementRequest is the request type for the
|
|
512
804
|
* Query/PacketAcknowledgement RPC method
|
|
805
|
+
* @name QueryPacketAcknowledgementRequestAmino
|
|
806
|
+
* @package ibc.core.channel.v1
|
|
807
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketAcknowledgementRequest
|
|
513
808
|
*/
|
|
514
809
|
export interface QueryPacketAcknowledgementRequestAmino {
|
|
515
|
-
/**
|
|
810
|
+
/**
|
|
811
|
+
* port unique identifier
|
|
812
|
+
*/
|
|
516
813
|
port_id: string;
|
|
517
|
-
/**
|
|
814
|
+
/**
|
|
815
|
+
* channel unique identifier
|
|
816
|
+
*/
|
|
518
817
|
channel_id: string;
|
|
519
|
-
/**
|
|
818
|
+
/**
|
|
819
|
+
* packet sequence
|
|
820
|
+
*/
|
|
520
821
|
sequence: string;
|
|
521
822
|
}
|
|
522
823
|
export interface QueryPacketAcknowledgementRequestAminoMsg {
|
|
@@ -527,13 +828,22 @@ export interface QueryPacketAcknowledgementRequestAminoMsg {
|
|
|
527
828
|
* QueryPacketAcknowledgementResponse defines the client query response for a
|
|
528
829
|
* packet which also includes a proof and the height from which the
|
|
529
830
|
* proof was retrieved
|
|
831
|
+
* @name QueryPacketAcknowledgementResponse
|
|
832
|
+
* @package ibc.core.channel.v1
|
|
833
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketAcknowledgementResponse
|
|
530
834
|
*/
|
|
531
835
|
export interface QueryPacketAcknowledgementResponse {
|
|
532
|
-
/**
|
|
836
|
+
/**
|
|
837
|
+
* packet associated with the request fields
|
|
838
|
+
*/
|
|
533
839
|
acknowledgement: Uint8Array;
|
|
534
|
-
/**
|
|
840
|
+
/**
|
|
841
|
+
* merkle proof of existence
|
|
842
|
+
*/
|
|
535
843
|
proof: Uint8Array;
|
|
536
|
-
/**
|
|
844
|
+
/**
|
|
845
|
+
* height at which the proof was retrieved
|
|
846
|
+
*/
|
|
537
847
|
proofHeight: Height;
|
|
538
848
|
}
|
|
539
849
|
export interface QueryPacketAcknowledgementResponseProtoMsg {
|
|
@@ -544,13 +854,22 @@ export interface QueryPacketAcknowledgementResponseProtoMsg {
|
|
|
544
854
|
* QueryPacketAcknowledgementResponse defines the client query response for a
|
|
545
855
|
* packet which also includes a proof and the height from which the
|
|
546
856
|
* proof was retrieved
|
|
857
|
+
* @name QueryPacketAcknowledgementResponseAmino
|
|
858
|
+
* @package ibc.core.channel.v1
|
|
859
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketAcknowledgementResponse
|
|
547
860
|
*/
|
|
548
861
|
export interface QueryPacketAcknowledgementResponseAmino {
|
|
549
|
-
/**
|
|
862
|
+
/**
|
|
863
|
+
* packet associated with the request fields
|
|
864
|
+
*/
|
|
550
865
|
acknowledgement: string;
|
|
551
|
-
/**
|
|
866
|
+
/**
|
|
867
|
+
* merkle proof of existence
|
|
868
|
+
*/
|
|
552
869
|
proof: string;
|
|
553
|
-
/**
|
|
870
|
+
/**
|
|
871
|
+
* height at which the proof was retrieved
|
|
872
|
+
*/
|
|
554
873
|
proof_height: HeightAmino;
|
|
555
874
|
}
|
|
556
875
|
export interface QueryPacketAcknowledgementResponseAminoMsg {
|
|
@@ -560,15 +879,26 @@ export interface QueryPacketAcknowledgementResponseAminoMsg {
|
|
|
560
879
|
/**
|
|
561
880
|
* QueryPacketAcknowledgementsRequest is the request type for the
|
|
562
881
|
* Query/QueryPacketCommitments RPC method
|
|
882
|
+
* @name QueryPacketAcknowledgementsRequest
|
|
883
|
+
* @package ibc.core.channel.v1
|
|
884
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketAcknowledgementsRequest
|
|
563
885
|
*/
|
|
564
886
|
export interface QueryPacketAcknowledgementsRequest {
|
|
565
|
-
/**
|
|
887
|
+
/**
|
|
888
|
+
* port unique identifier
|
|
889
|
+
*/
|
|
566
890
|
portId: string;
|
|
567
|
-
/**
|
|
891
|
+
/**
|
|
892
|
+
* channel unique identifier
|
|
893
|
+
*/
|
|
568
894
|
channelId: string;
|
|
569
|
-
/**
|
|
895
|
+
/**
|
|
896
|
+
* pagination request
|
|
897
|
+
*/
|
|
570
898
|
pagination?: PageRequest;
|
|
571
|
-
/**
|
|
899
|
+
/**
|
|
900
|
+
* list of packet sequences
|
|
901
|
+
*/
|
|
572
902
|
packetCommitmentSequences: bigint[];
|
|
573
903
|
}
|
|
574
904
|
export interface QueryPacketAcknowledgementsRequestProtoMsg {
|
|
@@ -578,15 +908,26 @@ export interface QueryPacketAcknowledgementsRequestProtoMsg {
|
|
|
578
908
|
/**
|
|
579
909
|
* QueryPacketAcknowledgementsRequest is the request type for the
|
|
580
910
|
* Query/QueryPacketCommitments RPC method
|
|
911
|
+
* @name QueryPacketAcknowledgementsRequestAmino
|
|
912
|
+
* @package ibc.core.channel.v1
|
|
913
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketAcknowledgementsRequest
|
|
581
914
|
*/
|
|
582
915
|
export interface QueryPacketAcknowledgementsRequestAmino {
|
|
583
|
-
/**
|
|
916
|
+
/**
|
|
917
|
+
* port unique identifier
|
|
918
|
+
*/
|
|
584
919
|
port_id: string;
|
|
585
|
-
/**
|
|
920
|
+
/**
|
|
921
|
+
* channel unique identifier
|
|
922
|
+
*/
|
|
586
923
|
channel_id: string;
|
|
587
|
-
/**
|
|
924
|
+
/**
|
|
925
|
+
* pagination request
|
|
926
|
+
*/
|
|
588
927
|
pagination?: PageRequestAmino;
|
|
589
|
-
/**
|
|
928
|
+
/**
|
|
929
|
+
* list of packet sequences
|
|
930
|
+
*/
|
|
590
931
|
packet_commitment_sequences: string[];
|
|
591
932
|
}
|
|
592
933
|
export interface QueryPacketAcknowledgementsRequestAminoMsg {
|
|
@@ -596,12 +937,19 @@ export interface QueryPacketAcknowledgementsRequestAminoMsg {
|
|
|
596
937
|
/**
|
|
597
938
|
* QueryPacketAcknowledgemetsResponse is the request type for the
|
|
598
939
|
* Query/QueryPacketAcknowledgements RPC method
|
|
940
|
+
* @name QueryPacketAcknowledgementsResponse
|
|
941
|
+
* @package ibc.core.channel.v1
|
|
942
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketAcknowledgementsResponse
|
|
599
943
|
*/
|
|
600
944
|
export interface QueryPacketAcknowledgementsResponse {
|
|
601
945
|
acknowledgements: PacketState[];
|
|
602
|
-
/**
|
|
946
|
+
/**
|
|
947
|
+
* pagination response
|
|
948
|
+
*/
|
|
603
949
|
pagination?: PageResponse;
|
|
604
|
-
/**
|
|
950
|
+
/**
|
|
951
|
+
* query block height
|
|
952
|
+
*/
|
|
605
953
|
height: Height;
|
|
606
954
|
}
|
|
607
955
|
export interface QueryPacketAcknowledgementsResponseProtoMsg {
|
|
@@ -611,12 +959,19 @@ export interface QueryPacketAcknowledgementsResponseProtoMsg {
|
|
|
611
959
|
/**
|
|
612
960
|
* QueryPacketAcknowledgemetsResponse is the request type for the
|
|
613
961
|
* Query/QueryPacketAcknowledgements RPC method
|
|
962
|
+
* @name QueryPacketAcknowledgementsResponseAmino
|
|
963
|
+
* @package ibc.core.channel.v1
|
|
964
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketAcknowledgementsResponse
|
|
614
965
|
*/
|
|
615
966
|
export interface QueryPacketAcknowledgementsResponseAmino {
|
|
616
967
|
acknowledgements: PacketStateAmino[];
|
|
617
|
-
/**
|
|
968
|
+
/**
|
|
969
|
+
* pagination response
|
|
970
|
+
*/
|
|
618
971
|
pagination?: PageResponseAmino;
|
|
619
|
-
/**
|
|
972
|
+
/**
|
|
973
|
+
* query block height
|
|
974
|
+
*/
|
|
620
975
|
height: HeightAmino;
|
|
621
976
|
}
|
|
622
977
|
export interface QueryPacketAcknowledgementsResponseAminoMsg {
|
|
@@ -626,13 +981,22 @@ export interface QueryPacketAcknowledgementsResponseAminoMsg {
|
|
|
626
981
|
/**
|
|
627
982
|
* QueryUnreceivedPacketsRequest is the request type for the
|
|
628
983
|
* Query/UnreceivedPackets RPC method
|
|
984
|
+
* @name QueryUnreceivedPacketsRequest
|
|
985
|
+
* @package ibc.core.channel.v1
|
|
986
|
+
* @see proto type: ibc.core.channel.v1.QueryUnreceivedPacketsRequest
|
|
629
987
|
*/
|
|
630
988
|
export interface QueryUnreceivedPacketsRequest {
|
|
631
|
-
/**
|
|
989
|
+
/**
|
|
990
|
+
* port unique identifier
|
|
991
|
+
*/
|
|
632
992
|
portId: string;
|
|
633
|
-
/**
|
|
993
|
+
/**
|
|
994
|
+
* channel unique identifier
|
|
995
|
+
*/
|
|
634
996
|
channelId: string;
|
|
635
|
-
/**
|
|
997
|
+
/**
|
|
998
|
+
* list of packet sequences
|
|
999
|
+
*/
|
|
636
1000
|
packetCommitmentSequences: bigint[];
|
|
637
1001
|
}
|
|
638
1002
|
export interface QueryUnreceivedPacketsRequestProtoMsg {
|
|
@@ -642,13 +1006,22 @@ export interface QueryUnreceivedPacketsRequestProtoMsg {
|
|
|
642
1006
|
/**
|
|
643
1007
|
* QueryUnreceivedPacketsRequest is the request type for the
|
|
644
1008
|
* Query/UnreceivedPackets RPC method
|
|
1009
|
+
* @name QueryUnreceivedPacketsRequestAmino
|
|
1010
|
+
* @package ibc.core.channel.v1
|
|
1011
|
+
* @see proto type: ibc.core.channel.v1.QueryUnreceivedPacketsRequest
|
|
645
1012
|
*/
|
|
646
1013
|
export interface QueryUnreceivedPacketsRequestAmino {
|
|
647
|
-
/**
|
|
1014
|
+
/**
|
|
1015
|
+
* port unique identifier
|
|
1016
|
+
*/
|
|
648
1017
|
port_id: string;
|
|
649
|
-
/**
|
|
1018
|
+
/**
|
|
1019
|
+
* channel unique identifier
|
|
1020
|
+
*/
|
|
650
1021
|
channel_id: string;
|
|
651
|
-
/**
|
|
1022
|
+
/**
|
|
1023
|
+
* list of packet sequences
|
|
1024
|
+
*/
|
|
652
1025
|
packet_commitment_sequences: string[];
|
|
653
1026
|
}
|
|
654
1027
|
export interface QueryUnreceivedPacketsRequestAminoMsg {
|
|
@@ -658,11 +1031,18 @@ export interface QueryUnreceivedPacketsRequestAminoMsg {
|
|
|
658
1031
|
/**
|
|
659
1032
|
* QueryUnreceivedPacketsResponse is the response type for the
|
|
660
1033
|
* Query/UnreceivedPacketCommitments RPC method
|
|
1034
|
+
* @name QueryUnreceivedPacketsResponse
|
|
1035
|
+
* @package ibc.core.channel.v1
|
|
1036
|
+
* @see proto type: ibc.core.channel.v1.QueryUnreceivedPacketsResponse
|
|
661
1037
|
*/
|
|
662
1038
|
export interface QueryUnreceivedPacketsResponse {
|
|
663
|
-
/**
|
|
1039
|
+
/**
|
|
1040
|
+
* list of unreceived packet sequences
|
|
1041
|
+
*/
|
|
664
1042
|
sequences: bigint[];
|
|
665
|
-
/**
|
|
1043
|
+
/**
|
|
1044
|
+
* query block height
|
|
1045
|
+
*/
|
|
666
1046
|
height: Height;
|
|
667
1047
|
}
|
|
668
1048
|
export interface QueryUnreceivedPacketsResponseProtoMsg {
|
|
@@ -672,11 +1052,18 @@ export interface QueryUnreceivedPacketsResponseProtoMsg {
|
|
|
672
1052
|
/**
|
|
673
1053
|
* QueryUnreceivedPacketsResponse is the response type for the
|
|
674
1054
|
* Query/UnreceivedPacketCommitments RPC method
|
|
1055
|
+
* @name QueryUnreceivedPacketsResponseAmino
|
|
1056
|
+
* @package ibc.core.channel.v1
|
|
1057
|
+
* @see proto type: ibc.core.channel.v1.QueryUnreceivedPacketsResponse
|
|
675
1058
|
*/
|
|
676
1059
|
export interface QueryUnreceivedPacketsResponseAmino {
|
|
677
|
-
/**
|
|
1060
|
+
/**
|
|
1061
|
+
* list of unreceived packet sequences
|
|
1062
|
+
*/
|
|
678
1063
|
sequences: string[];
|
|
679
|
-
/**
|
|
1064
|
+
/**
|
|
1065
|
+
* query block height
|
|
1066
|
+
*/
|
|
680
1067
|
height: HeightAmino;
|
|
681
1068
|
}
|
|
682
1069
|
export interface QueryUnreceivedPacketsResponseAminoMsg {
|
|
@@ -686,13 +1073,22 @@ export interface QueryUnreceivedPacketsResponseAminoMsg {
|
|
|
686
1073
|
/**
|
|
687
1074
|
* QueryUnreceivedAcks is the request type for the
|
|
688
1075
|
* Query/UnreceivedAcks RPC method
|
|
1076
|
+
* @name QueryUnreceivedAcksRequest
|
|
1077
|
+
* @package ibc.core.channel.v1
|
|
1078
|
+
* @see proto type: ibc.core.channel.v1.QueryUnreceivedAcksRequest
|
|
689
1079
|
*/
|
|
690
1080
|
export interface QueryUnreceivedAcksRequest {
|
|
691
|
-
/**
|
|
1081
|
+
/**
|
|
1082
|
+
* port unique identifier
|
|
1083
|
+
*/
|
|
692
1084
|
portId: string;
|
|
693
|
-
/**
|
|
1085
|
+
/**
|
|
1086
|
+
* channel unique identifier
|
|
1087
|
+
*/
|
|
694
1088
|
channelId: string;
|
|
695
|
-
/**
|
|
1089
|
+
/**
|
|
1090
|
+
* list of acknowledgement sequences
|
|
1091
|
+
*/
|
|
696
1092
|
packetAckSequences: bigint[];
|
|
697
1093
|
}
|
|
698
1094
|
export interface QueryUnreceivedAcksRequestProtoMsg {
|
|
@@ -702,13 +1098,22 @@ export interface QueryUnreceivedAcksRequestProtoMsg {
|
|
|
702
1098
|
/**
|
|
703
1099
|
* QueryUnreceivedAcks is the request type for the
|
|
704
1100
|
* Query/UnreceivedAcks RPC method
|
|
1101
|
+
* @name QueryUnreceivedAcksRequestAmino
|
|
1102
|
+
* @package ibc.core.channel.v1
|
|
1103
|
+
* @see proto type: ibc.core.channel.v1.QueryUnreceivedAcksRequest
|
|
705
1104
|
*/
|
|
706
1105
|
export interface QueryUnreceivedAcksRequestAmino {
|
|
707
|
-
/**
|
|
1106
|
+
/**
|
|
1107
|
+
* port unique identifier
|
|
1108
|
+
*/
|
|
708
1109
|
port_id: string;
|
|
709
|
-
/**
|
|
1110
|
+
/**
|
|
1111
|
+
* channel unique identifier
|
|
1112
|
+
*/
|
|
710
1113
|
channel_id: string;
|
|
711
|
-
/**
|
|
1114
|
+
/**
|
|
1115
|
+
* list of acknowledgement sequences
|
|
1116
|
+
*/
|
|
712
1117
|
packet_ack_sequences: string[];
|
|
713
1118
|
}
|
|
714
1119
|
export interface QueryUnreceivedAcksRequestAminoMsg {
|
|
@@ -718,11 +1123,18 @@ export interface QueryUnreceivedAcksRequestAminoMsg {
|
|
|
718
1123
|
/**
|
|
719
1124
|
* QueryUnreceivedAcksResponse is the response type for the
|
|
720
1125
|
* Query/UnreceivedAcks RPC method
|
|
1126
|
+
* @name QueryUnreceivedAcksResponse
|
|
1127
|
+
* @package ibc.core.channel.v1
|
|
1128
|
+
* @see proto type: ibc.core.channel.v1.QueryUnreceivedAcksResponse
|
|
721
1129
|
*/
|
|
722
1130
|
export interface QueryUnreceivedAcksResponse {
|
|
723
|
-
/**
|
|
1131
|
+
/**
|
|
1132
|
+
* list of unreceived acknowledgement sequences
|
|
1133
|
+
*/
|
|
724
1134
|
sequences: bigint[];
|
|
725
|
-
/**
|
|
1135
|
+
/**
|
|
1136
|
+
* query block height
|
|
1137
|
+
*/
|
|
726
1138
|
height: Height;
|
|
727
1139
|
}
|
|
728
1140
|
export interface QueryUnreceivedAcksResponseProtoMsg {
|
|
@@ -732,11 +1144,18 @@ export interface QueryUnreceivedAcksResponseProtoMsg {
|
|
|
732
1144
|
/**
|
|
733
1145
|
* QueryUnreceivedAcksResponse is the response type for the
|
|
734
1146
|
* Query/UnreceivedAcks RPC method
|
|
1147
|
+
* @name QueryUnreceivedAcksResponseAmino
|
|
1148
|
+
* @package ibc.core.channel.v1
|
|
1149
|
+
* @see proto type: ibc.core.channel.v1.QueryUnreceivedAcksResponse
|
|
735
1150
|
*/
|
|
736
1151
|
export interface QueryUnreceivedAcksResponseAmino {
|
|
737
|
-
/**
|
|
1152
|
+
/**
|
|
1153
|
+
* list of unreceived acknowledgement sequences
|
|
1154
|
+
*/
|
|
738
1155
|
sequences: string[];
|
|
739
|
-
/**
|
|
1156
|
+
/**
|
|
1157
|
+
* query block height
|
|
1158
|
+
*/
|
|
740
1159
|
height: HeightAmino;
|
|
741
1160
|
}
|
|
742
1161
|
export interface QueryUnreceivedAcksResponseAminoMsg {
|
|
@@ -746,11 +1165,18 @@ export interface QueryUnreceivedAcksResponseAminoMsg {
|
|
|
746
1165
|
/**
|
|
747
1166
|
* QueryNextSequenceReceiveRequest is the request type for the
|
|
748
1167
|
* Query/QueryNextSequenceReceiveRequest RPC method
|
|
1168
|
+
* @name QueryNextSequenceReceiveRequest
|
|
1169
|
+
* @package ibc.core.channel.v1
|
|
1170
|
+
* @see proto type: ibc.core.channel.v1.QueryNextSequenceReceiveRequest
|
|
749
1171
|
*/
|
|
750
1172
|
export interface QueryNextSequenceReceiveRequest {
|
|
751
|
-
/**
|
|
1173
|
+
/**
|
|
1174
|
+
* port unique identifier
|
|
1175
|
+
*/
|
|
752
1176
|
portId: string;
|
|
753
|
-
/**
|
|
1177
|
+
/**
|
|
1178
|
+
* channel unique identifier
|
|
1179
|
+
*/
|
|
754
1180
|
channelId: string;
|
|
755
1181
|
}
|
|
756
1182
|
export interface QueryNextSequenceReceiveRequestProtoMsg {
|
|
@@ -760,11 +1186,18 @@ export interface QueryNextSequenceReceiveRequestProtoMsg {
|
|
|
760
1186
|
/**
|
|
761
1187
|
* QueryNextSequenceReceiveRequest is the request type for the
|
|
762
1188
|
* Query/QueryNextSequenceReceiveRequest RPC method
|
|
1189
|
+
* @name QueryNextSequenceReceiveRequestAmino
|
|
1190
|
+
* @package ibc.core.channel.v1
|
|
1191
|
+
* @see proto type: ibc.core.channel.v1.QueryNextSequenceReceiveRequest
|
|
763
1192
|
*/
|
|
764
1193
|
export interface QueryNextSequenceReceiveRequestAmino {
|
|
765
|
-
/**
|
|
1194
|
+
/**
|
|
1195
|
+
* port unique identifier
|
|
1196
|
+
*/
|
|
766
1197
|
port_id: string;
|
|
767
|
-
/**
|
|
1198
|
+
/**
|
|
1199
|
+
* channel unique identifier
|
|
1200
|
+
*/
|
|
768
1201
|
channel_id: string;
|
|
769
1202
|
}
|
|
770
1203
|
export interface QueryNextSequenceReceiveRequestAminoMsg {
|
|
@@ -774,13 +1207,22 @@ export interface QueryNextSequenceReceiveRequestAminoMsg {
|
|
|
774
1207
|
/**
|
|
775
1208
|
* QuerySequenceResponse is the response type for the
|
|
776
1209
|
* Query/QueryNextSequenceReceiveResponse RPC method
|
|
1210
|
+
* @name QueryNextSequenceReceiveResponse
|
|
1211
|
+
* @package ibc.core.channel.v1
|
|
1212
|
+
* @see proto type: ibc.core.channel.v1.QueryNextSequenceReceiveResponse
|
|
777
1213
|
*/
|
|
778
1214
|
export interface QueryNextSequenceReceiveResponse {
|
|
779
|
-
/**
|
|
1215
|
+
/**
|
|
1216
|
+
* next sequence receive number
|
|
1217
|
+
*/
|
|
780
1218
|
nextSequenceReceive: bigint;
|
|
781
|
-
/**
|
|
1219
|
+
/**
|
|
1220
|
+
* merkle proof of existence
|
|
1221
|
+
*/
|
|
782
1222
|
proof: Uint8Array;
|
|
783
|
-
/**
|
|
1223
|
+
/**
|
|
1224
|
+
* height at which the proof was retrieved
|
|
1225
|
+
*/
|
|
784
1226
|
proofHeight: Height;
|
|
785
1227
|
}
|
|
786
1228
|
export interface QueryNextSequenceReceiveResponseProtoMsg {
|
|
@@ -790,13 +1232,22 @@ export interface QueryNextSequenceReceiveResponseProtoMsg {
|
|
|
790
1232
|
/**
|
|
791
1233
|
* QuerySequenceResponse is the response type for the
|
|
792
1234
|
* Query/QueryNextSequenceReceiveResponse RPC method
|
|
1235
|
+
* @name QueryNextSequenceReceiveResponseAmino
|
|
1236
|
+
* @package ibc.core.channel.v1
|
|
1237
|
+
* @see proto type: ibc.core.channel.v1.QueryNextSequenceReceiveResponse
|
|
793
1238
|
*/
|
|
794
1239
|
export interface QueryNextSequenceReceiveResponseAmino {
|
|
795
|
-
/**
|
|
1240
|
+
/**
|
|
1241
|
+
* next sequence receive number
|
|
1242
|
+
*/
|
|
796
1243
|
next_sequence_receive: string;
|
|
797
|
-
/**
|
|
1244
|
+
/**
|
|
1245
|
+
* merkle proof of existence
|
|
1246
|
+
*/
|
|
798
1247
|
proof: string;
|
|
799
|
-
/**
|
|
1248
|
+
/**
|
|
1249
|
+
* height at which the proof was retrieved
|
|
1250
|
+
*/
|
|
800
1251
|
proof_height: HeightAmino;
|
|
801
1252
|
}
|
|
802
1253
|
export interface QueryNextSequenceReceiveResponseAminoMsg {
|
|
@@ -806,11 +1257,18 @@ export interface QueryNextSequenceReceiveResponseAminoMsg {
|
|
|
806
1257
|
/**
|
|
807
1258
|
* QueryNextSequenceSendRequest is the request type for the
|
|
808
1259
|
* Query/QueryNextSequenceSend RPC method
|
|
1260
|
+
* @name QueryNextSequenceSendRequest
|
|
1261
|
+
* @package ibc.core.channel.v1
|
|
1262
|
+
* @see proto type: ibc.core.channel.v1.QueryNextSequenceSendRequest
|
|
809
1263
|
*/
|
|
810
1264
|
export interface QueryNextSequenceSendRequest {
|
|
811
|
-
/**
|
|
1265
|
+
/**
|
|
1266
|
+
* port unique identifier
|
|
1267
|
+
*/
|
|
812
1268
|
portId: string;
|
|
813
|
-
/**
|
|
1269
|
+
/**
|
|
1270
|
+
* channel unique identifier
|
|
1271
|
+
*/
|
|
814
1272
|
channelId: string;
|
|
815
1273
|
}
|
|
816
1274
|
export interface QueryNextSequenceSendRequestProtoMsg {
|
|
@@ -820,11 +1278,18 @@ export interface QueryNextSequenceSendRequestProtoMsg {
|
|
|
820
1278
|
/**
|
|
821
1279
|
* QueryNextSequenceSendRequest is the request type for the
|
|
822
1280
|
* Query/QueryNextSequenceSend RPC method
|
|
1281
|
+
* @name QueryNextSequenceSendRequestAmino
|
|
1282
|
+
* @package ibc.core.channel.v1
|
|
1283
|
+
* @see proto type: ibc.core.channel.v1.QueryNextSequenceSendRequest
|
|
823
1284
|
*/
|
|
824
1285
|
export interface QueryNextSequenceSendRequestAmino {
|
|
825
|
-
/**
|
|
1286
|
+
/**
|
|
1287
|
+
* port unique identifier
|
|
1288
|
+
*/
|
|
826
1289
|
port_id: string;
|
|
827
|
-
/**
|
|
1290
|
+
/**
|
|
1291
|
+
* channel unique identifier
|
|
1292
|
+
*/
|
|
828
1293
|
channel_id: string;
|
|
829
1294
|
}
|
|
830
1295
|
export interface QueryNextSequenceSendRequestAminoMsg {
|
|
@@ -834,13 +1299,22 @@ export interface QueryNextSequenceSendRequestAminoMsg {
|
|
|
834
1299
|
/**
|
|
835
1300
|
* QueryNextSequenceSendResponse is the request type for the
|
|
836
1301
|
* Query/QueryNextSequenceSend RPC method
|
|
1302
|
+
* @name QueryNextSequenceSendResponse
|
|
1303
|
+
* @package ibc.core.channel.v1
|
|
1304
|
+
* @see proto type: ibc.core.channel.v1.QueryNextSequenceSendResponse
|
|
837
1305
|
*/
|
|
838
1306
|
export interface QueryNextSequenceSendResponse {
|
|
839
|
-
/**
|
|
1307
|
+
/**
|
|
1308
|
+
* next sequence send number
|
|
1309
|
+
*/
|
|
840
1310
|
nextSequenceSend: bigint;
|
|
841
|
-
/**
|
|
1311
|
+
/**
|
|
1312
|
+
* merkle proof of existence
|
|
1313
|
+
*/
|
|
842
1314
|
proof: Uint8Array;
|
|
843
|
-
/**
|
|
1315
|
+
/**
|
|
1316
|
+
* height at which the proof was retrieved
|
|
1317
|
+
*/
|
|
844
1318
|
proofHeight: Height;
|
|
845
1319
|
}
|
|
846
1320
|
export interface QueryNextSequenceSendResponseProtoMsg {
|
|
@@ -850,135 +1324,34 @@ export interface QueryNextSequenceSendResponseProtoMsg {
|
|
|
850
1324
|
/**
|
|
851
1325
|
* QueryNextSequenceSendResponse is the request type for the
|
|
852
1326
|
* Query/QueryNextSequenceSend RPC method
|
|
1327
|
+
* @name QueryNextSequenceSendResponseAmino
|
|
1328
|
+
* @package ibc.core.channel.v1
|
|
1329
|
+
* @see proto type: ibc.core.channel.v1.QueryNextSequenceSendResponse
|
|
853
1330
|
*/
|
|
854
1331
|
export interface QueryNextSequenceSendResponseAmino {
|
|
855
|
-
/**
|
|
1332
|
+
/**
|
|
1333
|
+
* next sequence send number
|
|
1334
|
+
*/
|
|
856
1335
|
next_sequence_send: string;
|
|
857
|
-
/**
|
|
1336
|
+
/**
|
|
1337
|
+
* merkle proof of existence
|
|
1338
|
+
*/
|
|
858
1339
|
proof: string;
|
|
859
|
-
/**
|
|
1340
|
+
/**
|
|
1341
|
+
* height at which the proof was retrieved
|
|
1342
|
+
*/
|
|
860
1343
|
proof_height: HeightAmino;
|
|
861
1344
|
}
|
|
862
1345
|
export interface QueryNextSequenceSendResponseAminoMsg {
|
|
863
1346
|
type: "cosmos-sdk/QueryNextSequenceSendResponse";
|
|
864
1347
|
value: QueryNextSequenceSendResponseAmino;
|
|
865
1348
|
}
|
|
866
|
-
/**
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
typeUrl: "/ibc.core.channel.v1.QueryUpgradeErrorRequest";
|
|
873
|
-
value: Uint8Array;
|
|
874
|
-
}
|
|
875
|
-
/** QueryUpgradeErrorRequest is the request type for the Query/QueryUpgradeError RPC method */
|
|
876
|
-
export interface QueryUpgradeErrorRequestAmino {
|
|
877
|
-
port_id: string;
|
|
878
|
-
channel_id: string;
|
|
879
|
-
}
|
|
880
|
-
export interface QueryUpgradeErrorRequestAminoMsg {
|
|
881
|
-
type: "cosmos-sdk/QueryUpgradeErrorRequest";
|
|
882
|
-
value: QueryUpgradeErrorRequestAmino;
|
|
883
|
-
}
|
|
884
|
-
/** QueryUpgradeErrorResponse is the response type for the Query/QueryUpgradeError RPC method */
|
|
885
|
-
export interface QueryUpgradeErrorResponse {
|
|
886
|
-
errorReceipt: ErrorReceipt;
|
|
887
|
-
/** merkle proof of existence */
|
|
888
|
-
proof: Uint8Array;
|
|
889
|
-
/** height at which the proof was retrieved */
|
|
890
|
-
proofHeight: Height;
|
|
891
|
-
}
|
|
892
|
-
export interface QueryUpgradeErrorResponseProtoMsg {
|
|
893
|
-
typeUrl: "/ibc.core.channel.v1.QueryUpgradeErrorResponse";
|
|
894
|
-
value: Uint8Array;
|
|
895
|
-
}
|
|
896
|
-
/** QueryUpgradeErrorResponse is the response type for the Query/QueryUpgradeError RPC method */
|
|
897
|
-
export interface QueryUpgradeErrorResponseAmino {
|
|
898
|
-
error_receipt: ErrorReceiptAmino;
|
|
899
|
-
/** merkle proof of existence */
|
|
900
|
-
proof: string;
|
|
901
|
-
/** height at which the proof was retrieved */
|
|
902
|
-
proof_height: HeightAmino;
|
|
903
|
-
}
|
|
904
|
-
export interface QueryUpgradeErrorResponseAminoMsg {
|
|
905
|
-
type: "cosmos-sdk/QueryUpgradeErrorResponse";
|
|
906
|
-
value: QueryUpgradeErrorResponseAmino;
|
|
907
|
-
}
|
|
908
|
-
/** QueryUpgradeRequest is the request type for the QueryUpgradeRequest RPC method */
|
|
909
|
-
export interface QueryUpgradeRequest {
|
|
910
|
-
portId: string;
|
|
911
|
-
channelId: string;
|
|
912
|
-
}
|
|
913
|
-
export interface QueryUpgradeRequestProtoMsg {
|
|
914
|
-
typeUrl: "/ibc.core.channel.v1.QueryUpgradeRequest";
|
|
915
|
-
value: Uint8Array;
|
|
916
|
-
}
|
|
917
|
-
/** QueryUpgradeRequest is the request type for the QueryUpgradeRequest RPC method */
|
|
918
|
-
export interface QueryUpgradeRequestAmino {
|
|
919
|
-
port_id: string;
|
|
920
|
-
channel_id: string;
|
|
921
|
-
}
|
|
922
|
-
export interface QueryUpgradeRequestAminoMsg {
|
|
923
|
-
type: "cosmos-sdk/QueryUpgradeRequest";
|
|
924
|
-
value: QueryUpgradeRequestAmino;
|
|
925
|
-
}
|
|
926
|
-
/** QueryUpgradeResponse is the response type for the QueryUpgradeResponse RPC method */
|
|
927
|
-
export interface QueryUpgradeResponse {
|
|
928
|
-
upgrade: Upgrade;
|
|
929
|
-
/** merkle proof of existence */
|
|
930
|
-
proof: Uint8Array;
|
|
931
|
-
/** height at which the proof was retrieved */
|
|
932
|
-
proofHeight: Height;
|
|
933
|
-
}
|
|
934
|
-
export interface QueryUpgradeResponseProtoMsg {
|
|
935
|
-
typeUrl: "/ibc.core.channel.v1.QueryUpgradeResponse";
|
|
936
|
-
value: Uint8Array;
|
|
937
|
-
}
|
|
938
|
-
/** QueryUpgradeResponse is the response type for the QueryUpgradeResponse RPC method */
|
|
939
|
-
export interface QueryUpgradeResponseAmino {
|
|
940
|
-
upgrade: UpgradeAmino;
|
|
941
|
-
/** merkle proof of existence */
|
|
942
|
-
proof: string;
|
|
943
|
-
/** height at which the proof was retrieved */
|
|
944
|
-
proof_height: HeightAmino;
|
|
945
|
-
}
|
|
946
|
-
export interface QueryUpgradeResponseAminoMsg {
|
|
947
|
-
type: "cosmos-sdk/QueryUpgradeResponse";
|
|
948
|
-
value: QueryUpgradeResponseAmino;
|
|
949
|
-
}
|
|
950
|
-
/** QueryChannelParamsRequest is the request type for the Query/ChannelParams RPC method. */
|
|
951
|
-
export interface QueryChannelParamsRequest {
|
|
952
|
-
}
|
|
953
|
-
export interface QueryChannelParamsRequestProtoMsg {
|
|
954
|
-
typeUrl: "/ibc.core.channel.v1.QueryChannelParamsRequest";
|
|
955
|
-
value: Uint8Array;
|
|
956
|
-
}
|
|
957
|
-
/** QueryChannelParamsRequest is the request type for the Query/ChannelParams RPC method. */
|
|
958
|
-
export interface QueryChannelParamsRequestAmino {
|
|
959
|
-
}
|
|
960
|
-
export interface QueryChannelParamsRequestAminoMsg {
|
|
961
|
-
type: "cosmos-sdk/QueryChannelParamsRequest";
|
|
962
|
-
value: QueryChannelParamsRequestAmino;
|
|
963
|
-
}
|
|
964
|
-
/** QueryChannelParamsResponse is the response type for the Query/ChannelParams RPC method. */
|
|
965
|
-
export interface QueryChannelParamsResponse {
|
|
966
|
-
/** params defines the parameters of the module. */
|
|
967
|
-
params?: Params;
|
|
968
|
-
}
|
|
969
|
-
export interface QueryChannelParamsResponseProtoMsg {
|
|
970
|
-
typeUrl: "/ibc.core.channel.v1.QueryChannelParamsResponse";
|
|
971
|
-
value: Uint8Array;
|
|
972
|
-
}
|
|
973
|
-
/** QueryChannelParamsResponse is the response type for the Query/ChannelParams RPC method. */
|
|
974
|
-
export interface QueryChannelParamsResponseAmino {
|
|
975
|
-
/** params defines the parameters of the module. */
|
|
976
|
-
params?: ParamsAmino;
|
|
977
|
-
}
|
|
978
|
-
export interface QueryChannelParamsResponseAminoMsg {
|
|
979
|
-
type: "cosmos-sdk/QueryChannelParamsResponse";
|
|
980
|
-
value: QueryChannelParamsResponseAmino;
|
|
981
|
-
}
|
|
1349
|
+
/**
|
|
1350
|
+
* QueryChannelRequest is the request type for the Query/Channel RPC method
|
|
1351
|
+
* @name QueryChannelRequest
|
|
1352
|
+
* @package ibc.core.channel.v1
|
|
1353
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelRequest
|
|
1354
|
+
*/
|
|
982
1355
|
export declare const QueryChannelRequest: {
|
|
983
1356
|
typeUrl: string;
|
|
984
1357
|
aminoType: string;
|
|
@@ -996,6 +1369,14 @@ export declare const QueryChannelRequest: {
|
|
|
996
1369
|
toProtoMsg(message: QueryChannelRequest): QueryChannelRequestProtoMsg;
|
|
997
1370
|
registerTypeUrl(): void;
|
|
998
1371
|
};
|
|
1372
|
+
/**
|
|
1373
|
+
* QueryChannelResponse is the response type for the Query/Channel RPC method.
|
|
1374
|
+
* Besides the Channel end, it includes a proof and the height from which the
|
|
1375
|
+
* proof was retrieved.
|
|
1376
|
+
* @name QueryChannelResponse
|
|
1377
|
+
* @package ibc.core.channel.v1
|
|
1378
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelResponse
|
|
1379
|
+
*/
|
|
999
1380
|
export declare const QueryChannelResponse: {
|
|
1000
1381
|
typeUrl: string;
|
|
1001
1382
|
aminoType: string;
|
|
@@ -1013,6 +1394,12 @@ export declare const QueryChannelResponse: {
|
|
|
1013
1394
|
toProtoMsg(message: QueryChannelResponse): QueryChannelResponseProtoMsg;
|
|
1014
1395
|
registerTypeUrl(): void;
|
|
1015
1396
|
};
|
|
1397
|
+
/**
|
|
1398
|
+
* QueryChannelsRequest is the request type for the Query/Channels RPC method
|
|
1399
|
+
* @name QueryChannelsRequest
|
|
1400
|
+
* @package ibc.core.channel.v1
|
|
1401
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelsRequest
|
|
1402
|
+
*/
|
|
1016
1403
|
export declare const QueryChannelsRequest: {
|
|
1017
1404
|
typeUrl: string;
|
|
1018
1405
|
aminoType: string;
|
|
@@ -1030,6 +1417,12 @@ export declare const QueryChannelsRequest: {
|
|
|
1030
1417
|
toProtoMsg(message: QueryChannelsRequest): QueryChannelsRequestProtoMsg;
|
|
1031
1418
|
registerTypeUrl(): void;
|
|
1032
1419
|
};
|
|
1420
|
+
/**
|
|
1421
|
+
* QueryChannelsResponse is the response type for the Query/Channels RPC method.
|
|
1422
|
+
* @name QueryChannelsResponse
|
|
1423
|
+
* @package ibc.core.channel.v1
|
|
1424
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelsResponse
|
|
1425
|
+
*/
|
|
1033
1426
|
export declare const QueryChannelsResponse: {
|
|
1034
1427
|
typeUrl: string;
|
|
1035
1428
|
aminoType: string;
|
|
@@ -1047,6 +1440,13 @@ export declare const QueryChannelsResponse: {
|
|
|
1047
1440
|
toProtoMsg(message: QueryChannelsResponse): QueryChannelsResponseProtoMsg;
|
|
1048
1441
|
registerTypeUrl(): void;
|
|
1049
1442
|
};
|
|
1443
|
+
/**
|
|
1444
|
+
* QueryConnectionChannelsRequest is the request type for the
|
|
1445
|
+
* Query/QueryConnectionChannels RPC method
|
|
1446
|
+
* @name QueryConnectionChannelsRequest
|
|
1447
|
+
* @package ibc.core.channel.v1
|
|
1448
|
+
* @see proto type: ibc.core.channel.v1.QueryConnectionChannelsRequest
|
|
1449
|
+
*/
|
|
1050
1450
|
export declare const QueryConnectionChannelsRequest: {
|
|
1051
1451
|
typeUrl: string;
|
|
1052
1452
|
aminoType: string;
|
|
@@ -1064,6 +1464,13 @@ export declare const QueryConnectionChannelsRequest: {
|
|
|
1064
1464
|
toProtoMsg(message: QueryConnectionChannelsRequest): QueryConnectionChannelsRequestProtoMsg;
|
|
1065
1465
|
registerTypeUrl(): void;
|
|
1066
1466
|
};
|
|
1467
|
+
/**
|
|
1468
|
+
* QueryConnectionChannelsResponse is the Response type for the
|
|
1469
|
+
* Query/QueryConnectionChannels RPC method
|
|
1470
|
+
* @name QueryConnectionChannelsResponse
|
|
1471
|
+
* @package ibc.core.channel.v1
|
|
1472
|
+
* @see proto type: ibc.core.channel.v1.QueryConnectionChannelsResponse
|
|
1473
|
+
*/
|
|
1067
1474
|
export declare const QueryConnectionChannelsResponse: {
|
|
1068
1475
|
typeUrl: string;
|
|
1069
1476
|
aminoType: string;
|
|
@@ -1081,6 +1488,13 @@ export declare const QueryConnectionChannelsResponse: {
|
|
|
1081
1488
|
toProtoMsg(message: QueryConnectionChannelsResponse): QueryConnectionChannelsResponseProtoMsg;
|
|
1082
1489
|
registerTypeUrl(): void;
|
|
1083
1490
|
};
|
|
1491
|
+
/**
|
|
1492
|
+
* QueryChannelClientStateRequest is the request type for the Query/ClientState
|
|
1493
|
+
* RPC method
|
|
1494
|
+
* @name QueryChannelClientStateRequest
|
|
1495
|
+
* @package ibc.core.channel.v1
|
|
1496
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelClientStateRequest
|
|
1497
|
+
*/
|
|
1084
1498
|
export declare const QueryChannelClientStateRequest: {
|
|
1085
1499
|
typeUrl: string;
|
|
1086
1500
|
aminoType: string;
|
|
@@ -1098,6 +1512,13 @@ export declare const QueryChannelClientStateRequest: {
|
|
|
1098
1512
|
toProtoMsg(message: QueryChannelClientStateRequest): QueryChannelClientStateRequestProtoMsg;
|
|
1099
1513
|
registerTypeUrl(): void;
|
|
1100
1514
|
};
|
|
1515
|
+
/**
|
|
1516
|
+
* QueryChannelClientStateResponse is the Response type for the
|
|
1517
|
+
* Query/QueryChannelClientState RPC method
|
|
1518
|
+
* @name QueryChannelClientStateResponse
|
|
1519
|
+
* @package ibc.core.channel.v1
|
|
1520
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelClientStateResponse
|
|
1521
|
+
*/
|
|
1101
1522
|
export declare const QueryChannelClientStateResponse: {
|
|
1102
1523
|
typeUrl: string;
|
|
1103
1524
|
aminoType: string;
|
|
@@ -1115,6 +1536,13 @@ export declare const QueryChannelClientStateResponse: {
|
|
|
1115
1536
|
toProtoMsg(message: QueryChannelClientStateResponse): QueryChannelClientStateResponseProtoMsg;
|
|
1116
1537
|
registerTypeUrl(): void;
|
|
1117
1538
|
};
|
|
1539
|
+
/**
|
|
1540
|
+
* QueryChannelConsensusStateRequest is the request type for the
|
|
1541
|
+
* Query/ConsensusState RPC method
|
|
1542
|
+
* @name QueryChannelConsensusStateRequest
|
|
1543
|
+
* @package ibc.core.channel.v1
|
|
1544
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelConsensusStateRequest
|
|
1545
|
+
*/
|
|
1118
1546
|
export declare const QueryChannelConsensusStateRequest: {
|
|
1119
1547
|
typeUrl: string;
|
|
1120
1548
|
aminoType: string;
|
|
@@ -1132,6 +1560,13 @@ export declare const QueryChannelConsensusStateRequest: {
|
|
|
1132
1560
|
toProtoMsg(message: QueryChannelConsensusStateRequest): QueryChannelConsensusStateRequestProtoMsg;
|
|
1133
1561
|
registerTypeUrl(): void;
|
|
1134
1562
|
};
|
|
1563
|
+
/**
|
|
1564
|
+
* QueryChannelClientStateResponse is the Response type for the
|
|
1565
|
+
* Query/QueryChannelClientState RPC method
|
|
1566
|
+
* @name QueryChannelConsensusStateResponse
|
|
1567
|
+
* @package ibc.core.channel.v1
|
|
1568
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelConsensusStateResponse
|
|
1569
|
+
*/
|
|
1135
1570
|
export declare const QueryChannelConsensusStateResponse: {
|
|
1136
1571
|
typeUrl: string;
|
|
1137
1572
|
aminoType: string;
|
|
@@ -1149,6 +1584,13 @@ export declare const QueryChannelConsensusStateResponse: {
|
|
|
1149
1584
|
toProtoMsg(message: QueryChannelConsensusStateResponse): QueryChannelConsensusStateResponseProtoMsg;
|
|
1150
1585
|
registerTypeUrl(): void;
|
|
1151
1586
|
};
|
|
1587
|
+
/**
|
|
1588
|
+
* QueryPacketCommitmentRequest is the request type for the
|
|
1589
|
+
* Query/PacketCommitment RPC method
|
|
1590
|
+
* @name QueryPacketCommitmentRequest
|
|
1591
|
+
* @package ibc.core.channel.v1
|
|
1592
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketCommitmentRequest
|
|
1593
|
+
*/
|
|
1152
1594
|
export declare const QueryPacketCommitmentRequest: {
|
|
1153
1595
|
typeUrl: string;
|
|
1154
1596
|
aminoType: string;
|
|
@@ -1166,6 +1608,14 @@ export declare const QueryPacketCommitmentRequest: {
|
|
|
1166
1608
|
toProtoMsg(message: QueryPacketCommitmentRequest): QueryPacketCommitmentRequestProtoMsg;
|
|
1167
1609
|
registerTypeUrl(): void;
|
|
1168
1610
|
};
|
|
1611
|
+
/**
|
|
1612
|
+
* QueryPacketCommitmentResponse defines the client query response for a packet
|
|
1613
|
+
* which also includes a proof and the height from which the proof was
|
|
1614
|
+
* retrieved
|
|
1615
|
+
* @name QueryPacketCommitmentResponse
|
|
1616
|
+
* @package ibc.core.channel.v1
|
|
1617
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketCommitmentResponse
|
|
1618
|
+
*/
|
|
1169
1619
|
export declare const QueryPacketCommitmentResponse: {
|
|
1170
1620
|
typeUrl: string;
|
|
1171
1621
|
aminoType: string;
|
|
@@ -1183,6 +1633,13 @@ export declare const QueryPacketCommitmentResponse: {
|
|
|
1183
1633
|
toProtoMsg(message: QueryPacketCommitmentResponse): QueryPacketCommitmentResponseProtoMsg;
|
|
1184
1634
|
registerTypeUrl(): void;
|
|
1185
1635
|
};
|
|
1636
|
+
/**
|
|
1637
|
+
* QueryPacketCommitmentsRequest is the request type for the
|
|
1638
|
+
* Query/QueryPacketCommitments RPC method
|
|
1639
|
+
* @name QueryPacketCommitmentsRequest
|
|
1640
|
+
* @package ibc.core.channel.v1
|
|
1641
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketCommitmentsRequest
|
|
1642
|
+
*/
|
|
1186
1643
|
export declare const QueryPacketCommitmentsRequest: {
|
|
1187
1644
|
typeUrl: string;
|
|
1188
1645
|
aminoType: string;
|
|
@@ -1200,6 +1657,13 @@ export declare const QueryPacketCommitmentsRequest: {
|
|
|
1200
1657
|
toProtoMsg(message: QueryPacketCommitmentsRequest): QueryPacketCommitmentsRequestProtoMsg;
|
|
1201
1658
|
registerTypeUrl(): void;
|
|
1202
1659
|
};
|
|
1660
|
+
/**
|
|
1661
|
+
* QueryPacketCommitmentsResponse is the request type for the
|
|
1662
|
+
* Query/QueryPacketCommitments RPC method
|
|
1663
|
+
* @name QueryPacketCommitmentsResponse
|
|
1664
|
+
* @package ibc.core.channel.v1
|
|
1665
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketCommitmentsResponse
|
|
1666
|
+
*/
|
|
1203
1667
|
export declare const QueryPacketCommitmentsResponse: {
|
|
1204
1668
|
typeUrl: string;
|
|
1205
1669
|
aminoType: string;
|
|
@@ -1217,6 +1681,13 @@ export declare const QueryPacketCommitmentsResponse: {
|
|
|
1217
1681
|
toProtoMsg(message: QueryPacketCommitmentsResponse): QueryPacketCommitmentsResponseProtoMsg;
|
|
1218
1682
|
registerTypeUrl(): void;
|
|
1219
1683
|
};
|
|
1684
|
+
/**
|
|
1685
|
+
* QueryPacketReceiptRequest is the request type for the
|
|
1686
|
+
* Query/PacketReceipt RPC method
|
|
1687
|
+
* @name QueryPacketReceiptRequest
|
|
1688
|
+
* @package ibc.core.channel.v1
|
|
1689
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketReceiptRequest
|
|
1690
|
+
*/
|
|
1220
1691
|
export declare const QueryPacketReceiptRequest: {
|
|
1221
1692
|
typeUrl: string;
|
|
1222
1693
|
aminoType: string;
|
|
@@ -1234,6 +1705,14 @@ export declare const QueryPacketReceiptRequest: {
|
|
|
1234
1705
|
toProtoMsg(message: QueryPacketReceiptRequest): QueryPacketReceiptRequestProtoMsg;
|
|
1235
1706
|
registerTypeUrl(): void;
|
|
1236
1707
|
};
|
|
1708
|
+
/**
|
|
1709
|
+
* QueryPacketReceiptResponse defines the client query response for a packet
|
|
1710
|
+
* receipt which also includes a proof, and the height from which the proof was
|
|
1711
|
+
* retrieved
|
|
1712
|
+
* @name QueryPacketReceiptResponse
|
|
1713
|
+
* @package ibc.core.channel.v1
|
|
1714
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketReceiptResponse
|
|
1715
|
+
*/
|
|
1237
1716
|
export declare const QueryPacketReceiptResponse: {
|
|
1238
1717
|
typeUrl: string;
|
|
1239
1718
|
aminoType: string;
|
|
@@ -1251,6 +1730,13 @@ export declare const QueryPacketReceiptResponse: {
|
|
|
1251
1730
|
toProtoMsg(message: QueryPacketReceiptResponse): QueryPacketReceiptResponseProtoMsg;
|
|
1252
1731
|
registerTypeUrl(): void;
|
|
1253
1732
|
};
|
|
1733
|
+
/**
|
|
1734
|
+
* QueryPacketAcknowledgementRequest is the request type for the
|
|
1735
|
+
* Query/PacketAcknowledgement RPC method
|
|
1736
|
+
* @name QueryPacketAcknowledgementRequest
|
|
1737
|
+
* @package ibc.core.channel.v1
|
|
1738
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketAcknowledgementRequest
|
|
1739
|
+
*/
|
|
1254
1740
|
export declare const QueryPacketAcknowledgementRequest: {
|
|
1255
1741
|
typeUrl: string;
|
|
1256
1742
|
aminoType: string;
|
|
@@ -1268,6 +1754,14 @@ export declare const QueryPacketAcknowledgementRequest: {
|
|
|
1268
1754
|
toProtoMsg(message: QueryPacketAcknowledgementRequest): QueryPacketAcknowledgementRequestProtoMsg;
|
|
1269
1755
|
registerTypeUrl(): void;
|
|
1270
1756
|
};
|
|
1757
|
+
/**
|
|
1758
|
+
* QueryPacketAcknowledgementResponse defines the client query response for a
|
|
1759
|
+
* packet which also includes a proof and the height from which the
|
|
1760
|
+
* proof was retrieved
|
|
1761
|
+
* @name QueryPacketAcknowledgementResponse
|
|
1762
|
+
* @package ibc.core.channel.v1
|
|
1763
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketAcknowledgementResponse
|
|
1764
|
+
*/
|
|
1271
1765
|
export declare const QueryPacketAcknowledgementResponse: {
|
|
1272
1766
|
typeUrl: string;
|
|
1273
1767
|
aminoType: string;
|
|
@@ -1285,6 +1779,13 @@ export declare const QueryPacketAcknowledgementResponse: {
|
|
|
1285
1779
|
toProtoMsg(message: QueryPacketAcknowledgementResponse): QueryPacketAcknowledgementResponseProtoMsg;
|
|
1286
1780
|
registerTypeUrl(): void;
|
|
1287
1781
|
};
|
|
1782
|
+
/**
|
|
1783
|
+
* QueryPacketAcknowledgementsRequest is the request type for the
|
|
1784
|
+
* Query/QueryPacketCommitments RPC method
|
|
1785
|
+
* @name QueryPacketAcknowledgementsRequest
|
|
1786
|
+
* @package ibc.core.channel.v1
|
|
1787
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketAcknowledgementsRequest
|
|
1788
|
+
*/
|
|
1288
1789
|
export declare const QueryPacketAcknowledgementsRequest: {
|
|
1289
1790
|
typeUrl: string;
|
|
1290
1791
|
aminoType: string;
|
|
@@ -1302,6 +1803,13 @@ export declare const QueryPacketAcknowledgementsRequest: {
|
|
|
1302
1803
|
toProtoMsg(message: QueryPacketAcknowledgementsRequest): QueryPacketAcknowledgementsRequestProtoMsg;
|
|
1303
1804
|
registerTypeUrl(): void;
|
|
1304
1805
|
};
|
|
1806
|
+
/**
|
|
1807
|
+
* QueryPacketAcknowledgemetsResponse is the request type for the
|
|
1808
|
+
* Query/QueryPacketAcknowledgements RPC method
|
|
1809
|
+
* @name QueryPacketAcknowledgementsResponse
|
|
1810
|
+
* @package ibc.core.channel.v1
|
|
1811
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketAcknowledgementsResponse
|
|
1812
|
+
*/
|
|
1305
1813
|
export declare const QueryPacketAcknowledgementsResponse: {
|
|
1306
1814
|
typeUrl: string;
|
|
1307
1815
|
aminoType: string;
|
|
@@ -1319,6 +1827,13 @@ export declare const QueryPacketAcknowledgementsResponse: {
|
|
|
1319
1827
|
toProtoMsg(message: QueryPacketAcknowledgementsResponse): QueryPacketAcknowledgementsResponseProtoMsg;
|
|
1320
1828
|
registerTypeUrl(): void;
|
|
1321
1829
|
};
|
|
1830
|
+
/**
|
|
1831
|
+
* QueryUnreceivedPacketsRequest is the request type for the
|
|
1832
|
+
* Query/UnreceivedPackets RPC method
|
|
1833
|
+
* @name QueryUnreceivedPacketsRequest
|
|
1834
|
+
* @package ibc.core.channel.v1
|
|
1835
|
+
* @see proto type: ibc.core.channel.v1.QueryUnreceivedPacketsRequest
|
|
1836
|
+
*/
|
|
1322
1837
|
export declare const QueryUnreceivedPacketsRequest: {
|
|
1323
1838
|
typeUrl: string;
|
|
1324
1839
|
aminoType: string;
|
|
@@ -1336,6 +1851,13 @@ export declare const QueryUnreceivedPacketsRequest: {
|
|
|
1336
1851
|
toProtoMsg(message: QueryUnreceivedPacketsRequest): QueryUnreceivedPacketsRequestProtoMsg;
|
|
1337
1852
|
registerTypeUrl(): void;
|
|
1338
1853
|
};
|
|
1854
|
+
/**
|
|
1855
|
+
* QueryUnreceivedPacketsResponse is the response type for the
|
|
1856
|
+
* Query/UnreceivedPacketCommitments RPC method
|
|
1857
|
+
* @name QueryUnreceivedPacketsResponse
|
|
1858
|
+
* @package ibc.core.channel.v1
|
|
1859
|
+
* @see proto type: ibc.core.channel.v1.QueryUnreceivedPacketsResponse
|
|
1860
|
+
*/
|
|
1339
1861
|
export declare const QueryUnreceivedPacketsResponse: {
|
|
1340
1862
|
typeUrl: string;
|
|
1341
1863
|
aminoType: string;
|
|
@@ -1353,6 +1875,13 @@ export declare const QueryUnreceivedPacketsResponse: {
|
|
|
1353
1875
|
toProtoMsg(message: QueryUnreceivedPacketsResponse): QueryUnreceivedPacketsResponseProtoMsg;
|
|
1354
1876
|
registerTypeUrl(): void;
|
|
1355
1877
|
};
|
|
1878
|
+
/**
|
|
1879
|
+
* QueryUnreceivedAcks is the request type for the
|
|
1880
|
+
* Query/UnreceivedAcks RPC method
|
|
1881
|
+
* @name QueryUnreceivedAcksRequest
|
|
1882
|
+
* @package ibc.core.channel.v1
|
|
1883
|
+
* @see proto type: ibc.core.channel.v1.QueryUnreceivedAcksRequest
|
|
1884
|
+
*/
|
|
1356
1885
|
export declare const QueryUnreceivedAcksRequest: {
|
|
1357
1886
|
typeUrl: string;
|
|
1358
1887
|
aminoType: string;
|
|
@@ -1370,6 +1899,13 @@ export declare const QueryUnreceivedAcksRequest: {
|
|
|
1370
1899
|
toProtoMsg(message: QueryUnreceivedAcksRequest): QueryUnreceivedAcksRequestProtoMsg;
|
|
1371
1900
|
registerTypeUrl(): void;
|
|
1372
1901
|
};
|
|
1902
|
+
/**
|
|
1903
|
+
* QueryUnreceivedAcksResponse is the response type for the
|
|
1904
|
+
* Query/UnreceivedAcks RPC method
|
|
1905
|
+
* @name QueryUnreceivedAcksResponse
|
|
1906
|
+
* @package ibc.core.channel.v1
|
|
1907
|
+
* @see proto type: ibc.core.channel.v1.QueryUnreceivedAcksResponse
|
|
1908
|
+
*/
|
|
1373
1909
|
export declare const QueryUnreceivedAcksResponse: {
|
|
1374
1910
|
typeUrl: string;
|
|
1375
1911
|
aminoType: string;
|
|
@@ -1387,6 +1923,13 @@ export declare const QueryUnreceivedAcksResponse: {
|
|
|
1387
1923
|
toProtoMsg(message: QueryUnreceivedAcksResponse): QueryUnreceivedAcksResponseProtoMsg;
|
|
1388
1924
|
registerTypeUrl(): void;
|
|
1389
1925
|
};
|
|
1926
|
+
/**
|
|
1927
|
+
* QueryNextSequenceReceiveRequest is the request type for the
|
|
1928
|
+
* Query/QueryNextSequenceReceiveRequest RPC method
|
|
1929
|
+
* @name QueryNextSequenceReceiveRequest
|
|
1930
|
+
* @package ibc.core.channel.v1
|
|
1931
|
+
* @see proto type: ibc.core.channel.v1.QueryNextSequenceReceiveRequest
|
|
1932
|
+
*/
|
|
1390
1933
|
export declare const QueryNextSequenceReceiveRequest: {
|
|
1391
1934
|
typeUrl: string;
|
|
1392
1935
|
aminoType: string;
|
|
@@ -1404,6 +1947,13 @@ export declare const QueryNextSequenceReceiveRequest: {
|
|
|
1404
1947
|
toProtoMsg(message: QueryNextSequenceReceiveRequest): QueryNextSequenceReceiveRequestProtoMsg;
|
|
1405
1948
|
registerTypeUrl(): void;
|
|
1406
1949
|
};
|
|
1950
|
+
/**
|
|
1951
|
+
* QuerySequenceResponse is the response type for the
|
|
1952
|
+
* Query/QueryNextSequenceReceiveResponse RPC method
|
|
1953
|
+
* @name QueryNextSequenceReceiveResponse
|
|
1954
|
+
* @package ibc.core.channel.v1
|
|
1955
|
+
* @see proto type: ibc.core.channel.v1.QueryNextSequenceReceiveResponse
|
|
1956
|
+
*/
|
|
1407
1957
|
export declare const QueryNextSequenceReceiveResponse: {
|
|
1408
1958
|
typeUrl: string;
|
|
1409
1959
|
aminoType: string;
|
|
@@ -1421,6 +1971,13 @@ export declare const QueryNextSequenceReceiveResponse: {
|
|
|
1421
1971
|
toProtoMsg(message: QueryNextSequenceReceiveResponse): QueryNextSequenceReceiveResponseProtoMsg;
|
|
1422
1972
|
registerTypeUrl(): void;
|
|
1423
1973
|
};
|
|
1974
|
+
/**
|
|
1975
|
+
* QueryNextSequenceSendRequest is the request type for the
|
|
1976
|
+
* Query/QueryNextSequenceSend RPC method
|
|
1977
|
+
* @name QueryNextSequenceSendRequest
|
|
1978
|
+
* @package ibc.core.channel.v1
|
|
1979
|
+
* @see proto type: ibc.core.channel.v1.QueryNextSequenceSendRequest
|
|
1980
|
+
*/
|
|
1424
1981
|
export declare const QueryNextSequenceSendRequest: {
|
|
1425
1982
|
typeUrl: string;
|
|
1426
1983
|
aminoType: string;
|
|
@@ -1438,6 +1995,13 @@ export declare const QueryNextSequenceSendRequest: {
|
|
|
1438
1995
|
toProtoMsg(message: QueryNextSequenceSendRequest): QueryNextSequenceSendRequestProtoMsg;
|
|
1439
1996
|
registerTypeUrl(): void;
|
|
1440
1997
|
};
|
|
1998
|
+
/**
|
|
1999
|
+
* QueryNextSequenceSendResponse is the request type for the
|
|
2000
|
+
* Query/QueryNextSequenceSend RPC method
|
|
2001
|
+
* @name QueryNextSequenceSendResponse
|
|
2002
|
+
* @package ibc.core.channel.v1
|
|
2003
|
+
* @see proto type: ibc.core.channel.v1.QueryNextSequenceSendResponse
|
|
2004
|
+
*/
|
|
1441
2005
|
export declare const QueryNextSequenceSendResponse: {
|
|
1442
2006
|
typeUrl: string;
|
|
1443
2007
|
aminoType: string;
|
|
@@ -1455,105 +2019,3 @@ export declare const QueryNextSequenceSendResponse: {
|
|
|
1455
2019
|
toProtoMsg(message: QueryNextSequenceSendResponse): QueryNextSequenceSendResponseProtoMsg;
|
|
1456
2020
|
registerTypeUrl(): void;
|
|
1457
2021
|
};
|
|
1458
|
-
export declare const QueryUpgradeErrorRequest: {
|
|
1459
|
-
typeUrl: string;
|
|
1460
|
-
aminoType: string;
|
|
1461
|
-
is(o: any): o is QueryUpgradeErrorRequest;
|
|
1462
|
-
isAmino(o: any): o is QueryUpgradeErrorRequestAmino;
|
|
1463
|
-
encode(message: QueryUpgradeErrorRequest, writer?: BinaryWriter): BinaryWriter;
|
|
1464
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryUpgradeErrorRequest;
|
|
1465
|
-
fromPartial(object: DeepPartial<QueryUpgradeErrorRequest>): QueryUpgradeErrorRequest;
|
|
1466
|
-
fromAmino(object: QueryUpgradeErrorRequestAmino): QueryUpgradeErrorRequest;
|
|
1467
|
-
toAmino(message: QueryUpgradeErrorRequest): QueryUpgradeErrorRequestAmino;
|
|
1468
|
-
fromAminoMsg(object: QueryUpgradeErrorRequestAminoMsg): QueryUpgradeErrorRequest;
|
|
1469
|
-
toAminoMsg(message: QueryUpgradeErrorRequest): QueryUpgradeErrorRequestAminoMsg;
|
|
1470
|
-
fromProtoMsg(message: QueryUpgradeErrorRequestProtoMsg): QueryUpgradeErrorRequest;
|
|
1471
|
-
toProto(message: QueryUpgradeErrorRequest): Uint8Array;
|
|
1472
|
-
toProtoMsg(message: QueryUpgradeErrorRequest): QueryUpgradeErrorRequestProtoMsg;
|
|
1473
|
-
registerTypeUrl(): void;
|
|
1474
|
-
};
|
|
1475
|
-
export declare const QueryUpgradeErrorResponse: {
|
|
1476
|
-
typeUrl: string;
|
|
1477
|
-
aminoType: string;
|
|
1478
|
-
is(o: any): o is QueryUpgradeErrorResponse;
|
|
1479
|
-
isAmino(o: any): o is QueryUpgradeErrorResponseAmino;
|
|
1480
|
-
encode(message: QueryUpgradeErrorResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1481
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryUpgradeErrorResponse;
|
|
1482
|
-
fromPartial(object: DeepPartial<QueryUpgradeErrorResponse>): QueryUpgradeErrorResponse;
|
|
1483
|
-
fromAmino(object: QueryUpgradeErrorResponseAmino): QueryUpgradeErrorResponse;
|
|
1484
|
-
toAmino(message: QueryUpgradeErrorResponse): QueryUpgradeErrorResponseAmino;
|
|
1485
|
-
fromAminoMsg(object: QueryUpgradeErrorResponseAminoMsg): QueryUpgradeErrorResponse;
|
|
1486
|
-
toAminoMsg(message: QueryUpgradeErrorResponse): QueryUpgradeErrorResponseAminoMsg;
|
|
1487
|
-
fromProtoMsg(message: QueryUpgradeErrorResponseProtoMsg): QueryUpgradeErrorResponse;
|
|
1488
|
-
toProto(message: QueryUpgradeErrorResponse): Uint8Array;
|
|
1489
|
-
toProtoMsg(message: QueryUpgradeErrorResponse): QueryUpgradeErrorResponseProtoMsg;
|
|
1490
|
-
registerTypeUrl(): void;
|
|
1491
|
-
};
|
|
1492
|
-
export declare const QueryUpgradeRequest: {
|
|
1493
|
-
typeUrl: string;
|
|
1494
|
-
aminoType: string;
|
|
1495
|
-
is(o: any): o is QueryUpgradeRequest;
|
|
1496
|
-
isAmino(o: any): o is QueryUpgradeRequestAmino;
|
|
1497
|
-
encode(message: QueryUpgradeRequest, writer?: BinaryWriter): BinaryWriter;
|
|
1498
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryUpgradeRequest;
|
|
1499
|
-
fromPartial(object: DeepPartial<QueryUpgradeRequest>): QueryUpgradeRequest;
|
|
1500
|
-
fromAmino(object: QueryUpgradeRequestAmino): QueryUpgradeRequest;
|
|
1501
|
-
toAmino(message: QueryUpgradeRequest): QueryUpgradeRequestAmino;
|
|
1502
|
-
fromAminoMsg(object: QueryUpgradeRequestAminoMsg): QueryUpgradeRequest;
|
|
1503
|
-
toAminoMsg(message: QueryUpgradeRequest): QueryUpgradeRequestAminoMsg;
|
|
1504
|
-
fromProtoMsg(message: QueryUpgradeRequestProtoMsg): QueryUpgradeRequest;
|
|
1505
|
-
toProto(message: QueryUpgradeRequest): Uint8Array;
|
|
1506
|
-
toProtoMsg(message: QueryUpgradeRequest): QueryUpgradeRequestProtoMsg;
|
|
1507
|
-
registerTypeUrl(): void;
|
|
1508
|
-
};
|
|
1509
|
-
export declare const QueryUpgradeResponse: {
|
|
1510
|
-
typeUrl: string;
|
|
1511
|
-
aminoType: string;
|
|
1512
|
-
is(o: any): o is QueryUpgradeResponse;
|
|
1513
|
-
isAmino(o: any): o is QueryUpgradeResponseAmino;
|
|
1514
|
-
encode(message: QueryUpgradeResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1515
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryUpgradeResponse;
|
|
1516
|
-
fromPartial(object: DeepPartial<QueryUpgradeResponse>): QueryUpgradeResponse;
|
|
1517
|
-
fromAmino(object: QueryUpgradeResponseAmino): QueryUpgradeResponse;
|
|
1518
|
-
toAmino(message: QueryUpgradeResponse): QueryUpgradeResponseAmino;
|
|
1519
|
-
fromAminoMsg(object: QueryUpgradeResponseAminoMsg): QueryUpgradeResponse;
|
|
1520
|
-
toAminoMsg(message: QueryUpgradeResponse): QueryUpgradeResponseAminoMsg;
|
|
1521
|
-
fromProtoMsg(message: QueryUpgradeResponseProtoMsg): QueryUpgradeResponse;
|
|
1522
|
-
toProto(message: QueryUpgradeResponse): Uint8Array;
|
|
1523
|
-
toProtoMsg(message: QueryUpgradeResponse): QueryUpgradeResponseProtoMsg;
|
|
1524
|
-
registerTypeUrl(): void;
|
|
1525
|
-
};
|
|
1526
|
-
export declare const QueryChannelParamsRequest: {
|
|
1527
|
-
typeUrl: string;
|
|
1528
|
-
aminoType: string;
|
|
1529
|
-
is(o: any): o is QueryChannelParamsRequest;
|
|
1530
|
-
isAmino(o: any): o is QueryChannelParamsRequestAmino;
|
|
1531
|
-
encode(_: QueryChannelParamsRequest, writer?: BinaryWriter): BinaryWriter;
|
|
1532
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryChannelParamsRequest;
|
|
1533
|
-
fromPartial(_: DeepPartial<QueryChannelParamsRequest>): QueryChannelParamsRequest;
|
|
1534
|
-
fromAmino(_: QueryChannelParamsRequestAmino): QueryChannelParamsRequest;
|
|
1535
|
-
toAmino(_: QueryChannelParamsRequest): QueryChannelParamsRequestAmino;
|
|
1536
|
-
fromAminoMsg(object: QueryChannelParamsRequestAminoMsg): QueryChannelParamsRequest;
|
|
1537
|
-
toAminoMsg(message: QueryChannelParamsRequest): QueryChannelParamsRequestAminoMsg;
|
|
1538
|
-
fromProtoMsg(message: QueryChannelParamsRequestProtoMsg): QueryChannelParamsRequest;
|
|
1539
|
-
toProto(message: QueryChannelParamsRequest): Uint8Array;
|
|
1540
|
-
toProtoMsg(message: QueryChannelParamsRequest): QueryChannelParamsRequestProtoMsg;
|
|
1541
|
-
registerTypeUrl(): void;
|
|
1542
|
-
};
|
|
1543
|
-
export declare const QueryChannelParamsResponse: {
|
|
1544
|
-
typeUrl: string;
|
|
1545
|
-
aminoType: string;
|
|
1546
|
-
is(o: any): o is QueryChannelParamsResponse;
|
|
1547
|
-
isAmino(o: any): o is QueryChannelParamsResponseAmino;
|
|
1548
|
-
encode(message: QueryChannelParamsResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1549
|
-
decode(input: BinaryReader | Uint8Array, length?: number): QueryChannelParamsResponse;
|
|
1550
|
-
fromPartial(object: DeepPartial<QueryChannelParamsResponse>): QueryChannelParamsResponse;
|
|
1551
|
-
fromAmino(object: QueryChannelParamsResponseAmino): QueryChannelParamsResponse;
|
|
1552
|
-
toAmino(message: QueryChannelParamsResponse): QueryChannelParamsResponseAmino;
|
|
1553
|
-
fromAminoMsg(object: QueryChannelParamsResponseAminoMsg): QueryChannelParamsResponse;
|
|
1554
|
-
toAminoMsg(message: QueryChannelParamsResponse): QueryChannelParamsResponseAminoMsg;
|
|
1555
|
-
fromProtoMsg(message: QueryChannelParamsResponseProtoMsg): QueryChannelParamsResponse;
|
|
1556
|
-
toProto(message: QueryChannelParamsResponse): Uint8Array;
|
|
1557
|
-
toProtoMsg(message: QueryChannelParamsResponse): QueryChannelParamsResponseProtoMsg;
|
|
1558
|
-
registerTypeUrl(): void;
|
|
1559
|
-
};
|