@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,6 +1,5 @@
|
|
|
1
|
-
import { Channel, ChannelAmino, Packet, PacketAmino
|
|
2
|
-
import { Height, HeightAmino
|
|
3
|
-
import { UpgradeFields, UpgradeFieldsAmino, Upgrade, UpgradeAmino, ErrorReceipt, ErrorReceiptAmino } from "./upgrade";
|
|
1
|
+
import { Channel, ChannelAmino, Packet, PacketAmino } from "./channel";
|
|
2
|
+
import { Height, HeightAmino } from "../../client/v1/client";
|
|
4
3
|
import { BinaryReader, BinaryWriter } from "../../../../binary";
|
|
5
4
|
import { DeepPartial } from "../../../../helpers";
|
|
6
5
|
/** ResponseResultType defines the possible outcomes of the execution of a message */
|
|
@@ -21,6 +20,9 @@ export declare function responseResultTypeToJSON(object: ResponseResultType): st
|
|
|
21
20
|
/**
|
|
22
21
|
* MsgChannelOpenInit defines an sdk.Msg to initialize a channel handshake. It
|
|
23
22
|
* is called by a relayer on Chain A.
|
|
23
|
+
* @name MsgChannelOpenInit
|
|
24
|
+
* @package ibc.core.channel.v1
|
|
25
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenInit
|
|
24
26
|
*/
|
|
25
27
|
export interface MsgChannelOpenInit {
|
|
26
28
|
portId: string;
|
|
@@ -34,6 +36,9 @@ export interface MsgChannelOpenInitProtoMsg {
|
|
|
34
36
|
/**
|
|
35
37
|
* MsgChannelOpenInit defines an sdk.Msg to initialize a channel handshake. It
|
|
36
38
|
* is called by a relayer on Chain A.
|
|
39
|
+
* @name MsgChannelOpenInitAmino
|
|
40
|
+
* @package ibc.core.channel.v1
|
|
41
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenInit
|
|
37
42
|
*/
|
|
38
43
|
export interface MsgChannelOpenInitAmino {
|
|
39
44
|
port_id: string;
|
|
@@ -44,7 +49,12 @@ export interface MsgChannelOpenInitAminoMsg {
|
|
|
44
49
|
type: "cosmos-sdk/MsgChannelOpenInit";
|
|
45
50
|
value: MsgChannelOpenInitAmino;
|
|
46
51
|
}
|
|
47
|
-
/**
|
|
52
|
+
/**
|
|
53
|
+
* MsgChannelOpenInitResponse defines the Msg/ChannelOpenInit response type.
|
|
54
|
+
* @name MsgChannelOpenInitResponse
|
|
55
|
+
* @package ibc.core.channel.v1
|
|
56
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenInitResponse
|
|
57
|
+
*/
|
|
48
58
|
export interface MsgChannelOpenInitResponse {
|
|
49
59
|
channelId: string;
|
|
50
60
|
version: string;
|
|
@@ -53,7 +63,12 @@ export interface MsgChannelOpenInitResponseProtoMsg {
|
|
|
53
63
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenInitResponse";
|
|
54
64
|
value: Uint8Array;
|
|
55
65
|
}
|
|
56
|
-
/**
|
|
66
|
+
/**
|
|
67
|
+
* MsgChannelOpenInitResponse defines the Msg/ChannelOpenInit response type.
|
|
68
|
+
* @name MsgChannelOpenInitResponseAmino
|
|
69
|
+
* @package ibc.core.channel.v1
|
|
70
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenInitResponse
|
|
71
|
+
*/
|
|
57
72
|
export interface MsgChannelOpenInitResponseAmino {
|
|
58
73
|
channel_id: string;
|
|
59
74
|
version: string;
|
|
@@ -66,13 +81,20 @@ export interface MsgChannelOpenInitResponseAminoMsg {
|
|
|
66
81
|
* MsgChannelOpenInit defines a msg sent by a Relayer to try to open a channel
|
|
67
82
|
* on Chain B. The version field within the Channel field has been deprecated. Its
|
|
68
83
|
* value will be ignored by core IBC.
|
|
84
|
+
* @name MsgChannelOpenTry
|
|
85
|
+
* @package ibc.core.channel.v1
|
|
86
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenTry
|
|
69
87
|
*/
|
|
70
88
|
export interface MsgChannelOpenTry {
|
|
71
89
|
portId: string;
|
|
72
|
-
/**
|
|
73
|
-
|
|
90
|
+
/**
|
|
91
|
+
* Deprecated: this field is unused. Crossing hello's are no longer supported in core IBC.
|
|
92
|
+
* @deprecated
|
|
93
|
+
*/
|
|
74
94
|
previousChannelId: string;
|
|
75
|
-
/**
|
|
95
|
+
/**
|
|
96
|
+
* NOTE: the version field within the channel has been deprecated. Its value will be ignored by core IBC.
|
|
97
|
+
*/
|
|
76
98
|
channel: Channel;
|
|
77
99
|
counterpartyVersion: string;
|
|
78
100
|
proofInit: Uint8Array;
|
|
@@ -87,13 +109,20 @@ export interface MsgChannelOpenTryProtoMsg {
|
|
|
87
109
|
* MsgChannelOpenInit defines a msg sent by a Relayer to try to open a channel
|
|
88
110
|
* on Chain B. The version field within the Channel field has been deprecated. Its
|
|
89
111
|
* value will be ignored by core IBC.
|
|
112
|
+
* @name MsgChannelOpenTryAmino
|
|
113
|
+
* @package ibc.core.channel.v1
|
|
114
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenTry
|
|
90
115
|
*/
|
|
91
116
|
export interface MsgChannelOpenTryAmino {
|
|
92
117
|
port_id: string;
|
|
93
|
-
/**
|
|
94
|
-
|
|
118
|
+
/**
|
|
119
|
+
* Deprecated: this field is unused. Crossing hello's are no longer supported in core IBC.
|
|
120
|
+
* @deprecated
|
|
121
|
+
*/
|
|
95
122
|
previous_channel_id: string;
|
|
96
|
-
/**
|
|
123
|
+
/**
|
|
124
|
+
* NOTE: the version field within the channel has been deprecated. Its value will be ignored by core IBC.
|
|
125
|
+
*/
|
|
97
126
|
channel: ChannelAmino;
|
|
98
127
|
counterparty_version: string;
|
|
99
128
|
proof_init: string;
|
|
@@ -104,7 +133,12 @@ export interface MsgChannelOpenTryAminoMsg {
|
|
|
104
133
|
type: "cosmos-sdk/MsgChannelOpenTry";
|
|
105
134
|
value: MsgChannelOpenTryAmino;
|
|
106
135
|
}
|
|
107
|
-
/**
|
|
136
|
+
/**
|
|
137
|
+
* MsgChannelOpenTryResponse defines the Msg/ChannelOpenTry response type.
|
|
138
|
+
* @name MsgChannelOpenTryResponse
|
|
139
|
+
* @package ibc.core.channel.v1
|
|
140
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenTryResponse
|
|
141
|
+
*/
|
|
108
142
|
export interface MsgChannelOpenTryResponse {
|
|
109
143
|
version: string;
|
|
110
144
|
channelId: string;
|
|
@@ -113,7 +147,12 @@ export interface MsgChannelOpenTryResponseProtoMsg {
|
|
|
113
147
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenTryResponse";
|
|
114
148
|
value: Uint8Array;
|
|
115
149
|
}
|
|
116
|
-
/**
|
|
150
|
+
/**
|
|
151
|
+
* MsgChannelOpenTryResponse defines the Msg/ChannelOpenTry response type.
|
|
152
|
+
* @name MsgChannelOpenTryResponseAmino
|
|
153
|
+
* @package ibc.core.channel.v1
|
|
154
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenTryResponse
|
|
155
|
+
*/
|
|
117
156
|
export interface MsgChannelOpenTryResponseAmino {
|
|
118
157
|
version: string;
|
|
119
158
|
channel_id: string;
|
|
@@ -125,9 +164,9 @@ export interface MsgChannelOpenTryResponseAminoMsg {
|
|
|
125
164
|
/**
|
|
126
165
|
* MsgChannelOpenAck defines a msg sent by a Relayer to Chain A to acknowledge
|
|
127
166
|
* the change of channel state to TRYOPEN on Chain B.
|
|
128
|
-
*
|
|
129
|
-
*
|
|
130
|
-
*
|
|
167
|
+
* @name MsgChannelOpenAck
|
|
168
|
+
* @package ibc.core.channel.v1
|
|
169
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenAck
|
|
131
170
|
*/
|
|
132
171
|
export interface MsgChannelOpenAck {
|
|
133
172
|
portId: string;
|
|
@@ -145,9 +184,9 @@ export interface MsgChannelOpenAckProtoMsg {
|
|
|
145
184
|
/**
|
|
146
185
|
* MsgChannelOpenAck defines a msg sent by a Relayer to Chain A to acknowledge
|
|
147
186
|
* the change of channel state to TRYOPEN on Chain B.
|
|
148
|
-
*
|
|
149
|
-
*
|
|
150
|
-
*
|
|
187
|
+
* @name MsgChannelOpenAckAmino
|
|
188
|
+
* @package ibc.core.channel.v1
|
|
189
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenAck
|
|
151
190
|
*/
|
|
152
191
|
export interface MsgChannelOpenAckAmino {
|
|
153
192
|
port_id: string;
|
|
@@ -162,14 +201,24 @@ export interface MsgChannelOpenAckAminoMsg {
|
|
|
162
201
|
type: "cosmos-sdk/MsgChannelOpenAck";
|
|
163
202
|
value: MsgChannelOpenAckAmino;
|
|
164
203
|
}
|
|
165
|
-
/**
|
|
204
|
+
/**
|
|
205
|
+
* MsgChannelOpenAckResponse defines the Msg/ChannelOpenAck response type.
|
|
206
|
+
* @name MsgChannelOpenAckResponse
|
|
207
|
+
* @package ibc.core.channel.v1
|
|
208
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenAckResponse
|
|
209
|
+
*/
|
|
166
210
|
export interface MsgChannelOpenAckResponse {
|
|
167
211
|
}
|
|
168
212
|
export interface MsgChannelOpenAckResponseProtoMsg {
|
|
169
213
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenAckResponse";
|
|
170
214
|
value: Uint8Array;
|
|
171
215
|
}
|
|
172
|
-
/**
|
|
216
|
+
/**
|
|
217
|
+
* MsgChannelOpenAckResponse defines the Msg/ChannelOpenAck response type.
|
|
218
|
+
* @name MsgChannelOpenAckResponseAmino
|
|
219
|
+
* @package ibc.core.channel.v1
|
|
220
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenAckResponse
|
|
221
|
+
*/
|
|
173
222
|
export interface MsgChannelOpenAckResponseAmino {
|
|
174
223
|
}
|
|
175
224
|
export interface MsgChannelOpenAckResponseAminoMsg {
|
|
@@ -179,6 +228,9 @@ export interface MsgChannelOpenAckResponseAminoMsg {
|
|
|
179
228
|
/**
|
|
180
229
|
* MsgChannelOpenConfirm defines a msg sent by a Relayer to Chain B to
|
|
181
230
|
* acknowledge the change of channel state to OPEN on Chain A.
|
|
231
|
+
* @name MsgChannelOpenConfirm
|
|
232
|
+
* @package ibc.core.channel.v1
|
|
233
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirm
|
|
182
234
|
*/
|
|
183
235
|
export interface MsgChannelOpenConfirm {
|
|
184
236
|
portId: string;
|
|
@@ -194,6 +246,9 @@ export interface MsgChannelOpenConfirmProtoMsg {
|
|
|
194
246
|
/**
|
|
195
247
|
* MsgChannelOpenConfirm defines a msg sent by a Relayer to Chain B to
|
|
196
248
|
* acknowledge the change of channel state to OPEN on Chain A.
|
|
249
|
+
* @name MsgChannelOpenConfirmAmino
|
|
250
|
+
* @package ibc.core.channel.v1
|
|
251
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirm
|
|
197
252
|
*/
|
|
198
253
|
export interface MsgChannelOpenConfirmAmino {
|
|
199
254
|
port_id: string;
|
|
@@ -209,6 +264,9 @@ export interface MsgChannelOpenConfirmAminoMsg {
|
|
|
209
264
|
/**
|
|
210
265
|
* MsgChannelOpenConfirmResponse defines the Msg/ChannelOpenConfirm response
|
|
211
266
|
* type.
|
|
267
|
+
* @name MsgChannelOpenConfirmResponse
|
|
268
|
+
* @package ibc.core.channel.v1
|
|
269
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirmResponse
|
|
212
270
|
*/
|
|
213
271
|
export interface MsgChannelOpenConfirmResponse {
|
|
214
272
|
}
|
|
@@ -219,6 +277,9 @@ export interface MsgChannelOpenConfirmResponseProtoMsg {
|
|
|
219
277
|
/**
|
|
220
278
|
* MsgChannelOpenConfirmResponse defines the Msg/ChannelOpenConfirm response
|
|
221
279
|
* type.
|
|
280
|
+
* @name MsgChannelOpenConfirmResponseAmino
|
|
281
|
+
* @package ibc.core.channel.v1
|
|
282
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirmResponse
|
|
222
283
|
*/
|
|
223
284
|
export interface MsgChannelOpenConfirmResponseAmino {
|
|
224
285
|
}
|
|
@@ -229,6 +290,9 @@ export interface MsgChannelOpenConfirmResponseAminoMsg {
|
|
|
229
290
|
/**
|
|
230
291
|
* MsgChannelCloseInit defines a msg sent by a Relayer to Chain A
|
|
231
292
|
* to close a channel with Chain B.
|
|
293
|
+
* @name MsgChannelCloseInit
|
|
294
|
+
* @package ibc.core.channel.v1
|
|
295
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseInit
|
|
232
296
|
*/
|
|
233
297
|
export interface MsgChannelCloseInit {
|
|
234
298
|
portId: string;
|
|
@@ -242,6 +306,9 @@ export interface MsgChannelCloseInitProtoMsg {
|
|
|
242
306
|
/**
|
|
243
307
|
* MsgChannelCloseInit defines a msg sent by a Relayer to Chain A
|
|
244
308
|
* to close a channel with Chain B.
|
|
309
|
+
* @name MsgChannelCloseInitAmino
|
|
310
|
+
* @package ibc.core.channel.v1
|
|
311
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseInit
|
|
245
312
|
*/
|
|
246
313
|
export interface MsgChannelCloseInitAmino {
|
|
247
314
|
port_id: string;
|
|
@@ -252,14 +319,24 @@ export interface MsgChannelCloseInitAminoMsg {
|
|
|
252
319
|
type: "cosmos-sdk/MsgChannelCloseInit";
|
|
253
320
|
value: MsgChannelCloseInitAmino;
|
|
254
321
|
}
|
|
255
|
-
/**
|
|
322
|
+
/**
|
|
323
|
+
* MsgChannelCloseInitResponse defines the Msg/ChannelCloseInit response type.
|
|
324
|
+
* @name MsgChannelCloseInitResponse
|
|
325
|
+
* @package ibc.core.channel.v1
|
|
326
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseInitResponse
|
|
327
|
+
*/
|
|
256
328
|
export interface MsgChannelCloseInitResponse {
|
|
257
329
|
}
|
|
258
330
|
export interface MsgChannelCloseInitResponseProtoMsg {
|
|
259
331
|
typeUrl: "/ibc.core.channel.v1.MsgChannelCloseInitResponse";
|
|
260
332
|
value: Uint8Array;
|
|
261
333
|
}
|
|
262
|
-
/**
|
|
334
|
+
/**
|
|
335
|
+
* MsgChannelCloseInitResponse defines the Msg/ChannelCloseInit response type.
|
|
336
|
+
* @name MsgChannelCloseInitResponseAmino
|
|
337
|
+
* @package ibc.core.channel.v1
|
|
338
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseInitResponse
|
|
339
|
+
*/
|
|
263
340
|
export interface MsgChannelCloseInitResponseAmino {
|
|
264
341
|
}
|
|
265
342
|
export interface MsgChannelCloseInitResponseAminoMsg {
|
|
@@ -269,6 +346,9 @@ export interface MsgChannelCloseInitResponseAminoMsg {
|
|
|
269
346
|
/**
|
|
270
347
|
* MsgChannelCloseConfirm defines a msg sent by a Relayer to Chain B
|
|
271
348
|
* to acknowledge the change of channel state to CLOSED on Chain A.
|
|
349
|
+
* @name MsgChannelCloseConfirm
|
|
350
|
+
* @package ibc.core.channel.v1
|
|
351
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirm
|
|
272
352
|
*/
|
|
273
353
|
export interface MsgChannelCloseConfirm {
|
|
274
354
|
portId: string;
|
|
@@ -276,7 +356,6 @@ export interface MsgChannelCloseConfirm {
|
|
|
276
356
|
proofInit: Uint8Array;
|
|
277
357
|
proofHeight: Height;
|
|
278
358
|
signer: string;
|
|
279
|
-
counterpartyUpgradeSequence: bigint;
|
|
280
359
|
}
|
|
281
360
|
export interface MsgChannelCloseConfirmProtoMsg {
|
|
282
361
|
typeUrl: "/ibc.core.channel.v1.MsgChannelCloseConfirm";
|
|
@@ -285,6 +364,9 @@ export interface MsgChannelCloseConfirmProtoMsg {
|
|
|
285
364
|
/**
|
|
286
365
|
* MsgChannelCloseConfirm defines a msg sent by a Relayer to Chain B
|
|
287
366
|
* to acknowledge the change of channel state to CLOSED on Chain A.
|
|
367
|
+
* @name MsgChannelCloseConfirmAmino
|
|
368
|
+
* @package ibc.core.channel.v1
|
|
369
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirm
|
|
288
370
|
*/
|
|
289
371
|
export interface MsgChannelCloseConfirmAmino {
|
|
290
372
|
port_id: string;
|
|
@@ -292,7 +374,6 @@ export interface MsgChannelCloseConfirmAmino {
|
|
|
292
374
|
proof_init: string;
|
|
293
375
|
proof_height: HeightAmino;
|
|
294
376
|
signer: string;
|
|
295
|
-
counterparty_upgrade_sequence: string;
|
|
296
377
|
}
|
|
297
378
|
export interface MsgChannelCloseConfirmAminoMsg {
|
|
298
379
|
type: "cosmos-sdk/MsgChannelCloseConfirm";
|
|
@@ -301,6 +382,9 @@ export interface MsgChannelCloseConfirmAminoMsg {
|
|
|
301
382
|
/**
|
|
302
383
|
* MsgChannelCloseConfirmResponse defines the Msg/ChannelCloseConfirm response
|
|
303
384
|
* type.
|
|
385
|
+
* @name MsgChannelCloseConfirmResponse
|
|
386
|
+
* @package ibc.core.channel.v1
|
|
387
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirmResponse
|
|
304
388
|
*/
|
|
305
389
|
export interface MsgChannelCloseConfirmResponse {
|
|
306
390
|
}
|
|
@@ -311,6 +395,9 @@ export interface MsgChannelCloseConfirmResponseProtoMsg {
|
|
|
311
395
|
/**
|
|
312
396
|
* MsgChannelCloseConfirmResponse defines the Msg/ChannelCloseConfirm response
|
|
313
397
|
* type.
|
|
398
|
+
* @name MsgChannelCloseConfirmResponseAmino
|
|
399
|
+
* @package ibc.core.channel.v1
|
|
400
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirmResponse
|
|
314
401
|
*/
|
|
315
402
|
export interface MsgChannelCloseConfirmResponseAmino {
|
|
316
403
|
}
|
|
@@ -318,7 +405,12 @@ export interface MsgChannelCloseConfirmResponseAminoMsg {
|
|
|
318
405
|
type: "cosmos-sdk/MsgChannelCloseConfirmResponse";
|
|
319
406
|
value: MsgChannelCloseConfirmResponseAmino;
|
|
320
407
|
}
|
|
321
|
-
/**
|
|
408
|
+
/**
|
|
409
|
+
* MsgRecvPacket receives incoming IBC packet
|
|
410
|
+
* @name MsgRecvPacket
|
|
411
|
+
* @package ibc.core.channel.v1
|
|
412
|
+
* @see proto type: ibc.core.channel.v1.MsgRecvPacket
|
|
413
|
+
*/
|
|
322
414
|
export interface MsgRecvPacket {
|
|
323
415
|
packet: Packet;
|
|
324
416
|
proofCommitment: Uint8Array;
|
|
@@ -329,7 +421,12 @@ export interface MsgRecvPacketProtoMsg {
|
|
|
329
421
|
typeUrl: "/ibc.core.channel.v1.MsgRecvPacket";
|
|
330
422
|
value: Uint8Array;
|
|
331
423
|
}
|
|
332
|
-
/**
|
|
424
|
+
/**
|
|
425
|
+
* MsgRecvPacket receives incoming IBC packet
|
|
426
|
+
* @name MsgRecvPacketAmino
|
|
427
|
+
* @package ibc.core.channel.v1
|
|
428
|
+
* @see proto type: ibc.core.channel.v1.MsgRecvPacket
|
|
429
|
+
*/
|
|
333
430
|
export interface MsgRecvPacketAmino {
|
|
334
431
|
packet: PacketAmino;
|
|
335
432
|
proof_commitment: string;
|
|
@@ -340,7 +437,12 @@ export interface MsgRecvPacketAminoMsg {
|
|
|
340
437
|
type: "cosmos-sdk/MsgRecvPacket";
|
|
341
438
|
value: MsgRecvPacketAmino;
|
|
342
439
|
}
|
|
343
|
-
/**
|
|
440
|
+
/**
|
|
441
|
+
* MsgRecvPacketResponse defines the Msg/RecvPacket response type.
|
|
442
|
+
* @name MsgRecvPacketResponse
|
|
443
|
+
* @package ibc.core.channel.v1
|
|
444
|
+
* @see proto type: ibc.core.channel.v1.MsgRecvPacketResponse
|
|
445
|
+
*/
|
|
344
446
|
export interface MsgRecvPacketResponse {
|
|
345
447
|
result: ResponseResultType;
|
|
346
448
|
}
|
|
@@ -348,7 +450,12 @@ export interface MsgRecvPacketResponseProtoMsg {
|
|
|
348
450
|
typeUrl: "/ibc.core.channel.v1.MsgRecvPacketResponse";
|
|
349
451
|
value: Uint8Array;
|
|
350
452
|
}
|
|
351
|
-
/**
|
|
453
|
+
/**
|
|
454
|
+
* MsgRecvPacketResponse defines the Msg/RecvPacket response type.
|
|
455
|
+
* @name MsgRecvPacketResponseAmino
|
|
456
|
+
* @package ibc.core.channel.v1
|
|
457
|
+
* @see proto type: ibc.core.channel.v1.MsgRecvPacketResponse
|
|
458
|
+
*/
|
|
352
459
|
export interface MsgRecvPacketResponseAmino {
|
|
353
460
|
result: ResponseResultType;
|
|
354
461
|
}
|
|
@@ -356,7 +463,12 @@ export interface MsgRecvPacketResponseAminoMsg {
|
|
|
356
463
|
type: "cosmos-sdk/MsgRecvPacketResponse";
|
|
357
464
|
value: MsgRecvPacketResponseAmino;
|
|
358
465
|
}
|
|
359
|
-
/**
|
|
466
|
+
/**
|
|
467
|
+
* MsgTimeout receives timed-out packet
|
|
468
|
+
* @name MsgTimeout
|
|
469
|
+
* @package ibc.core.channel.v1
|
|
470
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeout
|
|
471
|
+
*/
|
|
360
472
|
export interface MsgTimeout {
|
|
361
473
|
packet: Packet;
|
|
362
474
|
proofUnreceived: Uint8Array;
|
|
@@ -368,7 +480,12 @@ export interface MsgTimeoutProtoMsg {
|
|
|
368
480
|
typeUrl: "/ibc.core.channel.v1.MsgTimeout";
|
|
369
481
|
value: Uint8Array;
|
|
370
482
|
}
|
|
371
|
-
/**
|
|
483
|
+
/**
|
|
484
|
+
* MsgTimeout receives timed-out packet
|
|
485
|
+
* @name MsgTimeoutAmino
|
|
486
|
+
* @package ibc.core.channel.v1
|
|
487
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeout
|
|
488
|
+
*/
|
|
372
489
|
export interface MsgTimeoutAmino {
|
|
373
490
|
packet: PacketAmino;
|
|
374
491
|
proof_unreceived: string;
|
|
@@ -380,7 +497,12 @@ export interface MsgTimeoutAminoMsg {
|
|
|
380
497
|
type: "cosmos-sdk/MsgTimeout";
|
|
381
498
|
value: MsgTimeoutAmino;
|
|
382
499
|
}
|
|
383
|
-
/**
|
|
500
|
+
/**
|
|
501
|
+
* MsgTimeoutResponse defines the Msg/Timeout response type.
|
|
502
|
+
* @name MsgTimeoutResponse
|
|
503
|
+
* @package ibc.core.channel.v1
|
|
504
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutResponse
|
|
505
|
+
*/
|
|
384
506
|
export interface MsgTimeoutResponse {
|
|
385
507
|
result: ResponseResultType;
|
|
386
508
|
}
|
|
@@ -388,7 +510,12 @@ export interface MsgTimeoutResponseProtoMsg {
|
|
|
388
510
|
typeUrl: "/ibc.core.channel.v1.MsgTimeoutResponse";
|
|
389
511
|
value: Uint8Array;
|
|
390
512
|
}
|
|
391
|
-
/**
|
|
513
|
+
/**
|
|
514
|
+
* MsgTimeoutResponse defines the Msg/Timeout response type.
|
|
515
|
+
* @name MsgTimeoutResponseAmino
|
|
516
|
+
* @package ibc.core.channel.v1
|
|
517
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutResponse
|
|
518
|
+
*/
|
|
392
519
|
export interface MsgTimeoutResponseAmino {
|
|
393
520
|
result: ResponseResultType;
|
|
394
521
|
}
|
|
@@ -396,7 +523,12 @@ export interface MsgTimeoutResponseAminoMsg {
|
|
|
396
523
|
type: "cosmos-sdk/MsgTimeoutResponse";
|
|
397
524
|
value: MsgTimeoutResponseAmino;
|
|
398
525
|
}
|
|
399
|
-
/**
|
|
526
|
+
/**
|
|
527
|
+
* MsgTimeoutOnClose timed-out packet upon counterparty channel closure.
|
|
528
|
+
* @name MsgTimeoutOnClose
|
|
529
|
+
* @package ibc.core.channel.v1
|
|
530
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutOnClose
|
|
531
|
+
*/
|
|
400
532
|
export interface MsgTimeoutOnClose {
|
|
401
533
|
packet: Packet;
|
|
402
534
|
proofUnreceived: Uint8Array;
|
|
@@ -404,13 +536,17 @@ export interface MsgTimeoutOnClose {
|
|
|
404
536
|
proofHeight: Height;
|
|
405
537
|
nextSequenceRecv: bigint;
|
|
406
538
|
signer: string;
|
|
407
|
-
counterpartyUpgradeSequence: bigint;
|
|
408
539
|
}
|
|
409
540
|
export interface MsgTimeoutOnCloseProtoMsg {
|
|
410
541
|
typeUrl: "/ibc.core.channel.v1.MsgTimeoutOnClose";
|
|
411
542
|
value: Uint8Array;
|
|
412
543
|
}
|
|
413
|
-
/**
|
|
544
|
+
/**
|
|
545
|
+
* MsgTimeoutOnClose timed-out packet upon counterparty channel closure.
|
|
546
|
+
* @name MsgTimeoutOnCloseAmino
|
|
547
|
+
* @package ibc.core.channel.v1
|
|
548
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutOnClose
|
|
549
|
+
*/
|
|
414
550
|
export interface MsgTimeoutOnCloseAmino {
|
|
415
551
|
packet: PacketAmino;
|
|
416
552
|
proof_unreceived: string;
|
|
@@ -418,13 +554,17 @@ export interface MsgTimeoutOnCloseAmino {
|
|
|
418
554
|
proof_height: HeightAmino;
|
|
419
555
|
next_sequence_recv: string;
|
|
420
556
|
signer: string;
|
|
421
|
-
counterparty_upgrade_sequence: string;
|
|
422
557
|
}
|
|
423
558
|
export interface MsgTimeoutOnCloseAminoMsg {
|
|
424
559
|
type: "cosmos-sdk/MsgTimeoutOnClose";
|
|
425
560
|
value: MsgTimeoutOnCloseAmino;
|
|
426
561
|
}
|
|
427
|
-
/**
|
|
562
|
+
/**
|
|
563
|
+
* MsgTimeoutOnCloseResponse defines the Msg/TimeoutOnClose response type.
|
|
564
|
+
* @name MsgTimeoutOnCloseResponse
|
|
565
|
+
* @package ibc.core.channel.v1
|
|
566
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutOnCloseResponse
|
|
567
|
+
*/
|
|
428
568
|
export interface MsgTimeoutOnCloseResponse {
|
|
429
569
|
result: ResponseResultType;
|
|
430
570
|
}
|
|
@@ -432,7 +572,12 @@ export interface MsgTimeoutOnCloseResponseProtoMsg {
|
|
|
432
572
|
typeUrl: "/ibc.core.channel.v1.MsgTimeoutOnCloseResponse";
|
|
433
573
|
value: Uint8Array;
|
|
434
574
|
}
|
|
435
|
-
/**
|
|
575
|
+
/**
|
|
576
|
+
* MsgTimeoutOnCloseResponse defines the Msg/TimeoutOnClose response type.
|
|
577
|
+
* @name MsgTimeoutOnCloseResponseAmino
|
|
578
|
+
* @package ibc.core.channel.v1
|
|
579
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutOnCloseResponse
|
|
580
|
+
*/
|
|
436
581
|
export interface MsgTimeoutOnCloseResponseAmino {
|
|
437
582
|
result: ResponseResultType;
|
|
438
583
|
}
|
|
@@ -440,7 +585,12 @@ export interface MsgTimeoutOnCloseResponseAminoMsg {
|
|
|
440
585
|
type: "cosmos-sdk/MsgTimeoutOnCloseResponse";
|
|
441
586
|
value: MsgTimeoutOnCloseResponseAmino;
|
|
442
587
|
}
|
|
443
|
-
/**
|
|
588
|
+
/**
|
|
589
|
+
* MsgAcknowledgement receives incoming IBC acknowledgement
|
|
590
|
+
* @name MsgAcknowledgement
|
|
591
|
+
* @package ibc.core.channel.v1
|
|
592
|
+
* @see proto type: ibc.core.channel.v1.MsgAcknowledgement
|
|
593
|
+
*/
|
|
444
594
|
export interface MsgAcknowledgement {
|
|
445
595
|
packet: Packet;
|
|
446
596
|
acknowledgement: Uint8Array;
|
|
@@ -452,7 +602,12 @@ export interface MsgAcknowledgementProtoMsg {
|
|
|
452
602
|
typeUrl: "/ibc.core.channel.v1.MsgAcknowledgement";
|
|
453
603
|
value: Uint8Array;
|
|
454
604
|
}
|
|
455
|
-
/**
|
|
605
|
+
/**
|
|
606
|
+
* MsgAcknowledgement receives incoming IBC acknowledgement
|
|
607
|
+
* @name MsgAcknowledgementAmino
|
|
608
|
+
* @package ibc.core.channel.v1
|
|
609
|
+
* @see proto type: ibc.core.channel.v1.MsgAcknowledgement
|
|
610
|
+
*/
|
|
456
611
|
export interface MsgAcknowledgementAmino {
|
|
457
612
|
packet: PacketAmino;
|
|
458
613
|
acknowledgement: string;
|
|
@@ -464,7 +619,12 @@ export interface MsgAcknowledgementAminoMsg {
|
|
|
464
619
|
type: "cosmos-sdk/MsgAcknowledgement";
|
|
465
620
|
value: MsgAcknowledgementAmino;
|
|
466
621
|
}
|
|
467
|
-
/**
|
|
622
|
+
/**
|
|
623
|
+
* MsgAcknowledgementResponse defines the Msg/Acknowledgement response type.
|
|
624
|
+
* @name MsgAcknowledgementResponse
|
|
625
|
+
* @package ibc.core.channel.v1
|
|
626
|
+
* @see proto type: ibc.core.channel.v1.MsgAcknowledgementResponse
|
|
627
|
+
*/
|
|
468
628
|
export interface MsgAcknowledgementResponse {
|
|
469
629
|
result: ResponseResultType;
|
|
470
630
|
}
|
|
@@ -472,7 +632,12 @@ export interface MsgAcknowledgementResponseProtoMsg {
|
|
|
472
632
|
typeUrl: "/ibc.core.channel.v1.MsgAcknowledgementResponse";
|
|
473
633
|
value: Uint8Array;
|
|
474
634
|
}
|
|
475
|
-
/**
|
|
635
|
+
/**
|
|
636
|
+
* MsgAcknowledgementResponse defines the Msg/Acknowledgement response type.
|
|
637
|
+
* @name MsgAcknowledgementResponseAmino
|
|
638
|
+
* @package ibc.core.channel.v1
|
|
639
|
+
* @see proto type: ibc.core.channel.v1.MsgAcknowledgementResponse
|
|
640
|
+
*/
|
|
476
641
|
export interface MsgAcknowledgementResponseAmino {
|
|
477
642
|
result: ResponseResultType;
|
|
478
643
|
}
|
|
@@ -481,405 +646,12 @@ export interface MsgAcknowledgementResponseAminoMsg {
|
|
|
481
646
|
value: MsgAcknowledgementResponseAmino;
|
|
482
647
|
}
|
|
483
648
|
/**
|
|
484
|
-
*
|
|
485
|
-
*
|
|
486
|
-
*
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
portId: string;
|
|
490
|
-
channelId: string;
|
|
491
|
-
fields: UpgradeFields;
|
|
492
|
-
signer: string;
|
|
493
|
-
}
|
|
494
|
-
export interface MsgChannelUpgradeInitProtoMsg {
|
|
495
|
-
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeInit";
|
|
496
|
-
value: Uint8Array;
|
|
497
|
-
}
|
|
498
|
-
/**
|
|
499
|
-
* MsgChannelUpgradeInit defines the request type for the ChannelUpgradeInit rpc
|
|
500
|
-
* WARNING: Initializing a channel upgrade in the same block as opening the channel
|
|
501
|
-
* may result in the counterparty being incapable of opening.
|
|
649
|
+
* MsgChannelOpenInit defines an sdk.Msg to initialize a channel handshake. It
|
|
650
|
+
* is called by a relayer on Chain A.
|
|
651
|
+
* @name MsgChannelOpenInit
|
|
652
|
+
* @package ibc.core.channel.v1
|
|
653
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenInit
|
|
502
654
|
*/
|
|
503
|
-
export interface MsgChannelUpgradeInitAmino {
|
|
504
|
-
port_id: string;
|
|
505
|
-
channel_id: string;
|
|
506
|
-
fields: UpgradeFieldsAmino;
|
|
507
|
-
signer: string;
|
|
508
|
-
}
|
|
509
|
-
export interface MsgChannelUpgradeInitAminoMsg {
|
|
510
|
-
type: "cosmos-sdk/MsgChannelUpgradeInit";
|
|
511
|
-
value: MsgChannelUpgradeInitAmino;
|
|
512
|
-
}
|
|
513
|
-
/** MsgChannelUpgradeInitResponse defines the MsgChannelUpgradeInit response type */
|
|
514
|
-
export interface MsgChannelUpgradeInitResponse {
|
|
515
|
-
upgrade: Upgrade;
|
|
516
|
-
upgradeSequence: bigint;
|
|
517
|
-
}
|
|
518
|
-
export interface MsgChannelUpgradeInitResponseProtoMsg {
|
|
519
|
-
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeInitResponse";
|
|
520
|
-
value: Uint8Array;
|
|
521
|
-
}
|
|
522
|
-
/** MsgChannelUpgradeInitResponse defines the MsgChannelUpgradeInit response type */
|
|
523
|
-
export interface MsgChannelUpgradeInitResponseAmino {
|
|
524
|
-
upgrade: UpgradeAmino;
|
|
525
|
-
upgrade_sequence: string;
|
|
526
|
-
}
|
|
527
|
-
export interface MsgChannelUpgradeInitResponseAminoMsg {
|
|
528
|
-
type: "cosmos-sdk/MsgChannelUpgradeInitResponse";
|
|
529
|
-
value: MsgChannelUpgradeInitResponseAmino;
|
|
530
|
-
}
|
|
531
|
-
/** MsgChannelUpgradeTry defines the request type for the ChannelUpgradeTry rpc */
|
|
532
|
-
export interface MsgChannelUpgradeTry {
|
|
533
|
-
portId: string;
|
|
534
|
-
channelId: string;
|
|
535
|
-
proposedUpgradeConnectionHops: string[];
|
|
536
|
-
counterpartyUpgradeFields: UpgradeFields;
|
|
537
|
-
counterpartyUpgradeSequence: bigint;
|
|
538
|
-
proofChannel: Uint8Array;
|
|
539
|
-
proofUpgrade: Uint8Array;
|
|
540
|
-
proofHeight: Height;
|
|
541
|
-
signer: string;
|
|
542
|
-
}
|
|
543
|
-
export interface MsgChannelUpgradeTryProtoMsg {
|
|
544
|
-
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeTry";
|
|
545
|
-
value: Uint8Array;
|
|
546
|
-
}
|
|
547
|
-
/** MsgChannelUpgradeTry defines the request type for the ChannelUpgradeTry rpc */
|
|
548
|
-
export interface MsgChannelUpgradeTryAmino {
|
|
549
|
-
port_id: string;
|
|
550
|
-
channel_id: string;
|
|
551
|
-
proposed_upgrade_connection_hops: string[];
|
|
552
|
-
counterparty_upgrade_fields: UpgradeFieldsAmino;
|
|
553
|
-
counterparty_upgrade_sequence: string;
|
|
554
|
-
proof_channel: string;
|
|
555
|
-
proof_upgrade: string;
|
|
556
|
-
proof_height: HeightAmino;
|
|
557
|
-
signer: string;
|
|
558
|
-
}
|
|
559
|
-
export interface MsgChannelUpgradeTryAminoMsg {
|
|
560
|
-
type: "cosmos-sdk/MsgChannelUpgradeTry";
|
|
561
|
-
value: MsgChannelUpgradeTryAmino;
|
|
562
|
-
}
|
|
563
|
-
/** MsgChannelUpgradeTryResponse defines the MsgChannelUpgradeTry response type */
|
|
564
|
-
export interface MsgChannelUpgradeTryResponse {
|
|
565
|
-
upgrade: Upgrade;
|
|
566
|
-
upgradeSequence: bigint;
|
|
567
|
-
result: ResponseResultType;
|
|
568
|
-
}
|
|
569
|
-
export interface MsgChannelUpgradeTryResponseProtoMsg {
|
|
570
|
-
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeTryResponse";
|
|
571
|
-
value: Uint8Array;
|
|
572
|
-
}
|
|
573
|
-
/** MsgChannelUpgradeTryResponse defines the MsgChannelUpgradeTry response type */
|
|
574
|
-
export interface MsgChannelUpgradeTryResponseAmino {
|
|
575
|
-
upgrade: UpgradeAmino;
|
|
576
|
-
upgrade_sequence: string;
|
|
577
|
-
result: ResponseResultType;
|
|
578
|
-
}
|
|
579
|
-
export interface MsgChannelUpgradeTryResponseAminoMsg {
|
|
580
|
-
type: "cosmos-sdk/MsgChannelUpgradeTryResponse";
|
|
581
|
-
value: MsgChannelUpgradeTryResponseAmino;
|
|
582
|
-
}
|
|
583
|
-
/** MsgChannelUpgradeAck defines the request type for the ChannelUpgradeAck rpc */
|
|
584
|
-
export interface MsgChannelUpgradeAck {
|
|
585
|
-
portId: string;
|
|
586
|
-
channelId: string;
|
|
587
|
-
counterpartyUpgrade: Upgrade;
|
|
588
|
-
proofChannel: Uint8Array;
|
|
589
|
-
proofUpgrade: Uint8Array;
|
|
590
|
-
proofHeight: Height;
|
|
591
|
-
signer: string;
|
|
592
|
-
}
|
|
593
|
-
export interface MsgChannelUpgradeAckProtoMsg {
|
|
594
|
-
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeAck";
|
|
595
|
-
value: Uint8Array;
|
|
596
|
-
}
|
|
597
|
-
/** MsgChannelUpgradeAck defines the request type for the ChannelUpgradeAck rpc */
|
|
598
|
-
export interface MsgChannelUpgradeAckAmino {
|
|
599
|
-
port_id: string;
|
|
600
|
-
channel_id: string;
|
|
601
|
-
counterparty_upgrade: UpgradeAmino;
|
|
602
|
-
proof_channel: string;
|
|
603
|
-
proof_upgrade: string;
|
|
604
|
-
proof_height: HeightAmino;
|
|
605
|
-
signer: string;
|
|
606
|
-
}
|
|
607
|
-
export interface MsgChannelUpgradeAckAminoMsg {
|
|
608
|
-
type: "cosmos-sdk/MsgChannelUpgradeAck";
|
|
609
|
-
value: MsgChannelUpgradeAckAmino;
|
|
610
|
-
}
|
|
611
|
-
/** MsgChannelUpgradeAckResponse defines MsgChannelUpgradeAck response type */
|
|
612
|
-
export interface MsgChannelUpgradeAckResponse {
|
|
613
|
-
result: ResponseResultType;
|
|
614
|
-
}
|
|
615
|
-
export interface MsgChannelUpgradeAckResponseProtoMsg {
|
|
616
|
-
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeAckResponse";
|
|
617
|
-
value: Uint8Array;
|
|
618
|
-
}
|
|
619
|
-
/** MsgChannelUpgradeAckResponse defines MsgChannelUpgradeAck response type */
|
|
620
|
-
export interface MsgChannelUpgradeAckResponseAmino {
|
|
621
|
-
result: ResponseResultType;
|
|
622
|
-
}
|
|
623
|
-
export interface MsgChannelUpgradeAckResponseAminoMsg {
|
|
624
|
-
type: "cosmos-sdk/MsgChannelUpgradeAckResponse";
|
|
625
|
-
value: MsgChannelUpgradeAckResponseAmino;
|
|
626
|
-
}
|
|
627
|
-
/** MsgChannelUpgradeConfirm defines the request type for the ChannelUpgradeConfirm rpc */
|
|
628
|
-
export interface MsgChannelUpgradeConfirm {
|
|
629
|
-
portId: string;
|
|
630
|
-
channelId: string;
|
|
631
|
-
counterpartyChannelState: State;
|
|
632
|
-
counterpartyUpgrade: Upgrade;
|
|
633
|
-
proofChannel: Uint8Array;
|
|
634
|
-
proofUpgrade: Uint8Array;
|
|
635
|
-
proofHeight: Height;
|
|
636
|
-
signer: string;
|
|
637
|
-
}
|
|
638
|
-
export interface MsgChannelUpgradeConfirmProtoMsg {
|
|
639
|
-
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeConfirm";
|
|
640
|
-
value: Uint8Array;
|
|
641
|
-
}
|
|
642
|
-
/** MsgChannelUpgradeConfirm defines the request type for the ChannelUpgradeConfirm rpc */
|
|
643
|
-
export interface MsgChannelUpgradeConfirmAmino {
|
|
644
|
-
port_id: string;
|
|
645
|
-
channel_id: string;
|
|
646
|
-
counterparty_channel_state: State;
|
|
647
|
-
counterparty_upgrade: UpgradeAmino;
|
|
648
|
-
proof_channel: string;
|
|
649
|
-
proof_upgrade: string;
|
|
650
|
-
proof_height: HeightAmino;
|
|
651
|
-
signer: string;
|
|
652
|
-
}
|
|
653
|
-
export interface MsgChannelUpgradeConfirmAminoMsg {
|
|
654
|
-
type: "cosmos-sdk/MsgChannelUpgradeConfirm";
|
|
655
|
-
value: MsgChannelUpgradeConfirmAmino;
|
|
656
|
-
}
|
|
657
|
-
/** MsgChannelUpgradeConfirmResponse defines MsgChannelUpgradeConfirm response type */
|
|
658
|
-
export interface MsgChannelUpgradeConfirmResponse {
|
|
659
|
-
result: ResponseResultType;
|
|
660
|
-
}
|
|
661
|
-
export interface MsgChannelUpgradeConfirmResponseProtoMsg {
|
|
662
|
-
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeConfirmResponse";
|
|
663
|
-
value: Uint8Array;
|
|
664
|
-
}
|
|
665
|
-
/** MsgChannelUpgradeConfirmResponse defines MsgChannelUpgradeConfirm response type */
|
|
666
|
-
export interface MsgChannelUpgradeConfirmResponseAmino {
|
|
667
|
-
result: ResponseResultType;
|
|
668
|
-
}
|
|
669
|
-
export interface MsgChannelUpgradeConfirmResponseAminoMsg {
|
|
670
|
-
type: "cosmos-sdk/MsgChannelUpgradeConfirmResponse";
|
|
671
|
-
value: MsgChannelUpgradeConfirmResponseAmino;
|
|
672
|
-
}
|
|
673
|
-
/** MsgChannelUpgradeOpen defines the request type for the ChannelUpgradeOpen rpc */
|
|
674
|
-
export interface MsgChannelUpgradeOpen {
|
|
675
|
-
portId: string;
|
|
676
|
-
channelId: string;
|
|
677
|
-
counterpartyChannelState: State;
|
|
678
|
-
counterpartyUpgradeSequence: bigint;
|
|
679
|
-
proofChannel: Uint8Array;
|
|
680
|
-
proofHeight: Height;
|
|
681
|
-
signer: string;
|
|
682
|
-
}
|
|
683
|
-
export interface MsgChannelUpgradeOpenProtoMsg {
|
|
684
|
-
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeOpen";
|
|
685
|
-
value: Uint8Array;
|
|
686
|
-
}
|
|
687
|
-
/** MsgChannelUpgradeOpen defines the request type for the ChannelUpgradeOpen rpc */
|
|
688
|
-
export interface MsgChannelUpgradeOpenAmino {
|
|
689
|
-
port_id: string;
|
|
690
|
-
channel_id: string;
|
|
691
|
-
counterparty_channel_state: State;
|
|
692
|
-
counterparty_upgrade_sequence: string;
|
|
693
|
-
proof_channel: string;
|
|
694
|
-
proof_height: HeightAmino;
|
|
695
|
-
signer: string;
|
|
696
|
-
}
|
|
697
|
-
export interface MsgChannelUpgradeOpenAminoMsg {
|
|
698
|
-
type: "cosmos-sdk/MsgChannelUpgradeOpen";
|
|
699
|
-
value: MsgChannelUpgradeOpenAmino;
|
|
700
|
-
}
|
|
701
|
-
/** MsgChannelUpgradeOpenResponse defines the MsgChannelUpgradeOpen response type */
|
|
702
|
-
export interface MsgChannelUpgradeOpenResponse {
|
|
703
|
-
}
|
|
704
|
-
export interface MsgChannelUpgradeOpenResponseProtoMsg {
|
|
705
|
-
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeOpenResponse";
|
|
706
|
-
value: Uint8Array;
|
|
707
|
-
}
|
|
708
|
-
/** MsgChannelUpgradeOpenResponse defines the MsgChannelUpgradeOpen response type */
|
|
709
|
-
export interface MsgChannelUpgradeOpenResponseAmino {
|
|
710
|
-
}
|
|
711
|
-
export interface MsgChannelUpgradeOpenResponseAminoMsg {
|
|
712
|
-
type: "cosmos-sdk/MsgChannelUpgradeOpenResponse";
|
|
713
|
-
value: MsgChannelUpgradeOpenResponseAmino;
|
|
714
|
-
}
|
|
715
|
-
/** MsgChannelUpgradeTimeout defines the request type for the ChannelUpgradeTimeout rpc */
|
|
716
|
-
export interface MsgChannelUpgradeTimeout {
|
|
717
|
-
portId: string;
|
|
718
|
-
channelId: string;
|
|
719
|
-
counterpartyChannel: Channel;
|
|
720
|
-
proofChannel: Uint8Array;
|
|
721
|
-
proofHeight: Height;
|
|
722
|
-
signer: string;
|
|
723
|
-
}
|
|
724
|
-
export interface MsgChannelUpgradeTimeoutProtoMsg {
|
|
725
|
-
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeTimeout";
|
|
726
|
-
value: Uint8Array;
|
|
727
|
-
}
|
|
728
|
-
/** MsgChannelUpgradeTimeout defines the request type for the ChannelUpgradeTimeout rpc */
|
|
729
|
-
export interface MsgChannelUpgradeTimeoutAmino {
|
|
730
|
-
port_id: string;
|
|
731
|
-
channel_id: string;
|
|
732
|
-
counterparty_channel: ChannelAmino;
|
|
733
|
-
proof_channel: string;
|
|
734
|
-
proof_height: HeightAmino;
|
|
735
|
-
signer: string;
|
|
736
|
-
}
|
|
737
|
-
export interface MsgChannelUpgradeTimeoutAminoMsg {
|
|
738
|
-
type: "cosmos-sdk/MsgChannelUpgradeTimeout";
|
|
739
|
-
value: MsgChannelUpgradeTimeoutAmino;
|
|
740
|
-
}
|
|
741
|
-
/** MsgChannelUpgradeTimeoutRepsonse defines the MsgChannelUpgradeTimeout response type */
|
|
742
|
-
export interface MsgChannelUpgradeTimeoutResponse {
|
|
743
|
-
}
|
|
744
|
-
export interface MsgChannelUpgradeTimeoutResponseProtoMsg {
|
|
745
|
-
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeTimeoutResponse";
|
|
746
|
-
value: Uint8Array;
|
|
747
|
-
}
|
|
748
|
-
/** MsgChannelUpgradeTimeoutRepsonse defines the MsgChannelUpgradeTimeout response type */
|
|
749
|
-
export interface MsgChannelUpgradeTimeoutResponseAmino {
|
|
750
|
-
}
|
|
751
|
-
export interface MsgChannelUpgradeTimeoutResponseAminoMsg {
|
|
752
|
-
type: "cosmos-sdk/MsgChannelUpgradeTimeoutResponse";
|
|
753
|
-
value: MsgChannelUpgradeTimeoutResponseAmino;
|
|
754
|
-
}
|
|
755
|
-
/** MsgChannelUpgradeCancel defines the request type for the ChannelUpgradeCancel rpc */
|
|
756
|
-
export interface MsgChannelUpgradeCancel {
|
|
757
|
-
portId: string;
|
|
758
|
-
channelId: string;
|
|
759
|
-
errorReceipt: ErrorReceipt;
|
|
760
|
-
proofErrorReceipt: Uint8Array;
|
|
761
|
-
proofHeight: Height;
|
|
762
|
-
signer: string;
|
|
763
|
-
}
|
|
764
|
-
export interface MsgChannelUpgradeCancelProtoMsg {
|
|
765
|
-
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeCancel";
|
|
766
|
-
value: Uint8Array;
|
|
767
|
-
}
|
|
768
|
-
/** MsgChannelUpgradeCancel defines the request type for the ChannelUpgradeCancel rpc */
|
|
769
|
-
export interface MsgChannelUpgradeCancelAmino {
|
|
770
|
-
port_id: string;
|
|
771
|
-
channel_id: string;
|
|
772
|
-
error_receipt: ErrorReceiptAmino;
|
|
773
|
-
proof_error_receipt: string;
|
|
774
|
-
proof_height: HeightAmino;
|
|
775
|
-
signer: string;
|
|
776
|
-
}
|
|
777
|
-
export interface MsgChannelUpgradeCancelAminoMsg {
|
|
778
|
-
type: "cosmos-sdk/MsgChannelUpgradeCancel";
|
|
779
|
-
value: MsgChannelUpgradeCancelAmino;
|
|
780
|
-
}
|
|
781
|
-
/** MsgChannelUpgradeCancelResponse defines the MsgChannelUpgradeCancel response type */
|
|
782
|
-
export interface MsgChannelUpgradeCancelResponse {
|
|
783
|
-
}
|
|
784
|
-
export interface MsgChannelUpgradeCancelResponseProtoMsg {
|
|
785
|
-
typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeCancelResponse";
|
|
786
|
-
value: Uint8Array;
|
|
787
|
-
}
|
|
788
|
-
/** MsgChannelUpgradeCancelResponse defines the MsgChannelUpgradeCancel response type */
|
|
789
|
-
export interface MsgChannelUpgradeCancelResponseAmino {
|
|
790
|
-
}
|
|
791
|
-
export interface MsgChannelUpgradeCancelResponseAminoMsg {
|
|
792
|
-
type: "cosmos-sdk/MsgChannelUpgradeCancelResponse";
|
|
793
|
-
value: MsgChannelUpgradeCancelResponseAmino;
|
|
794
|
-
}
|
|
795
|
-
/** MsgUpdateParams is the MsgUpdateParams request type. */
|
|
796
|
-
export interface MsgUpdateParams {
|
|
797
|
-
/** authority is the address that controls the module (defaults to x/gov unless overwritten). */
|
|
798
|
-
authority: string;
|
|
799
|
-
/**
|
|
800
|
-
* params defines the channel parameters to update.
|
|
801
|
-
*
|
|
802
|
-
* NOTE: All parameters must be supplied.
|
|
803
|
-
*/
|
|
804
|
-
params: Params;
|
|
805
|
-
}
|
|
806
|
-
export interface MsgUpdateParamsProtoMsg {
|
|
807
|
-
typeUrl: "/ibc.core.channel.v1.MsgUpdateParams";
|
|
808
|
-
value: Uint8Array;
|
|
809
|
-
}
|
|
810
|
-
/** MsgUpdateParams is the MsgUpdateParams request type. */
|
|
811
|
-
export interface MsgUpdateParamsAmino {
|
|
812
|
-
/** authority is the address that controls the module (defaults to x/gov unless overwritten). */
|
|
813
|
-
authority: string;
|
|
814
|
-
/**
|
|
815
|
-
* params defines the channel parameters to update.
|
|
816
|
-
*
|
|
817
|
-
* NOTE: All parameters must be supplied.
|
|
818
|
-
*/
|
|
819
|
-
params: ParamsAmino;
|
|
820
|
-
}
|
|
821
|
-
export interface MsgUpdateParamsAminoMsg {
|
|
822
|
-
type: "cosmos-sdk/MsgUpdateParams";
|
|
823
|
-
value: MsgUpdateParamsAmino;
|
|
824
|
-
}
|
|
825
|
-
/** MsgUpdateParamsResponse defines the MsgUpdateParams response type. */
|
|
826
|
-
export interface MsgUpdateParamsResponse {
|
|
827
|
-
}
|
|
828
|
-
export interface MsgUpdateParamsResponseProtoMsg {
|
|
829
|
-
typeUrl: "/ibc.core.channel.v1.MsgUpdateParamsResponse";
|
|
830
|
-
value: Uint8Array;
|
|
831
|
-
}
|
|
832
|
-
/** MsgUpdateParamsResponse defines the MsgUpdateParams response type. */
|
|
833
|
-
export interface MsgUpdateParamsResponseAmino {
|
|
834
|
-
}
|
|
835
|
-
export interface MsgUpdateParamsResponseAminoMsg {
|
|
836
|
-
type: "cosmos-sdk/MsgUpdateParamsResponse";
|
|
837
|
-
value: MsgUpdateParamsResponseAmino;
|
|
838
|
-
}
|
|
839
|
-
/** MsgPruneAcknowledgements defines the request type for the PruneAcknowledgements rpc. */
|
|
840
|
-
export interface MsgPruneAcknowledgements {
|
|
841
|
-
portId: string;
|
|
842
|
-
channelId: string;
|
|
843
|
-
limit: bigint;
|
|
844
|
-
signer: string;
|
|
845
|
-
}
|
|
846
|
-
export interface MsgPruneAcknowledgementsProtoMsg {
|
|
847
|
-
typeUrl: "/ibc.core.channel.v1.MsgPruneAcknowledgements";
|
|
848
|
-
value: Uint8Array;
|
|
849
|
-
}
|
|
850
|
-
/** MsgPruneAcknowledgements defines the request type for the PruneAcknowledgements rpc. */
|
|
851
|
-
export interface MsgPruneAcknowledgementsAmino {
|
|
852
|
-
port_id: string;
|
|
853
|
-
channel_id: string;
|
|
854
|
-
limit: string;
|
|
855
|
-
signer: string;
|
|
856
|
-
}
|
|
857
|
-
export interface MsgPruneAcknowledgementsAminoMsg {
|
|
858
|
-
type: "cosmos-sdk/MsgPruneAcknowledgements";
|
|
859
|
-
value: MsgPruneAcknowledgementsAmino;
|
|
860
|
-
}
|
|
861
|
-
/** MsgPruneAcknowledgementsResponse defines the response type for the PruneAcknowledgements rpc. */
|
|
862
|
-
export interface MsgPruneAcknowledgementsResponse {
|
|
863
|
-
/** Number of sequences pruned (includes both packet acknowledgements and packet receipts where appropriate). */
|
|
864
|
-
totalPrunedSequences: bigint;
|
|
865
|
-
/** Number of sequences left after pruning. */
|
|
866
|
-
totalRemainingSequences: bigint;
|
|
867
|
-
}
|
|
868
|
-
export interface MsgPruneAcknowledgementsResponseProtoMsg {
|
|
869
|
-
typeUrl: "/ibc.core.channel.v1.MsgPruneAcknowledgementsResponse";
|
|
870
|
-
value: Uint8Array;
|
|
871
|
-
}
|
|
872
|
-
/** MsgPruneAcknowledgementsResponse defines the response type for the PruneAcknowledgements rpc. */
|
|
873
|
-
export interface MsgPruneAcknowledgementsResponseAmino {
|
|
874
|
-
/** Number of sequences pruned (includes both packet acknowledgements and packet receipts where appropriate). */
|
|
875
|
-
total_pruned_sequences: string;
|
|
876
|
-
/** Number of sequences left after pruning. */
|
|
877
|
-
total_remaining_sequences: string;
|
|
878
|
-
}
|
|
879
|
-
export interface MsgPruneAcknowledgementsResponseAminoMsg {
|
|
880
|
-
type: "cosmos-sdk/MsgPruneAcknowledgementsResponse";
|
|
881
|
-
value: MsgPruneAcknowledgementsResponseAmino;
|
|
882
|
-
}
|
|
883
655
|
export declare const MsgChannelOpenInit: {
|
|
884
656
|
typeUrl: string;
|
|
885
657
|
aminoType: string;
|
|
@@ -897,6 +669,12 @@ export declare const MsgChannelOpenInit: {
|
|
|
897
669
|
toProtoMsg(message: MsgChannelOpenInit): MsgChannelOpenInitProtoMsg;
|
|
898
670
|
registerTypeUrl(): void;
|
|
899
671
|
};
|
|
672
|
+
/**
|
|
673
|
+
* MsgChannelOpenInitResponse defines the Msg/ChannelOpenInit response type.
|
|
674
|
+
* @name MsgChannelOpenInitResponse
|
|
675
|
+
* @package ibc.core.channel.v1
|
|
676
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenInitResponse
|
|
677
|
+
*/
|
|
900
678
|
export declare const MsgChannelOpenInitResponse: {
|
|
901
679
|
typeUrl: string;
|
|
902
680
|
aminoType: string;
|
|
@@ -914,6 +692,14 @@ export declare const MsgChannelOpenInitResponse: {
|
|
|
914
692
|
toProtoMsg(message: MsgChannelOpenInitResponse): MsgChannelOpenInitResponseProtoMsg;
|
|
915
693
|
registerTypeUrl(): void;
|
|
916
694
|
};
|
|
695
|
+
/**
|
|
696
|
+
* MsgChannelOpenInit defines a msg sent by a Relayer to try to open a channel
|
|
697
|
+
* on Chain B. The version field within the Channel field has been deprecated. Its
|
|
698
|
+
* value will be ignored by core IBC.
|
|
699
|
+
* @name MsgChannelOpenTry
|
|
700
|
+
* @package ibc.core.channel.v1
|
|
701
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenTry
|
|
702
|
+
*/
|
|
917
703
|
export declare const MsgChannelOpenTry: {
|
|
918
704
|
typeUrl: string;
|
|
919
705
|
aminoType: string;
|
|
@@ -931,6 +717,12 @@ export declare const MsgChannelOpenTry: {
|
|
|
931
717
|
toProtoMsg(message: MsgChannelOpenTry): MsgChannelOpenTryProtoMsg;
|
|
932
718
|
registerTypeUrl(): void;
|
|
933
719
|
};
|
|
720
|
+
/**
|
|
721
|
+
* MsgChannelOpenTryResponse defines the Msg/ChannelOpenTry response type.
|
|
722
|
+
* @name MsgChannelOpenTryResponse
|
|
723
|
+
* @package ibc.core.channel.v1
|
|
724
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenTryResponse
|
|
725
|
+
*/
|
|
934
726
|
export declare const MsgChannelOpenTryResponse: {
|
|
935
727
|
typeUrl: string;
|
|
936
728
|
aminoType: string;
|
|
@@ -948,6 +740,13 @@ export declare const MsgChannelOpenTryResponse: {
|
|
|
948
740
|
toProtoMsg(message: MsgChannelOpenTryResponse): MsgChannelOpenTryResponseProtoMsg;
|
|
949
741
|
registerTypeUrl(): void;
|
|
950
742
|
};
|
|
743
|
+
/**
|
|
744
|
+
* MsgChannelOpenAck defines a msg sent by a Relayer to Chain A to acknowledge
|
|
745
|
+
* the change of channel state to TRYOPEN on Chain B.
|
|
746
|
+
* @name MsgChannelOpenAck
|
|
747
|
+
* @package ibc.core.channel.v1
|
|
748
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenAck
|
|
749
|
+
*/
|
|
951
750
|
export declare const MsgChannelOpenAck: {
|
|
952
751
|
typeUrl: string;
|
|
953
752
|
aminoType: string;
|
|
@@ -965,6 +764,12 @@ export declare const MsgChannelOpenAck: {
|
|
|
965
764
|
toProtoMsg(message: MsgChannelOpenAck): MsgChannelOpenAckProtoMsg;
|
|
966
765
|
registerTypeUrl(): void;
|
|
967
766
|
};
|
|
767
|
+
/**
|
|
768
|
+
* MsgChannelOpenAckResponse defines the Msg/ChannelOpenAck response type.
|
|
769
|
+
* @name MsgChannelOpenAckResponse
|
|
770
|
+
* @package ibc.core.channel.v1
|
|
771
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenAckResponse
|
|
772
|
+
*/
|
|
968
773
|
export declare const MsgChannelOpenAckResponse: {
|
|
969
774
|
typeUrl: string;
|
|
970
775
|
aminoType: string;
|
|
@@ -982,6 +787,13 @@ export declare const MsgChannelOpenAckResponse: {
|
|
|
982
787
|
toProtoMsg(message: MsgChannelOpenAckResponse): MsgChannelOpenAckResponseProtoMsg;
|
|
983
788
|
registerTypeUrl(): void;
|
|
984
789
|
};
|
|
790
|
+
/**
|
|
791
|
+
* MsgChannelOpenConfirm defines a msg sent by a Relayer to Chain B to
|
|
792
|
+
* acknowledge the change of channel state to OPEN on Chain A.
|
|
793
|
+
* @name MsgChannelOpenConfirm
|
|
794
|
+
* @package ibc.core.channel.v1
|
|
795
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirm
|
|
796
|
+
*/
|
|
985
797
|
export declare const MsgChannelOpenConfirm: {
|
|
986
798
|
typeUrl: string;
|
|
987
799
|
aminoType: string;
|
|
@@ -999,6 +811,13 @@ export declare const MsgChannelOpenConfirm: {
|
|
|
999
811
|
toProtoMsg(message: MsgChannelOpenConfirm): MsgChannelOpenConfirmProtoMsg;
|
|
1000
812
|
registerTypeUrl(): void;
|
|
1001
813
|
};
|
|
814
|
+
/**
|
|
815
|
+
* MsgChannelOpenConfirmResponse defines the Msg/ChannelOpenConfirm response
|
|
816
|
+
* type.
|
|
817
|
+
* @name MsgChannelOpenConfirmResponse
|
|
818
|
+
* @package ibc.core.channel.v1
|
|
819
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirmResponse
|
|
820
|
+
*/
|
|
1002
821
|
export declare const MsgChannelOpenConfirmResponse: {
|
|
1003
822
|
typeUrl: string;
|
|
1004
823
|
aminoType: string;
|
|
@@ -1016,6 +835,13 @@ export declare const MsgChannelOpenConfirmResponse: {
|
|
|
1016
835
|
toProtoMsg(message: MsgChannelOpenConfirmResponse): MsgChannelOpenConfirmResponseProtoMsg;
|
|
1017
836
|
registerTypeUrl(): void;
|
|
1018
837
|
};
|
|
838
|
+
/**
|
|
839
|
+
* MsgChannelCloseInit defines a msg sent by a Relayer to Chain A
|
|
840
|
+
* to close a channel with Chain B.
|
|
841
|
+
* @name MsgChannelCloseInit
|
|
842
|
+
* @package ibc.core.channel.v1
|
|
843
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseInit
|
|
844
|
+
*/
|
|
1019
845
|
export declare const MsgChannelCloseInit: {
|
|
1020
846
|
typeUrl: string;
|
|
1021
847
|
aminoType: string;
|
|
@@ -1033,6 +859,12 @@ export declare const MsgChannelCloseInit: {
|
|
|
1033
859
|
toProtoMsg(message: MsgChannelCloseInit): MsgChannelCloseInitProtoMsg;
|
|
1034
860
|
registerTypeUrl(): void;
|
|
1035
861
|
};
|
|
862
|
+
/**
|
|
863
|
+
* MsgChannelCloseInitResponse defines the Msg/ChannelCloseInit response type.
|
|
864
|
+
* @name MsgChannelCloseInitResponse
|
|
865
|
+
* @package ibc.core.channel.v1
|
|
866
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseInitResponse
|
|
867
|
+
*/
|
|
1036
868
|
export declare const MsgChannelCloseInitResponse: {
|
|
1037
869
|
typeUrl: string;
|
|
1038
870
|
aminoType: string;
|
|
@@ -1050,6 +882,13 @@ export declare const MsgChannelCloseInitResponse: {
|
|
|
1050
882
|
toProtoMsg(message: MsgChannelCloseInitResponse): MsgChannelCloseInitResponseProtoMsg;
|
|
1051
883
|
registerTypeUrl(): void;
|
|
1052
884
|
};
|
|
885
|
+
/**
|
|
886
|
+
* MsgChannelCloseConfirm defines a msg sent by a Relayer to Chain B
|
|
887
|
+
* to acknowledge the change of channel state to CLOSED on Chain A.
|
|
888
|
+
* @name MsgChannelCloseConfirm
|
|
889
|
+
* @package ibc.core.channel.v1
|
|
890
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirm
|
|
891
|
+
*/
|
|
1053
892
|
export declare const MsgChannelCloseConfirm: {
|
|
1054
893
|
typeUrl: string;
|
|
1055
894
|
aminoType: string;
|
|
@@ -1067,6 +906,13 @@ export declare const MsgChannelCloseConfirm: {
|
|
|
1067
906
|
toProtoMsg(message: MsgChannelCloseConfirm): MsgChannelCloseConfirmProtoMsg;
|
|
1068
907
|
registerTypeUrl(): void;
|
|
1069
908
|
};
|
|
909
|
+
/**
|
|
910
|
+
* MsgChannelCloseConfirmResponse defines the Msg/ChannelCloseConfirm response
|
|
911
|
+
* type.
|
|
912
|
+
* @name MsgChannelCloseConfirmResponse
|
|
913
|
+
* @package ibc.core.channel.v1
|
|
914
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirmResponse
|
|
915
|
+
*/
|
|
1070
916
|
export declare const MsgChannelCloseConfirmResponse: {
|
|
1071
917
|
typeUrl: string;
|
|
1072
918
|
aminoType: string;
|
|
@@ -1084,6 +930,12 @@ export declare const MsgChannelCloseConfirmResponse: {
|
|
|
1084
930
|
toProtoMsg(message: MsgChannelCloseConfirmResponse): MsgChannelCloseConfirmResponseProtoMsg;
|
|
1085
931
|
registerTypeUrl(): void;
|
|
1086
932
|
};
|
|
933
|
+
/**
|
|
934
|
+
* MsgRecvPacket receives incoming IBC packet
|
|
935
|
+
* @name MsgRecvPacket
|
|
936
|
+
* @package ibc.core.channel.v1
|
|
937
|
+
* @see proto type: ibc.core.channel.v1.MsgRecvPacket
|
|
938
|
+
*/
|
|
1087
939
|
export declare const MsgRecvPacket: {
|
|
1088
940
|
typeUrl: string;
|
|
1089
941
|
aminoType: string;
|
|
@@ -1101,6 +953,12 @@ export declare const MsgRecvPacket: {
|
|
|
1101
953
|
toProtoMsg(message: MsgRecvPacket): MsgRecvPacketProtoMsg;
|
|
1102
954
|
registerTypeUrl(): void;
|
|
1103
955
|
};
|
|
956
|
+
/**
|
|
957
|
+
* MsgRecvPacketResponse defines the Msg/RecvPacket response type.
|
|
958
|
+
* @name MsgRecvPacketResponse
|
|
959
|
+
* @package ibc.core.channel.v1
|
|
960
|
+
* @see proto type: ibc.core.channel.v1.MsgRecvPacketResponse
|
|
961
|
+
*/
|
|
1104
962
|
export declare const MsgRecvPacketResponse: {
|
|
1105
963
|
typeUrl: string;
|
|
1106
964
|
aminoType: string;
|
|
@@ -1118,6 +976,12 @@ export declare const MsgRecvPacketResponse: {
|
|
|
1118
976
|
toProtoMsg(message: MsgRecvPacketResponse): MsgRecvPacketResponseProtoMsg;
|
|
1119
977
|
registerTypeUrl(): void;
|
|
1120
978
|
};
|
|
979
|
+
/**
|
|
980
|
+
* MsgTimeout receives timed-out packet
|
|
981
|
+
* @name MsgTimeout
|
|
982
|
+
* @package ibc.core.channel.v1
|
|
983
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeout
|
|
984
|
+
*/
|
|
1121
985
|
export declare const MsgTimeout: {
|
|
1122
986
|
typeUrl: string;
|
|
1123
987
|
aminoType: string;
|
|
@@ -1135,6 +999,12 @@ export declare const MsgTimeout: {
|
|
|
1135
999
|
toProtoMsg(message: MsgTimeout): MsgTimeoutProtoMsg;
|
|
1136
1000
|
registerTypeUrl(): void;
|
|
1137
1001
|
};
|
|
1002
|
+
/**
|
|
1003
|
+
* MsgTimeoutResponse defines the Msg/Timeout response type.
|
|
1004
|
+
* @name MsgTimeoutResponse
|
|
1005
|
+
* @package ibc.core.channel.v1
|
|
1006
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutResponse
|
|
1007
|
+
*/
|
|
1138
1008
|
export declare const MsgTimeoutResponse: {
|
|
1139
1009
|
typeUrl: string;
|
|
1140
1010
|
aminoType: string;
|
|
@@ -1152,6 +1022,12 @@ export declare const MsgTimeoutResponse: {
|
|
|
1152
1022
|
toProtoMsg(message: MsgTimeoutResponse): MsgTimeoutResponseProtoMsg;
|
|
1153
1023
|
registerTypeUrl(): void;
|
|
1154
1024
|
};
|
|
1025
|
+
/**
|
|
1026
|
+
* MsgTimeoutOnClose timed-out packet upon counterparty channel closure.
|
|
1027
|
+
* @name MsgTimeoutOnClose
|
|
1028
|
+
* @package ibc.core.channel.v1
|
|
1029
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutOnClose
|
|
1030
|
+
*/
|
|
1155
1031
|
export declare const MsgTimeoutOnClose: {
|
|
1156
1032
|
typeUrl: string;
|
|
1157
1033
|
aminoType: string;
|
|
@@ -1169,6 +1045,12 @@ export declare const MsgTimeoutOnClose: {
|
|
|
1169
1045
|
toProtoMsg(message: MsgTimeoutOnClose): MsgTimeoutOnCloseProtoMsg;
|
|
1170
1046
|
registerTypeUrl(): void;
|
|
1171
1047
|
};
|
|
1048
|
+
/**
|
|
1049
|
+
* MsgTimeoutOnCloseResponse defines the Msg/TimeoutOnClose response type.
|
|
1050
|
+
* @name MsgTimeoutOnCloseResponse
|
|
1051
|
+
* @package ibc.core.channel.v1
|
|
1052
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutOnCloseResponse
|
|
1053
|
+
*/
|
|
1172
1054
|
export declare const MsgTimeoutOnCloseResponse: {
|
|
1173
1055
|
typeUrl: string;
|
|
1174
1056
|
aminoType: string;
|
|
@@ -1186,6 +1068,12 @@ export declare const MsgTimeoutOnCloseResponse: {
|
|
|
1186
1068
|
toProtoMsg(message: MsgTimeoutOnCloseResponse): MsgTimeoutOnCloseResponseProtoMsg;
|
|
1187
1069
|
registerTypeUrl(): void;
|
|
1188
1070
|
};
|
|
1071
|
+
/**
|
|
1072
|
+
* MsgAcknowledgement receives incoming IBC acknowledgement
|
|
1073
|
+
* @name MsgAcknowledgement
|
|
1074
|
+
* @package ibc.core.channel.v1
|
|
1075
|
+
* @see proto type: ibc.core.channel.v1.MsgAcknowledgement
|
|
1076
|
+
*/
|
|
1189
1077
|
export declare const MsgAcknowledgement: {
|
|
1190
1078
|
typeUrl: string;
|
|
1191
1079
|
aminoType: string;
|
|
@@ -1203,6 +1091,12 @@ export declare const MsgAcknowledgement: {
|
|
|
1203
1091
|
toProtoMsg(message: MsgAcknowledgement): MsgAcknowledgementProtoMsg;
|
|
1204
1092
|
registerTypeUrl(): void;
|
|
1205
1093
|
};
|
|
1094
|
+
/**
|
|
1095
|
+
* MsgAcknowledgementResponse defines the Msg/Acknowledgement response type.
|
|
1096
|
+
* @name MsgAcknowledgementResponse
|
|
1097
|
+
* @package ibc.core.channel.v1
|
|
1098
|
+
* @see proto type: ibc.core.channel.v1.MsgAcknowledgementResponse
|
|
1099
|
+
*/
|
|
1206
1100
|
export declare const MsgAcknowledgementResponse: {
|
|
1207
1101
|
typeUrl: string;
|
|
1208
1102
|
aminoType: string;
|
|
@@ -1220,309 +1114,3 @@ export declare const MsgAcknowledgementResponse: {
|
|
|
1220
1114
|
toProtoMsg(message: MsgAcknowledgementResponse): MsgAcknowledgementResponseProtoMsg;
|
|
1221
1115
|
registerTypeUrl(): void;
|
|
1222
1116
|
};
|
|
1223
|
-
export declare const MsgChannelUpgradeInit: {
|
|
1224
|
-
typeUrl: string;
|
|
1225
|
-
aminoType: string;
|
|
1226
|
-
is(o: any): o is MsgChannelUpgradeInit;
|
|
1227
|
-
isAmino(o: any): o is MsgChannelUpgradeInitAmino;
|
|
1228
|
-
encode(message: MsgChannelUpgradeInit, writer?: BinaryWriter): BinaryWriter;
|
|
1229
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeInit;
|
|
1230
|
-
fromPartial(object: DeepPartial<MsgChannelUpgradeInit>): MsgChannelUpgradeInit;
|
|
1231
|
-
fromAmino(object: MsgChannelUpgradeInitAmino): MsgChannelUpgradeInit;
|
|
1232
|
-
toAmino(message: MsgChannelUpgradeInit): MsgChannelUpgradeInitAmino;
|
|
1233
|
-
fromAminoMsg(object: MsgChannelUpgradeInitAminoMsg): MsgChannelUpgradeInit;
|
|
1234
|
-
toAminoMsg(message: MsgChannelUpgradeInit): MsgChannelUpgradeInitAminoMsg;
|
|
1235
|
-
fromProtoMsg(message: MsgChannelUpgradeInitProtoMsg): MsgChannelUpgradeInit;
|
|
1236
|
-
toProto(message: MsgChannelUpgradeInit): Uint8Array;
|
|
1237
|
-
toProtoMsg(message: MsgChannelUpgradeInit): MsgChannelUpgradeInitProtoMsg;
|
|
1238
|
-
registerTypeUrl(): void;
|
|
1239
|
-
};
|
|
1240
|
-
export declare const MsgChannelUpgradeInitResponse: {
|
|
1241
|
-
typeUrl: string;
|
|
1242
|
-
aminoType: string;
|
|
1243
|
-
is(o: any): o is MsgChannelUpgradeInitResponse;
|
|
1244
|
-
isAmino(o: any): o is MsgChannelUpgradeInitResponseAmino;
|
|
1245
|
-
encode(message: MsgChannelUpgradeInitResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1246
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeInitResponse;
|
|
1247
|
-
fromPartial(object: DeepPartial<MsgChannelUpgradeInitResponse>): MsgChannelUpgradeInitResponse;
|
|
1248
|
-
fromAmino(object: MsgChannelUpgradeInitResponseAmino): MsgChannelUpgradeInitResponse;
|
|
1249
|
-
toAmino(message: MsgChannelUpgradeInitResponse): MsgChannelUpgradeInitResponseAmino;
|
|
1250
|
-
fromAminoMsg(object: MsgChannelUpgradeInitResponseAminoMsg): MsgChannelUpgradeInitResponse;
|
|
1251
|
-
toAminoMsg(message: MsgChannelUpgradeInitResponse): MsgChannelUpgradeInitResponseAminoMsg;
|
|
1252
|
-
fromProtoMsg(message: MsgChannelUpgradeInitResponseProtoMsg): MsgChannelUpgradeInitResponse;
|
|
1253
|
-
toProto(message: MsgChannelUpgradeInitResponse): Uint8Array;
|
|
1254
|
-
toProtoMsg(message: MsgChannelUpgradeInitResponse): MsgChannelUpgradeInitResponseProtoMsg;
|
|
1255
|
-
registerTypeUrl(): void;
|
|
1256
|
-
};
|
|
1257
|
-
export declare const MsgChannelUpgradeTry: {
|
|
1258
|
-
typeUrl: string;
|
|
1259
|
-
aminoType: string;
|
|
1260
|
-
is(o: any): o is MsgChannelUpgradeTry;
|
|
1261
|
-
isAmino(o: any): o is MsgChannelUpgradeTryAmino;
|
|
1262
|
-
encode(message: MsgChannelUpgradeTry, writer?: BinaryWriter): BinaryWriter;
|
|
1263
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeTry;
|
|
1264
|
-
fromPartial(object: DeepPartial<MsgChannelUpgradeTry>): MsgChannelUpgradeTry;
|
|
1265
|
-
fromAmino(object: MsgChannelUpgradeTryAmino): MsgChannelUpgradeTry;
|
|
1266
|
-
toAmino(message: MsgChannelUpgradeTry): MsgChannelUpgradeTryAmino;
|
|
1267
|
-
fromAminoMsg(object: MsgChannelUpgradeTryAminoMsg): MsgChannelUpgradeTry;
|
|
1268
|
-
toAminoMsg(message: MsgChannelUpgradeTry): MsgChannelUpgradeTryAminoMsg;
|
|
1269
|
-
fromProtoMsg(message: MsgChannelUpgradeTryProtoMsg): MsgChannelUpgradeTry;
|
|
1270
|
-
toProto(message: MsgChannelUpgradeTry): Uint8Array;
|
|
1271
|
-
toProtoMsg(message: MsgChannelUpgradeTry): MsgChannelUpgradeTryProtoMsg;
|
|
1272
|
-
registerTypeUrl(): void;
|
|
1273
|
-
};
|
|
1274
|
-
export declare const MsgChannelUpgradeTryResponse: {
|
|
1275
|
-
typeUrl: string;
|
|
1276
|
-
aminoType: string;
|
|
1277
|
-
is(o: any): o is MsgChannelUpgradeTryResponse;
|
|
1278
|
-
isAmino(o: any): o is MsgChannelUpgradeTryResponseAmino;
|
|
1279
|
-
encode(message: MsgChannelUpgradeTryResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1280
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeTryResponse;
|
|
1281
|
-
fromPartial(object: DeepPartial<MsgChannelUpgradeTryResponse>): MsgChannelUpgradeTryResponse;
|
|
1282
|
-
fromAmino(object: MsgChannelUpgradeTryResponseAmino): MsgChannelUpgradeTryResponse;
|
|
1283
|
-
toAmino(message: MsgChannelUpgradeTryResponse): MsgChannelUpgradeTryResponseAmino;
|
|
1284
|
-
fromAminoMsg(object: MsgChannelUpgradeTryResponseAminoMsg): MsgChannelUpgradeTryResponse;
|
|
1285
|
-
toAminoMsg(message: MsgChannelUpgradeTryResponse): MsgChannelUpgradeTryResponseAminoMsg;
|
|
1286
|
-
fromProtoMsg(message: MsgChannelUpgradeTryResponseProtoMsg): MsgChannelUpgradeTryResponse;
|
|
1287
|
-
toProto(message: MsgChannelUpgradeTryResponse): Uint8Array;
|
|
1288
|
-
toProtoMsg(message: MsgChannelUpgradeTryResponse): MsgChannelUpgradeTryResponseProtoMsg;
|
|
1289
|
-
registerTypeUrl(): void;
|
|
1290
|
-
};
|
|
1291
|
-
export declare const MsgChannelUpgradeAck: {
|
|
1292
|
-
typeUrl: string;
|
|
1293
|
-
aminoType: string;
|
|
1294
|
-
is(o: any): o is MsgChannelUpgradeAck;
|
|
1295
|
-
isAmino(o: any): o is MsgChannelUpgradeAckAmino;
|
|
1296
|
-
encode(message: MsgChannelUpgradeAck, writer?: BinaryWriter): BinaryWriter;
|
|
1297
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeAck;
|
|
1298
|
-
fromPartial(object: DeepPartial<MsgChannelUpgradeAck>): MsgChannelUpgradeAck;
|
|
1299
|
-
fromAmino(object: MsgChannelUpgradeAckAmino): MsgChannelUpgradeAck;
|
|
1300
|
-
toAmino(message: MsgChannelUpgradeAck): MsgChannelUpgradeAckAmino;
|
|
1301
|
-
fromAminoMsg(object: MsgChannelUpgradeAckAminoMsg): MsgChannelUpgradeAck;
|
|
1302
|
-
toAminoMsg(message: MsgChannelUpgradeAck): MsgChannelUpgradeAckAminoMsg;
|
|
1303
|
-
fromProtoMsg(message: MsgChannelUpgradeAckProtoMsg): MsgChannelUpgradeAck;
|
|
1304
|
-
toProto(message: MsgChannelUpgradeAck): Uint8Array;
|
|
1305
|
-
toProtoMsg(message: MsgChannelUpgradeAck): MsgChannelUpgradeAckProtoMsg;
|
|
1306
|
-
registerTypeUrl(): void;
|
|
1307
|
-
};
|
|
1308
|
-
export declare const MsgChannelUpgradeAckResponse: {
|
|
1309
|
-
typeUrl: string;
|
|
1310
|
-
aminoType: string;
|
|
1311
|
-
is(o: any): o is MsgChannelUpgradeAckResponse;
|
|
1312
|
-
isAmino(o: any): o is MsgChannelUpgradeAckResponseAmino;
|
|
1313
|
-
encode(message: MsgChannelUpgradeAckResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1314
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeAckResponse;
|
|
1315
|
-
fromPartial(object: DeepPartial<MsgChannelUpgradeAckResponse>): MsgChannelUpgradeAckResponse;
|
|
1316
|
-
fromAmino(object: MsgChannelUpgradeAckResponseAmino): MsgChannelUpgradeAckResponse;
|
|
1317
|
-
toAmino(message: MsgChannelUpgradeAckResponse): MsgChannelUpgradeAckResponseAmino;
|
|
1318
|
-
fromAminoMsg(object: MsgChannelUpgradeAckResponseAminoMsg): MsgChannelUpgradeAckResponse;
|
|
1319
|
-
toAminoMsg(message: MsgChannelUpgradeAckResponse): MsgChannelUpgradeAckResponseAminoMsg;
|
|
1320
|
-
fromProtoMsg(message: MsgChannelUpgradeAckResponseProtoMsg): MsgChannelUpgradeAckResponse;
|
|
1321
|
-
toProto(message: MsgChannelUpgradeAckResponse): Uint8Array;
|
|
1322
|
-
toProtoMsg(message: MsgChannelUpgradeAckResponse): MsgChannelUpgradeAckResponseProtoMsg;
|
|
1323
|
-
registerTypeUrl(): void;
|
|
1324
|
-
};
|
|
1325
|
-
export declare const MsgChannelUpgradeConfirm: {
|
|
1326
|
-
typeUrl: string;
|
|
1327
|
-
aminoType: string;
|
|
1328
|
-
is(o: any): o is MsgChannelUpgradeConfirm;
|
|
1329
|
-
isAmino(o: any): o is MsgChannelUpgradeConfirmAmino;
|
|
1330
|
-
encode(message: MsgChannelUpgradeConfirm, writer?: BinaryWriter): BinaryWriter;
|
|
1331
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeConfirm;
|
|
1332
|
-
fromPartial(object: DeepPartial<MsgChannelUpgradeConfirm>): MsgChannelUpgradeConfirm;
|
|
1333
|
-
fromAmino(object: MsgChannelUpgradeConfirmAmino): MsgChannelUpgradeConfirm;
|
|
1334
|
-
toAmino(message: MsgChannelUpgradeConfirm): MsgChannelUpgradeConfirmAmino;
|
|
1335
|
-
fromAminoMsg(object: MsgChannelUpgradeConfirmAminoMsg): MsgChannelUpgradeConfirm;
|
|
1336
|
-
toAminoMsg(message: MsgChannelUpgradeConfirm): MsgChannelUpgradeConfirmAminoMsg;
|
|
1337
|
-
fromProtoMsg(message: MsgChannelUpgradeConfirmProtoMsg): MsgChannelUpgradeConfirm;
|
|
1338
|
-
toProto(message: MsgChannelUpgradeConfirm): Uint8Array;
|
|
1339
|
-
toProtoMsg(message: MsgChannelUpgradeConfirm): MsgChannelUpgradeConfirmProtoMsg;
|
|
1340
|
-
registerTypeUrl(): void;
|
|
1341
|
-
};
|
|
1342
|
-
export declare const MsgChannelUpgradeConfirmResponse: {
|
|
1343
|
-
typeUrl: string;
|
|
1344
|
-
aminoType: string;
|
|
1345
|
-
is(o: any): o is MsgChannelUpgradeConfirmResponse;
|
|
1346
|
-
isAmino(o: any): o is MsgChannelUpgradeConfirmResponseAmino;
|
|
1347
|
-
encode(message: MsgChannelUpgradeConfirmResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1348
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeConfirmResponse;
|
|
1349
|
-
fromPartial(object: DeepPartial<MsgChannelUpgradeConfirmResponse>): MsgChannelUpgradeConfirmResponse;
|
|
1350
|
-
fromAmino(object: MsgChannelUpgradeConfirmResponseAmino): MsgChannelUpgradeConfirmResponse;
|
|
1351
|
-
toAmino(message: MsgChannelUpgradeConfirmResponse): MsgChannelUpgradeConfirmResponseAmino;
|
|
1352
|
-
fromAminoMsg(object: MsgChannelUpgradeConfirmResponseAminoMsg): MsgChannelUpgradeConfirmResponse;
|
|
1353
|
-
toAminoMsg(message: MsgChannelUpgradeConfirmResponse): MsgChannelUpgradeConfirmResponseAminoMsg;
|
|
1354
|
-
fromProtoMsg(message: MsgChannelUpgradeConfirmResponseProtoMsg): MsgChannelUpgradeConfirmResponse;
|
|
1355
|
-
toProto(message: MsgChannelUpgradeConfirmResponse): Uint8Array;
|
|
1356
|
-
toProtoMsg(message: MsgChannelUpgradeConfirmResponse): MsgChannelUpgradeConfirmResponseProtoMsg;
|
|
1357
|
-
registerTypeUrl(): void;
|
|
1358
|
-
};
|
|
1359
|
-
export declare const MsgChannelUpgradeOpen: {
|
|
1360
|
-
typeUrl: string;
|
|
1361
|
-
aminoType: string;
|
|
1362
|
-
is(o: any): o is MsgChannelUpgradeOpen;
|
|
1363
|
-
isAmino(o: any): o is MsgChannelUpgradeOpenAmino;
|
|
1364
|
-
encode(message: MsgChannelUpgradeOpen, writer?: BinaryWriter): BinaryWriter;
|
|
1365
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeOpen;
|
|
1366
|
-
fromPartial(object: DeepPartial<MsgChannelUpgradeOpen>): MsgChannelUpgradeOpen;
|
|
1367
|
-
fromAmino(object: MsgChannelUpgradeOpenAmino): MsgChannelUpgradeOpen;
|
|
1368
|
-
toAmino(message: MsgChannelUpgradeOpen): MsgChannelUpgradeOpenAmino;
|
|
1369
|
-
fromAminoMsg(object: MsgChannelUpgradeOpenAminoMsg): MsgChannelUpgradeOpen;
|
|
1370
|
-
toAminoMsg(message: MsgChannelUpgradeOpen): MsgChannelUpgradeOpenAminoMsg;
|
|
1371
|
-
fromProtoMsg(message: MsgChannelUpgradeOpenProtoMsg): MsgChannelUpgradeOpen;
|
|
1372
|
-
toProto(message: MsgChannelUpgradeOpen): Uint8Array;
|
|
1373
|
-
toProtoMsg(message: MsgChannelUpgradeOpen): MsgChannelUpgradeOpenProtoMsg;
|
|
1374
|
-
registerTypeUrl(): void;
|
|
1375
|
-
};
|
|
1376
|
-
export declare const MsgChannelUpgradeOpenResponse: {
|
|
1377
|
-
typeUrl: string;
|
|
1378
|
-
aminoType: string;
|
|
1379
|
-
is(o: any): o is MsgChannelUpgradeOpenResponse;
|
|
1380
|
-
isAmino(o: any): o is MsgChannelUpgradeOpenResponseAmino;
|
|
1381
|
-
encode(_: MsgChannelUpgradeOpenResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1382
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeOpenResponse;
|
|
1383
|
-
fromPartial(_: DeepPartial<MsgChannelUpgradeOpenResponse>): MsgChannelUpgradeOpenResponse;
|
|
1384
|
-
fromAmino(_: MsgChannelUpgradeOpenResponseAmino): MsgChannelUpgradeOpenResponse;
|
|
1385
|
-
toAmino(_: MsgChannelUpgradeOpenResponse): MsgChannelUpgradeOpenResponseAmino;
|
|
1386
|
-
fromAminoMsg(object: MsgChannelUpgradeOpenResponseAminoMsg): MsgChannelUpgradeOpenResponse;
|
|
1387
|
-
toAminoMsg(message: MsgChannelUpgradeOpenResponse): MsgChannelUpgradeOpenResponseAminoMsg;
|
|
1388
|
-
fromProtoMsg(message: MsgChannelUpgradeOpenResponseProtoMsg): MsgChannelUpgradeOpenResponse;
|
|
1389
|
-
toProto(message: MsgChannelUpgradeOpenResponse): Uint8Array;
|
|
1390
|
-
toProtoMsg(message: MsgChannelUpgradeOpenResponse): MsgChannelUpgradeOpenResponseProtoMsg;
|
|
1391
|
-
registerTypeUrl(): void;
|
|
1392
|
-
};
|
|
1393
|
-
export declare const MsgChannelUpgradeTimeout: {
|
|
1394
|
-
typeUrl: string;
|
|
1395
|
-
aminoType: string;
|
|
1396
|
-
is(o: any): o is MsgChannelUpgradeTimeout;
|
|
1397
|
-
isAmino(o: any): o is MsgChannelUpgradeTimeoutAmino;
|
|
1398
|
-
encode(message: MsgChannelUpgradeTimeout, writer?: BinaryWriter): BinaryWriter;
|
|
1399
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeTimeout;
|
|
1400
|
-
fromPartial(object: DeepPartial<MsgChannelUpgradeTimeout>): MsgChannelUpgradeTimeout;
|
|
1401
|
-
fromAmino(object: MsgChannelUpgradeTimeoutAmino): MsgChannelUpgradeTimeout;
|
|
1402
|
-
toAmino(message: MsgChannelUpgradeTimeout): MsgChannelUpgradeTimeoutAmino;
|
|
1403
|
-
fromAminoMsg(object: MsgChannelUpgradeTimeoutAminoMsg): MsgChannelUpgradeTimeout;
|
|
1404
|
-
toAminoMsg(message: MsgChannelUpgradeTimeout): MsgChannelUpgradeTimeoutAminoMsg;
|
|
1405
|
-
fromProtoMsg(message: MsgChannelUpgradeTimeoutProtoMsg): MsgChannelUpgradeTimeout;
|
|
1406
|
-
toProto(message: MsgChannelUpgradeTimeout): Uint8Array;
|
|
1407
|
-
toProtoMsg(message: MsgChannelUpgradeTimeout): MsgChannelUpgradeTimeoutProtoMsg;
|
|
1408
|
-
registerTypeUrl(): void;
|
|
1409
|
-
};
|
|
1410
|
-
export declare const MsgChannelUpgradeTimeoutResponse: {
|
|
1411
|
-
typeUrl: string;
|
|
1412
|
-
aminoType: string;
|
|
1413
|
-
is(o: any): o is MsgChannelUpgradeTimeoutResponse;
|
|
1414
|
-
isAmino(o: any): o is MsgChannelUpgradeTimeoutResponseAmino;
|
|
1415
|
-
encode(_: MsgChannelUpgradeTimeoutResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1416
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeTimeoutResponse;
|
|
1417
|
-
fromPartial(_: DeepPartial<MsgChannelUpgradeTimeoutResponse>): MsgChannelUpgradeTimeoutResponse;
|
|
1418
|
-
fromAmino(_: MsgChannelUpgradeTimeoutResponseAmino): MsgChannelUpgradeTimeoutResponse;
|
|
1419
|
-
toAmino(_: MsgChannelUpgradeTimeoutResponse): MsgChannelUpgradeTimeoutResponseAmino;
|
|
1420
|
-
fromAminoMsg(object: MsgChannelUpgradeTimeoutResponseAminoMsg): MsgChannelUpgradeTimeoutResponse;
|
|
1421
|
-
toAminoMsg(message: MsgChannelUpgradeTimeoutResponse): MsgChannelUpgradeTimeoutResponseAminoMsg;
|
|
1422
|
-
fromProtoMsg(message: MsgChannelUpgradeTimeoutResponseProtoMsg): MsgChannelUpgradeTimeoutResponse;
|
|
1423
|
-
toProto(message: MsgChannelUpgradeTimeoutResponse): Uint8Array;
|
|
1424
|
-
toProtoMsg(message: MsgChannelUpgradeTimeoutResponse): MsgChannelUpgradeTimeoutResponseProtoMsg;
|
|
1425
|
-
registerTypeUrl(): void;
|
|
1426
|
-
};
|
|
1427
|
-
export declare const MsgChannelUpgradeCancel: {
|
|
1428
|
-
typeUrl: string;
|
|
1429
|
-
aminoType: string;
|
|
1430
|
-
is(o: any): o is MsgChannelUpgradeCancel;
|
|
1431
|
-
isAmino(o: any): o is MsgChannelUpgradeCancelAmino;
|
|
1432
|
-
encode(message: MsgChannelUpgradeCancel, writer?: BinaryWriter): BinaryWriter;
|
|
1433
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeCancel;
|
|
1434
|
-
fromPartial(object: DeepPartial<MsgChannelUpgradeCancel>): MsgChannelUpgradeCancel;
|
|
1435
|
-
fromAmino(object: MsgChannelUpgradeCancelAmino): MsgChannelUpgradeCancel;
|
|
1436
|
-
toAmino(message: MsgChannelUpgradeCancel): MsgChannelUpgradeCancelAmino;
|
|
1437
|
-
fromAminoMsg(object: MsgChannelUpgradeCancelAminoMsg): MsgChannelUpgradeCancel;
|
|
1438
|
-
toAminoMsg(message: MsgChannelUpgradeCancel): MsgChannelUpgradeCancelAminoMsg;
|
|
1439
|
-
fromProtoMsg(message: MsgChannelUpgradeCancelProtoMsg): MsgChannelUpgradeCancel;
|
|
1440
|
-
toProto(message: MsgChannelUpgradeCancel): Uint8Array;
|
|
1441
|
-
toProtoMsg(message: MsgChannelUpgradeCancel): MsgChannelUpgradeCancelProtoMsg;
|
|
1442
|
-
registerTypeUrl(): void;
|
|
1443
|
-
};
|
|
1444
|
-
export declare const MsgChannelUpgradeCancelResponse: {
|
|
1445
|
-
typeUrl: string;
|
|
1446
|
-
aminoType: string;
|
|
1447
|
-
is(o: any): o is MsgChannelUpgradeCancelResponse;
|
|
1448
|
-
isAmino(o: any): o is MsgChannelUpgradeCancelResponseAmino;
|
|
1449
|
-
encode(_: MsgChannelUpgradeCancelResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1450
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgChannelUpgradeCancelResponse;
|
|
1451
|
-
fromPartial(_: DeepPartial<MsgChannelUpgradeCancelResponse>): MsgChannelUpgradeCancelResponse;
|
|
1452
|
-
fromAmino(_: MsgChannelUpgradeCancelResponseAmino): MsgChannelUpgradeCancelResponse;
|
|
1453
|
-
toAmino(_: MsgChannelUpgradeCancelResponse): MsgChannelUpgradeCancelResponseAmino;
|
|
1454
|
-
fromAminoMsg(object: MsgChannelUpgradeCancelResponseAminoMsg): MsgChannelUpgradeCancelResponse;
|
|
1455
|
-
toAminoMsg(message: MsgChannelUpgradeCancelResponse): MsgChannelUpgradeCancelResponseAminoMsg;
|
|
1456
|
-
fromProtoMsg(message: MsgChannelUpgradeCancelResponseProtoMsg): MsgChannelUpgradeCancelResponse;
|
|
1457
|
-
toProto(message: MsgChannelUpgradeCancelResponse): Uint8Array;
|
|
1458
|
-
toProtoMsg(message: MsgChannelUpgradeCancelResponse): MsgChannelUpgradeCancelResponseProtoMsg;
|
|
1459
|
-
registerTypeUrl(): void;
|
|
1460
|
-
};
|
|
1461
|
-
export declare const MsgUpdateParams: {
|
|
1462
|
-
typeUrl: string;
|
|
1463
|
-
aminoType: string;
|
|
1464
|
-
is(o: any): o is MsgUpdateParams;
|
|
1465
|
-
isAmino(o: any): o is MsgUpdateParamsAmino;
|
|
1466
|
-
encode(message: MsgUpdateParams, writer?: BinaryWriter): BinaryWriter;
|
|
1467
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateParams;
|
|
1468
|
-
fromPartial(object: DeepPartial<MsgUpdateParams>): MsgUpdateParams;
|
|
1469
|
-
fromAmino(object: MsgUpdateParamsAmino): MsgUpdateParams;
|
|
1470
|
-
toAmino(message: MsgUpdateParams): MsgUpdateParamsAmino;
|
|
1471
|
-
fromAminoMsg(object: MsgUpdateParamsAminoMsg): MsgUpdateParams;
|
|
1472
|
-
toAminoMsg(message: MsgUpdateParams): MsgUpdateParamsAminoMsg;
|
|
1473
|
-
fromProtoMsg(message: MsgUpdateParamsProtoMsg): MsgUpdateParams;
|
|
1474
|
-
toProto(message: MsgUpdateParams): Uint8Array;
|
|
1475
|
-
toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg;
|
|
1476
|
-
registerTypeUrl(): void;
|
|
1477
|
-
};
|
|
1478
|
-
export declare const MsgUpdateParamsResponse: {
|
|
1479
|
-
typeUrl: string;
|
|
1480
|
-
aminoType: string;
|
|
1481
|
-
is(o: any): o is MsgUpdateParamsResponse;
|
|
1482
|
-
isAmino(o: any): o is MsgUpdateParamsResponseAmino;
|
|
1483
|
-
encode(_: MsgUpdateParamsResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1484
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateParamsResponse;
|
|
1485
|
-
fromPartial(_: DeepPartial<MsgUpdateParamsResponse>): MsgUpdateParamsResponse;
|
|
1486
|
-
fromAmino(_: MsgUpdateParamsResponseAmino): MsgUpdateParamsResponse;
|
|
1487
|
-
toAmino(_: MsgUpdateParamsResponse): MsgUpdateParamsResponseAmino;
|
|
1488
|
-
fromAminoMsg(object: MsgUpdateParamsResponseAminoMsg): MsgUpdateParamsResponse;
|
|
1489
|
-
toAminoMsg(message: MsgUpdateParamsResponse): MsgUpdateParamsResponseAminoMsg;
|
|
1490
|
-
fromProtoMsg(message: MsgUpdateParamsResponseProtoMsg): MsgUpdateParamsResponse;
|
|
1491
|
-
toProto(message: MsgUpdateParamsResponse): Uint8Array;
|
|
1492
|
-
toProtoMsg(message: MsgUpdateParamsResponse): MsgUpdateParamsResponseProtoMsg;
|
|
1493
|
-
registerTypeUrl(): void;
|
|
1494
|
-
};
|
|
1495
|
-
export declare const MsgPruneAcknowledgements: {
|
|
1496
|
-
typeUrl: string;
|
|
1497
|
-
aminoType: string;
|
|
1498
|
-
is(o: any): o is MsgPruneAcknowledgements;
|
|
1499
|
-
isAmino(o: any): o is MsgPruneAcknowledgementsAmino;
|
|
1500
|
-
encode(message: MsgPruneAcknowledgements, writer?: BinaryWriter): BinaryWriter;
|
|
1501
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgPruneAcknowledgements;
|
|
1502
|
-
fromPartial(object: DeepPartial<MsgPruneAcknowledgements>): MsgPruneAcknowledgements;
|
|
1503
|
-
fromAmino(object: MsgPruneAcknowledgementsAmino): MsgPruneAcknowledgements;
|
|
1504
|
-
toAmino(message: MsgPruneAcknowledgements): MsgPruneAcknowledgementsAmino;
|
|
1505
|
-
fromAminoMsg(object: MsgPruneAcknowledgementsAminoMsg): MsgPruneAcknowledgements;
|
|
1506
|
-
toAminoMsg(message: MsgPruneAcknowledgements): MsgPruneAcknowledgementsAminoMsg;
|
|
1507
|
-
fromProtoMsg(message: MsgPruneAcknowledgementsProtoMsg): MsgPruneAcknowledgements;
|
|
1508
|
-
toProto(message: MsgPruneAcknowledgements): Uint8Array;
|
|
1509
|
-
toProtoMsg(message: MsgPruneAcknowledgements): MsgPruneAcknowledgementsProtoMsg;
|
|
1510
|
-
registerTypeUrl(): void;
|
|
1511
|
-
};
|
|
1512
|
-
export declare const MsgPruneAcknowledgementsResponse: {
|
|
1513
|
-
typeUrl: string;
|
|
1514
|
-
aminoType: string;
|
|
1515
|
-
is(o: any): o is MsgPruneAcknowledgementsResponse;
|
|
1516
|
-
isAmino(o: any): o is MsgPruneAcknowledgementsResponseAmino;
|
|
1517
|
-
encode(message: MsgPruneAcknowledgementsResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1518
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgPruneAcknowledgementsResponse;
|
|
1519
|
-
fromPartial(object: DeepPartial<MsgPruneAcknowledgementsResponse>): MsgPruneAcknowledgementsResponse;
|
|
1520
|
-
fromAmino(object: MsgPruneAcknowledgementsResponseAmino): MsgPruneAcknowledgementsResponse;
|
|
1521
|
-
toAmino(message: MsgPruneAcknowledgementsResponse): MsgPruneAcknowledgementsResponseAmino;
|
|
1522
|
-
fromAminoMsg(object: MsgPruneAcknowledgementsResponseAminoMsg): MsgPruneAcknowledgementsResponse;
|
|
1523
|
-
toAminoMsg(message: MsgPruneAcknowledgementsResponse): MsgPruneAcknowledgementsResponseAminoMsg;
|
|
1524
|
-
fromProtoMsg(message: MsgPruneAcknowledgementsResponseProtoMsg): MsgPruneAcknowledgementsResponse;
|
|
1525
|
-
toProto(message: MsgPruneAcknowledgementsResponse): Uint8Array;
|
|
1526
|
-
toProtoMsg(message: MsgPruneAcknowledgementsResponse): MsgPruneAcknowledgementsResponseProtoMsg;
|
|
1527
|
-
registerTypeUrl(): void;
|
|
1528
|
-
};
|