@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
|
@@ -51,20 +51,23 @@ export declare function broadcastModeToJSON(object: BroadcastMode): string;
|
|
|
51
51
|
/**
|
|
52
52
|
* GetTxsEventRequest is the request type for the Service.TxsByEvents
|
|
53
53
|
* RPC method.
|
|
54
|
+
* @name GetTxsEventRequest
|
|
55
|
+
* @package cosmos.tx.v1beta1
|
|
56
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxsEventRequest
|
|
54
57
|
*/
|
|
55
58
|
export interface GetTxsEventRequest {
|
|
56
59
|
/**
|
|
57
60
|
* events is the list of transaction event type.
|
|
58
61
|
* Deprecated post v0.47.x: use query instead, which should contain a valid
|
|
59
62
|
* events query.
|
|
63
|
+
* @deprecated
|
|
60
64
|
*/
|
|
61
|
-
/** @deprecated */
|
|
62
65
|
events: string[];
|
|
63
66
|
/**
|
|
64
67
|
* pagination defines a pagination for the request.
|
|
65
68
|
* Deprecated post v0.46.x: use page and limit instead.
|
|
69
|
+
* @deprecated
|
|
66
70
|
*/
|
|
67
|
-
/** @deprecated */
|
|
68
71
|
pagination?: PageRequest;
|
|
69
72
|
orderBy: OrderBy;
|
|
70
73
|
/**
|
|
@@ -92,20 +95,23 @@ export interface GetTxsEventRequestProtoMsg {
|
|
|
92
95
|
/**
|
|
93
96
|
* GetTxsEventRequest is the request type for the Service.TxsByEvents
|
|
94
97
|
* RPC method.
|
|
98
|
+
* @name GetTxsEventRequestAmino
|
|
99
|
+
* @package cosmos.tx.v1beta1
|
|
100
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxsEventRequest
|
|
95
101
|
*/
|
|
96
102
|
export interface GetTxsEventRequestAmino {
|
|
97
103
|
/**
|
|
98
104
|
* events is the list of transaction event type.
|
|
99
105
|
* Deprecated post v0.47.x: use query instead, which should contain a valid
|
|
100
106
|
* events query.
|
|
107
|
+
* @deprecated
|
|
101
108
|
*/
|
|
102
|
-
/** @deprecated */
|
|
103
109
|
events: string[];
|
|
104
110
|
/**
|
|
105
111
|
* pagination defines a pagination for the request.
|
|
106
112
|
* Deprecated post v0.46.x: use page and limit instead.
|
|
113
|
+
* @deprecated
|
|
107
114
|
*/
|
|
108
|
-
/** @deprecated */
|
|
109
115
|
pagination?: PageRequestAmino;
|
|
110
116
|
order_by: OrderBy;
|
|
111
117
|
/**
|
|
@@ -133,19 +139,28 @@ export interface GetTxsEventRequestAminoMsg {
|
|
|
133
139
|
/**
|
|
134
140
|
* GetTxsEventResponse is the response type for the Service.TxsByEvents
|
|
135
141
|
* RPC method.
|
|
142
|
+
* @name GetTxsEventResponse
|
|
143
|
+
* @package cosmos.tx.v1beta1
|
|
144
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxsEventResponse
|
|
136
145
|
*/
|
|
137
146
|
export interface GetTxsEventResponse {
|
|
138
|
-
/**
|
|
147
|
+
/**
|
|
148
|
+
* txs is the list of queried transactions.
|
|
149
|
+
*/
|
|
139
150
|
txs: Tx[];
|
|
140
|
-
/**
|
|
151
|
+
/**
|
|
152
|
+
* tx_responses is the list of queried TxResponses.
|
|
153
|
+
*/
|
|
141
154
|
txResponses: TxResponse[];
|
|
142
155
|
/**
|
|
143
156
|
* pagination defines a pagination for the response.
|
|
144
157
|
* Deprecated post v0.46.x: use total instead.
|
|
158
|
+
* @deprecated
|
|
145
159
|
*/
|
|
146
|
-
/** @deprecated */
|
|
147
160
|
pagination?: PageResponse;
|
|
148
|
-
/**
|
|
161
|
+
/**
|
|
162
|
+
* total is total number of results available
|
|
163
|
+
*/
|
|
149
164
|
total: bigint;
|
|
150
165
|
}
|
|
151
166
|
export interface GetTxsEventResponseProtoMsg {
|
|
@@ -155,19 +170,28 @@ export interface GetTxsEventResponseProtoMsg {
|
|
|
155
170
|
/**
|
|
156
171
|
* GetTxsEventResponse is the response type for the Service.TxsByEvents
|
|
157
172
|
* RPC method.
|
|
173
|
+
* @name GetTxsEventResponseAmino
|
|
174
|
+
* @package cosmos.tx.v1beta1
|
|
175
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxsEventResponse
|
|
158
176
|
*/
|
|
159
177
|
export interface GetTxsEventResponseAmino {
|
|
160
|
-
/**
|
|
178
|
+
/**
|
|
179
|
+
* txs is the list of queried transactions.
|
|
180
|
+
*/
|
|
161
181
|
txs: TxAmino[];
|
|
162
|
-
/**
|
|
182
|
+
/**
|
|
183
|
+
* tx_responses is the list of queried TxResponses.
|
|
184
|
+
*/
|
|
163
185
|
tx_responses: TxResponseAmino[];
|
|
164
186
|
/**
|
|
165
187
|
* pagination defines a pagination for the response.
|
|
166
188
|
* Deprecated post v0.46.x: use total instead.
|
|
189
|
+
* @deprecated
|
|
167
190
|
*/
|
|
168
|
-
/** @deprecated */
|
|
169
191
|
pagination?: PageResponseAmino;
|
|
170
|
-
/**
|
|
192
|
+
/**
|
|
193
|
+
* total is total number of results available
|
|
194
|
+
*/
|
|
171
195
|
total: string;
|
|
172
196
|
}
|
|
173
197
|
export interface GetTxsEventResponseAminoMsg {
|
|
@@ -177,9 +201,14 @@ export interface GetTxsEventResponseAminoMsg {
|
|
|
177
201
|
/**
|
|
178
202
|
* BroadcastTxRequest is the request type for the Service.BroadcastTxRequest
|
|
179
203
|
* RPC method.
|
|
204
|
+
* @name BroadcastTxRequest
|
|
205
|
+
* @package cosmos.tx.v1beta1
|
|
206
|
+
* @see proto type: cosmos.tx.v1beta1.BroadcastTxRequest
|
|
180
207
|
*/
|
|
181
208
|
export interface BroadcastTxRequest {
|
|
182
|
-
/**
|
|
209
|
+
/**
|
|
210
|
+
* tx_bytes is the raw transaction.
|
|
211
|
+
*/
|
|
183
212
|
txBytes: Uint8Array;
|
|
184
213
|
mode: BroadcastMode;
|
|
185
214
|
}
|
|
@@ -190,9 +219,14 @@ export interface BroadcastTxRequestProtoMsg {
|
|
|
190
219
|
/**
|
|
191
220
|
* BroadcastTxRequest is the request type for the Service.BroadcastTxRequest
|
|
192
221
|
* RPC method.
|
|
222
|
+
* @name BroadcastTxRequestAmino
|
|
223
|
+
* @package cosmos.tx.v1beta1
|
|
224
|
+
* @see proto type: cosmos.tx.v1beta1.BroadcastTxRequest
|
|
193
225
|
*/
|
|
194
226
|
export interface BroadcastTxRequestAmino {
|
|
195
|
-
/**
|
|
227
|
+
/**
|
|
228
|
+
* tx_bytes is the raw transaction.
|
|
229
|
+
*/
|
|
196
230
|
tx_bytes: string;
|
|
197
231
|
mode: BroadcastMode;
|
|
198
232
|
}
|
|
@@ -203,9 +237,14 @@ export interface BroadcastTxRequestAminoMsg {
|
|
|
203
237
|
/**
|
|
204
238
|
* BroadcastTxResponse is the response type for the
|
|
205
239
|
* Service.BroadcastTx method.
|
|
240
|
+
* @name BroadcastTxResponse
|
|
241
|
+
* @package cosmos.tx.v1beta1
|
|
242
|
+
* @see proto type: cosmos.tx.v1beta1.BroadcastTxResponse
|
|
206
243
|
*/
|
|
207
244
|
export interface BroadcastTxResponse {
|
|
208
|
-
/**
|
|
245
|
+
/**
|
|
246
|
+
* tx_response is the queried TxResponses.
|
|
247
|
+
*/
|
|
209
248
|
txResponse?: TxResponse;
|
|
210
249
|
}
|
|
211
250
|
export interface BroadcastTxResponseProtoMsg {
|
|
@@ -215,9 +254,14 @@ export interface BroadcastTxResponseProtoMsg {
|
|
|
215
254
|
/**
|
|
216
255
|
* BroadcastTxResponse is the response type for the
|
|
217
256
|
* Service.BroadcastTx method.
|
|
257
|
+
* @name BroadcastTxResponseAmino
|
|
258
|
+
* @package cosmos.tx.v1beta1
|
|
259
|
+
* @see proto type: cosmos.tx.v1beta1.BroadcastTxResponse
|
|
218
260
|
*/
|
|
219
261
|
export interface BroadcastTxResponseAmino {
|
|
220
|
-
/**
|
|
262
|
+
/**
|
|
263
|
+
* tx_response is the queried TxResponses.
|
|
264
|
+
*/
|
|
221
265
|
tx_response?: TxResponseAmino;
|
|
222
266
|
}
|
|
223
267
|
export interface BroadcastTxResponseAminoMsg {
|
|
@@ -227,13 +271,16 @@ export interface BroadcastTxResponseAminoMsg {
|
|
|
227
271
|
/**
|
|
228
272
|
* SimulateRequest is the request type for the Service.Simulate
|
|
229
273
|
* RPC method.
|
|
274
|
+
* @name SimulateRequest
|
|
275
|
+
* @package cosmos.tx.v1beta1
|
|
276
|
+
* @see proto type: cosmos.tx.v1beta1.SimulateRequest
|
|
230
277
|
*/
|
|
231
278
|
export interface SimulateRequest {
|
|
232
279
|
/**
|
|
233
280
|
* tx is the transaction to simulate.
|
|
234
281
|
* Deprecated. Send raw tx bytes instead.
|
|
282
|
+
* @deprecated
|
|
235
283
|
*/
|
|
236
|
-
/** @deprecated */
|
|
237
284
|
tx?: Tx;
|
|
238
285
|
/**
|
|
239
286
|
* tx_bytes is the raw transaction.
|
|
@@ -249,13 +296,16 @@ export interface SimulateRequestProtoMsg {
|
|
|
249
296
|
/**
|
|
250
297
|
* SimulateRequest is the request type for the Service.Simulate
|
|
251
298
|
* RPC method.
|
|
299
|
+
* @name SimulateRequestAmino
|
|
300
|
+
* @package cosmos.tx.v1beta1
|
|
301
|
+
* @see proto type: cosmos.tx.v1beta1.SimulateRequest
|
|
252
302
|
*/
|
|
253
303
|
export interface SimulateRequestAmino {
|
|
254
304
|
/**
|
|
255
305
|
* tx is the transaction to simulate.
|
|
256
306
|
* Deprecated. Send raw tx bytes instead.
|
|
307
|
+
* @deprecated
|
|
257
308
|
*/
|
|
258
|
-
/** @deprecated */
|
|
259
309
|
tx?: TxAmino;
|
|
260
310
|
/**
|
|
261
311
|
* tx_bytes is the raw transaction.
|
|
@@ -271,11 +321,18 @@ export interface SimulateRequestAminoMsg {
|
|
|
271
321
|
/**
|
|
272
322
|
* SimulateResponse is the response type for the
|
|
273
323
|
* Service.SimulateRPC method.
|
|
324
|
+
* @name SimulateResponse
|
|
325
|
+
* @package cosmos.tx.v1beta1
|
|
326
|
+
* @see proto type: cosmos.tx.v1beta1.SimulateResponse
|
|
274
327
|
*/
|
|
275
328
|
export interface SimulateResponse {
|
|
276
|
-
/**
|
|
329
|
+
/**
|
|
330
|
+
* gas_info is the information about gas used in the simulation.
|
|
331
|
+
*/
|
|
277
332
|
gasInfo?: GasInfo;
|
|
278
|
-
/**
|
|
333
|
+
/**
|
|
334
|
+
* result is the result of the simulation.
|
|
335
|
+
*/
|
|
279
336
|
result?: Result;
|
|
280
337
|
}
|
|
281
338
|
export interface SimulateResponseProtoMsg {
|
|
@@ -285,11 +342,18 @@ export interface SimulateResponseProtoMsg {
|
|
|
285
342
|
/**
|
|
286
343
|
* SimulateResponse is the response type for the
|
|
287
344
|
* Service.SimulateRPC method.
|
|
345
|
+
* @name SimulateResponseAmino
|
|
346
|
+
* @package cosmos.tx.v1beta1
|
|
347
|
+
* @see proto type: cosmos.tx.v1beta1.SimulateResponse
|
|
288
348
|
*/
|
|
289
349
|
export interface SimulateResponseAmino {
|
|
290
|
-
/**
|
|
350
|
+
/**
|
|
351
|
+
* gas_info is the information about gas used in the simulation.
|
|
352
|
+
*/
|
|
291
353
|
gas_info?: GasInfoAmino;
|
|
292
|
-
/**
|
|
354
|
+
/**
|
|
355
|
+
* result is the result of the simulation.
|
|
356
|
+
*/
|
|
293
357
|
result?: ResultAmino;
|
|
294
358
|
}
|
|
295
359
|
export interface SimulateResponseAminoMsg {
|
|
@@ -299,9 +363,14 @@ export interface SimulateResponseAminoMsg {
|
|
|
299
363
|
/**
|
|
300
364
|
* GetTxRequest is the request type for the Service.GetTx
|
|
301
365
|
* RPC method.
|
|
366
|
+
* @name GetTxRequest
|
|
367
|
+
* @package cosmos.tx.v1beta1
|
|
368
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxRequest
|
|
302
369
|
*/
|
|
303
370
|
export interface GetTxRequest {
|
|
304
|
-
/**
|
|
371
|
+
/**
|
|
372
|
+
* hash is the tx hash to query, encoded as a hex string.
|
|
373
|
+
*/
|
|
305
374
|
hash: string;
|
|
306
375
|
}
|
|
307
376
|
export interface GetTxRequestProtoMsg {
|
|
@@ -311,31 +380,54 @@ export interface GetTxRequestProtoMsg {
|
|
|
311
380
|
/**
|
|
312
381
|
* GetTxRequest is the request type for the Service.GetTx
|
|
313
382
|
* RPC method.
|
|
383
|
+
* @name GetTxRequestAmino
|
|
384
|
+
* @package cosmos.tx.v1beta1
|
|
385
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxRequest
|
|
314
386
|
*/
|
|
315
387
|
export interface GetTxRequestAmino {
|
|
316
|
-
/**
|
|
388
|
+
/**
|
|
389
|
+
* hash is the tx hash to query, encoded as a hex string.
|
|
390
|
+
*/
|
|
317
391
|
hash: string;
|
|
318
392
|
}
|
|
319
393
|
export interface GetTxRequestAminoMsg {
|
|
320
394
|
type: "cosmos-sdk/GetTxRequest";
|
|
321
395
|
value: GetTxRequestAmino;
|
|
322
396
|
}
|
|
323
|
-
/**
|
|
397
|
+
/**
|
|
398
|
+
* GetTxResponse is the response type for the Service.GetTx method.
|
|
399
|
+
* @name GetTxResponse
|
|
400
|
+
* @package cosmos.tx.v1beta1
|
|
401
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxResponse
|
|
402
|
+
*/
|
|
324
403
|
export interface GetTxResponse {
|
|
325
|
-
/**
|
|
404
|
+
/**
|
|
405
|
+
* tx is the queried transaction.
|
|
406
|
+
*/
|
|
326
407
|
tx?: Tx;
|
|
327
|
-
/**
|
|
408
|
+
/**
|
|
409
|
+
* tx_response is the queried TxResponses.
|
|
410
|
+
*/
|
|
328
411
|
txResponse?: TxResponse;
|
|
329
412
|
}
|
|
330
413
|
export interface GetTxResponseProtoMsg {
|
|
331
414
|
typeUrl: "/cosmos.tx.v1beta1.GetTxResponse";
|
|
332
415
|
value: Uint8Array;
|
|
333
416
|
}
|
|
334
|
-
/**
|
|
417
|
+
/**
|
|
418
|
+
* GetTxResponse is the response type for the Service.GetTx method.
|
|
419
|
+
* @name GetTxResponseAmino
|
|
420
|
+
* @package cosmos.tx.v1beta1
|
|
421
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxResponse
|
|
422
|
+
*/
|
|
335
423
|
export interface GetTxResponseAmino {
|
|
336
|
-
/**
|
|
424
|
+
/**
|
|
425
|
+
* tx is the queried transaction.
|
|
426
|
+
*/
|
|
337
427
|
tx?: TxAmino;
|
|
338
|
-
/**
|
|
428
|
+
/**
|
|
429
|
+
* tx_response is the queried TxResponses.
|
|
430
|
+
*/
|
|
339
431
|
tx_response?: TxResponseAmino;
|
|
340
432
|
}
|
|
341
433
|
export interface GetTxResponseAminoMsg {
|
|
@@ -347,11 +439,18 @@ export interface GetTxResponseAminoMsg {
|
|
|
347
439
|
* RPC method.
|
|
348
440
|
*
|
|
349
441
|
* Since: cosmos-sdk 0.45.2
|
|
442
|
+
* @name GetBlockWithTxsRequest
|
|
443
|
+
* @package cosmos.tx.v1beta1
|
|
444
|
+
* @see proto type: cosmos.tx.v1beta1.GetBlockWithTxsRequest
|
|
350
445
|
*/
|
|
351
446
|
export interface GetBlockWithTxsRequest {
|
|
352
|
-
/**
|
|
447
|
+
/**
|
|
448
|
+
* height is the height of the block to query.
|
|
449
|
+
*/
|
|
353
450
|
height: bigint;
|
|
354
|
-
/**
|
|
451
|
+
/**
|
|
452
|
+
* pagination defines a pagination for the request.
|
|
453
|
+
*/
|
|
355
454
|
pagination?: PageRequest;
|
|
356
455
|
}
|
|
357
456
|
export interface GetBlockWithTxsRequestProtoMsg {
|
|
@@ -363,11 +462,18 @@ export interface GetBlockWithTxsRequestProtoMsg {
|
|
|
363
462
|
* RPC method.
|
|
364
463
|
*
|
|
365
464
|
* Since: cosmos-sdk 0.45.2
|
|
465
|
+
* @name GetBlockWithTxsRequestAmino
|
|
466
|
+
* @package cosmos.tx.v1beta1
|
|
467
|
+
* @see proto type: cosmos.tx.v1beta1.GetBlockWithTxsRequest
|
|
366
468
|
*/
|
|
367
469
|
export interface GetBlockWithTxsRequestAmino {
|
|
368
|
-
/**
|
|
470
|
+
/**
|
|
471
|
+
* height is the height of the block to query.
|
|
472
|
+
*/
|
|
369
473
|
height: string;
|
|
370
|
-
/**
|
|
474
|
+
/**
|
|
475
|
+
* pagination defines a pagination for the request.
|
|
476
|
+
*/
|
|
371
477
|
pagination?: PageRequestAmino;
|
|
372
478
|
}
|
|
373
479
|
export interface GetBlockWithTxsRequestAminoMsg {
|
|
@@ -379,13 +485,20 @@ export interface GetBlockWithTxsRequestAminoMsg {
|
|
|
379
485
|
* method.
|
|
380
486
|
*
|
|
381
487
|
* Since: cosmos-sdk 0.45.2
|
|
488
|
+
* @name GetBlockWithTxsResponse
|
|
489
|
+
* @package cosmos.tx.v1beta1
|
|
490
|
+
* @see proto type: cosmos.tx.v1beta1.GetBlockWithTxsResponse
|
|
382
491
|
*/
|
|
383
492
|
export interface GetBlockWithTxsResponse {
|
|
384
|
-
/**
|
|
493
|
+
/**
|
|
494
|
+
* txs are the transactions in the block.
|
|
495
|
+
*/
|
|
385
496
|
txs: Tx[];
|
|
386
497
|
blockId?: BlockID;
|
|
387
498
|
block?: Block;
|
|
388
|
-
/**
|
|
499
|
+
/**
|
|
500
|
+
* pagination defines a pagination for the response.
|
|
501
|
+
*/
|
|
389
502
|
pagination?: PageResponse;
|
|
390
503
|
}
|
|
391
504
|
export interface GetBlockWithTxsResponseProtoMsg {
|
|
@@ -397,13 +510,20 @@ export interface GetBlockWithTxsResponseProtoMsg {
|
|
|
397
510
|
* method.
|
|
398
511
|
*
|
|
399
512
|
* Since: cosmos-sdk 0.45.2
|
|
513
|
+
* @name GetBlockWithTxsResponseAmino
|
|
514
|
+
* @package cosmos.tx.v1beta1
|
|
515
|
+
* @see proto type: cosmos.tx.v1beta1.GetBlockWithTxsResponse
|
|
400
516
|
*/
|
|
401
517
|
export interface GetBlockWithTxsResponseAmino {
|
|
402
|
-
/**
|
|
518
|
+
/**
|
|
519
|
+
* txs are the transactions in the block.
|
|
520
|
+
*/
|
|
403
521
|
txs: TxAmino[];
|
|
404
522
|
block_id?: BlockIDAmino;
|
|
405
523
|
block?: BlockAmino;
|
|
406
|
-
/**
|
|
524
|
+
/**
|
|
525
|
+
* pagination defines a pagination for the response.
|
|
526
|
+
*/
|
|
407
527
|
pagination?: PageResponseAmino;
|
|
408
528
|
}
|
|
409
529
|
export interface GetBlockWithTxsResponseAminoMsg {
|
|
@@ -415,9 +535,14 @@ export interface GetBlockWithTxsResponseAminoMsg {
|
|
|
415
535
|
* RPC method.
|
|
416
536
|
*
|
|
417
537
|
* Since: cosmos-sdk 0.47
|
|
538
|
+
* @name TxDecodeRequest
|
|
539
|
+
* @package cosmos.tx.v1beta1
|
|
540
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeRequest
|
|
418
541
|
*/
|
|
419
542
|
export interface TxDecodeRequest {
|
|
420
|
-
/**
|
|
543
|
+
/**
|
|
544
|
+
* tx_bytes is the raw transaction.
|
|
545
|
+
*/
|
|
421
546
|
txBytes: Uint8Array;
|
|
422
547
|
}
|
|
423
548
|
export interface TxDecodeRequestProtoMsg {
|
|
@@ -429,9 +554,14 @@ export interface TxDecodeRequestProtoMsg {
|
|
|
429
554
|
* RPC method.
|
|
430
555
|
*
|
|
431
556
|
* Since: cosmos-sdk 0.47
|
|
557
|
+
* @name TxDecodeRequestAmino
|
|
558
|
+
* @package cosmos.tx.v1beta1
|
|
559
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeRequest
|
|
432
560
|
*/
|
|
433
561
|
export interface TxDecodeRequestAmino {
|
|
434
|
-
/**
|
|
562
|
+
/**
|
|
563
|
+
* tx_bytes is the raw transaction.
|
|
564
|
+
*/
|
|
435
565
|
tx_bytes: string;
|
|
436
566
|
}
|
|
437
567
|
export interface TxDecodeRequestAminoMsg {
|
|
@@ -443,9 +573,14 @@ export interface TxDecodeRequestAminoMsg {
|
|
|
443
573
|
* Service.TxDecode method.
|
|
444
574
|
*
|
|
445
575
|
* Since: cosmos-sdk 0.47
|
|
576
|
+
* @name TxDecodeResponse
|
|
577
|
+
* @package cosmos.tx.v1beta1
|
|
578
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeResponse
|
|
446
579
|
*/
|
|
447
580
|
export interface TxDecodeResponse {
|
|
448
|
-
/**
|
|
581
|
+
/**
|
|
582
|
+
* tx is the decoded transaction.
|
|
583
|
+
*/
|
|
449
584
|
tx?: Tx;
|
|
450
585
|
}
|
|
451
586
|
export interface TxDecodeResponseProtoMsg {
|
|
@@ -457,9 +592,14 @@ export interface TxDecodeResponseProtoMsg {
|
|
|
457
592
|
* Service.TxDecode method.
|
|
458
593
|
*
|
|
459
594
|
* Since: cosmos-sdk 0.47
|
|
595
|
+
* @name TxDecodeResponseAmino
|
|
596
|
+
* @package cosmos.tx.v1beta1
|
|
597
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeResponse
|
|
460
598
|
*/
|
|
461
599
|
export interface TxDecodeResponseAmino {
|
|
462
|
-
/**
|
|
600
|
+
/**
|
|
601
|
+
* tx is the decoded transaction.
|
|
602
|
+
*/
|
|
463
603
|
tx?: TxAmino;
|
|
464
604
|
}
|
|
465
605
|
export interface TxDecodeResponseAminoMsg {
|
|
@@ -471,9 +611,14 @@ export interface TxDecodeResponseAminoMsg {
|
|
|
471
611
|
* RPC method.
|
|
472
612
|
*
|
|
473
613
|
* Since: cosmos-sdk 0.47
|
|
614
|
+
* @name TxEncodeRequest
|
|
615
|
+
* @package cosmos.tx.v1beta1
|
|
616
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeRequest
|
|
474
617
|
*/
|
|
475
618
|
export interface TxEncodeRequest {
|
|
476
|
-
/**
|
|
619
|
+
/**
|
|
620
|
+
* tx is the transaction to encode.
|
|
621
|
+
*/
|
|
477
622
|
tx?: Tx;
|
|
478
623
|
}
|
|
479
624
|
export interface TxEncodeRequestProtoMsg {
|
|
@@ -485,9 +630,14 @@ export interface TxEncodeRequestProtoMsg {
|
|
|
485
630
|
* RPC method.
|
|
486
631
|
*
|
|
487
632
|
* Since: cosmos-sdk 0.47
|
|
633
|
+
* @name TxEncodeRequestAmino
|
|
634
|
+
* @package cosmos.tx.v1beta1
|
|
635
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeRequest
|
|
488
636
|
*/
|
|
489
637
|
export interface TxEncodeRequestAmino {
|
|
490
|
-
/**
|
|
638
|
+
/**
|
|
639
|
+
* tx is the transaction to encode.
|
|
640
|
+
*/
|
|
491
641
|
tx?: TxAmino;
|
|
492
642
|
}
|
|
493
643
|
export interface TxEncodeRequestAminoMsg {
|
|
@@ -499,9 +649,14 @@ export interface TxEncodeRequestAminoMsg {
|
|
|
499
649
|
* Service.TxEncode method.
|
|
500
650
|
*
|
|
501
651
|
* Since: cosmos-sdk 0.47
|
|
652
|
+
* @name TxEncodeResponse
|
|
653
|
+
* @package cosmos.tx.v1beta1
|
|
654
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeResponse
|
|
502
655
|
*/
|
|
503
656
|
export interface TxEncodeResponse {
|
|
504
|
-
/**
|
|
657
|
+
/**
|
|
658
|
+
* tx_bytes is the encoded transaction bytes.
|
|
659
|
+
*/
|
|
505
660
|
txBytes: Uint8Array;
|
|
506
661
|
}
|
|
507
662
|
export interface TxEncodeResponseProtoMsg {
|
|
@@ -513,9 +668,14 @@ export interface TxEncodeResponseProtoMsg {
|
|
|
513
668
|
* Service.TxEncode method.
|
|
514
669
|
*
|
|
515
670
|
* Since: cosmos-sdk 0.47
|
|
671
|
+
* @name TxEncodeResponseAmino
|
|
672
|
+
* @package cosmos.tx.v1beta1
|
|
673
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeResponse
|
|
516
674
|
*/
|
|
517
675
|
export interface TxEncodeResponseAmino {
|
|
518
|
-
/**
|
|
676
|
+
/**
|
|
677
|
+
* tx_bytes is the encoded transaction bytes.
|
|
678
|
+
*/
|
|
519
679
|
tx_bytes: string;
|
|
520
680
|
}
|
|
521
681
|
export interface TxEncodeResponseAminoMsg {
|
|
@@ -527,6 +687,9 @@ export interface TxEncodeResponseAminoMsg {
|
|
|
527
687
|
* RPC method.
|
|
528
688
|
*
|
|
529
689
|
* Since: cosmos-sdk 0.47
|
|
690
|
+
* @name TxEncodeAminoRequest
|
|
691
|
+
* @package cosmos.tx.v1beta1
|
|
692
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeAminoRequest
|
|
530
693
|
*/
|
|
531
694
|
export interface TxEncodeAminoRequest {
|
|
532
695
|
aminoJson: string;
|
|
@@ -540,6 +703,9 @@ export interface TxEncodeAminoRequestProtoMsg {
|
|
|
540
703
|
* RPC method.
|
|
541
704
|
*
|
|
542
705
|
* Since: cosmos-sdk 0.47
|
|
706
|
+
* @name TxEncodeAminoRequestAmino
|
|
707
|
+
* @package cosmos.tx.v1beta1
|
|
708
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeAminoRequest
|
|
543
709
|
*/
|
|
544
710
|
export interface TxEncodeAminoRequestAmino {
|
|
545
711
|
amino_json: string;
|
|
@@ -553,6 +719,9 @@ export interface TxEncodeAminoRequestAminoMsg {
|
|
|
553
719
|
* RPC method.
|
|
554
720
|
*
|
|
555
721
|
* Since: cosmos-sdk 0.47
|
|
722
|
+
* @name TxEncodeAminoResponse
|
|
723
|
+
* @package cosmos.tx.v1beta1
|
|
724
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeAminoResponse
|
|
556
725
|
*/
|
|
557
726
|
export interface TxEncodeAminoResponse {
|
|
558
727
|
aminoBinary: Uint8Array;
|
|
@@ -566,6 +735,9 @@ export interface TxEncodeAminoResponseProtoMsg {
|
|
|
566
735
|
* RPC method.
|
|
567
736
|
*
|
|
568
737
|
* Since: cosmos-sdk 0.47
|
|
738
|
+
* @name TxEncodeAminoResponseAmino
|
|
739
|
+
* @package cosmos.tx.v1beta1
|
|
740
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeAminoResponse
|
|
569
741
|
*/
|
|
570
742
|
export interface TxEncodeAminoResponseAmino {
|
|
571
743
|
amino_binary: string;
|
|
@@ -579,6 +751,9 @@ export interface TxEncodeAminoResponseAminoMsg {
|
|
|
579
751
|
* RPC method.
|
|
580
752
|
*
|
|
581
753
|
* Since: cosmos-sdk 0.47
|
|
754
|
+
* @name TxDecodeAminoRequest
|
|
755
|
+
* @package cosmos.tx.v1beta1
|
|
756
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeAminoRequest
|
|
582
757
|
*/
|
|
583
758
|
export interface TxDecodeAminoRequest {
|
|
584
759
|
aminoBinary: Uint8Array;
|
|
@@ -592,6 +767,9 @@ export interface TxDecodeAminoRequestProtoMsg {
|
|
|
592
767
|
* RPC method.
|
|
593
768
|
*
|
|
594
769
|
* Since: cosmos-sdk 0.47
|
|
770
|
+
* @name TxDecodeAminoRequestAmino
|
|
771
|
+
* @package cosmos.tx.v1beta1
|
|
772
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeAminoRequest
|
|
595
773
|
*/
|
|
596
774
|
export interface TxDecodeAminoRequestAmino {
|
|
597
775
|
amino_binary: string;
|
|
@@ -605,6 +783,9 @@ export interface TxDecodeAminoRequestAminoMsg {
|
|
|
605
783
|
* RPC method.
|
|
606
784
|
*
|
|
607
785
|
* Since: cosmos-sdk 0.47
|
|
786
|
+
* @name TxDecodeAminoResponse
|
|
787
|
+
* @package cosmos.tx.v1beta1
|
|
788
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeAminoResponse
|
|
608
789
|
*/
|
|
609
790
|
export interface TxDecodeAminoResponse {
|
|
610
791
|
aminoJson: string;
|
|
@@ -618,6 +799,9 @@ export interface TxDecodeAminoResponseProtoMsg {
|
|
|
618
799
|
* RPC method.
|
|
619
800
|
*
|
|
620
801
|
* Since: cosmos-sdk 0.47
|
|
802
|
+
* @name TxDecodeAminoResponseAmino
|
|
803
|
+
* @package cosmos.tx.v1beta1
|
|
804
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeAminoResponse
|
|
621
805
|
*/
|
|
622
806
|
export interface TxDecodeAminoResponseAmino {
|
|
623
807
|
amino_json: string;
|
|
@@ -626,6 +810,13 @@ export interface TxDecodeAminoResponseAminoMsg {
|
|
|
626
810
|
type: "cosmos-sdk/TxDecodeAminoResponse";
|
|
627
811
|
value: TxDecodeAminoResponseAmino;
|
|
628
812
|
}
|
|
813
|
+
/**
|
|
814
|
+
* GetTxsEventRequest is the request type for the Service.TxsByEvents
|
|
815
|
+
* RPC method.
|
|
816
|
+
* @name GetTxsEventRequest
|
|
817
|
+
* @package cosmos.tx.v1beta1
|
|
818
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxsEventRequest
|
|
819
|
+
*/
|
|
629
820
|
export declare const GetTxsEventRequest: {
|
|
630
821
|
typeUrl: string;
|
|
631
822
|
aminoType: string;
|
|
@@ -643,6 +834,13 @@ export declare const GetTxsEventRequest: {
|
|
|
643
834
|
toProtoMsg(message: GetTxsEventRequest): GetTxsEventRequestProtoMsg;
|
|
644
835
|
registerTypeUrl(): void;
|
|
645
836
|
};
|
|
837
|
+
/**
|
|
838
|
+
* GetTxsEventResponse is the response type for the Service.TxsByEvents
|
|
839
|
+
* RPC method.
|
|
840
|
+
* @name GetTxsEventResponse
|
|
841
|
+
* @package cosmos.tx.v1beta1
|
|
842
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxsEventResponse
|
|
843
|
+
*/
|
|
646
844
|
export declare const GetTxsEventResponse: {
|
|
647
845
|
typeUrl: string;
|
|
648
846
|
aminoType: string;
|
|
@@ -660,6 +858,13 @@ export declare const GetTxsEventResponse: {
|
|
|
660
858
|
toProtoMsg(message: GetTxsEventResponse): GetTxsEventResponseProtoMsg;
|
|
661
859
|
registerTypeUrl(): void;
|
|
662
860
|
};
|
|
861
|
+
/**
|
|
862
|
+
* BroadcastTxRequest is the request type for the Service.BroadcastTxRequest
|
|
863
|
+
* RPC method.
|
|
864
|
+
* @name BroadcastTxRequest
|
|
865
|
+
* @package cosmos.tx.v1beta1
|
|
866
|
+
* @see proto type: cosmos.tx.v1beta1.BroadcastTxRequest
|
|
867
|
+
*/
|
|
663
868
|
export declare const BroadcastTxRequest: {
|
|
664
869
|
typeUrl: string;
|
|
665
870
|
aminoType: string;
|
|
@@ -677,6 +882,13 @@ export declare const BroadcastTxRequest: {
|
|
|
677
882
|
toProtoMsg(message: BroadcastTxRequest): BroadcastTxRequestProtoMsg;
|
|
678
883
|
registerTypeUrl(): void;
|
|
679
884
|
};
|
|
885
|
+
/**
|
|
886
|
+
* BroadcastTxResponse is the response type for the
|
|
887
|
+
* Service.BroadcastTx method.
|
|
888
|
+
* @name BroadcastTxResponse
|
|
889
|
+
* @package cosmos.tx.v1beta1
|
|
890
|
+
* @see proto type: cosmos.tx.v1beta1.BroadcastTxResponse
|
|
891
|
+
*/
|
|
680
892
|
export declare const BroadcastTxResponse: {
|
|
681
893
|
typeUrl: string;
|
|
682
894
|
aminoType: string;
|
|
@@ -694,6 +906,13 @@ export declare const BroadcastTxResponse: {
|
|
|
694
906
|
toProtoMsg(message: BroadcastTxResponse): BroadcastTxResponseProtoMsg;
|
|
695
907
|
registerTypeUrl(): void;
|
|
696
908
|
};
|
|
909
|
+
/**
|
|
910
|
+
* SimulateRequest is the request type for the Service.Simulate
|
|
911
|
+
* RPC method.
|
|
912
|
+
* @name SimulateRequest
|
|
913
|
+
* @package cosmos.tx.v1beta1
|
|
914
|
+
* @see proto type: cosmos.tx.v1beta1.SimulateRequest
|
|
915
|
+
*/
|
|
697
916
|
export declare const SimulateRequest: {
|
|
698
917
|
typeUrl: string;
|
|
699
918
|
aminoType: string;
|
|
@@ -711,6 +930,13 @@ export declare const SimulateRequest: {
|
|
|
711
930
|
toProtoMsg(message: SimulateRequest): SimulateRequestProtoMsg;
|
|
712
931
|
registerTypeUrl(): void;
|
|
713
932
|
};
|
|
933
|
+
/**
|
|
934
|
+
* SimulateResponse is the response type for the
|
|
935
|
+
* Service.SimulateRPC method.
|
|
936
|
+
* @name SimulateResponse
|
|
937
|
+
* @package cosmos.tx.v1beta1
|
|
938
|
+
* @see proto type: cosmos.tx.v1beta1.SimulateResponse
|
|
939
|
+
*/
|
|
714
940
|
export declare const SimulateResponse: {
|
|
715
941
|
typeUrl: string;
|
|
716
942
|
aminoType: string;
|
|
@@ -728,6 +954,13 @@ export declare const SimulateResponse: {
|
|
|
728
954
|
toProtoMsg(message: SimulateResponse): SimulateResponseProtoMsg;
|
|
729
955
|
registerTypeUrl(): void;
|
|
730
956
|
};
|
|
957
|
+
/**
|
|
958
|
+
* GetTxRequest is the request type for the Service.GetTx
|
|
959
|
+
* RPC method.
|
|
960
|
+
* @name GetTxRequest
|
|
961
|
+
* @package cosmos.tx.v1beta1
|
|
962
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxRequest
|
|
963
|
+
*/
|
|
731
964
|
export declare const GetTxRequest: {
|
|
732
965
|
typeUrl: string;
|
|
733
966
|
aminoType: string;
|
|
@@ -745,6 +978,12 @@ export declare const GetTxRequest: {
|
|
|
745
978
|
toProtoMsg(message: GetTxRequest): GetTxRequestProtoMsg;
|
|
746
979
|
registerTypeUrl(): void;
|
|
747
980
|
};
|
|
981
|
+
/**
|
|
982
|
+
* GetTxResponse is the response type for the Service.GetTx method.
|
|
983
|
+
* @name GetTxResponse
|
|
984
|
+
* @package cosmos.tx.v1beta1
|
|
985
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxResponse
|
|
986
|
+
*/
|
|
748
987
|
export declare const GetTxResponse: {
|
|
749
988
|
typeUrl: string;
|
|
750
989
|
aminoType: string;
|
|
@@ -762,6 +1001,15 @@ export declare const GetTxResponse: {
|
|
|
762
1001
|
toProtoMsg(message: GetTxResponse): GetTxResponseProtoMsg;
|
|
763
1002
|
registerTypeUrl(): void;
|
|
764
1003
|
};
|
|
1004
|
+
/**
|
|
1005
|
+
* GetBlockWithTxsRequest is the request type for the Service.GetBlockWithTxs
|
|
1006
|
+
* RPC method.
|
|
1007
|
+
*
|
|
1008
|
+
* Since: cosmos-sdk 0.45.2
|
|
1009
|
+
* @name GetBlockWithTxsRequest
|
|
1010
|
+
* @package cosmos.tx.v1beta1
|
|
1011
|
+
* @see proto type: cosmos.tx.v1beta1.GetBlockWithTxsRequest
|
|
1012
|
+
*/
|
|
765
1013
|
export declare const GetBlockWithTxsRequest: {
|
|
766
1014
|
typeUrl: string;
|
|
767
1015
|
aminoType: string;
|
|
@@ -779,6 +1027,15 @@ export declare const GetBlockWithTxsRequest: {
|
|
|
779
1027
|
toProtoMsg(message: GetBlockWithTxsRequest): GetBlockWithTxsRequestProtoMsg;
|
|
780
1028
|
registerTypeUrl(): void;
|
|
781
1029
|
};
|
|
1030
|
+
/**
|
|
1031
|
+
* GetBlockWithTxsResponse is the response type for the Service.GetBlockWithTxs
|
|
1032
|
+
* method.
|
|
1033
|
+
*
|
|
1034
|
+
* Since: cosmos-sdk 0.45.2
|
|
1035
|
+
* @name GetBlockWithTxsResponse
|
|
1036
|
+
* @package cosmos.tx.v1beta1
|
|
1037
|
+
* @see proto type: cosmos.tx.v1beta1.GetBlockWithTxsResponse
|
|
1038
|
+
*/
|
|
782
1039
|
export declare const GetBlockWithTxsResponse: {
|
|
783
1040
|
typeUrl: string;
|
|
784
1041
|
aminoType: string;
|
|
@@ -796,6 +1053,15 @@ export declare const GetBlockWithTxsResponse: {
|
|
|
796
1053
|
toProtoMsg(message: GetBlockWithTxsResponse): GetBlockWithTxsResponseProtoMsg;
|
|
797
1054
|
registerTypeUrl(): void;
|
|
798
1055
|
};
|
|
1056
|
+
/**
|
|
1057
|
+
* TxDecodeRequest is the request type for the Service.TxDecode
|
|
1058
|
+
* RPC method.
|
|
1059
|
+
*
|
|
1060
|
+
* Since: cosmos-sdk 0.47
|
|
1061
|
+
* @name TxDecodeRequest
|
|
1062
|
+
* @package cosmos.tx.v1beta1
|
|
1063
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeRequest
|
|
1064
|
+
*/
|
|
799
1065
|
export declare const TxDecodeRequest: {
|
|
800
1066
|
typeUrl: string;
|
|
801
1067
|
aminoType: string;
|
|
@@ -813,6 +1079,15 @@ export declare const TxDecodeRequest: {
|
|
|
813
1079
|
toProtoMsg(message: TxDecodeRequest): TxDecodeRequestProtoMsg;
|
|
814
1080
|
registerTypeUrl(): void;
|
|
815
1081
|
};
|
|
1082
|
+
/**
|
|
1083
|
+
* TxDecodeResponse is the response type for the
|
|
1084
|
+
* Service.TxDecode method.
|
|
1085
|
+
*
|
|
1086
|
+
* Since: cosmos-sdk 0.47
|
|
1087
|
+
* @name TxDecodeResponse
|
|
1088
|
+
* @package cosmos.tx.v1beta1
|
|
1089
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeResponse
|
|
1090
|
+
*/
|
|
816
1091
|
export declare const TxDecodeResponse: {
|
|
817
1092
|
typeUrl: string;
|
|
818
1093
|
aminoType: string;
|
|
@@ -830,6 +1105,15 @@ export declare const TxDecodeResponse: {
|
|
|
830
1105
|
toProtoMsg(message: TxDecodeResponse): TxDecodeResponseProtoMsg;
|
|
831
1106
|
registerTypeUrl(): void;
|
|
832
1107
|
};
|
|
1108
|
+
/**
|
|
1109
|
+
* TxEncodeRequest is the request type for the Service.TxEncode
|
|
1110
|
+
* RPC method.
|
|
1111
|
+
*
|
|
1112
|
+
* Since: cosmos-sdk 0.47
|
|
1113
|
+
* @name TxEncodeRequest
|
|
1114
|
+
* @package cosmos.tx.v1beta1
|
|
1115
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeRequest
|
|
1116
|
+
*/
|
|
833
1117
|
export declare const TxEncodeRequest: {
|
|
834
1118
|
typeUrl: string;
|
|
835
1119
|
aminoType: string;
|
|
@@ -847,6 +1131,15 @@ export declare const TxEncodeRequest: {
|
|
|
847
1131
|
toProtoMsg(message: TxEncodeRequest): TxEncodeRequestProtoMsg;
|
|
848
1132
|
registerTypeUrl(): void;
|
|
849
1133
|
};
|
|
1134
|
+
/**
|
|
1135
|
+
* TxEncodeResponse is the response type for the
|
|
1136
|
+
* Service.TxEncode method.
|
|
1137
|
+
*
|
|
1138
|
+
* Since: cosmos-sdk 0.47
|
|
1139
|
+
* @name TxEncodeResponse
|
|
1140
|
+
* @package cosmos.tx.v1beta1
|
|
1141
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeResponse
|
|
1142
|
+
*/
|
|
850
1143
|
export declare const TxEncodeResponse: {
|
|
851
1144
|
typeUrl: string;
|
|
852
1145
|
aminoType: string;
|
|
@@ -864,6 +1157,15 @@ export declare const TxEncodeResponse: {
|
|
|
864
1157
|
toProtoMsg(message: TxEncodeResponse): TxEncodeResponseProtoMsg;
|
|
865
1158
|
registerTypeUrl(): void;
|
|
866
1159
|
};
|
|
1160
|
+
/**
|
|
1161
|
+
* TxEncodeAminoRequest is the request type for the Service.TxEncodeAmino
|
|
1162
|
+
* RPC method.
|
|
1163
|
+
*
|
|
1164
|
+
* Since: cosmos-sdk 0.47
|
|
1165
|
+
* @name TxEncodeAminoRequest
|
|
1166
|
+
* @package cosmos.tx.v1beta1
|
|
1167
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeAminoRequest
|
|
1168
|
+
*/
|
|
867
1169
|
export declare const TxEncodeAminoRequest: {
|
|
868
1170
|
typeUrl: string;
|
|
869
1171
|
aminoType: string;
|
|
@@ -881,6 +1183,15 @@ export declare const TxEncodeAminoRequest: {
|
|
|
881
1183
|
toProtoMsg(message: TxEncodeAminoRequest): TxEncodeAminoRequestProtoMsg;
|
|
882
1184
|
registerTypeUrl(): void;
|
|
883
1185
|
};
|
|
1186
|
+
/**
|
|
1187
|
+
* TxEncodeAminoResponse is the response type for the Service.TxEncodeAmino
|
|
1188
|
+
* RPC method.
|
|
1189
|
+
*
|
|
1190
|
+
* Since: cosmos-sdk 0.47
|
|
1191
|
+
* @name TxEncodeAminoResponse
|
|
1192
|
+
* @package cosmos.tx.v1beta1
|
|
1193
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeAminoResponse
|
|
1194
|
+
*/
|
|
884
1195
|
export declare const TxEncodeAminoResponse: {
|
|
885
1196
|
typeUrl: string;
|
|
886
1197
|
aminoType: string;
|
|
@@ -898,6 +1209,15 @@ export declare const TxEncodeAminoResponse: {
|
|
|
898
1209
|
toProtoMsg(message: TxEncodeAminoResponse): TxEncodeAminoResponseProtoMsg;
|
|
899
1210
|
registerTypeUrl(): void;
|
|
900
1211
|
};
|
|
1212
|
+
/**
|
|
1213
|
+
* TxDecodeAminoRequest is the request type for the Service.TxDecodeAmino
|
|
1214
|
+
* RPC method.
|
|
1215
|
+
*
|
|
1216
|
+
* Since: cosmos-sdk 0.47
|
|
1217
|
+
* @name TxDecodeAminoRequest
|
|
1218
|
+
* @package cosmos.tx.v1beta1
|
|
1219
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeAminoRequest
|
|
1220
|
+
*/
|
|
901
1221
|
export declare const TxDecodeAminoRequest: {
|
|
902
1222
|
typeUrl: string;
|
|
903
1223
|
aminoType: string;
|
|
@@ -915,6 +1235,15 @@ export declare const TxDecodeAminoRequest: {
|
|
|
915
1235
|
toProtoMsg(message: TxDecodeAminoRequest): TxDecodeAminoRequestProtoMsg;
|
|
916
1236
|
registerTypeUrl(): void;
|
|
917
1237
|
};
|
|
1238
|
+
/**
|
|
1239
|
+
* TxDecodeAminoResponse is the response type for the Service.TxDecodeAmino
|
|
1240
|
+
* RPC method.
|
|
1241
|
+
*
|
|
1242
|
+
* Since: cosmos-sdk 0.47
|
|
1243
|
+
* @name TxDecodeAminoResponse
|
|
1244
|
+
* @package cosmos.tx.v1beta1
|
|
1245
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeAminoResponse
|
|
1246
|
+
*/
|
|
918
1247
|
export declare const TxDecodeAminoResponse: {
|
|
919
1248
|
typeUrl: string;
|
|
920
1249
|
aminoType: string;
|