@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
|
@@ -3,44 +3,80 @@ import { TraceConfig, TraceConfigAmino, Log, LogAmino, Params, ParamsAmino } fro
|
|
|
3
3
|
import { PageRequest, PageRequestAmino, PageResponse, PageResponseAmino } from "../../../cosmos/base/query/v1beta1/pagination";
|
|
4
4
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
5
5
|
import { DeepPartial } from "../../../helpers";
|
|
6
|
-
/**
|
|
6
|
+
/**
|
|
7
|
+
* QueryAccountRequest is the request type for the Query/Account RPC method.
|
|
8
|
+
* @name QueryAccountRequest
|
|
9
|
+
* @package ethermint.evm.v1
|
|
10
|
+
* @see proto type: ethermint.evm.v1.QueryAccountRequest
|
|
11
|
+
*/
|
|
7
12
|
export interface QueryAccountRequest {
|
|
8
|
-
/**
|
|
13
|
+
/**
|
|
14
|
+
* address is the ethereum hex address to query the account for.
|
|
15
|
+
*/
|
|
9
16
|
address: string;
|
|
10
17
|
}
|
|
11
18
|
export interface QueryAccountRequestProtoMsg {
|
|
12
19
|
typeUrl: "/ethermint.evm.v1.QueryAccountRequest";
|
|
13
20
|
value: Uint8Array;
|
|
14
21
|
}
|
|
15
|
-
/**
|
|
22
|
+
/**
|
|
23
|
+
* QueryAccountRequest is the request type for the Query/Account RPC method.
|
|
24
|
+
* @name QueryAccountRequestAmino
|
|
25
|
+
* @package ethermint.evm.v1
|
|
26
|
+
* @see proto type: ethermint.evm.v1.QueryAccountRequest
|
|
27
|
+
*/
|
|
16
28
|
export interface QueryAccountRequestAmino {
|
|
17
|
-
/**
|
|
29
|
+
/**
|
|
30
|
+
* address is the ethereum hex address to query the account for.
|
|
31
|
+
*/
|
|
18
32
|
address: string;
|
|
19
33
|
}
|
|
20
34
|
export interface QueryAccountRequestAminoMsg {
|
|
21
35
|
type: "/ethermint.evm.v1.QueryAccountRequest";
|
|
22
36
|
value: QueryAccountRequestAmino;
|
|
23
37
|
}
|
|
24
|
-
/**
|
|
38
|
+
/**
|
|
39
|
+
* QueryAccountResponse is the response type for the Query/Account RPC method.
|
|
40
|
+
* @name QueryAccountResponse
|
|
41
|
+
* @package ethermint.evm.v1
|
|
42
|
+
* @see proto type: ethermint.evm.v1.QueryAccountResponse
|
|
43
|
+
*/
|
|
25
44
|
export interface QueryAccountResponse {
|
|
26
|
-
/**
|
|
45
|
+
/**
|
|
46
|
+
* balance is the balance of the EVM denomination.
|
|
47
|
+
*/
|
|
27
48
|
balance: string;
|
|
28
|
-
/**
|
|
49
|
+
/**
|
|
50
|
+
* code_hash is the hex-formatted code bytes from the EOA.
|
|
51
|
+
*/
|
|
29
52
|
codeHash: string;
|
|
30
|
-
/**
|
|
53
|
+
/**
|
|
54
|
+
* nonce is the account's sequence number.
|
|
55
|
+
*/
|
|
31
56
|
nonce: bigint;
|
|
32
57
|
}
|
|
33
58
|
export interface QueryAccountResponseProtoMsg {
|
|
34
59
|
typeUrl: "/ethermint.evm.v1.QueryAccountResponse";
|
|
35
60
|
value: Uint8Array;
|
|
36
61
|
}
|
|
37
|
-
/**
|
|
62
|
+
/**
|
|
63
|
+
* QueryAccountResponse is the response type for the Query/Account RPC method.
|
|
64
|
+
* @name QueryAccountResponseAmino
|
|
65
|
+
* @package ethermint.evm.v1
|
|
66
|
+
* @see proto type: ethermint.evm.v1.QueryAccountResponse
|
|
67
|
+
*/
|
|
38
68
|
export interface QueryAccountResponseAmino {
|
|
39
|
-
/**
|
|
69
|
+
/**
|
|
70
|
+
* balance is the balance of the EVM denomination.
|
|
71
|
+
*/
|
|
40
72
|
balance: string;
|
|
41
|
-
/**
|
|
73
|
+
/**
|
|
74
|
+
* code_hash is the hex-formatted code bytes from the EOA.
|
|
75
|
+
*/
|
|
42
76
|
code_hash: string;
|
|
43
|
-
/**
|
|
77
|
+
/**
|
|
78
|
+
* nonce is the account's sequence number.
|
|
79
|
+
*/
|
|
44
80
|
nonce: string;
|
|
45
81
|
}
|
|
46
82
|
export interface QueryAccountResponseAminoMsg {
|
|
@@ -50,9 +86,14 @@ export interface QueryAccountResponseAminoMsg {
|
|
|
50
86
|
/**
|
|
51
87
|
* QueryCosmosAccountRequest is the request type for the Query/CosmosAccount RPC
|
|
52
88
|
* method.
|
|
89
|
+
* @name QueryCosmosAccountRequest
|
|
90
|
+
* @package ethermint.evm.v1
|
|
91
|
+
* @see proto type: ethermint.evm.v1.QueryCosmosAccountRequest
|
|
53
92
|
*/
|
|
54
93
|
export interface QueryCosmosAccountRequest {
|
|
55
|
-
/**
|
|
94
|
+
/**
|
|
95
|
+
* address is the ethereum hex address to query the account for.
|
|
96
|
+
*/
|
|
56
97
|
address: string;
|
|
57
98
|
}
|
|
58
99
|
export interface QueryCosmosAccountRequestProtoMsg {
|
|
@@ -62,9 +103,14 @@ export interface QueryCosmosAccountRequestProtoMsg {
|
|
|
62
103
|
/**
|
|
63
104
|
* QueryCosmosAccountRequest is the request type for the Query/CosmosAccount RPC
|
|
64
105
|
* method.
|
|
106
|
+
* @name QueryCosmosAccountRequestAmino
|
|
107
|
+
* @package ethermint.evm.v1
|
|
108
|
+
* @see proto type: ethermint.evm.v1.QueryCosmosAccountRequest
|
|
65
109
|
*/
|
|
66
110
|
export interface QueryCosmosAccountRequestAmino {
|
|
67
|
-
/**
|
|
111
|
+
/**
|
|
112
|
+
* address is the ethereum hex address to query the account for.
|
|
113
|
+
*/
|
|
68
114
|
address: string;
|
|
69
115
|
}
|
|
70
116
|
export interface QueryCosmosAccountRequestAminoMsg {
|
|
@@ -74,13 +120,22 @@ export interface QueryCosmosAccountRequestAminoMsg {
|
|
|
74
120
|
/**
|
|
75
121
|
* QueryCosmosAccountResponse is the response type for the Query/CosmosAccount
|
|
76
122
|
* RPC method.
|
|
123
|
+
* @name QueryCosmosAccountResponse
|
|
124
|
+
* @package ethermint.evm.v1
|
|
125
|
+
* @see proto type: ethermint.evm.v1.QueryCosmosAccountResponse
|
|
77
126
|
*/
|
|
78
127
|
export interface QueryCosmosAccountResponse {
|
|
79
|
-
/**
|
|
128
|
+
/**
|
|
129
|
+
* cosmos_address is the cosmos address of the account.
|
|
130
|
+
*/
|
|
80
131
|
cosmosAddress: string;
|
|
81
|
-
/**
|
|
132
|
+
/**
|
|
133
|
+
* sequence is the account's sequence number.
|
|
134
|
+
*/
|
|
82
135
|
sequence: bigint;
|
|
83
|
-
/**
|
|
136
|
+
/**
|
|
137
|
+
* account_number is the account number
|
|
138
|
+
*/
|
|
84
139
|
accountNumber: bigint;
|
|
85
140
|
}
|
|
86
141
|
export interface QueryCosmosAccountResponseProtoMsg {
|
|
@@ -90,13 +145,22 @@ export interface QueryCosmosAccountResponseProtoMsg {
|
|
|
90
145
|
/**
|
|
91
146
|
* QueryCosmosAccountResponse is the response type for the Query/CosmosAccount
|
|
92
147
|
* RPC method.
|
|
148
|
+
* @name QueryCosmosAccountResponseAmino
|
|
149
|
+
* @package ethermint.evm.v1
|
|
150
|
+
* @see proto type: ethermint.evm.v1.QueryCosmosAccountResponse
|
|
93
151
|
*/
|
|
94
152
|
export interface QueryCosmosAccountResponseAmino {
|
|
95
|
-
/**
|
|
153
|
+
/**
|
|
154
|
+
* cosmos_address is the cosmos address of the account.
|
|
155
|
+
*/
|
|
96
156
|
cosmos_address: string;
|
|
97
|
-
/**
|
|
157
|
+
/**
|
|
158
|
+
* sequence is the account's sequence number.
|
|
159
|
+
*/
|
|
98
160
|
sequence: string;
|
|
99
|
-
/**
|
|
161
|
+
/**
|
|
162
|
+
* account_number is the account number
|
|
163
|
+
*/
|
|
100
164
|
account_number: string;
|
|
101
165
|
}
|
|
102
166
|
export interface QueryCosmosAccountResponseAminoMsg {
|
|
@@ -106,9 +170,14 @@ export interface QueryCosmosAccountResponseAminoMsg {
|
|
|
106
170
|
/**
|
|
107
171
|
* QueryValidatorAccountRequest is the request type for the
|
|
108
172
|
* Query/ValidatorAccount RPC method.
|
|
173
|
+
* @name QueryValidatorAccountRequest
|
|
174
|
+
* @package ethermint.evm.v1
|
|
175
|
+
* @see proto type: ethermint.evm.v1.QueryValidatorAccountRequest
|
|
109
176
|
*/
|
|
110
177
|
export interface QueryValidatorAccountRequest {
|
|
111
|
-
/**
|
|
178
|
+
/**
|
|
179
|
+
* cons_address is the validator cons address to query the account for.
|
|
180
|
+
*/
|
|
112
181
|
consAddress: string;
|
|
113
182
|
}
|
|
114
183
|
export interface QueryValidatorAccountRequestProtoMsg {
|
|
@@ -118,9 +187,14 @@ export interface QueryValidatorAccountRequestProtoMsg {
|
|
|
118
187
|
/**
|
|
119
188
|
* QueryValidatorAccountRequest is the request type for the
|
|
120
189
|
* Query/ValidatorAccount RPC method.
|
|
190
|
+
* @name QueryValidatorAccountRequestAmino
|
|
191
|
+
* @package ethermint.evm.v1
|
|
192
|
+
* @see proto type: ethermint.evm.v1.QueryValidatorAccountRequest
|
|
121
193
|
*/
|
|
122
194
|
export interface QueryValidatorAccountRequestAmino {
|
|
123
|
-
/**
|
|
195
|
+
/**
|
|
196
|
+
* cons_address is the validator cons address to query the account for.
|
|
197
|
+
*/
|
|
124
198
|
cons_address: string;
|
|
125
199
|
}
|
|
126
200
|
export interface QueryValidatorAccountRequestAminoMsg {
|
|
@@ -130,13 +204,22 @@ export interface QueryValidatorAccountRequestAminoMsg {
|
|
|
130
204
|
/**
|
|
131
205
|
* QueryValidatorAccountResponse is the response type for the
|
|
132
206
|
* Query/ValidatorAccount RPC method.
|
|
207
|
+
* @name QueryValidatorAccountResponse
|
|
208
|
+
* @package ethermint.evm.v1
|
|
209
|
+
* @see proto type: ethermint.evm.v1.QueryValidatorAccountResponse
|
|
133
210
|
*/
|
|
134
211
|
export interface QueryValidatorAccountResponse {
|
|
135
|
-
/**
|
|
212
|
+
/**
|
|
213
|
+
* account_address is the cosmos address of the account in bech32 format.
|
|
214
|
+
*/
|
|
136
215
|
accountAddress: string;
|
|
137
|
-
/**
|
|
216
|
+
/**
|
|
217
|
+
* sequence is the account's sequence number.
|
|
218
|
+
*/
|
|
138
219
|
sequence: bigint;
|
|
139
|
-
/**
|
|
220
|
+
/**
|
|
221
|
+
* account_number is the account number
|
|
222
|
+
*/
|
|
140
223
|
accountNumber: bigint;
|
|
141
224
|
}
|
|
142
225
|
export interface QueryValidatorAccountResponseProtoMsg {
|
|
@@ -146,71 +229,126 @@ export interface QueryValidatorAccountResponseProtoMsg {
|
|
|
146
229
|
/**
|
|
147
230
|
* QueryValidatorAccountResponse is the response type for the
|
|
148
231
|
* Query/ValidatorAccount RPC method.
|
|
232
|
+
* @name QueryValidatorAccountResponseAmino
|
|
233
|
+
* @package ethermint.evm.v1
|
|
234
|
+
* @see proto type: ethermint.evm.v1.QueryValidatorAccountResponse
|
|
149
235
|
*/
|
|
150
236
|
export interface QueryValidatorAccountResponseAmino {
|
|
151
|
-
/**
|
|
237
|
+
/**
|
|
238
|
+
* account_address is the cosmos address of the account in bech32 format.
|
|
239
|
+
*/
|
|
152
240
|
account_address: string;
|
|
153
|
-
/**
|
|
241
|
+
/**
|
|
242
|
+
* sequence is the account's sequence number.
|
|
243
|
+
*/
|
|
154
244
|
sequence: string;
|
|
155
|
-
/**
|
|
245
|
+
/**
|
|
246
|
+
* account_number is the account number
|
|
247
|
+
*/
|
|
156
248
|
account_number: string;
|
|
157
249
|
}
|
|
158
250
|
export interface QueryValidatorAccountResponseAminoMsg {
|
|
159
251
|
type: "/ethermint.evm.v1.QueryValidatorAccountResponse";
|
|
160
252
|
value: QueryValidatorAccountResponseAmino;
|
|
161
253
|
}
|
|
162
|
-
/**
|
|
254
|
+
/**
|
|
255
|
+
* QueryBalanceRequest is the request type for the Query/Balance RPC method.
|
|
256
|
+
* @name QueryBalanceRequest
|
|
257
|
+
* @package ethermint.evm.v1
|
|
258
|
+
* @see proto type: ethermint.evm.v1.QueryBalanceRequest
|
|
259
|
+
*/
|
|
163
260
|
export interface QueryBalanceRequest {
|
|
164
|
-
/**
|
|
261
|
+
/**
|
|
262
|
+
* address is the ethereum hex address to query the balance for.
|
|
263
|
+
*/
|
|
165
264
|
address: string;
|
|
166
265
|
}
|
|
167
266
|
export interface QueryBalanceRequestProtoMsg {
|
|
168
267
|
typeUrl: "/ethermint.evm.v1.QueryBalanceRequest";
|
|
169
268
|
value: Uint8Array;
|
|
170
269
|
}
|
|
171
|
-
/**
|
|
270
|
+
/**
|
|
271
|
+
* QueryBalanceRequest is the request type for the Query/Balance RPC method.
|
|
272
|
+
* @name QueryBalanceRequestAmino
|
|
273
|
+
* @package ethermint.evm.v1
|
|
274
|
+
* @see proto type: ethermint.evm.v1.QueryBalanceRequest
|
|
275
|
+
*/
|
|
172
276
|
export interface QueryBalanceRequestAmino {
|
|
173
|
-
/**
|
|
277
|
+
/**
|
|
278
|
+
* address is the ethereum hex address to query the balance for.
|
|
279
|
+
*/
|
|
174
280
|
address: string;
|
|
175
281
|
}
|
|
176
282
|
export interface QueryBalanceRequestAminoMsg {
|
|
177
283
|
type: "/ethermint.evm.v1.QueryBalanceRequest";
|
|
178
284
|
value: QueryBalanceRequestAmino;
|
|
179
285
|
}
|
|
180
|
-
/**
|
|
286
|
+
/**
|
|
287
|
+
* QueryBalanceResponse is the response type for the Query/Balance RPC method.
|
|
288
|
+
* @name QueryBalanceResponse
|
|
289
|
+
* @package ethermint.evm.v1
|
|
290
|
+
* @see proto type: ethermint.evm.v1.QueryBalanceResponse
|
|
291
|
+
*/
|
|
181
292
|
export interface QueryBalanceResponse {
|
|
182
|
-
/**
|
|
293
|
+
/**
|
|
294
|
+
* balance is the balance of the EVM denomination.
|
|
295
|
+
*/
|
|
183
296
|
balance: string;
|
|
184
297
|
}
|
|
185
298
|
export interface QueryBalanceResponseProtoMsg {
|
|
186
299
|
typeUrl: "/ethermint.evm.v1.QueryBalanceResponse";
|
|
187
300
|
value: Uint8Array;
|
|
188
301
|
}
|
|
189
|
-
/**
|
|
302
|
+
/**
|
|
303
|
+
* QueryBalanceResponse is the response type for the Query/Balance RPC method.
|
|
304
|
+
* @name QueryBalanceResponseAmino
|
|
305
|
+
* @package ethermint.evm.v1
|
|
306
|
+
* @see proto type: ethermint.evm.v1.QueryBalanceResponse
|
|
307
|
+
*/
|
|
190
308
|
export interface QueryBalanceResponseAmino {
|
|
191
|
-
/**
|
|
309
|
+
/**
|
|
310
|
+
* balance is the balance of the EVM denomination.
|
|
311
|
+
*/
|
|
192
312
|
balance: string;
|
|
193
313
|
}
|
|
194
314
|
export interface QueryBalanceResponseAminoMsg {
|
|
195
315
|
type: "/ethermint.evm.v1.QueryBalanceResponse";
|
|
196
316
|
value: QueryBalanceResponseAmino;
|
|
197
317
|
}
|
|
198
|
-
/**
|
|
318
|
+
/**
|
|
319
|
+
* QueryStorageRequest is the request type for the Query/Storage RPC method.
|
|
320
|
+
* @name QueryStorageRequest
|
|
321
|
+
* @package ethermint.evm.v1
|
|
322
|
+
* @see proto type: ethermint.evm.v1.QueryStorageRequest
|
|
323
|
+
*/
|
|
199
324
|
export interface QueryStorageRequest {
|
|
200
|
-
/**
|
|
325
|
+
/**
|
|
326
|
+
* address is the ethereum hex address to query the storage state for.
|
|
327
|
+
*/
|
|
201
328
|
address: string;
|
|
202
|
-
/**
|
|
329
|
+
/**
|
|
330
|
+
* key defines the key of the storage state
|
|
331
|
+
*/
|
|
203
332
|
key: string;
|
|
204
333
|
}
|
|
205
334
|
export interface QueryStorageRequestProtoMsg {
|
|
206
335
|
typeUrl: "/ethermint.evm.v1.QueryStorageRequest";
|
|
207
336
|
value: Uint8Array;
|
|
208
337
|
}
|
|
209
|
-
/**
|
|
338
|
+
/**
|
|
339
|
+
* QueryStorageRequest is the request type for the Query/Storage RPC method.
|
|
340
|
+
* @name QueryStorageRequestAmino
|
|
341
|
+
* @package ethermint.evm.v1
|
|
342
|
+
* @see proto type: ethermint.evm.v1.QueryStorageRequest
|
|
343
|
+
*/
|
|
210
344
|
export interface QueryStorageRequestAmino {
|
|
211
|
-
/**
|
|
345
|
+
/**
|
|
346
|
+
* address is the ethereum hex address to query the storage state for.
|
|
347
|
+
*/
|
|
212
348
|
address: string;
|
|
213
|
-
/**
|
|
349
|
+
/**
|
|
350
|
+
* key defines the key of the storage state
|
|
351
|
+
*/
|
|
214
352
|
key: string;
|
|
215
353
|
}
|
|
216
354
|
export interface QueryStorageRequestAminoMsg {
|
|
@@ -220,9 +358,14 @@ export interface QueryStorageRequestAminoMsg {
|
|
|
220
358
|
/**
|
|
221
359
|
* QueryStorageResponse is the response type for the Query/Storage RPC
|
|
222
360
|
* method.
|
|
361
|
+
* @name QueryStorageResponse
|
|
362
|
+
* @package ethermint.evm.v1
|
|
363
|
+
* @see proto type: ethermint.evm.v1.QueryStorageResponse
|
|
223
364
|
*/
|
|
224
365
|
export interface QueryStorageResponse {
|
|
225
|
-
/**
|
|
366
|
+
/**
|
|
367
|
+
* value defines the storage state value hash associated with the given key.
|
|
368
|
+
*/
|
|
226
369
|
value: string;
|
|
227
370
|
}
|
|
228
371
|
export interface QueryStorageResponseProtoMsg {
|
|
@@ -232,27 +375,46 @@ export interface QueryStorageResponseProtoMsg {
|
|
|
232
375
|
/**
|
|
233
376
|
* QueryStorageResponse is the response type for the Query/Storage RPC
|
|
234
377
|
* method.
|
|
378
|
+
* @name QueryStorageResponseAmino
|
|
379
|
+
* @package ethermint.evm.v1
|
|
380
|
+
* @see proto type: ethermint.evm.v1.QueryStorageResponse
|
|
235
381
|
*/
|
|
236
382
|
export interface QueryStorageResponseAmino {
|
|
237
|
-
/**
|
|
383
|
+
/**
|
|
384
|
+
* value defines the storage state value hash associated with the given key.
|
|
385
|
+
*/
|
|
238
386
|
value: string;
|
|
239
387
|
}
|
|
240
388
|
export interface QueryStorageResponseAminoMsg {
|
|
241
389
|
type: "/ethermint.evm.v1.QueryStorageResponse";
|
|
242
390
|
value: QueryStorageResponseAmino;
|
|
243
391
|
}
|
|
244
|
-
/**
|
|
392
|
+
/**
|
|
393
|
+
* QueryCodeRequest is the request type for the Query/Code RPC method.
|
|
394
|
+
* @name QueryCodeRequest
|
|
395
|
+
* @package ethermint.evm.v1
|
|
396
|
+
* @see proto type: ethermint.evm.v1.QueryCodeRequest
|
|
397
|
+
*/
|
|
245
398
|
export interface QueryCodeRequest {
|
|
246
|
-
/**
|
|
399
|
+
/**
|
|
400
|
+
* address is the ethereum hex address to query the code for.
|
|
401
|
+
*/
|
|
247
402
|
address: string;
|
|
248
403
|
}
|
|
249
404
|
export interface QueryCodeRequestProtoMsg {
|
|
250
405
|
typeUrl: "/ethermint.evm.v1.QueryCodeRequest";
|
|
251
406
|
value: Uint8Array;
|
|
252
407
|
}
|
|
253
|
-
/**
|
|
408
|
+
/**
|
|
409
|
+
* QueryCodeRequest is the request type for the Query/Code RPC method.
|
|
410
|
+
* @name QueryCodeRequestAmino
|
|
411
|
+
* @package ethermint.evm.v1
|
|
412
|
+
* @see proto type: ethermint.evm.v1.QueryCodeRequest
|
|
413
|
+
*/
|
|
254
414
|
export interface QueryCodeRequestAmino {
|
|
255
|
-
/**
|
|
415
|
+
/**
|
|
416
|
+
* address is the ethereum hex address to query the code for.
|
|
417
|
+
*/
|
|
256
418
|
address: string;
|
|
257
419
|
}
|
|
258
420
|
export interface QueryCodeRequestAminoMsg {
|
|
@@ -262,9 +424,14 @@ export interface QueryCodeRequestAminoMsg {
|
|
|
262
424
|
/**
|
|
263
425
|
* QueryCodeResponse is the response type for the Query/Code RPC
|
|
264
426
|
* method.
|
|
427
|
+
* @name QueryCodeResponse
|
|
428
|
+
* @package ethermint.evm.v1
|
|
429
|
+
* @see proto type: ethermint.evm.v1.QueryCodeResponse
|
|
265
430
|
*/
|
|
266
431
|
export interface QueryCodeResponse {
|
|
267
|
-
/**
|
|
432
|
+
/**
|
|
433
|
+
* code represents the code bytes from an ethereum address.
|
|
434
|
+
*/
|
|
268
435
|
code: Uint8Array;
|
|
269
436
|
}
|
|
270
437
|
export interface QueryCodeResponseProtoMsg {
|
|
@@ -274,263 +441,472 @@ export interface QueryCodeResponseProtoMsg {
|
|
|
274
441
|
/**
|
|
275
442
|
* QueryCodeResponse is the response type for the Query/Code RPC
|
|
276
443
|
* method.
|
|
444
|
+
* @name QueryCodeResponseAmino
|
|
445
|
+
* @package ethermint.evm.v1
|
|
446
|
+
* @see proto type: ethermint.evm.v1.QueryCodeResponse
|
|
277
447
|
*/
|
|
278
448
|
export interface QueryCodeResponseAmino {
|
|
279
|
-
/**
|
|
449
|
+
/**
|
|
450
|
+
* code represents the code bytes from an ethereum address.
|
|
451
|
+
*/
|
|
280
452
|
code: string;
|
|
281
453
|
}
|
|
282
454
|
export interface QueryCodeResponseAminoMsg {
|
|
283
455
|
type: "/ethermint.evm.v1.QueryCodeResponse";
|
|
284
456
|
value: QueryCodeResponseAmino;
|
|
285
457
|
}
|
|
286
|
-
/**
|
|
458
|
+
/**
|
|
459
|
+
* QueryTxLogsRequest is the request type for the Query/TxLogs RPC method.
|
|
460
|
+
* @name QueryTxLogsRequest
|
|
461
|
+
* @package ethermint.evm.v1
|
|
462
|
+
* @see proto type: ethermint.evm.v1.QueryTxLogsRequest
|
|
463
|
+
*/
|
|
287
464
|
export interface QueryTxLogsRequest {
|
|
288
|
-
/**
|
|
465
|
+
/**
|
|
466
|
+
* hash is the ethereum transaction hex hash to query the logs for.
|
|
467
|
+
*/
|
|
289
468
|
hash: string;
|
|
290
|
-
/**
|
|
469
|
+
/**
|
|
470
|
+
* pagination defines an optional pagination for the request.
|
|
471
|
+
*/
|
|
291
472
|
pagination?: PageRequest;
|
|
292
473
|
}
|
|
293
474
|
export interface QueryTxLogsRequestProtoMsg {
|
|
294
475
|
typeUrl: "/ethermint.evm.v1.QueryTxLogsRequest";
|
|
295
476
|
value: Uint8Array;
|
|
296
477
|
}
|
|
297
|
-
/**
|
|
478
|
+
/**
|
|
479
|
+
* QueryTxLogsRequest is the request type for the Query/TxLogs RPC method.
|
|
480
|
+
* @name QueryTxLogsRequestAmino
|
|
481
|
+
* @package ethermint.evm.v1
|
|
482
|
+
* @see proto type: ethermint.evm.v1.QueryTxLogsRequest
|
|
483
|
+
*/
|
|
298
484
|
export interface QueryTxLogsRequestAmino {
|
|
299
|
-
/**
|
|
485
|
+
/**
|
|
486
|
+
* hash is the ethereum transaction hex hash to query the logs for.
|
|
487
|
+
*/
|
|
300
488
|
hash: string;
|
|
301
|
-
/**
|
|
489
|
+
/**
|
|
490
|
+
* pagination defines an optional pagination for the request.
|
|
491
|
+
*/
|
|
302
492
|
pagination?: PageRequestAmino;
|
|
303
493
|
}
|
|
304
494
|
export interface QueryTxLogsRequestAminoMsg {
|
|
305
495
|
type: "/ethermint.evm.v1.QueryTxLogsRequest";
|
|
306
496
|
value: QueryTxLogsRequestAmino;
|
|
307
497
|
}
|
|
308
|
-
/**
|
|
498
|
+
/**
|
|
499
|
+
* QueryTxLogsResponse is the response type for the Query/TxLogs RPC method.
|
|
500
|
+
* @name QueryTxLogsResponse
|
|
501
|
+
* @package ethermint.evm.v1
|
|
502
|
+
* @see proto type: ethermint.evm.v1.QueryTxLogsResponse
|
|
503
|
+
*/
|
|
309
504
|
export interface QueryTxLogsResponse {
|
|
310
|
-
/**
|
|
505
|
+
/**
|
|
506
|
+
* logs represents the ethereum logs generated from the given transaction.
|
|
507
|
+
*/
|
|
311
508
|
logs: Log[];
|
|
312
|
-
/**
|
|
509
|
+
/**
|
|
510
|
+
* pagination defines the pagination in the response.
|
|
511
|
+
*/
|
|
313
512
|
pagination?: PageResponse;
|
|
314
513
|
}
|
|
315
514
|
export interface QueryTxLogsResponseProtoMsg {
|
|
316
515
|
typeUrl: "/ethermint.evm.v1.QueryTxLogsResponse";
|
|
317
516
|
value: Uint8Array;
|
|
318
517
|
}
|
|
319
|
-
/**
|
|
518
|
+
/**
|
|
519
|
+
* QueryTxLogsResponse is the response type for the Query/TxLogs RPC method.
|
|
520
|
+
* @name QueryTxLogsResponseAmino
|
|
521
|
+
* @package ethermint.evm.v1
|
|
522
|
+
* @see proto type: ethermint.evm.v1.QueryTxLogsResponse
|
|
523
|
+
*/
|
|
320
524
|
export interface QueryTxLogsResponseAmino {
|
|
321
|
-
/**
|
|
525
|
+
/**
|
|
526
|
+
* logs represents the ethereum logs generated from the given transaction.
|
|
527
|
+
*/
|
|
322
528
|
logs: LogAmino[];
|
|
323
|
-
/**
|
|
529
|
+
/**
|
|
530
|
+
* pagination defines the pagination in the response.
|
|
531
|
+
*/
|
|
324
532
|
pagination?: PageResponseAmino;
|
|
325
533
|
}
|
|
326
534
|
export interface QueryTxLogsResponseAminoMsg {
|
|
327
535
|
type: "/ethermint.evm.v1.QueryTxLogsResponse";
|
|
328
536
|
value: QueryTxLogsResponseAmino;
|
|
329
537
|
}
|
|
330
|
-
/**
|
|
538
|
+
/**
|
|
539
|
+
* QueryParamsRequest defines the request type for querying x/evm parameters.
|
|
540
|
+
* @name QueryParamsRequest
|
|
541
|
+
* @package ethermint.evm.v1
|
|
542
|
+
* @see proto type: ethermint.evm.v1.QueryParamsRequest
|
|
543
|
+
*/
|
|
331
544
|
export interface QueryParamsRequest {
|
|
332
545
|
}
|
|
333
546
|
export interface QueryParamsRequestProtoMsg {
|
|
334
547
|
typeUrl: "/ethermint.evm.v1.QueryParamsRequest";
|
|
335
548
|
value: Uint8Array;
|
|
336
549
|
}
|
|
337
|
-
/**
|
|
550
|
+
/**
|
|
551
|
+
* QueryParamsRequest defines the request type for querying x/evm parameters.
|
|
552
|
+
* @name QueryParamsRequestAmino
|
|
553
|
+
* @package ethermint.evm.v1
|
|
554
|
+
* @see proto type: ethermint.evm.v1.QueryParamsRequest
|
|
555
|
+
*/
|
|
338
556
|
export interface QueryParamsRequestAmino {
|
|
339
557
|
}
|
|
340
558
|
export interface QueryParamsRequestAminoMsg {
|
|
341
559
|
type: "/ethermint.evm.v1.QueryParamsRequest";
|
|
342
560
|
value: QueryParamsRequestAmino;
|
|
343
561
|
}
|
|
344
|
-
/**
|
|
562
|
+
/**
|
|
563
|
+
* QueryParamsResponse defines the response type for querying x/evm parameters.
|
|
564
|
+
* @name QueryParamsResponse
|
|
565
|
+
* @package ethermint.evm.v1
|
|
566
|
+
* @see proto type: ethermint.evm.v1.QueryParamsResponse
|
|
567
|
+
*/
|
|
345
568
|
export interface QueryParamsResponse {
|
|
346
|
-
/**
|
|
569
|
+
/**
|
|
570
|
+
* params define the evm module parameters.
|
|
571
|
+
*/
|
|
347
572
|
params: Params;
|
|
348
573
|
}
|
|
349
574
|
export interface QueryParamsResponseProtoMsg {
|
|
350
575
|
typeUrl: "/ethermint.evm.v1.QueryParamsResponse";
|
|
351
576
|
value: Uint8Array;
|
|
352
577
|
}
|
|
353
|
-
/**
|
|
578
|
+
/**
|
|
579
|
+
* QueryParamsResponse defines the response type for querying x/evm parameters.
|
|
580
|
+
* @name QueryParamsResponseAmino
|
|
581
|
+
* @package ethermint.evm.v1
|
|
582
|
+
* @see proto type: ethermint.evm.v1.QueryParamsResponse
|
|
583
|
+
*/
|
|
354
584
|
export interface QueryParamsResponseAmino {
|
|
355
|
-
/**
|
|
585
|
+
/**
|
|
586
|
+
* params define the evm module parameters.
|
|
587
|
+
*/
|
|
356
588
|
params: ParamsAmino;
|
|
357
589
|
}
|
|
358
590
|
export interface QueryParamsResponseAminoMsg {
|
|
359
591
|
type: "/ethermint.evm.v1.QueryParamsResponse";
|
|
360
592
|
value: QueryParamsResponseAmino;
|
|
361
593
|
}
|
|
362
|
-
/**
|
|
594
|
+
/**
|
|
595
|
+
* EthCallRequest defines EthCall request
|
|
596
|
+
* @name EthCallRequest
|
|
597
|
+
* @package ethermint.evm.v1
|
|
598
|
+
* @see proto type: ethermint.evm.v1.EthCallRequest
|
|
599
|
+
*/
|
|
363
600
|
export interface EthCallRequest {
|
|
364
|
-
/**
|
|
601
|
+
/**
|
|
602
|
+
* args uses the same json format as the json rpc api.
|
|
603
|
+
*/
|
|
365
604
|
args: Uint8Array;
|
|
366
|
-
/**
|
|
605
|
+
/**
|
|
606
|
+
* gas_cap defines the default gas cap to be used
|
|
607
|
+
*/
|
|
367
608
|
gasCap: bigint;
|
|
368
|
-
/**
|
|
609
|
+
/**
|
|
610
|
+
* proposer_address of the requested block in hex format
|
|
611
|
+
*/
|
|
369
612
|
proposerAddress: Uint8Array;
|
|
370
|
-
/**
|
|
613
|
+
/**
|
|
614
|
+
* chain_id is the eip155 chain id parsed from the requested block header
|
|
615
|
+
*/
|
|
371
616
|
chainId: bigint;
|
|
372
617
|
}
|
|
373
618
|
export interface EthCallRequestProtoMsg {
|
|
374
619
|
typeUrl: "/ethermint.evm.v1.EthCallRequest";
|
|
375
620
|
value: Uint8Array;
|
|
376
621
|
}
|
|
377
|
-
/**
|
|
622
|
+
/**
|
|
623
|
+
* EthCallRequest defines EthCall request
|
|
624
|
+
* @name EthCallRequestAmino
|
|
625
|
+
* @package ethermint.evm.v1
|
|
626
|
+
* @see proto type: ethermint.evm.v1.EthCallRequest
|
|
627
|
+
*/
|
|
378
628
|
export interface EthCallRequestAmino {
|
|
379
|
-
/**
|
|
629
|
+
/**
|
|
630
|
+
* args uses the same json format as the json rpc api.
|
|
631
|
+
*/
|
|
380
632
|
args: string;
|
|
381
|
-
/**
|
|
633
|
+
/**
|
|
634
|
+
* gas_cap defines the default gas cap to be used
|
|
635
|
+
*/
|
|
382
636
|
gas_cap: string;
|
|
383
|
-
/**
|
|
637
|
+
/**
|
|
638
|
+
* proposer_address of the requested block in hex format
|
|
639
|
+
*/
|
|
384
640
|
proposer_address: string;
|
|
385
|
-
/**
|
|
641
|
+
/**
|
|
642
|
+
* chain_id is the eip155 chain id parsed from the requested block header
|
|
643
|
+
*/
|
|
386
644
|
chain_id: string;
|
|
387
645
|
}
|
|
388
646
|
export interface EthCallRequestAminoMsg {
|
|
389
647
|
type: "/ethermint.evm.v1.EthCallRequest";
|
|
390
648
|
value: EthCallRequestAmino;
|
|
391
649
|
}
|
|
392
|
-
/**
|
|
650
|
+
/**
|
|
651
|
+
* EstimateGasResponse defines EstimateGas response
|
|
652
|
+
* @name EstimateGasResponse
|
|
653
|
+
* @package ethermint.evm.v1
|
|
654
|
+
* @see proto type: ethermint.evm.v1.EstimateGasResponse
|
|
655
|
+
*/
|
|
393
656
|
export interface EstimateGasResponse {
|
|
394
|
-
/**
|
|
657
|
+
/**
|
|
658
|
+
* gas returns the estimated gas
|
|
659
|
+
*/
|
|
395
660
|
gas: bigint;
|
|
396
661
|
}
|
|
397
662
|
export interface EstimateGasResponseProtoMsg {
|
|
398
663
|
typeUrl: "/ethermint.evm.v1.EstimateGasResponse";
|
|
399
664
|
value: Uint8Array;
|
|
400
665
|
}
|
|
401
|
-
/**
|
|
666
|
+
/**
|
|
667
|
+
* EstimateGasResponse defines EstimateGas response
|
|
668
|
+
* @name EstimateGasResponseAmino
|
|
669
|
+
* @package ethermint.evm.v1
|
|
670
|
+
* @see proto type: ethermint.evm.v1.EstimateGasResponse
|
|
671
|
+
*/
|
|
402
672
|
export interface EstimateGasResponseAmino {
|
|
403
|
-
/**
|
|
673
|
+
/**
|
|
674
|
+
* gas returns the estimated gas
|
|
675
|
+
*/
|
|
404
676
|
gas: string;
|
|
405
677
|
}
|
|
406
678
|
export interface EstimateGasResponseAminoMsg {
|
|
407
679
|
type: "/ethermint.evm.v1.EstimateGasResponse";
|
|
408
680
|
value: EstimateGasResponseAmino;
|
|
409
681
|
}
|
|
410
|
-
/**
|
|
682
|
+
/**
|
|
683
|
+
* QueryTraceTxRequest defines TraceTx request
|
|
684
|
+
* @name QueryTraceTxRequest
|
|
685
|
+
* @package ethermint.evm.v1
|
|
686
|
+
* @see proto type: ethermint.evm.v1.QueryTraceTxRequest
|
|
687
|
+
*/
|
|
411
688
|
export interface QueryTraceTxRequest {
|
|
412
|
-
/**
|
|
689
|
+
/**
|
|
690
|
+
* msg is the MsgEthereumTx for the requested transaction
|
|
691
|
+
*/
|
|
413
692
|
msg?: MsgEthereumTx;
|
|
414
|
-
/**
|
|
693
|
+
/**
|
|
694
|
+
* trace_config holds extra parameters to trace functions.
|
|
695
|
+
*/
|
|
415
696
|
traceConfig?: TraceConfig;
|
|
416
697
|
/**
|
|
417
698
|
* predecessors is an array of transactions included in the same block
|
|
418
699
|
* need to be replayed first to get correct context for tracing.
|
|
419
700
|
*/
|
|
420
701
|
predecessors: MsgEthereumTx[];
|
|
421
|
-
/**
|
|
702
|
+
/**
|
|
703
|
+
* block_number of requested transaction
|
|
704
|
+
*/
|
|
422
705
|
blockNumber: bigint;
|
|
423
|
-
/**
|
|
706
|
+
/**
|
|
707
|
+
* block_hash of requested transaction
|
|
708
|
+
*/
|
|
424
709
|
blockHash: string;
|
|
425
|
-
/**
|
|
710
|
+
/**
|
|
711
|
+
* block_time of requested transaction
|
|
712
|
+
*/
|
|
426
713
|
blockTime: Date;
|
|
427
|
-
/**
|
|
714
|
+
/**
|
|
715
|
+
* proposer_address is the proposer of the requested block
|
|
716
|
+
*/
|
|
428
717
|
proposerAddress: Uint8Array;
|
|
429
|
-
/**
|
|
718
|
+
/**
|
|
719
|
+
* chain_id is the the eip155 chain id parsed from the requested block header
|
|
720
|
+
*/
|
|
430
721
|
chainId: bigint;
|
|
431
722
|
}
|
|
432
723
|
export interface QueryTraceTxRequestProtoMsg {
|
|
433
724
|
typeUrl: "/ethermint.evm.v1.QueryTraceTxRequest";
|
|
434
725
|
value: Uint8Array;
|
|
435
726
|
}
|
|
436
|
-
/**
|
|
727
|
+
/**
|
|
728
|
+
* QueryTraceTxRequest defines TraceTx request
|
|
729
|
+
* @name QueryTraceTxRequestAmino
|
|
730
|
+
* @package ethermint.evm.v1
|
|
731
|
+
* @see proto type: ethermint.evm.v1.QueryTraceTxRequest
|
|
732
|
+
*/
|
|
437
733
|
export interface QueryTraceTxRequestAmino {
|
|
438
|
-
/**
|
|
734
|
+
/**
|
|
735
|
+
* msg is the MsgEthereumTx for the requested transaction
|
|
736
|
+
*/
|
|
439
737
|
msg?: MsgEthereumTxAmino;
|
|
440
|
-
/**
|
|
738
|
+
/**
|
|
739
|
+
* trace_config holds extra parameters to trace functions.
|
|
740
|
+
*/
|
|
441
741
|
trace_config?: TraceConfigAmino;
|
|
442
742
|
/**
|
|
443
743
|
* predecessors is an array of transactions included in the same block
|
|
444
744
|
* need to be replayed first to get correct context for tracing.
|
|
445
745
|
*/
|
|
446
746
|
predecessors: MsgEthereumTxAmino[];
|
|
447
|
-
/**
|
|
747
|
+
/**
|
|
748
|
+
* block_number of requested transaction
|
|
749
|
+
*/
|
|
448
750
|
block_number: string;
|
|
449
|
-
/**
|
|
751
|
+
/**
|
|
752
|
+
* block_hash of requested transaction
|
|
753
|
+
*/
|
|
450
754
|
block_hash: string;
|
|
451
|
-
/**
|
|
755
|
+
/**
|
|
756
|
+
* block_time of requested transaction
|
|
757
|
+
*/
|
|
452
758
|
block_time: string;
|
|
453
|
-
/**
|
|
759
|
+
/**
|
|
760
|
+
* proposer_address is the proposer of the requested block
|
|
761
|
+
*/
|
|
454
762
|
proposer_address: string;
|
|
455
|
-
/**
|
|
763
|
+
/**
|
|
764
|
+
* chain_id is the the eip155 chain id parsed from the requested block header
|
|
765
|
+
*/
|
|
456
766
|
chain_id: string;
|
|
457
767
|
}
|
|
458
768
|
export interface QueryTraceTxRequestAminoMsg {
|
|
459
769
|
type: "/ethermint.evm.v1.QueryTraceTxRequest";
|
|
460
770
|
value: QueryTraceTxRequestAmino;
|
|
461
771
|
}
|
|
462
|
-
/**
|
|
772
|
+
/**
|
|
773
|
+
* QueryTraceTxResponse defines TraceTx response
|
|
774
|
+
* @name QueryTraceTxResponse
|
|
775
|
+
* @package ethermint.evm.v1
|
|
776
|
+
* @see proto type: ethermint.evm.v1.QueryTraceTxResponse
|
|
777
|
+
*/
|
|
463
778
|
export interface QueryTraceTxResponse {
|
|
464
|
-
/**
|
|
779
|
+
/**
|
|
780
|
+
* data is the response serialized in bytes
|
|
781
|
+
*/
|
|
465
782
|
data: Uint8Array;
|
|
466
783
|
}
|
|
467
784
|
export interface QueryTraceTxResponseProtoMsg {
|
|
468
785
|
typeUrl: "/ethermint.evm.v1.QueryTraceTxResponse";
|
|
469
786
|
value: Uint8Array;
|
|
470
787
|
}
|
|
471
|
-
/**
|
|
788
|
+
/**
|
|
789
|
+
* QueryTraceTxResponse defines TraceTx response
|
|
790
|
+
* @name QueryTraceTxResponseAmino
|
|
791
|
+
* @package ethermint.evm.v1
|
|
792
|
+
* @see proto type: ethermint.evm.v1.QueryTraceTxResponse
|
|
793
|
+
*/
|
|
472
794
|
export interface QueryTraceTxResponseAmino {
|
|
473
|
-
/**
|
|
795
|
+
/**
|
|
796
|
+
* data is the response serialized in bytes
|
|
797
|
+
*/
|
|
474
798
|
data: string;
|
|
475
799
|
}
|
|
476
800
|
export interface QueryTraceTxResponseAminoMsg {
|
|
477
801
|
type: "/ethermint.evm.v1.QueryTraceTxResponse";
|
|
478
802
|
value: QueryTraceTxResponseAmino;
|
|
479
803
|
}
|
|
480
|
-
/**
|
|
804
|
+
/**
|
|
805
|
+
* QueryTraceBlockRequest defines TraceTx request
|
|
806
|
+
* @name QueryTraceBlockRequest
|
|
807
|
+
* @package ethermint.evm.v1
|
|
808
|
+
* @see proto type: ethermint.evm.v1.QueryTraceBlockRequest
|
|
809
|
+
*/
|
|
481
810
|
export interface QueryTraceBlockRequest {
|
|
482
|
-
/**
|
|
811
|
+
/**
|
|
812
|
+
* txs is an array of messages in the block
|
|
813
|
+
*/
|
|
483
814
|
txs: MsgEthereumTx[];
|
|
484
|
-
/**
|
|
815
|
+
/**
|
|
816
|
+
* trace_config holds extra parameters to trace functions.
|
|
817
|
+
*/
|
|
485
818
|
traceConfig?: TraceConfig;
|
|
486
|
-
/**
|
|
819
|
+
/**
|
|
820
|
+
* block_number of the traced block
|
|
821
|
+
*/
|
|
487
822
|
blockNumber: bigint;
|
|
488
|
-
/**
|
|
823
|
+
/**
|
|
824
|
+
* block_hash (hex) of the traced block
|
|
825
|
+
*/
|
|
489
826
|
blockHash: string;
|
|
490
|
-
/**
|
|
827
|
+
/**
|
|
828
|
+
* block_time of the traced block
|
|
829
|
+
*/
|
|
491
830
|
blockTime: Date;
|
|
492
|
-
/**
|
|
831
|
+
/**
|
|
832
|
+
* proposer_address is the address of the requested block
|
|
833
|
+
*/
|
|
493
834
|
proposerAddress: Uint8Array;
|
|
494
|
-
/**
|
|
835
|
+
/**
|
|
836
|
+
* chain_id is the eip155 chain id parsed from the requested block header
|
|
837
|
+
*/
|
|
495
838
|
chainId: bigint;
|
|
496
839
|
}
|
|
497
840
|
export interface QueryTraceBlockRequestProtoMsg {
|
|
498
841
|
typeUrl: "/ethermint.evm.v1.QueryTraceBlockRequest";
|
|
499
842
|
value: Uint8Array;
|
|
500
843
|
}
|
|
501
|
-
/**
|
|
844
|
+
/**
|
|
845
|
+
* QueryTraceBlockRequest defines TraceTx request
|
|
846
|
+
* @name QueryTraceBlockRequestAmino
|
|
847
|
+
* @package ethermint.evm.v1
|
|
848
|
+
* @see proto type: ethermint.evm.v1.QueryTraceBlockRequest
|
|
849
|
+
*/
|
|
502
850
|
export interface QueryTraceBlockRequestAmino {
|
|
503
|
-
/**
|
|
851
|
+
/**
|
|
852
|
+
* txs is an array of messages in the block
|
|
853
|
+
*/
|
|
504
854
|
txs: MsgEthereumTxAmino[];
|
|
505
|
-
/**
|
|
855
|
+
/**
|
|
856
|
+
* trace_config holds extra parameters to trace functions.
|
|
857
|
+
*/
|
|
506
858
|
trace_config?: TraceConfigAmino;
|
|
507
|
-
/**
|
|
859
|
+
/**
|
|
860
|
+
* block_number of the traced block
|
|
861
|
+
*/
|
|
508
862
|
block_number: string;
|
|
509
|
-
/**
|
|
863
|
+
/**
|
|
864
|
+
* block_hash (hex) of the traced block
|
|
865
|
+
*/
|
|
510
866
|
block_hash: string;
|
|
511
|
-
/**
|
|
867
|
+
/**
|
|
868
|
+
* block_time of the traced block
|
|
869
|
+
*/
|
|
512
870
|
block_time: string;
|
|
513
|
-
/**
|
|
871
|
+
/**
|
|
872
|
+
* proposer_address is the address of the requested block
|
|
873
|
+
*/
|
|
514
874
|
proposer_address: string;
|
|
515
|
-
/**
|
|
875
|
+
/**
|
|
876
|
+
* chain_id is the eip155 chain id parsed from the requested block header
|
|
877
|
+
*/
|
|
516
878
|
chain_id: string;
|
|
517
879
|
}
|
|
518
880
|
export interface QueryTraceBlockRequestAminoMsg {
|
|
519
881
|
type: "/ethermint.evm.v1.QueryTraceBlockRequest";
|
|
520
882
|
value: QueryTraceBlockRequestAmino;
|
|
521
883
|
}
|
|
522
|
-
/**
|
|
884
|
+
/**
|
|
885
|
+
* QueryTraceBlockResponse defines TraceBlock response
|
|
886
|
+
* @name QueryTraceBlockResponse
|
|
887
|
+
* @package ethermint.evm.v1
|
|
888
|
+
* @see proto type: ethermint.evm.v1.QueryTraceBlockResponse
|
|
889
|
+
*/
|
|
523
890
|
export interface QueryTraceBlockResponse {
|
|
524
|
-
/**
|
|
891
|
+
/**
|
|
892
|
+
* data is the response serialized in bytes
|
|
893
|
+
*/
|
|
525
894
|
data: Uint8Array;
|
|
526
895
|
}
|
|
527
896
|
export interface QueryTraceBlockResponseProtoMsg {
|
|
528
897
|
typeUrl: "/ethermint.evm.v1.QueryTraceBlockResponse";
|
|
529
898
|
value: Uint8Array;
|
|
530
899
|
}
|
|
531
|
-
/**
|
|
900
|
+
/**
|
|
901
|
+
* QueryTraceBlockResponse defines TraceBlock response
|
|
902
|
+
* @name QueryTraceBlockResponseAmino
|
|
903
|
+
* @package ethermint.evm.v1
|
|
904
|
+
* @see proto type: ethermint.evm.v1.QueryTraceBlockResponse
|
|
905
|
+
*/
|
|
532
906
|
export interface QueryTraceBlockResponseAmino {
|
|
533
|
-
/**
|
|
907
|
+
/**
|
|
908
|
+
* data is the response serialized in bytes
|
|
909
|
+
*/
|
|
534
910
|
data: string;
|
|
535
911
|
}
|
|
536
912
|
export interface QueryTraceBlockResponseAminoMsg {
|
|
@@ -540,6 +916,9 @@ export interface QueryTraceBlockResponseAminoMsg {
|
|
|
540
916
|
/**
|
|
541
917
|
* QueryBaseFeeRequest defines the request type for querying the EIP1559 base
|
|
542
918
|
* fee.
|
|
919
|
+
* @name QueryBaseFeeRequest
|
|
920
|
+
* @package ethermint.evm.v1
|
|
921
|
+
* @see proto type: ethermint.evm.v1.QueryBaseFeeRequest
|
|
543
922
|
*/
|
|
544
923
|
export interface QueryBaseFeeRequest {
|
|
545
924
|
}
|
|
@@ -550,6 +929,9 @@ export interface QueryBaseFeeRequestProtoMsg {
|
|
|
550
929
|
/**
|
|
551
930
|
* QueryBaseFeeRequest defines the request type for querying the EIP1559 base
|
|
552
931
|
* fee.
|
|
932
|
+
* @name QueryBaseFeeRequestAmino
|
|
933
|
+
* @package ethermint.evm.v1
|
|
934
|
+
* @see proto type: ethermint.evm.v1.QueryBaseFeeRequest
|
|
553
935
|
*/
|
|
554
936
|
export interface QueryBaseFeeRequestAmino {
|
|
555
937
|
}
|
|
@@ -557,24 +939,44 @@ export interface QueryBaseFeeRequestAminoMsg {
|
|
|
557
939
|
type: "/ethermint.evm.v1.QueryBaseFeeRequest";
|
|
558
940
|
value: QueryBaseFeeRequestAmino;
|
|
559
941
|
}
|
|
560
|
-
/**
|
|
942
|
+
/**
|
|
943
|
+
* QueryBaseFeeResponse returns the EIP1559 base fee.
|
|
944
|
+
* @name QueryBaseFeeResponse
|
|
945
|
+
* @package ethermint.evm.v1
|
|
946
|
+
* @see proto type: ethermint.evm.v1.QueryBaseFeeResponse
|
|
947
|
+
*/
|
|
561
948
|
export interface QueryBaseFeeResponse {
|
|
562
|
-
/**
|
|
949
|
+
/**
|
|
950
|
+
* base_fee is the EIP1559 base fee
|
|
951
|
+
*/
|
|
563
952
|
baseFee: string;
|
|
564
953
|
}
|
|
565
954
|
export interface QueryBaseFeeResponseProtoMsg {
|
|
566
955
|
typeUrl: "/ethermint.evm.v1.QueryBaseFeeResponse";
|
|
567
956
|
value: Uint8Array;
|
|
568
957
|
}
|
|
569
|
-
/**
|
|
958
|
+
/**
|
|
959
|
+
* QueryBaseFeeResponse returns the EIP1559 base fee.
|
|
960
|
+
* @name QueryBaseFeeResponseAmino
|
|
961
|
+
* @package ethermint.evm.v1
|
|
962
|
+
* @see proto type: ethermint.evm.v1.QueryBaseFeeResponse
|
|
963
|
+
*/
|
|
570
964
|
export interface QueryBaseFeeResponseAmino {
|
|
571
|
-
/**
|
|
965
|
+
/**
|
|
966
|
+
* base_fee is the EIP1559 base fee
|
|
967
|
+
*/
|
|
572
968
|
base_fee: string;
|
|
573
969
|
}
|
|
574
970
|
export interface QueryBaseFeeResponseAminoMsg {
|
|
575
971
|
type: "/ethermint.evm.v1.QueryBaseFeeResponse";
|
|
576
972
|
value: QueryBaseFeeResponseAmino;
|
|
577
973
|
}
|
|
974
|
+
/**
|
|
975
|
+
* QueryAccountRequest is the request type for the Query/Account RPC method.
|
|
976
|
+
* @name QueryAccountRequest
|
|
977
|
+
* @package ethermint.evm.v1
|
|
978
|
+
* @see proto type: ethermint.evm.v1.QueryAccountRequest
|
|
979
|
+
*/
|
|
578
980
|
export declare const QueryAccountRequest: {
|
|
579
981
|
typeUrl: string;
|
|
580
982
|
is(o: any): o is QueryAccountRequest;
|
|
@@ -590,6 +992,12 @@ export declare const QueryAccountRequest: {
|
|
|
590
992
|
toProtoMsg(message: QueryAccountRequest): QueryAccountRequestProtoMsg;
|
|
591
993
|
registerTypeUrl(): void;
|
|
592
994
|
};
|
|
995
|
+
/**
|
|
996
|
+
* QueryAccountResponse is the response type for the Query/Account RPC method.
|
|
997
|
+
* @name QueryAccountResponse
|
|
998
|
+
* @package ethermint.evm.v1
|
|
999
|
+
* @see proto type: ethermint.evm.v1.QueryAccountResponse
|
|
1000
|
+
*/
|
|
593
1001
|
export declare const QueryAccountResponse: {
|
|
594
1002
|
typeUrl: string;
|
|
595
1003
|
is(o: any): o is QueryAccountResponse;
|
|
@@ -605,6 +1013,13 @@ export declare const QueryAccountResponse: {
|
|
|
605
1013
|
toProtoMsg(message: QueryAccountResponse): QueryAccountResponseProtoMsg;
|
|
606
1014
|
registerTypeUrl(): void;
|
|
607
1015
|
};
|
|
1016
|
+
/**
|
|
1017
|
+
* QueryCosmosAccountRequest is the request type for the Query/CosmosAccount RPC
|
|
1018
|
+
* method.
|
|
1019
|
+
* @name QueryCosmosAccountRequest
|
|
1020
|
+
* @package ethermint.evm.v1
|
|
1021
|
+
* @see proto type: ethermint.evm.v1.QueryCosmosAccountRequest
|
|
1022
|
+
*/
|
|
608
1023
|
export declare const QueryCosmosAccountRequest: {
|
|
609
1024
|
typeUrl: string;
|
|
610
1025
|
is(o: any): o is QueryCosmosAccountRequest;
|
|
@@ -620,6 +1035,13 @@ export declare const QueryCosmosAccountRequest: {
|
|
|
620
1035
|
toProtoMsg(message: QueryCosmosAccountRequest): QueryCosmosAccountRequestProtoMsg;
|
|
621
1036
|
registerTypeUrl(): void;
|
|
622
1037
|
};
|
|
1038
|
+
/**
|
|
1039
|
+
* QueryCosmosAccountResponse is the response type for the Query/CosmosAccount
|
|
1040
|
+
* RPC method.
|
|
1041
|
+
* @name QueryCosmosAccountResponse
|
|
1042
|
+
* @package ethermint.evm.v1
|
|
1043
|
+
* @see proto type: ethermint.evm.v1.QueryCosmosAccountResponse
|
|
1044
|
+
*/
|
|
623
1045
|
export declare const QueryCosmosAccountResponse: {
|
|
624
1046
|
typeUrl: string;
|
|
625
1047
|
is(o: any): o is QueryCosmosAccountResponse;
|
|
@@ -635,6 +1057,13 @@ export declare const QueryCosmosAccountResponse: {
|
|
|
635
1057
|
toProtoMsg(message: QueryCosmosAccountResponse): QueryCosmosAccountResponseProtoMsg;
|
|
636
1058
|
registerTypeUrl(): void;
|
|
637
1059
|
};
|
|
1060
|
+
/**
|
|
1061
|
+
* QueryValidatorAccountRequest is the request type for the
|
|
1062
|
+
* Query/ValidatorAccount RPC method.
|
|
1063
|
+
* @name QueryValidatorAccountRequest
|
|
1064
|
+
* @package ethermint.evm.v1
|
|
1065
|
+
* @see proto type: ethermint.evm.v1.QueryValidatorAccountRequest
|
|
1066
|
+
*/
|
|
638
1067
|
export declare const QueryValidatorAccountRequest: {
|
|
639
1068
|
typeUrl: string;
|
|
640
1069
|
is(o: any): o is QueryValidatorAccountRequest;
|
|
@@ -650,6 +1079,13 @@ export declare const QueryValidatorAccountRequest: {
|
|
|
650
1079
|
toProtoMsg(message: QueryValidatorAccountRequest): QueryValidatorAccountRequestProtoMsg;
|
|
651
1080
|
registerTypeUrl(): void;
|
|
652
1081
|
};
|
|
1082
|
+
/**
|
|
1083
|
+
* QueryValidatorAccountResponse is the response type for the
|
|
1084
|
+
* Query/ValidatorAccount RPC method.
|
|
1085
|
+
* @name QueryValidatorAccountResponse
|
|
1086
|
+
* @package ethermint.evm.v1
|
|
1087
|
+
* @see proto type: ethermint.evm.v1.QueryValidatorAccountResponse
|
|
1088
|
+
*/
|
|
653
1089
|
export declare const QueryValidatorAccountResponse: {
|
|
654
1090
|
typeUrl: string;
|
|
655
1091
|
is(o: any): o is QueryValidatorAccountResponse;
|
|
@@ -665,6 +1101,12 @@ export declare const QueryValidatorAccountResponse: {
|
|
|
665
1101
|
toProtoMsg(message: QueryValidatorAccountResponse): QueryValidatorAccountResponseProtoMsg;
|
|
666
1102
|
registerTypeUrl(): void;
|
|
667
1103
|
};
|
|
1104
|
+
/**
|
|
1105
|
+
* QueryBalanceRequest is the request type for the Query/Balance RPC method.
|
|
1106
|
+
* @name QueryBalanceRequest
|
|
1107
|
+
* @package ethermint.evm.v1
|
|
1108
|
+
* @see proto type: ethermint.evm.v1.QueryBalanceRequest
|
|
1109
|
+
*/
|
|
668
1110
|
export declare const QueryBalanceRequest: {
|
|
669
1111
|
typeUrl: string;
|
|
670
1112
|
is(o: any): o is QueryBalanceRequest;
|
|
@@ -680,6 +1122,12 @@ export declare const QueryBalanceRequest: {
|
|
|
680
1122
|
toProtoMsg(message: QueryBalanceRequest): QueryBalanceRequestProtoMsg;
|
|
681
1123
|
registerTypeUrl(): void;
|
|
682
1124
|
};
|
|
1125
|
+
/**
|
|
1126
|
+
* QueryBalanceResponse is the response type for the Query/Balance RPC method.
|
|
1127
|
+
* @name QueryBalanceResponse
|
|
1128
|
+
* @package ethermint.evm.v1
|
|
1129
|
+
* @see proto type: ethermint.evm.v1.QueryBalanceResponse
|
|
1130
|
+
*/
|
|
683
1131
|
export declare const QueryBalanceResponse: {
|
|
684
1132
|
typeUrl: string;
|
|
685
1133
|
is(o: any): o is QueryBalanceResponse;
|
|
@@ -695,6 +1143,12 @@ export declare const QueryBalanceResponse: {
|
|
|
695
1143
|
toProtoMsg(message: QueryBalanceResponse): QueryBalanceResponseProtoMsg;
|
|
696
1144
|
registerTypeUrl(): void;
|
|
697
1145
|
};
|
|
1146
|
+
/**
|
|
1147
|
+
* QueryStorageRequest is the request type for the Query/Storage RPC method.
|
|
1148
|
+
* @name QueryStorageRequest
|
|
1149
|
+
* @package ethermint.evm.v1
|
|
1150
|
+
* @see proto type: ethermint.evm.v1.QueryStorageRequest
|
|
1151
|
+
*/
|
|
698
1152
|
export declare const QueryStorageRequest: {
|
|
699
1153
|
typeUrl: string;
|
|
700
1154
|
is(o: any): o is QueryStorageRequest;
|
|
@@ -710,6 +1164,13 @@ export declare const QueryStorageRequest: {
|
|
|
710
1164
|
toProtoMsg(message: QueryStorageRequest): QueryStorageRequestProtoMsg;
|
|
711
1165
|
registerTypeUrl(): void;
|
|
712
1166
|
};
|
|
1167
|
+
/**
|
|
1168
|
+
* QueryStorageResponse is the response type for the Query/Storage RPC
|
|
1169
|
+
* method.
|
|
1170
|
+
* @name QueryStorageResponse
|
|
1171
|
+
* @package ethermint.evm.v1
|
|
1172
|
+
* @see proto type: ethermint.evm.v1.QueryStorageResponse
|
|
1173
|
+
*/
|
|
713
1174
|
export declare const QueryStorageResponse: {
|
|
714
1175
|
typeUrl: string;
|
|
715
1176
|
is(o: any): o is QueryStorageResponse;
|
|
@@ -725,6 +1186,12 @@ export declare const QueryStorageResponse: {
|
|
|
725
1186
|
toProtoMsg(message: QueryStorageResponse): QueryStorageResponseProtoMsg;
|
|
726
1187
|
registerTypeUrl(): void;
|
|
727
1188
|
};
|
|
1189
|
+
/**
|
|
1190
|
+
* QueryCodeRequest is the request type for the Query/Code RPC method.
|
|
1191
|
+
* @name QueryCodeRequest
|
|
1192
|
+
* @package ethermint.evm.v1
|
|
1193
|
+
* @see proto type: ethermint.evm.v1.QueryCodeRequest
|
|
1194
|
+
*/
|
|
728
1195
|
export declare const QueryCodeRequest: {
|
|
729
1196
|
typeUrl: string;
|
|
730
1197
|
is(o: any): o is QueryCodeRequest;
|
|
@@ -740,6 +1207,13 @@ export declare const QueryCodeRequest: {
|
|
|
740
1207
|
toProtoMsg(message: QueryCodeRequest): QueryCodeRequestProtoMsg;
|
|
741
1208
|
registerTypeUrl(): void;
|
|
742
1209
|
};
|
|
1210
|
+
/**
|
|
1211
|
+
* QueryCodeResponse is the response type for the Query/Code RPC
|
|
1212
|
+
* method.
|
|
1213
|
+
* @name QueryCodeResponse
|
|
1214
|
+
* @package ethermint.evm.v1
|
|
1215
|
+
* @see proto type: ethermint.evm.v1.QueryCodeResponse
|
|
1216
|
+
*/
|
|
743
1217
|
export declare const QueryCodeResponse: {
|
|
744
1218
|
typeUrl: string;
|
|
745
1219
|
is(o: any): o is QueryCodeResponse;
|
|
@@ -755,6 +1229,12 @@ export declare const QueryCodeResponse: {
|
|
|
755
1229
|
toProtoMsg(message: QueryCodeResponse): QueryCodeResponseProtoMsg;
|
|
756
1230
|
registerTypeUrl(): void;
|
|
757
1231
|
};
|
|
1232
|
+
/**
|
|
1233
|
+
* QueryTxLogsRequest is the request type for the Query/TxLogs RPC method.
|
|
1234
|
+
* @name QueryTxLogsRequest
|
|
1235
|
+
* @package ethermint.evm.v1
|
|
1236
|
+
* @see proto type: ethermint.evm.v1.QueryTxLogsRequest
|
|
1237
|
+
*/
|
|
758
1238
|
export declare const QueryTxLogsRequest: {
|
|
759
1239
|
typeUrl: string;
|
|
760
1240
|
is(o: any): o is QueryTxLogsRequest;
|
|
@@ -770,6 +1250,12 @@ export declare const QueryTxLogsRequest: {
|
|
|
770
1250
|
toProtoMsg(message: QueryTxLogsRequest): QueryTxLogsRequestProtoMsg;
|
|
771
1251
|
registerTypeUrl(): void;
|
|
772
1252
|
};
|
|
1253
|
+
/**
|
|
1254
|
+
* QueryTxLogsResponse is the response type for the Query/TxLogs RPC method.
|
|
1255
|
+
* @name QueryTxLogsResponse
|
|
1256
|
+
* @package ethermint.evm.v1
|
|
1257
|
+
* @see proto type: ethermint.evm.v1.QueryTxLogsResponse
|
|
1258
|
+
*/
|
|
773
1259
|
export declare const QueryTxLogsResponse: {
|
|
774
1260
|
typeUrl: string;
|
|
775
1261
|
is(o: any): o is QueryTxLogsResponse;
|
|
@@ -785,6 +1271,12 @@ export declare const QueryTxLogsResponse: {
|
|
|
785
1271
|
toProtoMsg(message: QueryTxLogsResponse): QueryTxLogsResponseProtoMsg;
|
|
786
1272
|
registerTypeUrl(): void;
|
|
787
1273
|
};
|
|
1274
|
+
/**
|
|
1275
|
+
* QueryParamsRequest defines the request type for querying x/evm parameters.
|
|
1276
|
+
* @name QueryParamsRequest
|
|
1277
|
+
* @package ethermint.evm.v1
|
|
1278
|
+
* @see proto type: ethermint.evm.v1.QueryParamsRequest
|
|
1279
|
+
*/
|
|
788
1280
|
export declare const QueryParamsRequest: {
|
|
789
1281
|
typeUrl: string;
|
|
790
1282
|
is(o: any): o is QueryParamsRequest;
|
|
@@ -800,6 +1292,12 @@ export declare const QueryParamsRequest: {
|
|
|
800
1292
|
toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg;
|
|
801
1293
|
registerTypeUrl(): void;
|
|
802
1294
|
};
|
|
1295
|
+
/**
|
|
1296
|
+
* QueryParamsResponse defines the response type for querying x/evm parameters.
|
|
1297
|
+
* @name QueryParamsResponse
|
|
1298
|
+
* @package ethermint.evm.v1
|
|
1299
|
+
* @see proto type: ethermint.evm.v1.QueryParamsResponse
|
|
1300
|
+
*/
|
|
803
1301
|
export declare const QueryParamsResponse: {
|
|
804
1302
|
typeUrl: string;
|
|
805
1303
|
is(o: any): o is QueryParamsResponse;
|
|
@@ -815,6 +1313,12 @@ export declare const QueryParamsResponse: {
|
|
|
815
1313
|
toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg;
|
|
816
1314
|
registerTypeUrl(): void;
|
|
817
1315
|
};
|
|
1316
|
+
/**
|
|
1317
|
+
* EthCallRequest defines EthCall request
|
|
1318
|
+
* @name EthCallRequest
|
|
1319
|
+
* @package ethermint.evm.v1
|
|
1320
|
+
* @see proto type: ethermint.evm.v1.EthCallRequest
|
|
1321
|
+
*/
|
|
818
1322
|
export declare const EthCallRequest: {
|
|
819
1323
|
typeUrl: string;
|
|
820
1324
|
is(o: any): o is EthCallRequest;
|
|
@@ -830,6 +1334,12 @@ export declare const EthCallRequest: {
|
|
|
830
1334
|
toProtoMsg(message: EthCallRequest): EthCallRequestProtoMsg;
|
|
831
1335
|
registerTypeUrl(): void;
|
|
832
1336
|
};
|
|
1337
|
+
/**
|
|
1338
|
+
* EstimateGasResponse defines EstimateGas response
|
|
1339
|
+
* @name EstimateGasResponse
|
|
1340
|
+
* @package ethermint.evm.v1
|
|
1341
|
+
* @see proto type: ethermint.evm.v1.EstimateGasResponse
|
|
1342
|
+
*/
|
|
833
1343
|
export declare const EstimateGasResponse: {
|
|
834
1344
|
typeUrl: string;
|
|
835
1345
|
is(o: any): o is EstimateGasResponse;
|
|
@@ -845,6 +1355,12 @@ export declare const EstimateGasResponse: {
|
|
|
845
1355
|
toProtoMsg(message: EstimateGasResponse): EstimateGasResponseProtoMsg;
|
|
846
1356
|
registerTypeUrl(): void;
|
|
847
1357
|
};
|
|
1358
|
+
/**
|
|
1359
|
+
* QueryTraceTxRequest defines TraceTx request
|
|
1360
|
+
* @name QueryTraceTxRequest
|
|
1361
|
+
* @package ethermint.evm.v1
|
|
1362
|
+
* @see proto type: ethermint.evm.v1.QueryTraceTxRequest
|
|
1363
|
+
*/
|
|
848
1364
|
export declare const QueryTraceTxRequest: {
|
|
849
1365
|
typeUrl: string;
|
|
850
1366
|
is(o: any): o is QueryTraceTxRequest;
|
|
@@ -860,6 +1376,12 @@ export declare const QueryTraceTxRequest: {
|
|
|
860
1376
|
toProtoMsg(message: QueryTraceTxRequest): QueryTraceTxRequestProtoMsg;
|
|
861
1377
|
registerTypeUrl(): void;
|
|
862
1378
|
};
|
|
1379
|
+
/**
|
|
1380
|
+
* QueryTraceTxResponse defines TraceTx response
|
|
1381
|
+
* @name QueryTraceTxResponse
|
|
1382
|
+
* @package ethermint.evm.v1
|
|
1383
|
+
* @see proto type: ethermint.evm.v1.QueryTraceTxResponse
|
|
1384
|
+
*/
|
|
863
1385
|
export declare const QueryTraceTxResponse: {
|
|
864
1386
|
typeUrl: string;
|
|
865
1387
|
is(o: any): o is QueryTraceTxResponse;
|
|
@@ -875,6 +1397,12 @@ export declare const QueryTraceTxResponse: {
|
|
|
875
1397
|
toProtoMsg(message: QueryTraceTxResponse): QueryTraceTxResponseProtoMsg;
|
|
876
1398
|
registerTypeUrl(): void;
|
|
877
1399
|
};
|
|
1400
|
+
/**
|
|
1401
|
+
* QueryTraceBlockRequest defines TraceTx request
|
|
1402
|
+
* @name QueryTraceBlockRequest
|
|
1403
|
+
* @package ethermint.evm.v1
|
|
1404
|
+
* @see proto type: ethermint.evm.v1.QueryTraceBlockRequest
|
|
1405
|
+
*/
|
|
878
1406
|
export declare const QueryTraceBlockRequest: {
|
|
879
1407
|
typeUrl: string;
|
|
880
1408
|
is(o: any): o is QueryTraceBlockRequest;
|
|
@@ -890,6 +1418,12 @@ export declare const QueryTraceBlockRequest: {
|
|
|
890
1418
|
toProtoMsg(message: QueryTraceBlockRequest): QueryTraceBlockRequestProtoMsg;
|
|
891
1419
|
registerTypeUrl(): void;
|
|
892
1420
|
};
|
|
1421
|
+
/**
|
|
1422
|
+
* QueryTraceBlockResponse defines TraceBlock response
|
|
1423
|
+
* @name QueryTraceBlockResponse
|
|
1424
|
+
* @package ethermint.evm.v1
|
|
1425
|
+
* @see proto type: ethermint.evm.v1.QueryTraceBlockResponse
|
|
1426
|
+
*/
|
|
893
1427
|
export declare const QueryTraceBlockResponse: {
|
|
894
1428
|
typeUrl: string;
|
|
895
1429
|
is(o: any): o is QueryTraceBlockResponse;
|
|
@@ -905,6 +1439,13 @@ export declare const QueryTraceBlockResponse: {
|
|
|
905
1439
|
toProtoMsg(message: QueryTraceBlockResponse): QueryTraceBlockResponseProtoMsg;
|
|
906
1440
|
registerTypeUrl(): void;
|
|
907
1441
|
};
|
|
1442
|
+
/**
|
|
1443
|
+
* QueryBaseFeeRequest defines the request type for querying the EIP1559 base
|
|
1444
|
+
* fee.
|
|
1445
|
+
* @name QueryBaseFeeRequest
|
|
1446
|
+
* @package ethermint.evm.v1
|
|
1447
|
+
* @see proto type: ethermint.evm.v1.QueryBaseFeeRequest
|
|
1448
|
+
*/
|
|
908
1449
|
export declare const QueryBaseFeeRequest: {
|
|
909
1450
|
typeUrl: string;
|
|
910
1451
|
is(o: any): o is QueryBaseFeeRequest;
|
|
@@ -920,6 +1461,12 @@ export declare const QueryBaseFeeRequest: {
|
|
|
920
1461
|
toProtoMsg(message: QueryBaseFeeRequest): QueryBaseFeeRequestProtoMsg;
|
|
921
1462
|
registerTypeUrl(): void;
|
|
922
1463
|
};
|
|
1464
|
+
/**
|
|
1465
|
+
* QueryBaseFeeResponse returns the EIP1559 base fee.
|
|
1466
|
+
* @name QueryBaseFeeResponse
|
|
1467
|
+
* @package ethermint.evm.v1
|
|
1468
|
+
* @see proto type: ethermint.evm.v1.QueryBaseFeeResponse
|
|
1469
|
+
*/
|
|
923
1470
|
export declare const QueryBaseFeeResponse: {
|
|
924
1471
|
typeUrl: string;
|
|
925
1472
|
is(o: any): o is QueryBaseFeeResponse;
|