@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,16 +1,22 @@
|
|
|
1
1
|
import { PageRequest, PageResponse } from "../../../../cosmos/base/query/v1beta1/pagination";
|
|
2
2
|
import { Channel, IdentifiedChannel, PacketState } from "./channel";
|
|
3
|
-
import { Height, IdentifiedClientState
|
|
3
|
+
import { Height, IdentifiedClientState } from "../../client/v1/client";
|
|
4
4
|
import { Any } from "../../../../google/protobuf/any";
|
|
5
|
-
import { ErrorReceipt, Upgrade } from "./upgrade";
|
|
6
5
|
import { BinaryReader, BinaryWriter } from "../../../../binary";
|
|
7
6
|
import { bytesFromBase64, base64FromBytes } from "../../../../helpers";
|
|
7
|
+
import { GlobalDecoderRegistry } from "../../../../registry";
|
|
8
8
|
function createBaseQueryChannelRequest() {
|
|
9
9
|
return {
|
|
10
10
|
portId: "",
|
|
11
11
|
channelId: ""
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
|
+
/**
|
|
15
|
+
* QueryChannelRequest is the request type for the Query/Channel RPC method
|
|
16
|
+
* @name QueryChannelRequest
|
|
17
|
+
* @package ibc.core.channel.v1
|
|
18
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelRequest
|
|
19
|
+
*/
|
|
14
20
|
export const QueryChannelRequest = {
|
|
15
21
|
typeUrl: "/ibc.core.channel.v1.QueryChannelRequest",
|
|
16
22
|
aminoType: "cosmos-sdk/QueryChannelRequest",
|
|
@@ -101,6 +107,14 @@ function createBaseQueryChannelResponse() {
|
|
|
101
107
|
proofHeight: Height.fromPartial({})
|
|
102
108
|
};
|
|
103
109
|
}
|
|
110
|
+
/**
|
|
111
|
+
* QueryChannelResponse is the response type for the Query/Channel RPC method.
|
|
112
|
+
* Besides the Channel end, it includes a proof and the height from which the
|
|
113
|
+
* proof was retrieved.
|
|
114
|
+
* @name QueryChannelResponse
|
|
115
|
+
* @package ibc.core.channel.v1
|
|
116
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelResponse
|
|
117
|
+
*/
|
|
104
118
|
export const QueryChannelResponse = {
|
|
105
119
|
typeUrl: "/ibc.core.channel.v1.QueryChannelResponse",
|
|
106
120
|
aminoType: "cosmos-sdk/QueryChannelResponse",
|
|
@@ -194,6 +208,9 @@ export const QueryChannelResponse = {
|
|
|
194
208
|
};
|
|
195
209
|
},
|
|
196
210
|
registerTypeUrl() {
|
|
211
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(QueryChannelResponse.typeUrl)) {
|
|
212
|
+
return;
|
|
213
|
+
}
|
|
197
214
|
Channel.registerTypeUrl();
|
|
198
215
|
Height.registerTypeUrl();
|
|
199
216
|
}
|
|
@@ -203,6 +220,12 @@ function createBaseQueryChannelsRequest() {
|
|
|
203
220
|
pagination: undefined
|
|
204
221
|
};
|
|
205
222
|
}
|
|
223
|
+
/**
|
|
224
|
+
* QueryChannelsRequest is the request type for the Query/Channels RPC method
|
|
225
|
+
* @name QueryChannelsRequest
|
|
226
|
+
* @package ibc.core.channel.v1
|
|
227
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelsRequest
|
|
228
|
+
*/
|
|
206
229
|
export const QueryChannelsRequest = {
|
|
207
230
|
typeUrl: "/ibc.core.channel.v1.QueryChannelsRequest",
|
|
208
231
|
aminoType: "cosmos-sdk/QueryChannelsRequest",
|
|
@@ -274,6 +297,9 @@ export const QueryChannelsRequest = {
|
|
|
274
297
|
};
|
|
275
298
|
},
|
|
276
299
|
registerTypeUrl() {
|
|
300
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(QueryChannelsRequest.typeUrl)) {
|
|
301
|
+
return;
|
|
302
|
+
}
|
|
277
303
|
PageRequest.registerTypeUrl();
|
|
278
304
|
}
|
|
279
305
|
};
|
|
@@ -284,6 +310,12 @@ function createBaseQueryChannelsResponse() {
|
|
|
284
310
|
height: Height.fromPartial({})
|
|
285
311
|
};
|
|
286
312
|
}
|
|
313
|
+
/**
|
|
314
|
+
* QueryChannelsResponse is the response type for the Query/Channels RPC method.
|
|
315
|
+
* @name QueryChannelsResponse
|
|
316
|
+
* @package ibc.core.channel.v1
|
|
317
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelsResponse
|
|
318
|
+
*/
|
|
287
319
|
export const QueryChannelsResponse = {
|
|
288
320
|
typeUrl: "/ibc.core.channel.v1.QueryChannelsResponse",
|
|
289
321
|
aminoType: "cosmos-sdk/QueryChannelsResponse",
|
|
@@ -380,6 +412,9 @@ export const QueryChannelsResponse = {
|
|
|
380
412
|
};
|
|
381
413
|
},
|
|
382
414
|
registerTypeUrl() {
|
|
415
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(QueryChannelsResponse.typeUrl)) {
|
|
416
|
+
return;
|
|
417
|
+
}
|
|
383
418
|
IdentifiedChannel.registerTypeUrl();
|
|
384
419
|
PageResponse.registerTypeUrl();
|
|
385
420
|
Height.registerTypeUrl();
|
|
@@ -391,6 +426,13 @@ function createBaseQueryConnectionChannelsRequest() {
|
|
|
391
426
|
pagination: undefined
|
|
392
427
|
};
|
|
393
428
|
}
|
|
429
|
+
/**
|
|
430
|
+
* QueryConnectionChannelsRequest is the request type for the
|
|
431
|
+
* Query/QueryConnectionChannels RPC method
|
|
432
|
+
* @name QueryConnectionChannelsRequest
|
|
433
|
+
* @package ibc.core.channel.v1
|
|
434
|
+
* @see proto type: ibc.core.channel.v1.QueryConnectionChannelsRequest
|
|
435
|
+
*/
|
|
394
436
|
export const QueryConnectionChannelsRequest = {
|
|
395
437
|
typeUrl: "/ibc.core.channel.v1.QueryConnectionChannelsRequest",
|
|
396
438
|
aminoType: "cosmos-sdk/QueryConnectionChannelsRequest",
|
|
@@ -473,6 +515,9 @@ export const QueryConnectionChannelsRequest = {
|
|
|
473
515
|
};
|
|
474
516
|
},
|
|
475
517
|
registerTypeUrl() {
|
|
518
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(QueryConnectionChannelsRequest.typeUrl)) {
|
|
519
|
+
return;
|
|
520
|
+
}
|
|
476
521
|
PageRequest.registerTypeUrl();
|
|
477
522
|
}
|
|
478
523
|
};
|
|
@@ -483,6 +528,13 @@ function createBaseQueryConnectionChannelsResponse() {
|
|
|
483
528
|
height: Height.fromPartial({})
|
|
484
529
|
};
|
|
485
530
|
}
|
|
531
|
+
/**
|
|
532
|
+
* QueryConnectionChannelsResponse is the Response type for the
|
|
533
|
+
* Query/QueryConnectionChannels RPC method
|
|
534
|
+
* @name QueryConnectionChannelsResponse
|
|
535
|
+
* @package ibc.core.channel.v1
|
|
536
|
+
* @see proto type: ibc.core.channel.v1.QueryConnectionChannelsResponse
|
|
537
|
+
*/
|
|
486
538
|
export const QueryConnectionChannelsResponse = {
|
|
487
539
|
typeUrl: "/ibc.core.channel.v1.QueryConnectionChannelsResponse",
|
|
488
540
|
aminoType: "cosmos-sdk/QueryConnectionChannelsResponse",
|
|
@@ -579,6 +631,9 @@ export const QueryConnectionChannelsResponse = {
|
|
|
579
631
|
};
|
|
580
632
|
},
|
|
581
633
|
registerTypeUrl() {
|
|
634
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(QueryConnectionChannelsResponse.typeUrl)) {
|
|
635
|
+
return;
|
|
636
|
+
}
|
|
582
637
|
IdentifiedChannel.registerTypeUrl();
|
|
583
638
|
PageResponse.registerTypeUrl();
|
|
584
639
|
Height.registerTypeUrl();
|
|
@@ -590,6 +645,13 @@ function createBaseQueryChannelClientStateRequest() {
|
|
|
590
645
|
channelId: ""
|
|
591
646
|
};
|
|
592
647
|
}
|
|
648
|
+
/**
|
|
649
|
+
* QueryChannelClientStateRequest is the request type for the Query/ClientState
|
|
650
|
+
* RPC method
|
|
651
|
+
* @name QueryChannelClientStateRequest
|
|
652
|
+
* @package ibc.core.channel.v1
|
|
653
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelClientStateRequest
|
|
654
|
+
*/
|
|
593
655
|
export const QueryChannelClientStateRequest = {
|
|
594
656
|
typeUrl: "/ibc.core.channel.v1.QueryChannelClientStateRequest",
|
|
595
657
|
aminoType: "cosmos-sdk/QueryChannelClientStateRequest",
|
|
@@ -680,6 +742,13 @@ function createBaseQueryChannelClientStateResponse() {
|
|
|
680
742
|
proofHeight: Height.fromPartial({})
|
|
681
743
|
};
|
|
682
744
|
}
|
|
745
|
+
/**
|
|
746
|
+
* QueryChannelClientStateResponse is the Response type for the
|
|
747
|
+
* Query/QueryChannelClientState RPC method
|
|
748
|
+
* @name QueryChannelClientStateResponse
|
|
749
|
+
* @package ibc.core.channel.v1
|
|
750
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelClientStateResponse
|
|
751
|
+
*/
|
|
683
752
|
export const QueryChannelClientStateResponse = {
|
|
684
753
|
typeUrl: "/ibc.core.channel.v1.QueryChannelClientStateResponse",
|
|
685
754
|
aminoType: "cosmos-sdk/QueryChannelClientStateResponse",
|
|
@@ -773,6 +842,9 @@ export const QueryChannelClientStateResponse = {
|
|
|
773
842
|
};
|
|
774
843
|
},
|
|
775
844
|
registerTypeUrl() {
|
|
845
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(QueryChannelClientStateResponse.typeUrl)) {
|
|
846
|
+
return;
|
|
847
|
+
}
|
|
776
848
|
IdentifiedClientState.registerTypeUrl();
|
|
777
849
|
Height.registerTypeUrl();
|
|
778
850
|
}
|
|
@@ -785,6 +857,13 @@ function createBaseQueryChannelConsensusStateRequest() {
|
|
|
785
857
|
revisionHeight: BigInt(0)
|
|
786
858
|
};
|
|
787
859
|
}
|
|
860
|
+
/**
|
|
861
|
+
* QueryChannelConsensusStateRequest is the request type for the
|
|
862
|
+
* Query/ConsensusState RPC method
|
|
863
|
+
* @name QueryChannelConsensusStateRequest
|
|
864
|
+
* @package ibc.core.channel.v1
|
|
865
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelConsensusStateRequest
|
|
866
|
+
*/
|
|
788
867
|
export const QueryChannelConsensusStateRequest = {
|
|
789
868
|
typeUrl: "/ibc.core.channel.v1.QueryChannelConsensusStateRequest",
|
|
790
869
|
aminoType: "cosmos-sdk/QueryChannelConsensusStateRequest",
|
|
@@ -898,6 +977,13 @@ function createBaseQueryChannelConsensusStateResponse() {
|
|
|
898
977
|
proofHeight: Height.fromPartial({})
|
|
899
978
|
};
|
|
900
979
|
}
|
|
980
|
+
/**
|
|
981
|
+
* QueryChannelClientStateResponse is the Response type for the
|
|
982
|
+
* Query/QueryChannelClientState RPC method
|
|
983
|
+
* @name QueryChannelConsensusStateResponse
|
|
984
|
+
* @package ibc.core.channel.v1
|
|
985
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelConsensusStateResponse
|
|
986
|
+
*/
|
|
901
987
|
export const QueryChannelConsensusStateResponse = {
|
|
902
988
|
typeUrl: "/ibc.core.channel.v1.QueryChannelConsensusStateResponse",
|
|
903
989
|
aminoType: "cosmos-sdk/QueryChannelConsensusStateResponse",
|
|
@@ -1002,6 +1088,9 @@ export const QueryChannelConsensusStateResponse = {
|
|
|
1002
1088
|
};
|
|
1003
1089
|
},
|
|
1004
1090
|
registerTypeUrl() {
|
|
1091
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(QueryChannelConsensusStateResponse.typeUrl)) {
|
|
1092
|
+
return;
|
|
1093
|
+
}
|
|
1005
1094
|
Height.registerTypeUrl();
|
|
1006
1095
|
}
|
|
1007
1096
|
};
|
|
@@ -1012,6 +1101,13 @@ function createBaseQueryPacketCommitmentRequest() {
|
|
|
1012
1101
|
sequence: BigInt(0)
|
|
1013
1102
|
};
|
|
1014
1103
|
}
|
|
1104
|
+
/**
|
|
1105
|
+
* QueryPacketCommitmentRequest is the request type for the
|
|
1106
|
+
* Query/PacketCommitment RPC method
|
|
1107
|
+
* @name QueryPacketCommitmentRequest
|
|
1108
|
+
* @package ibc.core.channel.v1
|
|
1109
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketCommitmentRequest
|
|
1110
|
+
*/
|
|
1015
1111
|
export const QueryPacketCommitmentRequest = {
|
|
1016
1112
|
typeUrl: "/ibc.core.channel.v1.QueryPacketCommitmentRequest",
|
|
1017
1113
|
aminoType: "cosmos-sdk/QueryPacketCommitmentRequest",
|
|
@@ -1113,6 +1209,14 @@ function createBaseQueryPacketCommitmentResponse() {
|
|
|
1113
1209
|
proofHeight: Height.fromPartial({})
|
|
1114
1210
|
};
|
|
1115
1211
|
}
|
|
1212
|
+
/**
|
|
1213
|
+
* QueryPacketCommitmentResponse defines the client query response for a packet
|
|
1214
|
+
* which also includes a proof and the height from which the proof was
|
|
1215
|
+
* retrieved
|
|
1216
|
+
* @name QueryPacketCommitmentResponse
|
|
1217
|
+
* @package ibc.core.channel.v1
|
|
1218
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketCommitmentResponse
|
|
1219
|
+
*/
|
|
1116
1220
|
export const QueryPacketCommitmentResponse = {
|
|
1117
1221
|
typeUrl: "/ibc.core.channel.v1.QueryPacketCommitmentResponse",
|
|
1118
1222
|
aminoType: "cosmos-sdk/QueryPacketCommitmentResponse",
|
|
@@ -1206,6 +1310,9 @@ export const QueryPacketCommitmentResponse = {
|
|
|
1206
1310
|
};
|
|
1207
1311
|
},
|
|
1208
1312
|
registerTypeUrl() {
|
|
1313
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(QueryPacketCommitmentResponse.typeUrl)) {
|
|
1314
|
+
return;
|
|
1315
|
+
}
|
|
1209
1316
|
Height.registerTypeUrl();
|
|
1210
1317
|
}
|
|
1211
1318
|
};
|
|
@@ -1216,6 +1323,13 @@ function createBaseQueryPacketCommitmentsRequest() {
|
|
|
1216
1323
|
pagination: undefined
|
|
1217
1324
|
};
|
|
1218
1325
|
}
|
|
1326
|
+
/**
|
|
1327
|
+
* QueryPacketCommitmentsRequest is the request type for the
|
|
1328
|
+
* Query/QueryPacketCommitments RPC method
|
|
1329
|
+
* @name QueryPacketCommitmentsRequest
|
|
1330
|
+
* @package ibc.core.channel.v1
|
|
1331
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketCommitmentsRequest
|
|
1332
|
+
*/
|
|
1219
1333
|
export const QueryPacketCommitmentsRequest = {
|
|
1220
1334
|
typeUrl: "/ibc.core.channel.v1.QueryPacketCommitmentsRequest",
|
|
1221
1335
|
aminoType: "cosmos-sdk/QueryPacketCommitmentsRequest",
|
|
@@ -1309,6 +1423,9 @@ export const QueryPacketCommitmentsRequest = {
|
|
|
1309
1423
|
};
|
|
1310
1424
|
},
|
|
1311
1425
|
registerTypeUrl() {
|
|
1426
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(QueryPacketCommitmentsRequest.typeUrl)) {
|
|
1427
|
+
return;
|
|
1428
|
+
}
|
|
1312
1429
|
PageRequest.registerTypeUrl();
|
|
1313
1430
|
}
|
|
1314
1431
|
};
|
|
@@ -1319,6 +1436,13 @@ function createBaseQueryPacketCommitmentsResponse() {
|
|
|
1319
1436
|
height: Height.fromPartial({})
|
|
1320
1437
|
};
|
|
1321
1438
|
}
|
|
1439
|
+
/**
|
|
1440
|
+
* QueryPacketCommitmentsResponse is the request type for the
|
|
1441
|
+
* Query/QueryPacketCommitments RPC method
|
|
1442
|
+
* @name QueryPacketCommitmentsResponse
|
|
1443
|
+
* @package ibc.core.channel.v1
|
|
1444
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketCommitmentsResponse
|
|
1445
|
+
*/
|
|
1322
1446
|
export const QueryPacketCommitmentsResponse = {
|
|
1323
1447
|
typeUrl: "/ibc.core.channel.v1.QueryPacketCommitmentsResponse",
|
|
1324
1448
|
aminoType: "cosmos-sdk/QueryPacketCommitmentsResponse",
|
|
@@ -1415,6 +1539,9 @@ export const QueryPacketCommitmentsResponse = {
|
|
|
1415
1539
|
};
|
|
1416
1540
|
},
|
|
1417
1541
|
registerTypeUrl() {
|
|
1542
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(QueryPacketCommitmentsResponse.typeUrl)) {
|
|
1543
|
+
return;
|
|
1544
|
+
}
|
|
1418
1545
|
PacketState.registerTypeUrl();
|
|
1419
1546
|
PageResponse.registerTypeUrl();
|
|
1420
1547
|
Height.registerTypeUrl();
|
|
@@ -1427,6 +1554,13 @@ function createBaseQueryPacketReceiptRequest() {
|
|
|
1427
1554
|
sequence: BigInt(0)
|
|
1428
1555
|
};
|
|
1429
1556
|
}
|
|
1557
|
+
/**
|
|
1558
|
+
* QueryPacketReceiptRequest is the request type for the
|
|
1559
|
+
* Query/PacketReceipt RPC method
|
|
1560
|
+
* @name QueryPacketReceiptRequest
|
|
1561
|
+
* @package ibc.core.channel.v1
|
|
1562
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketReceiptRequest
|
|
1563
|
+
*/
|
|
1430
1564
|
export const QueryPacketReceiptRequest = {
|
|
1431
1565
|
typeUrl: "/ibc.core.channel.v1.QueryPacketReceiptRequest",
|
|
1432
1566
|
aminoType: "cosmos-sdk/QueryPacketReceiptRequest",
|
|
@@ -1528,6 +1662,14 @@ function createBaseQueryPacketReceiptResponse() {
|
|
|
1528
1662
|
proofHeight: Height.fromPartial({})
|
|
1529
1663
|
};
|
|
1530
1664
|
}
|
|
1665
|
+
/**
|
|
1666
|
+
* QueryPacketReceiptResponse defines the client query response for a packet
|
|
1667
|
+
* receipt which also includes a proof, and the height from which the proof was
|
|
1668
|
+
* retrieved
|
|
1669
|
+
* @name QueryPacketReceiptResponse
|
|
1670
|
+
* @package ibc.core.channel.v1
|
|
1671
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketReceiptResponse
|
|
1672
|
+
*/
|
|
1531
1673
|
export const QueryPacketReceiptResponse = {
|
|
1532
1674
|
typeUrl: "/ibc.core.channel.v1.QueryPacketReceiptResponse",
|
|
1533
1675
|
aminoType: "cosmos-sdk/QueryPacketReceiptResponse",
|
|
@@ -1621,6 +1763,9 @@ export const QueryPacketReceiptResponse = {
|
|
|
1621
1763
|
};
|
|
1622
1764
|
},
|
|
1623
1765
|
registerTypeUrl() {
|
|
1766
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(QueryPacketReceiptResponse.typeUrl)) {
|
|
1767
|
+
return;
|
|
1768
|
+
}
|
|
1624
1769
|
Height.registerTypeUrl();
|
|
1625
1770
|
}
|
|
1626
1771
|
};
|
|
@@ -1631,6 +1776,13 @@ function createBaseQueryPacketAcknowledgementRequest() {
|
|
|
1631
1776
|
sequence: BigInt(0)
|
|
1632
1777
|
};
|
|
1633
1778
|
}
|
|
1779
|
+
/**
|
|
1780
|
+
* QueryPacketAcknowledgementRequest is the request type for the
|
|
1781
|
+
* Query/PacketAcknowledgement RPC method
|
|
1782
|
+
* @name QueryPacketAcknowledgementRequest
|
|
1783
|
+
* @package ibc.core.channel.v1
|
|
1784
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketAcknowledgementRequest
|
|
1785
|
+
*/
|
|
1634
1786
|
export const QueryPacketAcknowledgementRequest = {
|
|
1635
1787
|
typeUrl: "/ibc.core.channel.v1.QueryPacketAcknowledgementRequest",
|
|
1636
1788
|
aminoType: "cosmos-sdk/QueryPacketAcknowledgementRequest",
|
|
@@ -1732,6 +1884,14 @@ function createBaseQueryPacketAcknowledgementResponse() {
|
|
|
1732
1884
|
proofHeight: Height.fromPartial({})
|
|
1733
1885
|
};
|
|
1734
1886
|
}
|
|
1887
|
+
/**
|
|
1888
|
+
* QueryPacketAcknowledgementResponse defines the client query response for a
|
|
1889
|
+
* packet which also includes a proof and the height from which the
|
|
1890
|
+
* proof was retrieved
|
|
1891
|
+
* @name QueryPacketAcknowledgementResponse
|
|
1892
|
+
* @package ibc.core.channel.v1
|
|
1893
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketAcknowledgementResponse
|
|
1894
|
+
*/
|
|
1735
1895
|
export const QueryPacketAcknowledgementResponse = {
|
|
1736
1896
|
typeUrl: "/ibc.core.channel.v1.QueryPacketAcknowledgementResponse",
|
|
1737
1897
|
aminoType: "cosmos-sdk/QueryPacketAcknowledgementResponse",
|
|
@@ -1825,6 +1985,9 @@ export const QueryPacketAcknowledgementResponse = {
|
|
|
1825
1985
|
};
|
|
1826
1986
|
},
|
|
1827
1987
|
registerTypeUrl() {
|
|
1988
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(QueryPacketAcknowledgementResponse.typeUrl)) {
|
|
1989
|
+
return;
|
|
1990
|
+
}
|
|
1828
1991
|
Height.registerTypeUrl();
|
|
1829
1992
|
}
|
|
1830
1993
|
};
|
|
@@ -1836,6 +1999,13 @@ function createBaseQueryPacketAcknowledgementsRequest() {
|
|
|
1836
1999
|
packetCommitmentSequences: []
|
|
1837
2000
|
};
|
|
1838
2001
|
}
|
|
2002
|
+
/**
|
|
2003
|
+
* QueryPacketAcknowledgementsRequest is the request type for the
|
|
2004
|
+
* Query/QueryPacketCommitments RPC method
|
|
2005
|
+
* @name QueryPacketAcknowledgementsRequest
|
|
2006
|
+
* @package ibc.core.channel.v1
|
|
2007
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketAcknowledgementsRequest
|
|
2008
|
+
*/
|
|
1839
2009
|
export const QueryPacketAcknowledgementsRequest = {
|
|
1840
2010
|
typeUrl: "/ibc.core.channel.v1.QueryPacketAcknowledgementsRequest",
|
|
1841
2011
|
aminoType: "cosmos-sdk/QueryPacketAcknowledgementsRequest",
|
|
@@ -1953,6 +2123,9 @@ export const QueryPacketAcknowledgementsRequest = {
|
|
|
1953
2123
|
};
|
|
1954
2124
|
},
|
|
1955
2125
|
registerTypeUrl() {
|
|
2126
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(QueryPacketAcknowledgementsRequest.typeUrl)) {
|
|
2127
|
+
return;
|
|
2128
|
+
}
|
|
1956
2129
|
PageRequest.registerTypeUrl();
|
|
1957
2130
|
}
|
|
1958
2131
|
};
|
|
@@ -1963,6 +2136,13 @@ function createBaseQueryPacketAcknowledgementsResponse() {
|
|
|
1963
2136
|
height: Height.fromPartial({})
|
|
1964
2137
|
};
|
|
1965
2138
|
}
|
|
2139
|
+
/**
|
|
2140
|
+
* QueryPacketAcknowledgemetsResponse is the request type for the
|
|
2141
|
+
* Query/QueryPacketAcknowledgements RPC method
|
|
2142
|
+
* @name QueryPacketAcknowledgementsResponse
|
|
2143
|
+
* @package ibc.core.channel.v1
|
|
2144
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketAcknowledgementsResponse
|
|
2145
|
+
*/
|
|
1966
2146
|
export const QueryPacketAcknowledgementsResponse = {
|
|
1967
2147
|
typeUrl: "/ibc.core.channel.v1.QueryPacketAcknowledgementsResponse",
|
|
1968
2148
|
aminoType: "cosmos-sdk/QueryPacketAcknowledgementsResponse",
|
|
@@ -2059,6 +2239,9 @@ export const QueryPacketAcknowledgementsResponse = {
|
|
|
2059
2239
|
};
|
|
2060
2240
|
},
|
|
2061
2241
|
registerTypeUrl() {
|
|
2242
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(QueryPacketAcknowledgementsResponse.typeUrl)) {
|
|
2243
|
+
return;
|
|
2244
|
+
}
|
|
2062
2245
|
PacketState.registerTypeUrl();
|
|
2063
2246
|
PageResponse.registerTypeUrl();
|
|
2064
2247
|
Height.registerTypeUrl();
|
|
@@ -2071,6 +2254,13 @@ function createBaseQueryUnreceivedPacketsRequest() {
|
|
|
2071
2254
|
packetCommitmentSequences: []
|
|
2072
2255
|
};
|
|
2073
2256
|
}
|
|
2257
|
+
/**
|
|
2258
|
+
* QueryUnreceivedPacketsRequest is the request type for the
|
|
2259
|
+
* Query/UnreceivedPackets RPC method
|
|
2260
|
+
* @name QueryUnreceivedPacketsRequest
|
|
2261
|
+
* @package ibc.core.channel.v1
|
|
2262
|
+
* @see proto type: ibc.core.channel.v1.QueryUnreceivedPacketsRequest
|
|
2263
|
+
*/
|
|
2074
2264
|
export const QueryUnreceivedPacketsRequest = {
|
|
2075
2265
|
typeUrl: "/ibc.core.channel.v1.QueryUnreceivedPacketsRequest",
|
|
2076
2266
|
aminoType: "cosmos-sdk/QueryUnreceivedPacketsRequest",
|
|
@@ -2184,6 +2374,13 @@ function createBaseQueryUnreceivedPacketsResponse() {
|
|
|
2184
2374
|
height: Height.fromPartial({})
|
|
2185
2375
|
};
|
|
2186
2376
|
}
|
|
2377
|
+
/**
|
|
2378
|
+
* QueryUnreceivedPacketsResponse is the response type for the
|
|
2379
|
+
* Query/UnreceivedPacketCommitments RPC method
|
|
2380
|
+
* @name QueryUnreceivedPacketsResponse
|
|
2381
|
+
* @package ibc.core.channel.v1
|
|
2382
|
+
* @see proto type: ibc.core.channel.v1.QueryUnreceivedPacketsResponse
|
|
2383
|
+
*/
|
|
2187
2384
|
export const QueryUnreceivedPacketsResponse = {
|
|
2188
2385
|
typeUrl: "/ibc.core.channel.v1.QueryUnreceivedPacketsResponse",
|
|
2189
2386
|
aminoType: "cosmos-sdk/QueryUnreceivedPacketsResponse",
|
|
@@ -2279,6 +2476,9 @@ export const QueryUnreceivedPacketsResponse = {
|
|
|
2279
2476
|
};
|
|
2280
2477
|
},
|
|
2281
2478
|
registerTypeUrl() {
|
|
2479
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(QueryUnreceivedPacketsResponse.typeUrl)) {
|
|
2480
|
+
return;
|
|
2481
|
+
}
|
|
2282
2482
|
Height.registerTypeUrl();
|
|
2283
2483
|
}
|
|
2284
2484
|
};
|
|
@@ -2289,6 +2489,13 @@ function createBaseQueryUnreceivedAcksRequest() {
|
|
|
2289
2489
|
packetAckSequences: []
|
|
2290
2490
|
};
|
|
2291
2491
|
}
|
|
2492
|
+
/**
|
|
2493
|
+
* QueryUnreceivedAcks is the request type for the
|
|
2494
|
+
* Query/UnreceivedAcks RPC method
|
|
2495
|
+
* @name QueryUnreceivedAcksRequest
|
|
2496
|
+
* @package ibc.core.channel.v1
|
|
2497
|
+
* @see proto type: ibc.core.channel.v1.QueryUnreceivedAcksRequest
|
|
2498
|
+
*/
|
|
2292
2499
|
export const QueryUnreceivedAcksRequest = {
|
|
2293
2500
|
typeUrl: "/ibc.core.channel.v1.QueryUnreceivedAcksRequest",
|
|
2294
2501
|
aminoType: "cosmos-sdk/QueryUnreceivedAcksRequest",
|
|
@@ -2402,6 +2609,13 @@ function createBaseQueryUnreceivedAcksResponse() {
|
|
|
2402
2609
|
height: Height.fromPartial({})
|
|
2403
2610
|
};
|
|
2404
2611
|
}
|
|
2612
|
+
/**
|
|
2613
|
+
* QueryUnreceivedAcksResponse is the response type for the
|
|
2614
|
+
* Query/UnreceivedAcks RPC method
|
|
2615
|
+
* @name QueryUnreceivedAcksResponse
|
|
2616
|
+
* @package ibc.core.channel.v1
|
|
2617
|
+
* @see proto type: ibc.core.channel.v1.QueryUnreceivedAcksResponse
|
|
2618
|
+
*/
|
|
2405
2619
|
export const QueryUnreceivedAcksResponse = {
|
|
2406
2620
|
typeUrl: "/ibc.core.channel.v1.QueryUnreceivedAcksResponse",
|
|
2407
2621
|
aminoType: "cosmos-sdk/QueryUnreceivedAcksResponse",
|
|
@@ -2497,6 +2711,9 @@ export const QueryUnreceivedAcksResponse = {
|
|
|
2497
2711
|
};
|
|
2498
2712
|
},
|
|
2499
2713
|
registerTypeUrl() {
|
|
2714
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(QueryUnreceivedAcksResponse.typeUrl)) {
|
|
2715
|
+
return;
|
|
2716
|
+
}
|
|
2500
2717
|
Height.registerTypeUrl();
|
|
2501
2718
|
}
|
|
2502
2719
|
};
|
|
@@ -2506,6 +2723,13 @@ function createBaseQueryNextSequenceReceiveRequest() {
|
|
|
2506
2723
|
channelId: ""
|
|
2507
2724
|
};
|
|
2508
2725
|
}
|
|
2726
|
+
/**
|
|
2727
|
+
* QueryNextSequenceReceiveRequest is the request type for the
|
|
2728
|
+
* Query/QueryNextSequenceReceiveRequest RPC method
|
|
2729
|
+
* @name QueryNextSequenceReceiveRequest
|
|
2730
|
+
* @package ibc.core.channel.v1
|
|
2731
|
+
* @see proto type: ibc.core.channel.v1.QueryNextSequenceReceiveRequest
|
|
2732
|
+
*/
|
|
2509
2733
|
export const QueryNextSequenceReceiveRequest = {
|
|
2510
2734
|
typeUrl: "/ibc.core.channel.v1.QueryNextSequenceReceiveRequest",
|
|
2511
2735
|
aminoType: "cosmos-sdk/QueryNextSequenceReceiveRequest",
|
|
@@ -2596,6 +2820,13 @@ function createBaseQueryNextSequenceReceiveResponse() {
|
|
|
2596
2820
|
proofHeight: Height.fromPartial({})
|
|
2597
2821
|
};
|
|
2598
2822
|
}
|
|
2823
|
+
/**
|
|
2824
|
+
* QuerySequenceResponse is the response type for the
|
|
2825
|
+
* Query/QueryNextSequenceReceiveResponse RPC method
|
|
2826
|
+
* @name QueryNextSequenceReceiveResponse
|
|
2827
|
+
* @package ibc.core.channel.v1
|
|
2828
|
+
* @see proto type: ibc.core.channel.v1.QueryNextSequenceReceiveResponse
|
|
2829
|
+
*/
|
|
2599
2830
|
export const QueryNextSequenceReceiveResponse = {
|
|
2600
2831
|
typeUrl: "/ibc.core.channel.v1.QueryNextSequenceReceiveResponse",
|
|
2601
2832
|
aminoType: "cosmos-sdk/QueryNextSequenceReceiveResponse",
|
|
@@ -2689,6 +2920,9 @@ export const QueryNextSequenceReceiveResponse = {
|
|
|
2689
2920
|
};
|
|
2690
2921
|
},
|
|
2691
2922
|
registerTypeUrl() {
|
|
2923
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(QueryNextSequenceReceiveResponse.typeUrl)) {
|
|
2924
|
+
return;
|
|
2925
|
+
}
|
|
2692
2926
|
Height.registerTypeUrl();
|
|
2693
2927
|
}
|
|
2694
2928
|
};
|
|
@@ -2698,6 +2932,13 @@ function createBaseQueryNextSequenceSendRequest() {
|
|
|
2698
2932
|
channelId: ""
|
|
2699
2933
|
};
|
|
2700
2934
|
}
|
|
2935
|
+
/**
|
|
2936
|
+
* QueryNextSequenceSendRequest is the request type for the
|
|
2937
|
+
* Query/QueryNextSequenceSend RPC method
|
|
2938
|
+
* @name QueryNextSequenceSendRequest
|
|
2939
|
+
* @package ibc.core.channel.v1
|
|
2940
|
+
* @see proto type: ibc.core.channel.v1.QueryNextSequenceSendRequest
|
|
2941
|
+
*/
|
|
2701
2942
|
export const QueryNextSequenceSendRequest = {
|
|
2702
2943
|
typeUrl: "/ibc.core.channel.v1.QueryNextSequenceSendRequest",
|
|
2703
2944
|
aminoType: "cosmos-sdk/QueryNextSequenceSendRequest",
|
|
@@ -2788,6 +3029,13 @@ function createBaseQueryNextSequenceSendResponse() {
|
|
|
2788
3029
|
proofHeight: Height.fromPartial({})
|
|
2789
3030
|
};
|
|
2790
3031
|
}
|
|
3032
|
+
/**
|
|
3033
|
+
* QueryNextSequenceSendResponse is the request type for the
|
|
3034
|
+
* Query/QueryNextSequenceSend RPC method
|
|
3035
|
+
* @name QueryNextSequenceSendResponse
|
|
3036
|
+
* @package ibc.core.channel.v1
|
|
3037
|
+
* @see proto type: ibc.core.channel.v1.QueryNextSequenceSendResponse
|
|
3038
|
+
*/
|
|
2791
3039
|
export const QueryNextSequenceSendResponse = {
|
|
2792
3040
|
typeUrl: "/ibc.core.channel.v1.QueryNextSequenceSendResponse",
|
|
2793
3041
|
aminoType: "cosmos-sdk/QueryNextSequenceSendResponse",
|
|
@@ -2881,535 +3129,9 @@ export const QueryNextSequenceSendResponse = {
|
|
|
2881
3129
|
};
|
|
2882
3130
|
},
|
|
2883
3131
|
registerTypeUrl() {
|
|
2884
|
-
|
|
2885
|
-
|
|
2886
|
-
};
|
|
2887
|
-
function createBaseQueryUpgradeErrorRequest() {
|
|
2888
|
-
return {
|
|
2889
|
-
portId: "",
|
|
2890
|
-
channelId: ""
|
|
2891
|
-
};
|
|
2892
|
-
}
|
|
2893
|
-
export const QueryUpgradeErrorRequest = {
|
|
2894
|
-
typeUrl: "/ibc.core.channel.v1.QueryUpgradeErrorRequest",
|
|
2895
|
-
aminoType: "cosmos-sdk/QueryUpgradeErrorRequest",
|
|
2896
|
-
is(o) {
|
|
2897
|
-
return o && (o.$typeUrl === QueryUpgradeErrorRequest.typeUrl || typeof o.portId === "string" && typeof o.channelId === "string");
|
|
2898
|
-
},
|
|
2899
|
-
isAmino(o) {
|
|
2900
|
-
return o && (o.$typeUrl === QueryUpgradeErrorRequest.typeUrl || typeof o.port_id === "string" && typeof o.channel_id === "string");
|
|
2901
|
-
},
|
|
2902
|
-
encode(message, writer = BinaryWriter.create()) {
|
|
2903
|
-
if (message.portId !== "") {
|
|
2904
|
-
writer.uint32(10).string(message.portId);
|
|
3132
|
+
if (!GlobalDecoderRegistry.registerExistingTypeUrl(QueryNextSequenceSendResponse.typeUrl)) {
|
|
3133
|
+
return;
|
|
2905
3134
|
}
|
|
2906
|
-
if (message.channelId !== "") {
|
|
2907
|
-
writer.uint32(18).string(message.channelId);
|
|
2908
|
-
}
|
|
2909
|
-
return writer;
|
|
2910
|
-
},
|
|
2911
|
-
decode(input, length) {
|
|
2912
|
-
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
2913
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
2914
|
-
const message = createBaseQueryUpgradeErrorRequest();
|
|
2915
|
-
while (reader.pos < end) {
|
|
2916
|
-
const tag = reader.uint32();
|
|
2917
|
-
switch (tag >>> 3) {
|
|
2918
|
-
case 1:
|
|
2919
|
-
message.portId = reader.string();
|
|
2920
|
-
break;
|
|
2921
|
-
case 2:
|
|
2922
|
-
message.channelId = reader.string();
|
|
2923
|
-
break;
|
|
2924
|
-
default:
|
|
2925
|
-
reader.skipType(tag & 7);
|
|
2926
|
-
break;
|
|
2927
|
-
}
|
|
2928
|
-
}
|
|
2929
|
-
return message;
|
|
2930
|
-
},
|
|
2931
|
-
fromPartial(object) {
|
|
2932
|
-
const message = createBaseQueryUpgradeErrorRequest();
|
|
2933
|
-
message.portId = object.portId ?? "";
|
|
2934
|
-
message.channelId = object.channelId ?? "";
|
|
2935
|
-
return message;
|
|
2936
|
-
},
|
|
2937
|
-
fromAmino(object) {
|
|
2938
|
-
const message = createBaseQueryUpgradeErrorRequest();
|
|
2939
|
-
if (object.port_id !== undefined && object.port_id !== null) {
|
|
2940
|
-
message.portId = object.port_id;
|
|
2941
|
-
}
|
|
2942
|
-
if (object.channel_id !== undefined && object.channel_id !== null) {
|
|
2943
|
-
message.channelId = object.channel_id;
|
|
2944
|
-
}
|
|
2945
|
-
return message;
|
|
2946
|
-
},
|
|
2947
|
-
toAmino(message) {
|
|
2948
|
-
const obj = {};
|
|
2949
|
-
obj.port_id = message.portId === "" ? undefined : message.portId;
|
|
2950
|
-
obj.channel_id = message.channelId === "" ? undefined : message.channelId;
|
|
2951
|
-
return obj;
|
|
2952
|
-
},
|
|
2953
|
-
fromAminoMsg(object) {
|
|
2954
|
-
return QueryUpgradeErrorRequest.fromAmino(object.value);
|
|
2955
|
-
},
|
|
2956
|
-
toAminoMsg(message) {
|
|
2957
|
-
return {
|
|
2958
|
-
type: "cosmos-sdk/QueryUpgradeErrorRequest",
|
|
2959
|
-
value: QueryUpgradeErrorRequest.toAmino(message)
|
|
2960
|
-
};
|
|
2961
|
-
},
|
|
2962
|
-
fromProtoMsg(message) {
|
|
2963
|
-
return QueryUpgradeErrorRequest.decode(message.value);
|
|
2964
|
-
},
|
|
2965
|
-
toProto(message) {
|
|
2966
|
-
return QueryUpgradeErrorRequest.encode(message).finish();
|
|
2967
|
-
},
|
|
2968
|
-
toProtoMsg(message) {
|
|
2969
|
-
return {
|
|
2970
|
-
typeUrl: "/ibc.core.channel.v1.QueryUpgradeErrorRequest",
|
|
2971
|
-
value: QueryUpgradeErrorRequest.encode(message).finish()
|
|
2972
|
-
};
|
|
2973
|
-
},
|
|
2974
|
-
registerTypeUrl() { }
|
|
2975
|
-
};
|
|
2976
|
-
function createBaseQueryUpgradeErrorResponse() {
|
|
2977
|
-
return {
|
|
2978
|
-
errorReceipt: ErrorReceipt.fromPartial({}),
|
|
2979
|
-
proof: new Uint8Array(),
|
|
2980
|
-
proofHeight: Height.fromPartial({})
|
|
2981
|
-
};
|
|
2982
|
-
}
|
|
2983
|
-
export const QueryUpgradeErrorResponse = {
|
|
2984
|
-
typeUrl: "/ibc.core.channel.v1.QueryUpgradeErrorResponse",
|
|
2985
|
-
aminoType: "cosmos-sdk/QueryUpgradeErrorResponse",
|
|
2986
|
-
is(o) {
|
|
2987
|
-
return o && (o.$typeUrl === QueryUpgradeErrorResponse.typeUrl || ErrorReceipt.is(o.errorReceipt) && (o.proof instanceof Uint8Array || typeof o.proof === "string") && Height.is(o.proofHeight));
|
|
2988
|
-
},
|
|
2989
|
-
isAmino(o) {
|
|
2990
|
-
return o && (o.$typeUrl === QueryUpgradeErrorResponse.typeUrl || ErrorReceipt.isAmino(o.error_receipt) && (o.proof instanceof Uint8Array || typeof o.proof === "string") && Height.isAmino(o.proof_height));
|
|
2991
|
-
},
|
|
2992
|
-
encode(message, writer = BinaryWriter.create()) {
|
|
2993
|
-
if (message.errorReceipt !== undefined) {
|
|
2994
|
-
ErrorReceipt.encode(message.errorReceipt, writer.uint32(10).fork()).ldelim();
|
|
2995
|
-
}
|
|
2996
|
-
if (message.proof.length !== 0) {
|
|
2997
|
-
writer.uint32(18).bytes(message.proof);
|
|
2998
|
-
}
|
|
2999
|
-
if (message.proofHeight !== undefined) {
|
|
3000
|
-
Height.encode(message.proofHeight, writer.uint32(26).fork()).ldelim();
|
|
3001
|
-
}
|
|
3002
|
-
return writer;
|
|
3003
|
-
},
|
|
3004
|
-
decode(input, length) {
|
|
3005
|
-
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
3006
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
3007
|
-
const message = createBaseQueryUpgradeErrorResponse();
|
|
3008
|
-
while (reader.pos < end) {
|
|
3009
|
-
const tag = reader.uint32();
|
|
3010
|
-
switch (tag >>> 3) {
|
|
3011
|
-
case 1:
|
|
3012
|
-
message.errorReceipt = ErrorReceipt.decode(reader, reader.uint32());
|
|
3013
|
-
break;
|
|
3014
|
-
case 2:
|
|
3015
|
-
message.proof = reader.bytes();
|
|
3016
|
-
break;
|
|
3017
|
-
case 3:
|
|
3018
|
-
message.proofHeight = Height.decode(reader, reader.uint32());
|
|
3019
|
-
break;
|
|
3020
|
-
default:
|
|
3021
|
-
reader.skipType(tag & 7);
|
|
3022
|
-
break;
|
|
3023
|
-
}
|
|
3024
|
-
}
|
|
3025
|
-
return message;
|
|
3026
|
-
},
|
|
3027
|
-
fromPartial(object) {
|
|
3028
|
-
const message = createBaseQueryUpgradeErrorResponse();
|
|
3029
|
-
message.errorReceipt = object.errorReceipt !== undefined && object.errorReceipt !== null ? ErrorReceipt.fromPartial(object.errorReceipt) : undefined;
|
|
3030
|
-
message.proof = object.proof ?? new Uint8Array();
|
|
3031
|
-
message.proofHeight = object.proofHeight !== undefined && object.proofHeight !== null ? Height.fromPartial(object.proofHeight) : undefined;
|
|
3032
|
-
return message;
|
|
3033
|
-
},
|
|
3034
|
-
fromAmino(object) {
|
|
3035
|
-
const message = createBaseQueryUpgradeErrorResponse();
|
|
3036
|
-
if (object.error_receipt !== undefined && object.error_receipt !== null) {
|
|
3037
|
-
message.errorReceipt = ErrorReceipt.fromAmino(object.error_receipt);
|
|
3038
|
-
}
|
|
3039
|
-
if (object.proof !== undefined && object.proof !== null) {
|
|
3040
|
-
message.proof = bytesFromBase64(object.proof);
|
|
3041
|
-
}
|
|
3042
|
-
if (object.proof_height !== undefined && object.proof_height !== null) {
|
|
3043
|
-
message.proofHeight = Height.fromAmino(object.proof_height);
|
|
3044
|
-
}
|
|
3045
|
-
return message;
|
|
3046
|
-
},
|
|
3047
|
-
toAmino(message) {
|
|
3048
|
-
const obj = {};
|
|
3049
|
-
obj.error_receipt = message.errorReceipt ? ErrorReceipt.toAmino(message.errorReceipt) : undefined;
|
|
3050
|
-
obj.proof = message.proof ? base64FromBytes(message.proof) : undefined;
|
|
3051
|
-
obj.proof_height = message.proofHeight ? Height.toAmino(message.proofHeight) : {};
|
|
3052
|
-
return obj;
|
|
3053
|
-
},
|
|
3054
|
-
fromAminoMsg(object) {
|
|
3055
|
-
return QueryUpgradeErrorResponse.fromAmino(object.value);
|
|
3056
|
-
},
|
|
3057
|
-
toAminoMsg(message) {
|
|
3058
|
-
return {
|
|
3059
|
-
type: "cosmos-sdk/QueryUpgradeErrorResponse",
|
|
3060
|
-
value: QueryUpgradeErrorResponse.toAmino(message)
|
|
3061
|
-
};
|
|
3062
|
-
},
|
|
3063
|
-
fromProtoMsg(message) {
|
|
3064
|
-
return QueryUpgradeErrorResponse.decode(message.value);
|
|
3065
|
-
},
|
|
3066
|
-
toProto(message) {
|
|
3067
|
-
return QueryUpgradeErrorResponse.encode(message).finish();
|
|
3068
|
-
},
|
|
3069
|
-
toProtoMsg(message) {
|
|
3070
|
-
return {
|
|
3071
|
-
typeUrl: "/ibc.core.channel.v1.QueryUpgradeErrorResponse",
|
|
3072
|
-
value: QueryUpgradeErrorResponse.encode(message).finish()
|
|
3073
|
-
};
|
|
3074
|
-
},
|
|
3075
|
-
registerTypeUrl() {
|
|
3076
|
-
ErrorReceipt.registerTypeUrl();
|
|
3077
3135
|
Height.registerTypeUrl();
|
|
3078
3136
|
}
|
|
3079
3137
|
};
|
|
3080
|
-
function createBaseQueryUpgradeRequest() {
|
|
3081
|
-
return {
|
|
3082
|
-
portId: "",
|
|
3083
|
-
channelId: ""
|
|
3084
|
-
};
|
|
3085
|
-
}
|
|
3086
|
-
export const QueryUpgradeRequest = {
|
|
3087
|
-
typeUrl: "/ibc.core.channel.v1.QueryUpgradeRequest",
|
|
3088
|
-
aminoType: "cosmos-sdk/QueryUpgradeRequest",
|
|
3089
|
-
is(o) {
|
|
3090
|
-
return o && (o.$typeUrl === QueryUpgradeRequest.typeUrl || typeof o.portId === "string" && typeof o.channelId === "string");
|
|
3091
|
-
},
|
|
3092
|
-
isAmino(o) {
|
|
3093
|
-
return o && (o.$typeUrl === QueryUpgradeRequest.typeUrl || typeof o.port_id === "string" && typeof o.channel_id === "string");
|
|
3094
|
-
},
|
|
3095
|
-
encode(message, writer = BinaryWriter.create()) {
|
|
3096
|
-
if (message.portId !== "") {
|
|
3097
|
-
writer.uint32(10).string(message.portId);
|
|
3098
|
-
}
|
|
3099
|
-
if (message.channelId !== "") {
|
|
3100
|
-
writer.uint32(18).string(message.channelId);
|
|
3101
|
-
}
|
|
3102
|
-
return writer;
|
|
3103
|
-
},
|
|
3104
|
-
decode(input, length) {
|
|
3105
|
-
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
3106
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
3107
|
-
const message = createBaseQueryUpgradeRequest();
|
|
3108
|
-
while (reader.pos < end) {
|
|
3109
|
-
const tag = reader.uint32();
|
|
3110
|
-
switch (tag >>> 3) {
|
|
3111
|
-
case 1:
|
|
3112
|
-
message.portId = reader.string();
|
|
3113
|
-
break;
|
|
3114
|
-
case 2:
|
|
3115
|
-
message.channelId = reader.string();
|
|
3116
|
-
break;
|
|
3117
|
-
default:
|
|
3118
|
-
reader.skipType(tag & 7);
|
|
3119
|
-
break;
|
|
3120
|
-
}
|
|
3121
|
-
}
|
|
3122
|
-
return message;
|
|
3123
|
-
},
|
|
3124
|
-
fromPartial(object) {
|
|
3125
|
-
const message = createBaseQueryUpgradeRequest();
|
|
3126
|
-
message.portId = object.portId ?? "";
|
|
3127
|
-
message.channelId = object.channelId ?? "";
|
|
3128
|
-
return message;
|
|
3129
|
-
},
|
|
3130
|
-
fromAmino(object) {
|
|
3131
|
-
const message = createBaseQueryUpgradeRequest();
|
|
3132
|
-
if (object.port_id !== undefined && object.port_id !== null) {
|
|
3133
|
-
message.portId = object.port_id;
|
|
3134
|
-
}
|
|
3135
|
-
if (object.channel_id !== undefined && object.channel_id !== null) {
|
|
3136
|
-
message.channelId = object.channel_id;
|
|
3137
|
-
}
|
|
3138
|
-
return message;
|
|
3139
|
-
},
|
|
3140
|
-
toAmino(message) {
|
|
3141
|
-
const obj = {};
|
|
3142
|
-
obj.port_id = message.portId === "" ? undefined : message.portId;
|
|
3143
|
-
obj.channel_id = message.channelId === "" ? undefined : message.channelId;
|
|
3144
|
-
return obj;
|
|
3145
|
-
},
|
|
3146
|
-
fromAminoMsg(object) {
|
|
3147
|
-
return QueryUpgradeRequest.fromAmino(object.value);
|
|
3148
|
-
},
|
|
3149
|
-
toAminoMsg(message) {
|
|
3150
|
-
return {
|
|
3151
|
-
type: "cosmos-sdk/QueryUpgradeRequest",
|
|
3152
|
-
value: QueryUpgradeRequest.toAmino(message)
|
|
3153
|
-
};
|
|
3154
|
-
},
|
|
3155
|
-
fromProtoMsg(message) {
|
|
3156
|
-
return QueryUpgradeRequest.decode(message.value);
|
|
3157
|
-
},
|
|
3158
|
-
toProto(message) {
|
|
3159
|
-
return QueryUpgradeRequest.encode(message).finish();
|
|
3160
|
-
},
|
|
3161
|
-
toProtoMsg(message) {
|
|
3162
|
-
return {
|
|
3163
|
-
typeUrl: "/ibc.core.channel.v1.QueryUpgradeRequest",
|
|
3164
|
-
value: QueryUpgradeRequest.encode(message).finish()
|
|
3165
|
-
};
|
|
3166
|
-
},
|
|
3167
|
-
registerTypeUrl() { }
|
|
3168
|
-
};
|
|
3169
|
-
function createBaseQueryUpgradeResponse() {
|
|
3170
|
-
return {
|
|
3171
|
-
upgrade: Upgrade.fromPartial({}),
|
|
3172
|
-
proof: new Uint8Array(),
|
|
3173
|
-
proofHeight: Height.fromPartial({})
|
|
3174
|
-
};
|
|
3175
|
-
}
|
|
3176
|
-
export const QueryUpgradeResponse = {
|
|
3177
|
-
typeUrl: "/ibc.core.channel.v1.QueryUpgradeResponse",
|
|
3178
|
-
aminoType: "cosmos-sdk/QueryUpgradeResponse",
|
|
3179
|
-
is(o) {
|
|
3180
|
-
return o && (o.$typeUrl === QueryUpgradeResponse.typeUrl || Upgrade.is(o.upgrade) && (o.proof instanceof Uint8Array || typeof o.proof === "string") && Height.is(o.proofHeight));
|
|
3181
|
-
},
|
|
3182
|
-
isAmino(o) {
|
|
3183
|
-
return o && (o.$typeUrl === QueryUpgradeResponse.typeUrl || Upgrade.isAmino(o.upgrade) && (o.proof instanceof Uint8Array || typeof o.proof === "string") && Height.isAmino(o.proof_height));
|
|
3184
|
-
},
|
|
3185
|
-
encode(message, writer = BinaryWriter.create()) {
|
|
3186
|
-
if (message.upgrade !== undefined) {
|
|
3187
|
-
Upgrade.encode(message.upgrade, writer.uint32(10).fork()).ldelim();
|
|
3188
|
-
}
|
|
3189
|
-
if (message.proof.length !== 0) {
|
|
3190
|
-
writer.uint32(18).bytes(message.proof);
|
|
3191
|
-
}
|
|
3192
|
-
if (message.proofHeight !== undefined) {
|
|
3193
|
-
Height.encode(message.proofHeight, writer.uint32(26).fork()).ldelim();
|
|
3194
|
-
}
|
|
3195
|
-
return writer;
|
|
3196
|
-
},
|
|
3197
|
-
decode(input, length) {
|
|
3198
|
-
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
3199
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
3200
|
-
const message = createBaseQueryUpgradeResponse();
|
|
3201
|
-
while (reader.pos < end) {
|
|
3202
|
-
const tag = reader.uint32();
|
|
3203
|
-
switch (tag >>> 3) {
|
|
3204
|
-
case 1:
|
|
3205
|
-
message.upgrade = Upgrade.decode(reader, reader.uint32());
|
|
3206
|
-
break;
|
|
3207
|
-
case 2:
|
|
3208
|
-
message.proof = reader.bytes();
|
|
3209
|
-
break;
|
|
3210
|
-
case 3:
|
|
3211
|
-
message.proofHeight = Height.decode(reader, reader.uint32());
|
|
3212
|
-
break;
|
|
3213
|
-
default:
|
|
3214
|
-
reader.skipType(tag & 7);
|
|
3215
|
-
break;
|
|
3216
|
-
}
|
|
3217
|
-
}
|
|
3218
|
-
return message;
|
|
3219
|
-
},
|
|
3220
|
-
fromPartial(object) {
|
|
3221
|
-
const message = createBaseQueryUpgradeResponse();
|
|
3222
|
-
message.upgrade = object.upgrade !== undefined && object.upgrade !== null ? Upgrade.fromPartial(object.upgrade) : undefined;
|
|
3223
|
-
message.proof = object.proof ?? new Uint8Array();
|
|
3224
|
-
message.proofHeight = object.proofHeight !== undefined && object.proofHeight !== null ? Height.fromPartial(object.proofHeight) : undefined;
|
|
3225
|
-
return message;
|
|
3226
|
-
},
|
|
3227
|
-
fromAmino(object) {
|
|
3228
|
-
const message = createBaseQueryUpgradeResponse();
|
|
3229
|
-
if (object.upgrade !== undefined && object.upgrade !== null) {
|
|
3230
|
-
message.upgrade = Upgrade.fromAmino(object.upgrade);
|
|
3231
|
-
}
|
|
3232
|
-
if (object.proof !== undefined && object.proof !== null) {
|
|
3233
|
-
message.proof = bytesFromBase64(object.proof);
|
|
3234
|
-
}
|
|
3235
|
-
if (object.proof_height !== undefined && object.proof_height !== null) {
|
|
3236
|
-
message.proofHeight = Height.fromAmino(object.proof_height);
|
|
3237
|
-
}
|
|
3238
|
-
return message;
|
|
3239
|
-
},
|
|
3240
|
-
toAmino(message) {
|
|
3241
|
-
const obj = {};
|
|
3242
|
-
obj.upgrade = message.upgrade ? Upgrade.toAmino(message.upgrade) : undefined;
|
|
3243
|
-
obj.proof = message.proof ? base64FromBytes(message.proof) : undefined;
|
|
3244
|
-
obj.proof_height = message.proofHeight ? Height.toAmino(message.proofHeight) : {};
|
|
3245
|
-
return obj;
|
|
3246
|
-
},
|
|
3247
|
-
fromAminoMsg(object) {
|
|
3248
|
-
return QueryUpgradeResponse.fromAmino(object.value);
|
|
3249
|
-
},
|
|
3250
|
-
toAminoMsg(message) {
|
|
3251
|
-
return {
|
|
3252
|
-
type: "cosmos-sdk/QueryUpgradeResponse",
|
|
3253
|
-
value: QueryUpgradeResponse.toAmino(message)
|
|
3254
|
-
};
|
|
3255
|
-
},
|
|
3256
|
-
fromProtoMsg(message) {
|
|
3257
|
-
return QueryUpgradeResponse.decode(message.value);
|
|
3258
|
-
},
|
|
3259
|
-
toProto(message) {
|
|
3260
|
-
return QueryUpgradeResponse.encode(message).finish();
|
|
3261
|
-
},
|
|
3262
|
-
toProtoMsg(message) {
|
|
3263
|
-
return {
|
|
3264
|
-
typeUrl: "/ibc.core.channel.v1.QueryUpgradeResponse",
|
|
3265
|
-
value: QueryUpgradeResponse.encode(message).finish()
|
|
3266
|
-
};
|
|
3267
|
-
},
|
|
3268
|
-
registerTypeUrl() {
|
|
3269
|
-
Upgrade.registerTypeUrl();
|
|
3270
|
-
Height.registerTypeUrl();
|
|
3271
|
-
}
|
|
3272
|
-
};
|
|
3273
|
-
function createBaseQueryChannelParamsRequest() {
|
|
3274
|
-
return {};
|
|
3275
|
-
}
|
|
3276
|
-
export const QueryChannelParamsRequest = {
|
|
3277
|
-
typeUrl: "/ibc.core.channel.v1.QueryChannelParamsRequest",
|
|
3278
|
-
aminoType: "cosmos-sdk/QueryChannelParamsRequest",
|
|
3279
|
-
is(o) {
|
|
3280
|
-
return o && o.$typeUrl === QueryChannelParamsRequest.typeUrl;
|
|
3281
|
-
},
|
|
3282
|
-
isAmino(o) {
|
|
3283
|
-
return o && o.$typeUrl === QueryChannelParamsRequest.typeUrl;
|
|
3284
|
-
},
|
|
3285
|
-
encode(_, writer = BinaryWriter.create()) {
|
|
3286
|
-
return writer;
|
|
3287
|
-
},
|
|
3288
|
-
decode(input, length) {
|
|
3289
|
-
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
3290
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
3291
|
-
const message = createBaseQueryChannelParamsRequest();
|
|
3292
|
-
while (reader.pos < end) {
|
|
3293
|
-
const tag = reader.uint32();
|
|
3294
|
-
switch (tag >>> 3) {
|
|
3295
|
-
default:
|
|
3296
|
-
reader.skipType(tag & 7);
|
|
3297
|
-
break;
|
|
3298
|
-
}
|
|
3299
|
-
}
|
|
3300
|
-
return message;
|
|
3301
|
-
},
|
|
3302
|
-
fromPartial(_) {
|
|
3303
|
-
const message = createBaseQueryChannelParamsRequest();
|
|
3304
|
-
return message;
|
|
3305
|
-
},
|
|
3306
|
-
fromAmino(_) {
|
|
3307
|
-
const message = createBaseQueryChannelParamsRequest();
|
|
3308
|
-
return message;
|
|
3309
|
-
},
|
|
3310
|
-
toAmino(_) {
|
|
3311
|
-
const obj = {};
|
|
3312
|
-
return obj;
|
|
3313
|
-
},
|
|
3314
|
-
fromAminoMsg(object) {
|
|
3315
|
-
return QueryChannelParamsRequest.fromAmino(object.value);
|
|
3316
|
-
},
|
|
3317
|
-
toAminoMsg(message) {
|
|
3318
|
-
return {
|
|
3319
|
-
type: "cosmos-sdk/QueryChannelParamsRequest",
|
|
3320
|
-
value: QueryChannelParamsRequest.toAmino(message)
|
|
3321
|
-
};
|
|
3322
|
-
},
|
|
3323
|
-
fromProtoMsg(message) {
|
|
3324
|
-
return QueryChannelParamsRequest.decode(message.value);
|
|
3325
|
-
},
|
|
3326
|
-
toProto(message) {
|
|
3327
|
-
return QueryChannelParamsRequest.encode(message).finish();
|
|
3328
|
-
},
|
|
3329
|
-
toProtoMsg(message) {
|
|
3330
|
-
return {
|
|
3331
|
-
typeUrl: "/ibc.core.channel.v1.QueryChannelParamsRequest",
|
|
3332
|
-
value: QueryChannelParamsRequest.encode(message).finish()
|
|
3333
|
-
};
|
|
3334
|
-
},
|
|
3335
|
-
registerTypeUrl() { }
|
|
3336
|
-
};
|
|
3337
|
-
function createBaseQueryChannelParamsResponse() {
|
|
3338
|
-
return {
|
|
3339
|
-
params: undefined
|
|
3340
|
-
};
|
|
3341
|
-
}
|
|
3342
|
-
export const QueryChannelParamsResponse = {
|
|
3343
|
-
typeUrl: "/ibc.core.channel.v1.QueryChannelParamsResponse",
|
|
3344
|
-
aminoType: "cosmos-sdk/QueryChannelParamsResponse",
|
|
3345
|
-
is(o) {
|
|
3346
|
-
return o && o.$typeUrl === QueryChannelParamsResponse.typeUrl;
|
|
3347
|
-
},
|
|
3348
|
-
isAmino(o) {
|
|
3349
|
-
return o && o.$typeUrl === QueryChannelParamsResponse.typeUrl;
|
|
3350
|
-
},
|
|
3351
|
-
encode(message, writer = BinaryWriter.create()) {
|
|
3352
|
-
if (message.params !== undefined) {
|
|
3353
|
-
Params.encode(message.params, writer.uint32(10).fork()).ldelim();
|
|
3354
|
-
}
|
|
3355
|
-
return writer;
|
|
3356
|
-
},
|
|
3357
|
-
decode(input, length) {
|
|
3358
|
-
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
3359
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
3360
|
-
const message = createBaseQueryChannelParamsResponse();
|
|
3361
|
-
while (reader.pos < end) {
|
|
3362
|
-
const tag = reader.uint32();
|
|
3363
|
-
switch (tag >>> 3) {
|
|
3364
|
-
case 1:
|
|
3365
|
-
message.params = Params.decode(reader, reader.uint32());
|
|
3366
|
-
break;
|
|
3367
|
-
default:
|
|
3368
|
-
reader.skipType(tag & 7);
|
|
3369
|
-
break;
|
|
3370
|
-
}
|
|
3371
|
-
}
|
|
3372
|
-
return message;
|
|
3373
|
-
},
|
|
3374
|
-
fromPartial(object) {
|
|
3375
|
-
const message = createBaseQueryChannelParamsResponse();
|
|
3376
|
-
message.params = object.params !== undefined && object.params !== null ? Params.fromPartial(object.params) : undefined;
|
|
3377
|
-
return message;
|
|
3378
|
-
},
|
|
3379
|
-
fromAmino(object) {
|
|
3380
|
-
const message = createBaseQueryChannelParamsResponse();
|
|
3381
|
-
if (object.params !== undefined && object.params !== null) {
|
|
3382
|
-
message.params = Params.fromAmino(object.params);
|
|
3383
|
-
}
|
|
3384
|
-
return message;
|
|
3385
|
-
},
|
|
3386
|
-
toAmino(message) {
|
|
3387
|
-
const obj = {};
|
|
3388
|
-
obj.params = message.params ? Params.toAmino(message.params) : undefined;
|
|
3389
|
-
return obj;
|
|
3390
|
-
},
|
|
3391
|
-
fromAminoMsg(object) {
|
|
3392
|
-
return QueryChannelParamsResponse.fromAmino(object.value);
|
|
3393
|
-
},
|
|
3394
|
-
toAminoMsg(message) {
|
|
3395
|
-
return {
|
|
3396
|
-
type: "cosmos-sdk/QueryChannelParamsResponse",
|
|
3397
|
-
value: QueryChannelParamsResponse.toAmino(message)
|
|
3398
|
-
};
|
|
3399
|
-
},
|
|
3400
|
-
fromProtoMsg(message) {
|
|
3401
|
-
return QueryChannelParamsResponse.decode(message.value);
|
|
3402
|
-
},
|
|
3403
|
-
toProto(message) {
|
|
3404
|
-
return QueryChannelParamsResponse.encode(message).finish();
|
|
3405
|
-
},
|
|
3406
|
-
toProtoMsg(message) {
|
|
3407
|
-
return {
|
|
3408
|
-
typeUrl: "/ibc.core.channel.v1.QueryChannelParamsResponse",
|
|
3409
|
-
value: QueryChannelParamsResponse.encode(message).finish()
|
|
3410
|
-
};
|
|
3411
|
-
},
|
|
3412
|
-
registerTypeUrl() {
|
|
3413
|
-
Params.registerTypeUrl();
|
|
3414
|
-
}
|
|
3415
|
-
};
|