@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
|
@@ -5,9 +5,14 @@ import { DeepPartial } from "../../../helpers";
|
|
|
5
5
|
/**
|
|
6
6
|
* QueryContractInfoRequest is the request type for the Query/ContractInfo RPC
|
|
7
7
|
* method
|
|
8
|
+
* @name QueryContractInfoRequest
|
|
9
|
+
* @package cosmwasm.wasm.v1
|
|
10
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractInfoRequest
|
|
8
11
|
*/
|
|
9
12
|
export interface QueryContractInfoRequest {
|
|
10
|
-
/**
|
|
13
|
+
/**
|
|
14
|
+
* address is the address of the contract to query
|
|
15
|
+
*/
|
|
11
16
|
address: string;
|
|
12
17
|
}
|
|
13
18
|
export interface QueryContractInfoRequestProtoMsg {
|
|
@@ -17,9 +22,14 @@ export interface QueryContractInfoRequestProtoMsg {
|
|
|
17
22
|
/**
|
|
18
23
|
* QueryContractInfoRequest is the request type for the Query/ContractInfo RPC
|
|
19
24
|
* method
|
|
25
|
+
* @name QueryContractInfoRequestAmino
|
|
26
|
+
* @package cosmwasm.wasm.v1
|
|
27
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractInfoRequest
|
|
20
28
|
*/
|
|
21
29
|
export interface QueryContractInfoRequestAmino {
|
|
22
|
-
/**
|
|
30
|
+
/**
|
|
31
|
+
* address is the address of the contract to query
|
|
32
|
+
*/
|
|
23
33
|
address: string;
|
|
24
34
|
}
|
|
25
35
|
export interface QueryContractInfoRequestAminoMsg {
|
|
@@ -29,9 +39,14 @@ export interface QueryContractInfoRequestAminoMsg {
|
|
|
29
39
|
/**
|
|
30
40
|
* QueryContractInfoResponse is the response type for the Query/ContractInfo RPC
|
|
31
41
|
* method
|
|
42
|
+
* @name QueryContractInfoResponse
|
|
43
|
+
* @package cosmwasm.wasm.v1
|
|
44
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractInfoResponse
|
|
32
45
|
*/
|
|
33
46
|
export interface QueryContractInfoResponse {
|
|
34
|
-
/**
|
|
47
|
+
/**
|
|
48
|
+
* address is the address of the contract
|
|
49
|
+
*/
|
|
35
50
|
address: string;
|
|
36
51
|
contractInfo: ContractInfo;
|
|
37
52
|
}
|
|
@@ -42,9 +57,14 @@ export interface QueryContractInfoResponseProtoMsg {
|
|
|
42
57
|
/**
|
|
43
58
|
* QueryContractInfoResponse is the response type for the Query/ContractInfo RPC
|
|
44
59
|
* method
|
|
60
|
+
* @name QueryContractInfoResponseAmino
|
|
61
|
+
* @package cosmwasm.wasm.v1
|
|
62
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractInfoResponse
|
|
45
63
|
*/
|
|
46
64
|
export interface QueryContractInfoResponseAmino {
|
|
47
|
-
/**
|
|
65
|
+
/**
|
|
66
|
+
* address is the address of the contract
|
|
67
|
+
*/
|
|
48
68
|
address: string;
|
|
49
69
|
contract_info: ContractInfoAmino;
|
|
50
70
|
}
|
|
@@ -55,11 +75,18 @@ export interface QueryContractInfoResponseAminoMsg {
|
|
|
55
75
|
/**
|
|
56
76
|
* QueryContractHistoryRequest is the request type for the Query/ContractHistory
|
|
57
77
|
* RPC method
|
|
78
|
+
* @name QueryContractHistoryRequest
|
|
79
|
+
* @package cosmwasm.wasm.v1
|
|
80
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractHistoryRequest
|
|
58
81
|
*/
|
|
59
82
|
export interface QueryContractHistoryRequest {
|
|
60
|
-
/**
|
|
83
|
+
/**
|
|
84
|
+
* address is the address of the contract to query
|
|
85
|
+
*/
|
|
61
86
|
address: string;
|
|
62
|
-
/**
|
|
87
|
+
/**
|
|
88
|
+
* pagination defines an optional pagination for the request.
|
|
89
|
+
*/
|
|
63
90
|
pagination?: PageRequest;
|
|
64
91
|
}
|
|
65
92
|
export interface QueryContractHistoryRequestProtoMsg {
|
|
@@ -69,11 +96,18 @@ export interface QueryContractHistoryRequestProtoMsg {
|
|
|
69
96
|
/**
|
|
70
97
|
* QueryContractHistoryRequest is the request type for the Query/ContractHistory
|
|
71
98
|
* RPC method
|
|
99
|
+
* @name QueryContractHistoryRequestAmino
|
|
100
|
+
* @package cosmwasm.wasm.v1
|
|
101
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractHistoryRequest
|
|
72
102
|
*/
|
|
73
103
|
export interface QueryContractHistoryRequestAmino {
|
|
74
|
-
/**
|
|
104
|
+
/**
|
|
105
|
+
* address is the address of the contract to query
|
|
106
|
+
*/
|
|
75
107
|
address: string;
|
|
76
|
-
/**
|
|
108
|
+
/**
|
|
109
|
+
* pagination defines an optional pagination for the request.
|
|
110
|
+
*/
|
|
77
111
|
pagination?: PageRequestAmino;
|
|
78
112
|
}
|
|
79
113
|
export interface QueryContractHistoryRequestAminoMsg {
|
|
@@ -83,10 +117,15 @@ export interface QueryContractHistoryRequestAminoMsg {
|
|
|
83
117
|
/**
|
|
84
118
|
* QueryContractHistoryResponse is the response type for the
|
|
85
119
|
* Query/ContractHistory RPC method
|
|
120
|
+
* @name QueryContractHistoryResponse
|
|
121
|
+
* @package cosmwasm.wasm.v1
|
|
122
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractHistoryResponse
|
|
86
123
|
*/
|
|
87
124
|
export interface QueryContractHistoryResponse {
|
|
88
125
|
entries: ContractCodeHistoryEntry[];
|
|
89
|
-
/**
|
|
126
|
+
/**
|
|
127
|
+
* pagination defines the pagination in the response.
|
|
128
|
+
*/
|
|
90
129
|
pagination?: PageResponse;
|
|
91
130
|
}
|
|
92
131
|
export interface QueryContractHistoryResponseProtoMsg {
|
|
@@ -96,10 +135,15 @@ export interface QueryContractHistoryResponseProtoMsg {
|
|
|
96
135
|
/**
|
|
97
136
|
* QueryContractHistoryResponse is the response type for the
|
|
98
137
|
* Query/ContractHistory RPC method
|
|
138
|
+
* @name QueryContractHistoryResponseAmino
|
|
139
|
+
* @package cosmwasm.wasm.v1
|
|
140
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractHistoryResponse
|
|
99
141
|
*/
|
|
100
142
|
export interface QueryContractHistoryResponseAmino {
|
|
101
143
|
entries: ContractCodeHistoryEntryAmino[];
|
|
102
|
-
/**
|
|
144
|
+
/**
|
|
145
|
+
* pagination defines the pagination in the response.
|
|
146
|
+
*/
|
|
103
147
|
pagination?: PageResponseAmino;
|
|
104
148
|
}
|
|
105
149
|
export interface QueryContractHistoryResponseAminoMsg {
|
|
@@ -109,11 +153,18 @@ export interface QueryContractHistoryResponseAminoMsg {
|
|
|
109
153
|
/**
|
|
110
154
|
* QueryContractsByCodeRequest is the request type for the Query/ContractsByCode
|
|
111
155
|
* RPC method
|
|
156
|
+
* @name QueryContractsByCodeRequest
|
|
157
|
+
* @package cosmwasm.wasm.v1
|
|
158
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractsByCodeRequest
|
|
112
159
|
*/
|
|
113
160
|
export interface QueryContractsByCodeRequest {
|
|
114
|
-
/**
|
|
161
|
+
/**
|
|
162
|
+
* grpc-gateway_out does not support Go style CodeID
|
|
163
|
+
*/
|
|
115
164
|
codeId: bigint;
|
|
116
|
-
/**
|
|
165
|
+
/**
|
|
166
|
+
* pagination defines an optional pagination for the request.
|
|
167
|
+
*/
|
|
117
168
|
pagination?: PageRequest;
|
|
118
169
|
}
|
|
119
170
|
export interface QueryContractsByCodeRequestProtoMsg {
|
|
@@ -123,11 +174,18 @@ export interface QueryContractsByCodeRequestProtoMsg {
|
|
|
123
174
|
/**
|
|
124
175
|
* QueryContractsByCodeRequest is the request type for the Query/ContractsByCode
|
|
125
176
|
* RPC method
|
|
177
|
+
* @name QueryContractsByCodeRequestAmino
|
|
178
|
+
* @package cosmwasm.wasm.v1
|
|
179
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractsByCodeRequest
|
|
126
180
|
*/
|
|
127
181
|
export interface QueryContractsByCodeRequestAmino {
|
|
128
|
-
/**
|
|
182
|
+
/**
|
|
183
|
+
* grpc-gateway_out does not support Go style CodeID
|
|
184
|
+
*/
|
|
129
185
|
code_id: string;
|
|
130
|
-
/**
|
|
186
|
+
/**
|
|
187
|
+
* pagination defines an optional pagination for the request.
|
|
188
|
+
*/
|
|
131
189
|
pagination?: PageRequestAmino;
|
|
132
190
|
}
|
|
133
191
|
export interface QueryContractsByCodeRequestAminoMsg {
|
|
@@ -137,11 +195,18 @@ export interface QueryContractsByCodeRequestAminoMsg {
|
|
|
137
195
|
/**
|
|
138
196
|
* QueryContractsByCodeResponse is the response type for the
|
|
139
197
|
* Query/ContractsByCode RPC method
|
|
198
|
+
* @name QueryContractsByCodeResponse
|
|
199
|
+
* @package cosmwasm.wasm.v1
|
|
200
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractsByCodeResponse
|
|
140
201
|
*/
|
|
141
202
|
export interface QueryContractsByCodeResponse {
|
|
142
|
-
/**
|
|
203
|
+
/**
|
|
204
|
+
* contracts are a set of contract addresses
|
|
205
|
+
*/
|
|
143
206
|
contracts: string[];
|
|
144
|
-
/**
|
|
207
|
+
/**
|
|
208
|
+
* pagination defines the pagination in the response.
|
|
209
|
+
*/
|
|
145
210
|
pagination?: PageResponse;
|
|
146
211
|
}
|
|
147
212
|
export interface QueryContractsByCodeResponseProtoMsg {
|
|
@@ -151,11 +216,18 @@ export interface QueryContractsByCodeResponseProtoMsg {
|
|
|
151
216
|
/**
|
|
152
217
|
* QueryContractsByCodeResponse is the response type for the
|
|
153
218
|
* Query/ContractsByCode RPC method
|
|
219
|
+
* @name QueryContractsByCodeResponseAmino
|
|
220
|
+
* @package cosmwasm.wasm.v1
|
|
221
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractsByCodeResponse
|
|
154
222
|
*/
|
|
155
223
|
export interface QueryContractsByCodeResponseAmino {
|
|
156
|
-
/**
|
|
224
|
+
/**
|
|
225
|
+
* contracts are a set of contract addresses
|
|
226
|
+
*/
|
|
157
227
|
contracts: string[];
|
|
158
|
-
/**
|
|
228
|
+
/**
|
|
229
|
+
* pagination defines the pagination in the response.
|
|
230
|
+
*/
|
|
159
231
|
pagination?: PageResponseAmino;
|
|
160
232
|
}
|
|
161
233
|
export interface QueryContractsByCodeResponseAminoMsg {
|
|
@@ -165,11 +237,18 @@ export interface QueryContractsByCodeResponseAminoMsg {
|
|
|
165
237
|
/**
|
|
166
238
|
* QueryAllContractStateRequest is the request type for the
|
|
167
239
|
* Query/AllContractState RPC method
|
|
240
|
+
* @name QueryAllContractStateRequest
|
|
241
|
+
* @package cosmwasm.wasm.v1
|
|
242
|
+
* @see proto type: cosmwasm.wasm.v1.QueryAllContractStateRequest
|
|
168
243
|
*/
|
|
169
244
|
export interface QueryAllContractStateRequest {
|
|
170
|
-
/**
|
|
245
|
+
/**
|
|
246
|
+
* address is the address of the contract
|
|
247
|
+
*/
|
|
171
248
|
address: string;
|
|
172
|
-
/**
|
|
249
|
+
/**
|
|
250
|
+
* pagination defines an optional pagination for the request.
|
|
251
|
+
*/
|
|
173
252
|
pagination?: PageRequest;
|
|
174
253
|
}
|
|
175
254
|
export interface QueryAllContractStateRequestProtoMsg {
|
|
@@ -179,11 +258,18 @@ export interface QueryAllContractStateRequestProtoMsg {
|
|
|
179
258
|
/**
|
|
180
259
|
* QueryAllContractStateRequest is the request type for the
|
|
181
260
|
* Query/AllContractState RPC method
|
|
261
|
+
* @name QueryAllContractStateRequestAmino
|
|
262
|
+
* @package cosmwasm.wasm.v1
|
|
263
|
+
* @see proto type: cosmwasm.wasm.v1.QueryAllContractStateRequest
|
|
182
264
|
*/
|
|
183
265
|
export interface QueryAllContractStateRequestAmino {
|
|
184
|
-
/**
|
|
266
|
+
/**
|
|
267
|
+
* address is the address of the contract
|
|
268
|
+
*/
|
|
185
269
|
address: string;
|
|
186
|
-
/**
|
|
270
|
+
/**
|
|
271
|
+
* pagination defines an optional pagination for the request.
|
|
272
|
+
*/
|
|
187
273
|
pagination?: PageRequestAmino;
|
|
188
274
|
}
|
|
189
275
|
export interface QueryAllContractStateRequestAminoMsg {
|
|
@@ -193,10 +279,15 @@ export interface QueryAllContractStateRequestAminoMsg {
|
|
|
193
279
|
/**
|
|
194
280
|
* QueryAllContractStateResponse is the response type for the
|
|
195
281
|
* Query/AllContractState RPC method
|
|
282
|
+
* @name QueryAllContractStateResponse
|
|
283
|
+
* @package cosmwasm.wasm.v1
|
|
284
|
+
* @see proto type: cosmwasm.wasm.v1.QueryAllContractStateResponse
|
|
196
285
|
*/
|
|
197
286
|
export interface QueryAllContractStateResponse {
|
|
198
287
|
models: Model[];
|
|
199
|
-
/**
|
|
288
|
+
/**
|
|
289
|
+
* pagination defines the pagination in the response.
|
|
290
|
+
*/
|
|
200
291
|
pagination?: PageResponse;
|
|
201
292
|
}
|
|
202
293
|
export interface QueryAllContractStateResponseProtoMsg {
|
|
@@ -206,10 +297,15 @@ export interface QueryAllContractStateResponseProtoMsg {
|
|
|
206
297
|
/**
|
|
207
298
|
* QueryAllContractStateResponse is the response type for the
|
|
208
299
|
* Query/AllContractState RPC method
|
|
300
|
+
* @name QueryAllContractStateResponseAmino
|
|
301
|
+
* @package cosmwasm.wasm.v1
|
|
302
|
+
* @see proto type: cosmwasm.wasm.v1.QueryAllContractStateResponse
|
|
209
303
|
*/
|
|
210
304
|
export interface QueryAllContractStateResponseAmino {
|
|
211
305
|
models: ModelAmino[];
|
|
212
|
-
/**
|
|
306
|
+
/**
|
|
307
|
+
* pagination defines the pagination in the response.
|
|
308
|
+
*/
|
|
213
309
|
pagination?: PageResponseAmino;
|
|
214
310
|
}
|
|
215
311
|
export interface QueryAllContractStateResponseAminoMsg {
|
|
@@ -219,9 +315,14 @@ export interface QueryAllContractStateResponseAminoMsg {
|
|
|
219
315
|
/**
|
|
220
316
|
* QueryRawContractStateRequest is the request type for the
|
|
221
317
|
* Query/RawContractState RPC method
|
|
318
|
+
* @name QueryRawContractStateRequest
|
|
319
|
+
* @package cosmwasm.wasm.v1
|
|
320
|
+
* @see proto type: cosmwasm.wasm.v1.QueryRawContractStateRequest
|
|
222
321
|
*/
|
|
223
322
|
export interface QueryRawContractStateRequest {
|
|
224
|
-
/**
|
|
323
|
+
/**
|
|
324
|
+
* address is the address of the contract
|
|
325
|
+
*/
|
|
225
326
|
address: string;
|
|
226
327
|
queryData: Uint8Array;
|
|
227
328
|
}
|
|
@@ -232,9 +333,14 @@ export interface QueryRawContractStateRequestProtoMsg {
|
|
|
232
333
|
/**
|
|
233
334
|
* QueryRawContractStateRequest is the request type for the
|
|
234
335
|
* Query/RawContractState RPC method
|
|
336
|
+
* @name QueryRawContractStateRequestAmino
|
|
337
|
+
* @package cosmwasm.wasm.v1
|
|
338
|
+
* @see proto type: cosmwasm.wasm.v1.QueryRawContractStateRequest
|
|
235
339
|
*/
|
|
236
340
|
export interface QueryRawContractStateRequestAmino {
|
|
237
|
-
/**
|
|
341
|
+
/**
|
|
342
|
+
* address is the address of the contract
|
|
343
|
+
*/
|
|
238
344
|
address: string;
|
|
239
345
|
query_data: string;
|
|
240
346
|
}
|
|
@@ -245,9 +351,14 @@ export interface QueryRawContractStateRequestAminoMsg {
|
|
|
245
351
|
/**
|
|
246
352
|
* QueryRawContractStateResponse is the response type for the
|
|
247
353
|
* Query/RawContractState RPC method
|
|
354
|
+
* @name QueryRawContractStateResponse
|
|
355
|
+
* @package cosmwasm.wasm.v1
|
|
356
|
+
* @see proto type: cosmwasm.wasm.v1.QueryRawContractStateResponse
|
|
248
357
|
*/
|
|
249
358
|
export interface QueryRawContractStateResponse {
|
|
250
|
-
/**
|
|
359
|
+
/**
|
|
360
|
+
* Data contains the raw store data
|
|
361
|
+
*/
|
|
251
362
|
data: Uint8Array;
|
|
252
363
|
}
|
|
253
364
|
export interface QueryRawContractStateResponseProtoMsg {
|
|
@@ -257,9 +368,14 @@ export interface QueryRawContractStateResponseProtoMsg {
|
|
|
257
368
|
/**
|
|
258
369
|
* QueryRawContractStateResponse is the response type for the
|
|
259
370
|
* Query/RawContractState RPC method
|
|
371
|
+
* @name QueryRawContractStateResponseAmino
|
|
372
|
+
* @package cosmwasm.wasm.v1
|
|
373
|
+
* @see proto type: cosmwasm.wasm.v1.QueryRawContractStateResponse
|
|
260
374
|
*/
|
|
261
375
|
export interface QueryRawContractStateResponseAmino {
|
|
262
|
-
/**
|
|
376
|
+
/**
|
|
377
|
+
* Data contains the raw store data
|
|
378
|
+
*/
|
|
263
379
|
data: string;
|
|
264
380
|
}
|
|
265
381
|
export interface QueryRawContractStateResponseAminoMsg {
|
|
@@ -269,11 +385,18 @@ export interface QueryRawContractStateResponseAminoMsg {
|
|
|
269
385
|
/**
|
|
270
386
|
* QuerySmartContractStateRequest is the request type for the
|
|
271
387
|
* Query/SmartContractState RPC method
|
|
388
|
+
* @name QuerySmartContractStateRequest
|
|
389
|
+
* @package cosmwasm.wasm.v1
|
|
390
|
+
* @see proto type: cosmwasm.wasm.v1.QuerySmartContractStateRequest
|
|
272
391
|
*/
|
|
273
392
|
export interface QuerySmartContractStateRequest {
|
|
274
|
-
/**
|
|
393
|
+
/**
|
|
394
|
+
* address is the address of the contract
|
|
395
|
+
*/
|
|
275
396
|
address: string;
|
|
276
|
-
/**
|
|
397
|
+
/**
|
|
398
|
+
* QueryData contains the query data passed to the contract
|
|
399
|
+
*/
|
|
277
400
|
queryData: Uint8Array;
|
|
278
401
|
}
|
|
279
402
|
export interface QuerySmartContractStateRequestProtoMsg {
|
|
@@ -283,11 +406,18 @@ export interface QuerySmartContractStateRequestProtoMsg {
|
|
|
283
406
|
/**
|
|
284
407
|
* QuerySmartContractStateRequest is the request type for the
|
|
285
408
|
* Query/SmartContractState RPC method
|
|
409
|
+
* @name QuerySmartContractStateRequestAmino
|
|
410
|
+
* @package cosmwasm.wasm.v1
|
|
411
|
+
* @see proto type: cosmwasm.wasm.v1.QuerySmartContractStateRequest
|
|
286
412
|
*/
|
|
287
413
|
export interface QuerySmartContractStateRequestAmino {
|
|
288
|
-
/**
|
|
414
|
+
/**
|
|
415
|
+
* address is the address of the contract
|
|
416
|
+
*/
|
|
289
417
|
address: string;
|
|
290
|
-
/**
|
|
418
|
+
/**
|
|
419
|
+
* QueryData contains the query data passed to the contract
|
|
420
|
+
*/
|
|
291
421
|
query_data: any;
|
|
292
422
|
}
|
|
293
423
|
export interface QuerySmartContractStateRequestAminoMsg {
|
|
@@ -297,9 +427,14 @@ export interface QuerySmartContractStateRequestAminoMsg {
|
|
|
297
427
|
/**
|
|
298
428
|
* QuerySmartContractStateResponse is the response type for the
|
|
299
429
|
* Query/SmartContractState RPC method
|
|
430
|
+
* @name QuerySmartContractStateResponse
|
|
431
|
+
* @package cosmwasm.wasm.v1
|
|
432
|
+
* @see proto type: cosmwasm.wasm.v1.QuerySmartContractStateResponse
|
|
300
433
|
*/
|
|
301
434
|
export interface QuerySmartContractStateResponse {
|
|
302
|
-
/**
|
|
435
|
+
/**
|
|
436
|
+
* Data contains the json data returned from the smart contract
|
|
437
|
+
*/
|
|
303
438
|
data: Uint8Array;
|
|
304
439
|
}
|
|
305
440
|
export interface QuerySmartContractStateResponseProtoMsg {
|
|
@@ -309,34 +444,122 @@ export interface QuerySmartContractStateResponseProtoMsg {
|
|
|
309
444
|
/**
|
|
310
445
|
* QuerySmartContractStateResponse is the response type for the
|
|
311
446
|
* Query/SmartContractState RPC method
|
|
447
|
+
* @name QuerySmartContractStateResponseAmino
|
|
448
|
+
* @package cosmwasm.wasm.v1
|
|
449
|
+
* @see proto type: cosmwasm.wasm.v1.QuerySmartContractStateResponse
|
|
312
450
|
*/
|
|
313
451
|
export interface QuerySmartContractStateResponseAmino {
|
|
314
|
-
/**
|
|
452
|
+
/**
|
|
453
|
+
* Data contains the json data returned from the smart contract
|
|
454
|
+
*/
|
|
315
455
|
data: any;
|
|
316
456
|
}
|
|
317
457
|
export interface QuerySmartContractStateResponseAminoMsg {
|
|
318
458
|
type: "wasm/QuerySmartContractStateResponse";
|
|
319
459
|
value: QuerySmartContractStateResponseAmino;
|
|
320
460
|
}
|
|
321
|
-
/**
|
|
461
|
+
/**
|
|
462
|
+
* QueryCodeRequest is the request type for the Query/Code RPC method
|
|
463
|
+
* @name QueryCodeRequest
|
|
464
|
+
* @package cosmwasm.wasm.v1
|
|
465
|
+
* @see proto type: cosmwasm.wasm.v1.QueryCodeRequest
|
|
466
|
+
*/
|
|
322
467
|
export interface QueryCodeRequest {
|
|
323
|
-
/**
|
|
468
|
+
/**
|
|
469
|
+
* grpc-gateway_out does not support Go style CodeID
|
|
470
|
+
*/
|
|
324
471
|
codeId: bigint;
|
|
325
472
|
}
|
|
326
473
|
export interface QueryCodeRequestProtoMsg {
|
|
327
474
|
typeUrl: "/cosmwasm.wasm.v1.QueryCodeRequest";
|
|
328
475
|
value: Uint8Array;
|
|
329
476
|
}
|
|
330
|
-
/**
|
|
477
|
+
/**
|
|
478
|
+
* QueryCodeRequest is the request type for the Query/Code RPC method
|
|
479
|
+
* @name QueryCodeRequestAmino
|
|
480
|
+
* @package cosmwasm.wasm.v1
|
|
481
|
+
* @see proto type: cosmwasm.wasm.v1.QueryCodeRequest
|
|
482
|
+
*/
|
|
331
483
|
export interface QueryCodeRequestAmino {
|
|
332
|
-
/**
|
|
484
|
+
/**
|
|
485
|
+
* grpc-gateway_out does not support Go style CodeID
|
|
486
|
+
*/
|
|
333
487
|
code_id: string;
|
|
334
488
|
}
|
|
335
489
|
export interface QueryCodeRequestAminoMsg {
|
|
336
490
|
type: "wasm/QueryCodeRequest";
|
|
337
491
|
value: QueryCodeRequestAmino;
|
|
338
492
|
}
|
|
339
|
-
/**
|
|
493
|
+
/**
|
|
494
|
+
* QueryCodeInfoRequest is the request type for the Query/CodeInfo RPC method
|
|
495
|
+
* @name QueryCodeInfoRequest
|
|
496
|
+
* @package cosmwasm.wasm.v1
|
|
497
|
+
* @see proto type: cosmwasm.wasm.v1.QueryCodeInfoRequest
|
|
498
|
+
*/
|
|
499
|
+
export interface QueryCodeInfoRequest {
|
|
500
|
+
/**
|
|
501
|
+
* grpc-gateway_out does not support Go style CodeID
|
|
502
|
+
*/
|
|
503
|
+
codeId: bigint;
|
|
504
|
+
}
|
|
505
|
+
export interface QueryCodeInfoRequestProtoMsg {
|
|
506
|
+
typeUrl: "/cosmwasm.wasm.v1.QueryCodeInfoRequest";
|
|
507
|
+
value: Uint8Array;
|
|
508
|
+
}
|
|
509
|
+
/**
|
|
510
|
+
* QueryCodeInfoRequest is the request type for the Query/CodeInfo RPC method
|
|
511
|
+
* @name QueryCodeInfoRequestAmino
|
|
512
|
+
* @package cosmwasm.wasm.v1
|
|
513
|
+
* @see proto type: cosmwasm.wasm.v1.QueryCodeInfoRequest
|
|
514
|
+
*/
|
|
515
|
+
export interface QueryCodeInfoRequestAmino {
|
|
516
|
+
/**
|
|
517
|
+
* grpc-gateway_out does not support Go style CodeID
|
|
518
|
+
*/
|
|
519
|
+
code_id: string;
|
|
520
|
+
}
|
|
521
|
+
export interface QueryCodeInfoRequestAminoMsg {
|
|
522
|
+
type: "wasm/QueryCodeInfoRequest";
|
|
523
|
+
value: QueryCodeInfoRequestAmino;
|
|
524
|
+
}
|
|
525
|
+
/**
|
|
526
|
+
* QueryCodeInfoResponse is the response type for the Query/CodeInfo RPC method
|
|
527
|
+
* @name QueryCodeInfoResponse
|
|
528
|
+
* @package cosmwasm.wasm.v1
|
|
529
|
+
* @see proto type: cosmwasm.wasm.v1.QueryCodeInfoResponse
|
|
530
|
+
*/
|
|
531
|
+
export interface QueryCodeInfoResponse {
|
|
532
|
+
codeId: bigint;
|
|
533
|
+
creator: string;
|
|
534
|
+
checksum: Uint8Array;
|
|
535
|
+
instantiatePermission: AccessConfig;
|
|
536
|
+
}
|
|
537
|
+
export interface QueryCodeInfoResponseProtoMsg {
|
|
538
|
+
typeUrl: "/cosmwasm.wasm.v1.QueryCodeInfoResponse";
|
|
539
|
+
value: Uint8Array;
|
|
540
|
+
}
|
|
541
|
+
/**
|
|
542
|
+
* QueryCodeInfoResponse is the response type for the Query/CodeInfo RPC method
|
|
543
|
+
* @name QueryCodeInfoResponseAmino
|
|
544
|
+
* @package cosmwasm.wasm.v1
|
|
545
|
+
* @see proto type: cosmwasm.wasm.v1.QueryCodeInfoResponse
|
|
546
|
+
*/
|
|
547
|
+
export interface QueryCodeInfoResponseAmino {
|
|
548
|
+
code_id: string;
|
|
549
|
+
creator: string;
|
|
550
|
+
checksum: string;
|
|
551
|
+
instantiate_permission: AccessConfigAmino;
|
|
552
|
+
}
|
|
553
|
+
export interface QueryCodeInfoResponseAminoMsg {
|
|
554
|
+
type: "wasm/QueryCodeInfoResponse";
|
|
555
|
+
value: QueryCodeInfoResponseAmino;
|
|
556
|
+
}
|
|
557
|
+
/**
|
|
558
|
+
* CodeInfoResponse contains code meta data from CodeInfo
|
|
559
|
+
* @name CodeInfoResponse
|
|
560
|
+
* @package cosmwasm.wasm.v1
|
|
561
|
+
* @see proto type: cosmwasm.wasm.v1.CodeInfoResponse
|
|
562
|
+
*/
|
|
340
563
|
export interface CodeInfoResponse {
|
|
341
564
|
codeId: bigint;
|
|
342
565
|
creator: string;
|
|
@@ -347,7 +570,12 @@ export interface CodeInfoResponseProtoMsg {
|
|
|
347
570
|
typeUrl: "/cosmwasm.wasm.v1.CodeInfoResponse";
|
|
348
571
|
value: Uint8Array;
|
|
349
572
|
}
|
|
350
|
-
/**
|
|
573
|
+
/**
|
|
574
|
+
* CodeInfoResponse contains code meta data from CodeInfo
|
|
575
|
+
* @name CodeInfoResponseAmino
|
|
576
|
+
* @package cosmwasm.wasm.v1
|
|
577
|
+
* @see proto type: cosmwasm.wasm.v1.CodeInfoResponse
|
|
578
|
+
*/
|
|
351
579
|
export interface CodeInfoResponseAmino {
|
|
352
580
|
code_id: string;
|
|
353
581
|
creator: string;
|
|
@@ -358,7 +586,12 @@ export interface CodeInfoResponseAminoMsg {
|
|
|
358
586
|
type: "wasm/CodeInfoResponse";
|
|
359
587
|
value: CodeInfoResponseAmino;
|
|
360
588
|
}
|
|
361
|
-
/**
|
|
589
|
+
/**
|
|
590
|
+
* QueryCodeResponse is the response type for the Query/Code RPC method
|
|
591
|
+
* @name QueryCodeResponse
|
|
592
|
+
* @package cosmwasm.wasm.v1
|
|
593
|
+
* @see proto type: cosmwasm.wasm.v1.QueryCodeResponse
|
|
594
|
+
*/
|
|
362
595
|
export interface QueryCodeResponse {
|
|
363
596
|
codeInfo?: CodeInfoResponse;
|
|
364
597
|
data: Uint8Array;
|
|
@@ -367,7 +600,12 @@ export interface QueryCodeResponseProtoMsg {
|
|
|
367
600
|
typeUrl: "/cosmwasm.wasm.v1.QueryCodeResponse";
|
|
368
601
|
value: Uint8Array;
|
|
369
602
|
}
|
|
370
|
-
/**
|
|
603
|
+
/**
|
|
604
|
+
* QueryCodeResponse is the response type for the Query/Code RPC method
|
|
605
|
+
* @name QueryCodeResponseAmino
|
|
606
|
+
* @package cosmwasm.wasm.v1
|
|
607
|
+
* @see proto type: cosmwasm.wasm.v1.QueryCodeResponse
|
|
608
|
+
*/
|
|
371
609
|
export interface QueryCodeResponseAmino {
|
|
372
610
|
code_info?: CodeInfoResponseAmino;
|
|
373
611
|
data: string;
|
|
@@ -376,38 +614,66 @@ export interface QueryCodeResponseAminoMsg {
|
|
|
376
614
|
type: "wasm/QueryCodeResponse";
|
|
377
615
|
value: QueryCodeResponseAmino;
|
|
378
616
|
}
|
|
379
|
-
/**
|
|
617
|
+
/**
|
|
618
|
+
* QueryCodesRequest is the request type for the Query/Codes RPC method
|
|
619
|
+
* @name QueryCodesRequest
|
|
620
|
+
* @package cosmwasm.wasm.v1
|
|
621
|
+
* @see proto type: cosmwasm.wasm.v1.QueryCodesRequest
|
|
622
|
+
*/
|
|
380
623
|
export interface QueryCodesRequest {
|
|
381
|
-
/**
|
|
624
|
+
/**
|
|
625
|
+
* pagination defines an optional pagination for the request.
|
|
626
|
+
*/
|
|
382
627
|
pagination?: PageRequest;
|
|
383
628
|
}
|
|
384
629
|
export interface QueryCodesRequestProtoMsg {
|
|
385
630
|
typeUrl: "/cosmwasm.wasm.v1.QueryCodesRequest";
|
|
386
631
|
value: Uint8Array;
|
|
387
632
|
}
|
|
388
|
-
/**
|
|
633
|
+
/**
|
|
634
|
+
* QueryCodesRequest is the request type for the Query/Codes RPC method
|
|
635
|
+
* @name QueryCodesRequestAmino
|
|
636
|
+
* @package cosmwasm.wasm.v1
|
|
637
|
+
* @see proto type: cosmwasm.wasm.v1.QueryCodesRequest
|
|
638
|
+
*/
|
|
389
639
|
export interface QueryCodesRequestAmino {
|
|
390
|
-
/**
|
|
640
|
+
/**
|
|
641
|
+
* pagination defines an optional pagination for the request.
|
|
642
|
+
*/
|
|
391
643
|
pagination?: PageRequestAmino;
|
|
392
644
|
}
|
|
393
645
|
export interface QueryCodesRequestAminoMsg {
|
|
394
646
|
type: "wasm/QueryCodesRequest";
|
|
395
647
|
value: QueryCodesRequestAmino;
|
|
396
648
|
}
|
|
397
|
-
/**
|
|
649
|
+
/**
|
|
650
|
+
* QueryCodesResponse is the response type for the Query/Codes RPC method
|
|
651
|
+
* @name QueryCodesResponse
|
|
652
|
+
* @package cosmwasm.wasm.v1
|
|
653
|
+
* @see proto type: cosmwasm.wasm.v1.QueryCodesResponse
|
|
654
|
+
*/
|
|
398
655
|
export interface QueryCodesResponse {
|
|
399
656
|
codeInfos: CodeInfoResponse[];
|
|
400
|
-
/**
|
|
657
|
+
/**
|
|
658
|
+
* pagination defines the pagination in the response.
|
|
659
|
+
*/
|
|
401
660
|
pagination?: PageResponse;
|
|
402
661
|
}
|
|
403
662
|
export interface QueryCodesResponseProtoMsg {
|
|
404
663
|
typeUrl: "/cosmwasm.wasm.v1.QueryCodesResponse";
|
|
405
664
|
value: Uint8Array;
|
|
406
665
|
}
|
|
407
|
-
/**
|
|
666
|
+
/**
|
|
667
|
+
* QueryCodesResponse is the response type for the Query/Codes RPC method
|
|
668
|
+
* @name QueryCodesResponseAmino
|
|
669
|
+
* @package cosmwasm.wasm.v1
|
|
670
|
+
* @see proto type: cosmwasm.wasm.v1.QueryCodesResponse
|
|
671
|
+
*/
|
|
408
672
|
export interface QueryCodesResponseAmino {
|
|
409
673
|
code_infos: CodeInfoResponseAmino[];
|
|
410
|
-
/**
|
|
674
|
+
/**
|
|
675
|
+
* pagination defines the pagination in the response.
|
|
676
|
+
*/
|
|
411
677
|
pagination?: PageResponseAmino;
|
|
412
678
|
}
|
|
413
679
|
export interface QueryCodesResponseAminoMsg {
|
|
@@ -417,9 +683,14 @@ export interface QueryCodesResponseAminoMsg {
|
|
|
417
683
|
/**
|
|
418
684
|
* QueryPinnedCodesRequest is the request type for the Query/PinnedCodes
|
|
419
685
|
* RPC method
|
|
686
|
+
* @name QueryPinnedCodesRequest
|
|
687
|
+
* @package cosmwasm.wasm.v1
|
|
688
|
+
* @see proto type: cosmwasm.wasm.v1.QueryPinnedCodesRequest
|
|
420
689
|
*/
|
|
421
690
|
export interface QueryPinnedCodesRequest {
|
|
422
|
-
/**
|
|
691
|
+
/**
|
|
692
|
+
* pagination defines an optional pagination for the request.
|
|
693
|
+
*/
|
|
423
694
|
pagination?: PageRequest;
|
|
424
695
|
}
|
|
425
696
|
export interface QueryPinnedCodesRequestProtoMsg {
|
|
@@ -429,9 +700,14 @@ export interface QueryPinnedCodesRequestProtoMsg {
|
|
|
429
700
|
/**
|
|
430
701
|
* QueryPinnedCodesRequest is the request type for the Query/PinnedCodes
|
|
431
702
|
* RPC method
|
|
703
|
+
* @name QueryPinnedCodesRequestAmino
|
|
704
|
+
* @package cosmwasm.wasm.v1
|
|
705
|
+
* @see proto type: cosmwasm.wasm.v1.QueryPinnedCodesRequest
|
|
432
706
|
*/
|
|
433
707
|
export interface QueryPinnedCodesRequestAmino {
|
|
434
|
-
/**
|
|
708
|
+
/**
|
|
709
|
+
* pagination defines an optional pagination for the request.
|
|
710
|
+
*/
|
|
435
711
|
pagination?: PageRequestAmino;
|
|
436
712
|
}
|
|
437
713
|
export interface QueryPinnedCodesRequestAminoMsg {
|
|
@@ -441,10 +717,15 @@ export interface QueryPinnedCodesRequestAminoMsg {
|
|
|
441
717
|
/**
|
|
442
718
|
* QueryPinnedCodesResponse is the response type for the
|
|
443
719
|
* Query/PinnedCodes RPC method
|
|
720
|
+
* @name QueryPinnedCodesResponse
|
|
721
|
+
* @package cosmwasm.wasm.v1
|
|
722
|
+
* @see proto type: cosmwasm.wasm.v1.QueryPinnedCodesResponse
|
|
444
723
|
*/
|
|
445
724
|
export interface QueryPinnedCodesResponse {
|
|
446
725
|
codeIds: bigint[];
|
|
447
|
-
/**
|
|
726
|
+
/**
|
|
727
|
+
* pagination defines the pagination in the response.
|
|
728
|
+
*/
|
|
448
729
|
pagination?: PageResponse;
|
|
449
730
|
}
|
|
450
731
|
export interface QueryPinnedCodesResponseProtoMsg {
|
|
@@ -454,42 +735,71 @@ export interface QueryPinnedCodesResponseProtoMsg {
|
|
|
454
735
|
/**
|
|
455
736
|
* QueryPinnedCodesResponse is the response type for the
|
|
456
737
|
* Query/PinnedCodes RPC method
|
|
738
|
+
* @name QueryPinnedCodesResponseAmino
|
|
739
|
+
* @package cosmwasm.wasm.v1
|
|
740
|
+
* @see proto type: cosmwasm.wasm.v1.QueryPinnedCodesResponse
|
|
457
741
|
*/
|
|
458
742
|
export interface QueryPinnedCodesResponseAmino {
|
|
459
743
|
code_ids: string[];
|
|
460
|
-
/**
|
|
744
|
+
/**
|
|
745
|
+
* pagination defines the pagination in the response.
|
|
746
|
+
*/
|
|
461
747
|
pagination?: PageResponseAmino;
|
|
462
748
|
}
|
|
463
749
|
export interface QueryPinnedCodesResponseAminoMsg {
|
|
464
750
|
type: "wasm/QueryPinnedCodesResponse";
|
|
465
751
|
value: QueryPinnedCodesResponseAmino;
|
|
466
752
|
}
|
|
467
|
-
/**
|
|
753
|
+
/**
|
|
754
|
+
* QueryParamsRequest is the request type for the Query/Params RPC method.
|
|
755
|
+
* @name QueryParamsRequest
|
|
756
|
+
* @package cosmwasm.wasm.v1
|
|
757
|
+
* @see proto type: cosmwasm.wasm.v1.QueryParamsRequest
|
|
758
|
+
*/
|
|
468
759
|
export interface QueryParamsRequest {
|
|
469
760
|
}
|
|
470
761
|
export interface QueryParamsRequestProtoMsg {
|
|
471
762
|
typeUrl: "/cosmwasm.wasm.v1.QueryParamsRequest";
|
|
472
763
|
value: Uint8Array;
|
|
473
764
|
}
|
|
474
|
-
/**
|
|
765
|
+
/**
|
|
766
|
+
* QueryParamsRequest is the request type for the Query/Params RPC method.
|
|
767
|
+
* @name QueryParamsRequestAmino
|
|
768
|
+
* @package cosmwasm.wasm.v1
|
|
769
|
+
* @see proto type: cosmwasm.wasm.v1.QueryParamsRequest
|
|
770
|
+
*/
|
|
475
771
|
export interface QueryParamsRequestAmino {
|
|
476
772
|
}
|
|
477
773
|
export interface QueryParamsRequestAminoMsg {
|
|
478
774
|
type: "wasm/QueryParamsRequest";
|
|
479
775
|
value: QueryParamsRequestAmino;
|
|
480
776
|
}
|
|
481
|
-
/**
|
|
777
|
+
/**
|
|
778
|
+
* QueryParamsResponse is the response type for the Query/Params RPC method.
|
|
779
|
+
* @name QueryParamsResponse
|
|
780
|
+
* @package cosmwasm.wasm.v1
|
|
781
|
+
* @see proto type: cosmwasm.wasm.v1.QueryParamsResponse
|
|
782
|
+
*/
|
|
482
783
|
export interface QueryParamsResponse {
|
|
483
|
-
/**
|
|
784
|
+
/**
|
|
785
|
+
* params defines the parameters of the module.
|
|
786
|
+
*/
|
|
484
787
|
params: Params;
|
|
485
788
|
}
|
|
486
789
|
export interface QueryParamsResponseProtoMsg {
|
|
487
790
|
typeUrl: "/cosmwasm.wasm.v1.QueryParamsResponse";
|
|
488
791
|
value: Uint8Array;
|
|
489
792
|
}
|
|
490
|
-
/**
|
|
793
|
+
/**
|
|
794
|
+
* QueryParamsResponse is the response type for the Query/Params RPC method.
|
|
795
|
+
* @name QueryParamsResponseAmino
|
|
796
|
+
* @package cosmwasm.wasm.v1
|
|
797
|
+
* @see proto type: cosmwasm.wasm.v1.QueryParamsResponse
|
|
798
|
+
*/
|
|
491
799
|
export interface QueryParamsResponseAmino {
|
|
492
|
-
/**
|
|
800
|
+
/**
|
|
801
|
+
* params defines the parameters of the module.
|
|
802
|
+
*/
|
|
493
803
|
params: ParamsAmino;
|
|
494
804
|
}
|
|
495
805
|
export interface QueryParamsResponseAminoMsg {
|
|
@@ -499,11 +809,18 @@ export interface QueryParamsResponseAminoMsg {
|
|
|
499
809
|
/**
|
|
500
810
|
* QueryContractsByCreatorRequest is the request type for the
|
|
501
811
|
* Query/ContractsByCreator RPC method.
|
|
812
|
+
* @name QueryContractsByCreatorRequest
|
|
813
|
+
* @package cosmwasm.wasm.v1
|
|
814
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractsByCreatorRequest
|
|
502
815
|
*/
|
|
503
816
|
export interface QueryContractsByCreatorRequest {
|
|
504
|
-
/**
|
|
817
|
+
/**
|
|
818
|
+
* CreatorAddress is the address of contract creator
|
|
819
|
+
*/
|
|
505
820
|
creatorAddress: string;
|
|
506
|
-
/**
|
|
821
|
+
/**
|
|
822
|
+
* Pagination defines an optional pagination for the request.
|
|
823
|
+
*/
|
|
507
824
|
pagination?: PageRequest;
|
|
508
825
|
}
|
|
509
826
|
export interface QueryContractsByCreatorRequestProtoMsg {
|
|
@@ -513,11 +830,18 @@ export interface QueryContractsByCreatorRequestProtoMsg {
|
|
|
513
830
|
/**
|
|
514
831
|
* QueryContractsByCreatorRequest is the request type for the
|
|
515
832
|
* Query/ContractsByCreator RPC method.
|
|
833
|
+
* @name QueryContractsByCreatorRequestAmino
|
|
834
|
+
* @package cosmwasm.wasm.v1
|
|
835
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractsByCreatorRequest
|
|
516
836
|
*/
|
|
517
837
|
export interface QueryContractsByCreatorRequestAmino {
|
|
518
|
-
/**
|
|
838
|
+
/**
|
|
839
|
+
* CreatorAddress is the address of contract creator
|
|
840
|
+
*/
|
|
519
841
|
creator_address: string;
|
|
520
|
-
/**
|
|
842
|
+
/**
|
|
843
|
+
* Pagination defines an optional pagination for the request.
|
|
844
|
+
*/
|
|
521
845
|
pagination?: PageRequestAmino;
|
|
522
846
|
}
|
|
523
847
|
export interface QueryContractsByCreatorRequestAminoMsg {
|
|
@@ -527,11 +851,18 @@ export interface QueryContractsByCreatorRequestAminoMsg {
|
|
|
527
851
|
/**
|
|
528
852
|
* QueryContractsByCreatorResponse is the response type for the
|
|
529
853
|
* Query/ContractsByCreator RPC method.
|
|
854
|
+
* @name QueryContractsByCreatorResponse
|
|
855
|
+
* @package cosmwasm.wasm.v1
|
|
856
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractsByCreatorResponse
|
|
530
857
|
*/
|
|
531
858
|
export interface QueryContractsByCreatorResponse {
|
|
532
|
-
/**
|
|
859
|
+
/**
|
|
860
|
+
* ContractAddresses result set
|
|
861
|
+
*/
|
|
533
862
|
contractAddresses: string[];
|
|
534
|
-
/**
|
|
863
|
+
/**
|
|
864
|
+
* Pagination defines the pagination in the response.
|
|
865
|
+
*/
|
|
535
866
|
pagination?: PageResponse;
|
|
536
867
|
}
|
|
537
868
|
export interface QueryContractsByCreatorResponseProtoMsg {
|
|
@@ -541,27 +872,99 @@ export interface QueryContractsByCreatorResponseProtoMsg {
|
|
|
541
872
|
/**
|
|
542
873
|
* QueryContractsByCreatorResponse is the response type for the
|
|
543
874
|
* Query/ContractsByCreator RPC method.
|
|
875
|
+
* @name QueryContractsByCreatorResponseAmino
|
|
876
|
+
* @package cosmwasm.wasm.v1
|
|
877
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractsByCreatorResponse
|
|
544
878
|
*/
|
|
545
879
|
export interface QueryContractsByCreatorResponseAmino {
|
|
546
|
-
/**
|
|
880
|
+
/**
|
|
881
|
+
* ContractAddresses result set
|
|
882
|
+
*/
|
|
547
883
|
contract_addresses: string[];
|
|
548
|
-
/**
|
|
884
|
+
/**
|
|
885
|
+
* Pagination defines the pagination in the response.
|
|
886
|
+
*/
|
|
549
887
|
pagination?: PageResponseAmino;
|
|
550
888
|
}
|
|
551
889
|
export interface QueryContractsByCreatorResponseAminoMsg {
|
|
552
890
|
type: "wasm/QueryContractsByCreatorResponse";
|
|
553
891
|
value: QueryContractsByCreatorResponseAmino;
|
|
554
892
|
}
|
|
893
|
+
/**
|
|
894
|
+
* QueryWasmLimitsConfigRequest is the request type for the
|
|
895
|
+
* Query/WasmLimitsConfig RPC method.
|
|
896
|
+
* @name QueryWasmLimitsConfigRequest
|
|
897
|
+
* @package cosmwasm.wasm.v1
|
|
898
|
+
* @see proto type: cosmwasm.wasm.v1.QueryWasmLimitsConfigRequest
|
|
899
|
+
*/
|
|
900
|
+
export interface QueryWasmLimitsConfigRequest {
|
|
901
|
+
}
|
|
902
|
+
export interface QueryWasmLimitsConfigRequestProtoMsg {
|
|
903
|
+
typeUrl: "/cosmwasm.wasm.v1.QueryWasmLimitsConfigRequest";
|
|
904
|
+
value: Uint8Array;
|
|
905
|
+
}
|
|
906
|
+
/**
|
|
907
|
+
* QueryWasmLimitsConfigRequest is the request type for the
|
|
908
|
+
* Query/WasmLimitsConfig RPC method.
|
|
909
|
+
* @name QueryWasmLimitsConfigRequestAmino
|
|
910
|
+
* @package cosmwasm.wasm.v1
|
|
911
|
+
* @see proto type: cosmwasm.wasm.v1.QueryWasmLimitsConfigRequest
|
|
912
|
+
*/
|
|
913
|
+
export interface QueryWasmLimitsConfigRequestAmino {
|
|
914
|
+
}
|
|
915
|
+
export interface QueryWasmLimitsConfigRequestAminoMsg {
|
|
916
|
+
type: "wasm/QueryWasmLimitsConfigRequest";
|
|
917
|
+
value: QueryWasmLimitsConfigRequestAmino;
|
|
918
|
+
}
|
|
919
|
+
/**
|
|
920
|
+
* QueryWasmLimitsConfigResponse is the response type for the
|
|
921
|
+
* Query/WasmLimitsConfig RPC method. It contains the JSON encoded limits for
|
|
922
|
+
* static validation of Wasm files.
|
|
923
|
+
* @name QueryWasmLimitsConfigResponse
|
|
924
|
+
* @package cosmwasm.wasm.v1
|
|
925
|
+
* @see proto type: cosmwasm.wasm.v1.QueryWasmLimitsConfigResponse
|
|
926
|
+
*/
|
|
927
|
+
export interface QueryWasmLimitsConfigResponse {
|
|
928
|
+
config: string;
|
|
929
|
+
}
|
|
930
|
+
export interface QueryWasmLimitsConfigResponseProtoMsg {
|
|
931
|
+
typeUrl: "/cosmwasm.wasm.v1.QueryWasmLimitsConfigResponse";
|
|
932
|
+
value: Uint8Array;
|
|
933
|
+
}
|
|
934
|
+
/**
|
|
935
|
+
* QueryWasmLimitsConfigResponse is the response type for the
|
|
936
|
+
* Query/WasmLimitsConfig RPC method. It contains the JSON encoded limits for
|
|
937
|
+
* static validation of Wasm files.
|
|
938
|
+
* @name QueryWasmLimitsConfigResponseAmino
|
|
939
|
+
* @package cosmwasm.wasm.v1
|
|
940
|
+
* @see proto type: cosmwasm.wasm.v1.QueryWasmLimitsConfigResponse
|
|
941
|
+
*/
|
|
942
|
+
export interface QueryWasmLimitsConfigResponseAmino {
|
|
943
|
+
config: string;
|
|
944
|
+
}
|
|
945
|
+
export interface QueryWasmLimitsConfigResponseAminoMsg {
|
|
946
|
+
type: "wasm/QueryWasmLimitsConfigResponse";
|
|
947
|
+
value: QueryWasmLimitsConfigResponseAmino;
|
|
948
|
+
}
|
|
555
949
|
/**
|
|
556
950
|
* QueryBuildAddressRequest is the request type for the Query/BuildAddress RPC
|
|
557
951
|
* method.
|
|
952
|
+
* @name QueryBuildAddressRequest
|
|
953
|
+
* @package cosmwasm.wasm.v1
|
|
954
|
+
* @see proto type: cosmwasm.wasm.v1.QueryBuildAddressRequest
|
|
558
955
|
*/
|
|
559
956
|
export interface QueryBuildAddressRequest {
|
|
560
|
-
/**
|
|
957
|
+
/**
|
|
958
|
+
* CodeHash is the hash of the code
|
|
959
|
+
*/
|
|
561
960
|
codeHash: string;
|
|
562
|
-
/**
|
|
961
|
+
/**
|
|
962
|
+
* CreatorAddress is the address of the contract instantiator
|
|
963
|
+
*/
|
|
563
964
|
creatorAddress: string;
|
|
564
|
-
/**
|
|
965
|
+
/**
|
|
966
|
+
* Salt is a hex encoded salt
|
|
967
|
+
*/
|
|
565
968
|
salt: string;
|
|
566
969
|
/**
|
|
567
970
|
* InitArgs are optional json encoded init args to be used in contract address
|
|
@@ -576,13 +979,22 @@ export interface QueryBuildAddressRequestProtoMsg {
|
|
|
576
979
|
/**
|
|
577
980
|
* QueryBuildAddressRequest is the request type for the Query/BuildAddress RPC
|
|
578
981
|
* method.
|
|
982
|
+
* @name QueryBuildAddressRequestAmino
|
|
983
|
+
* @package cosmwasm.wasm.v1
|
|
984
|
+
* @see proto type: cosmwasm.wasm.v1.QueryBuildAddressRequest
|
|
579
985
|
*/
|
|
580
986
|
export interface QueryBuildAddressRequestAmino {
|
|
581
|
-
/**
|
|
987
|
+
/**
|
|
988
|
+
* CodeHash is the hash of the code
|
|
989
|
+
*/
|
|
582
990
|
code_hash: string;
|
|
583
|
-
/**
|
|
991
|
+
/**
|
|
992
|
+
* CreatorAddress is the address of the contract instantiator
|
|
993
|
+
*/
|
|
584
994
|
creator_address: string;
|
|
585
|
-
/**
|
|
995
|
+
/**
|
|
996
|
+
* Salt is a hex encoded salt
|
|
997
|
+
*/
|
|
586
998
|
salt: string;
|
|
587
999
|
/**
|
|
588
1000
|
* InitArgs are optional json encoded init args to be used in contract address
|
|
@@ -597,9 +1009,14 @@ export interface QueryBuildAddressRequestAminoMsg {
|
|
|
597
1009
|
/**
|
|
598
1010
|
* QueryBuildAddressResponse is the response type for the Query/BuildAddress RPC
|
|
599
1011
|
* method.
|
|
1012
|
+
* @name QueryBuildAddressResponse
|
|
1013
|
+
* @package cosmwasm.wasm.v1
|
|
1014
|
+
* @see proto type: cosmwasm.wasm.v1.QueryBuildAddressResponse
|
|
600
1015
|
*/
|
|
601
1016
|
export interface QueryBuildAddressResponse {
|
|
602
|
-
/**
|
|
1017
|
+
/**
|
|
1018
|
+
* Address is the contract address
|
|
1019
|
+
*/
|
|
603
1020
|
address: string;
|
|
604
1021
|
}
|
|
605
1022
|
export interface QueryBuildAddressResponseProtoMsg {
|
|
@@ -609,15 +1026,27 @@ export interface QueryBuildAddressResponseProtoMsg {
|
|
|
609
1026
|
/**
|
|
610
1027
|
* QueryBuildAddressResponse is the response type for the Query/BuildAddress RPC
|
|
611
1028
|
* method.
|
|
1029
|
+
* @name QueryBuildAddressResponseAmino
|
|
1030
|
+
* @package cosmwasm.wasm.v1
|
|
1031
|
+
* @see proto type: cosmwasm.wasm.v1.QueryBuildAddressResponse
|
|
612
1032
|
*/
|
|
613
1033
|
export interface QueryBuildAddressResponseAmino {
|
|
614
|
-
/**
|
|
1034
|
+
/**
|
|
1035
|
+
* Address is the contract address
|
|
1036
|
+
*/
|
|
615
1037
|
address: string;
|
|
616
1038
|
}
|
|
617
1039
|
export interface QueryBuildAddressResponseAminoMsg {
|
|
618
1040
|
type: "wasm/QueryBuildAddressResponse";
|
|
619
1041
|
value: QueryBuildAddressResponseAmino;
|
|
620
1042
|
}
|
|
1043
|
+
/**
|
|
1044
|
+
* QueryContractInfoRequest is the request type for the Query/ContractInfo RPC
|
|
1045
|
+
* method
|
|
1046
|
+
* @name QueryContractInfoRequest
|
|
1047
|
+
* @package cosmwasm.wasm.v1
|
|
1048
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractInfoRequest
|
|
1049
|
+
*/
|
|
621
1050
|
export declare const QueryContractInfoRequest: {
|
|
622
1051
|
typeUrl: string;
|
|
623
1052
|
aminoType: string;
|
|
@@ -635,6 +1064,13 @@ export declare const QueryContractInfoRequest: {
|
|
|
635
1064
|
toProtoMsg(message: QueryContractInfoRequest): QueryContractInfoRequestProtoMsg;
|
|
636
1065
|
registerTypeUrl(): void;
|
|
637
1066
|
};
|
|
1067
|
+
/**
|
|
1068
|
+
* QueryContractInfoResponse is the response type for the Query/ContractInfo RPC
|
|
1069
|
+
* method
|
|
1070
|
+
* @name QueryContractInfoResponse
|
|
1071
|
+
* @package cosmwasm.wasm.v1
|
|
1072
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractInfoResponse
|
|
1073
|
+
*/
|
|
638
1074
|
export declare const QueryContractInfoResponse: {
|
|
639
1075
|
typeUrl: string;
|
|
640
1076
|
aminoType: string;
|
|
@@ -652,6 +1088,13 @@ export declare const QueryContractInfoResponse: {
|
|
|
652
1088
|
toProtoMsg(message: QueryContractInfoResponse): QueryContractInfoResponseProtoMsg;
|
|
653
1089
|
registerTypeUrl(): void;
|
|
654
1090
|
};
|
|
1091
|
+
/**
|
|
1092
|
+
* QueryContractHistoryRequest is the request type for the Query/ContractHistory
|
|
1093
|
+
* RPC method
|
|
1094
|
+
* @name QueryContractHistoryRequest
|
|
1095
|
+
* @package cosmwasm.wasm.v1
|
|
1096
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractHistoryRequest
|
|
1097
|
+
*/
|
|
655
1098
|
export declare const QueryContractHistoryRequest: {
|
|
656
1099
|
typeUrl: string;
|
|
657
1100
|
aminoType: string;
|
|
@@ -669,6 +1112,13 @@ export declare const QueryContractHistoryRequest: {
|
|
|
669
1112
|
toProtoMsg(message: QueryContractHistoryRequest): QueryContractHistoryRequestProtoMsg;
|
|
670
1113
|
registerTypeUrl(): void;
|
|
671
1114
|
};
|
|
1115
|
+
/**
|
|
1116
|
+
* QueryContractHistoryResponse is the response type for the
|
|
1117
|
+
* Query/ContractHistory RPC method
|
|
1118
|
+
* @name QueryContractHistoryResponse
|
|
1119
|
+
* @package cosmwasm.wasm.v1
|
|
1120
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractHistoryResponse
|
|
1121
|
+
*/
|
|
672
1122
|
export declare const QueryContractHistoryResponse: {
|
|
673
1123
|
typeUrl: string;
|
|
674
1124
|
aminoType: string;
|
|
@@ -686,6 +1136,13 @@ export declare const QueryContractHistoryResponse: {
|
|
|
686
1136
|
toProtoMsg(message: QueryContractHistoryResponse): QueryContractHistoryResponseProtoMsg;
|
|
687
1137
|
registerTypeUrl(): void;
|
|
688
1138
|
};
|
|
1139
|
+
/**
|
|
1140
|
+
* QueryContractsByCodeRequest is the request type for the Query/ContractsByCode
|
|
1141
|
+
* RPC method
|
|
1142
|
+
* @name QueryContractsByCodeRequest
|
|
1143
|
+
* @package cosmwasm.wasm.v1
|
|
1144
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractsByCodeRequest
|
|
1145
|
+
*/
|
|
689
1146
|
export declare const QueryContractsByCodeRequest: {
|
|
690
1147
|
typeUrl: string;
|
|
691
1148
|
aminoType: string;
|
|
@@ -703,6 +1160,13 @@ export declare const QueryContractsByCodeRequest: {
|
|
|
703
1160
|
toProtoMsg(message: QueryContractsByCodeRequest): QueryContractsByCodeRequestProtoMsg;
|
|
704
1161
|
registerTypeUrl(): void;
|
|
705
1162
|
};
|
|
1163
|
+
/**
|
|
1164
|
+
* QueryContractsByCodeResponse is the response type for the
|
|
1165
|
+
* Query/ContractsByCode RPC method
|
|
1166
|
+
* @name QueryContractsByCodeResponse
|
|
1167
|
+
* @package cosmwasm.wasm.v1
|
|
1168
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractsByCodeResponse
|
|
1169
|
+
*/
|
|
706
1170
|
export declare const QueryContractsByCodeResponse: {
|
|
707
1171
|
typeUrl: string;
|
|
708
1172
|
aminoType: string;
|
|
@@ -720,6 +1184,13 @@ export declare const QueryContractsByCodeResponse: {
|
|
|
720
1184
|
toProtoMsg(message: QueryContractsByCodeResponse): QueryContractsByCodeResponseProtoMsg;
|
|
721
1185
|
registerTypeUrl(): void;
|
|
722
1186
|
};
|
|
1187
|
+
/**
|
|
1188
|
+
* QueryAllContractStateRequest is the request type for the
|
|
1189
|
+
* Query/AllContractState RPC method
|
|
1190
|
+
* @name QueryAllContractStateRequest
|
|
1191
|
+
* @package cosmwasm.wasm.v1
|
|
1192
|
+
* @see proto type: cosmwasm.wasm.v1.QueryAllContractStateRequest
|
|
1193
|
+
*/
|
|
723
1194
|
export declare const QueryAllContractStateRequest: {
|
|
724
1195
|
typeUrl: string;
|
|
725
1196
|
aminoType: string;
|
|
@@ -737,6 +1208,13 @@ export declare const QueryAllContractStateRequest: {
|
|
|
737
1208
|
toProtoMsg(message: QueryAllContractStateRequest): QueryAllContractStateRequestProtoMsg;
|
|
738
1209
|
registerTypeUrl(): void;
|
|
739
1210
|
};
|
|
1211
|
+
/**
|
|
1212
|
+
* QueryAllContractStateResponse is the response type for the
|
|
1213
|
+
* Query/AllContractState RPC method
|
|
1214
|
+
* @name QueryAllContractStateResponse
|
|
1215
|
+
* @package cosmwasm.wasm.v1
|
|
1216
|
+
* @see proto type: cosmwasm.wasm.v1.QueryAllContractStateResponse
|
|
1217
|
+
*/
|
|
740
1218
|
export declare const QueryAllContractStateResponse: {
|
|
741
1219
|
typeUrl: string;
|
|
742
1220
|
aminoType: string;
|
|
@@ -754,6 +1232,13 @@ export declare const QueryAllContractStateResponse: {
|
|
|
754
1232
|
toProtoMsg(message: QueryAllContractStateResponse): QueryAllContractStateResponseProtoMsg;
|
|
755
1233
|
registerTypeUrl(): void;
|
|
756
1234
|
};
|
|
1235
|
+
/**
|
|
1236
|
+
* QueryRawContractStateRequest is the request type for the
|
|
1237
|
+
* Query/RawContractState RPC method
|
|
1238
|
+
* @name QueryRawContractStateRequest
|
|
1239
|
+
* @package cosmwasm.wasm.v1
|
|
1240
|
+
* @see proto type: cosmwasm.wasm.v1.QueryRawContractStateRequest
|
|
1241
|
+
*/
|
|
757
1242
|
export declare const QueryRawContractStateRequest: {
|
|
758
1243
|
typeUrl: string;
|
|
759
1244
|
aminoType: string;
|
|
@@ -771,6 +1256,13 @@ export declare const QueryRawContractStateRequest: {
|
|
|
771
1256
|
toProtoMsg(message: QueryRawContractStateRequest): QueryRawContractStateRequestProtoMsg;
|
|
772
1257
|
registerTypeUrl(): void;
|
|
773
1258
|
};
|
|
1259
|
+
/**
|
|
1260
|
+
* QueryRawContractStateResponse is the response type for the
|
|
1261
|
+
* Query/RawContractState RPC method
|
|
1262
|
+
* @name QueryRawContractStateResponse
|
|
1263
|
+
* @package cosmwasm.wasm.v1
|
|
1264
|
+
* @see proto type: cosmwasm.wasm.v1.QueryRawContractStateResponse
|
|
1265
|
+
*/
|
|
774
1266
|
export declare const QueryRawContractStateResponse: {
|
|
775
1267
|
typeUrl: string;
|
|
776
1268
|
aminoType: string;
|
|
@@ -788,6 +1280,13 @@ export declare const QueryRawContractStateResponse: {
|
|
|
788
1280
|
toProtoMsg(message: QueryRawContractStateResponse): QueryRawContractStateResponseProtoMsg;
|
|
789
1281
|
registerTypeUrl(): void;
|
|
790
1282
|
};
|
|
1283
|
+
/**
|
|
1284
|
+
* QuerySmartContractStateRequest is the request type for the
|
|
1285
|
+
* Query/SmartContractState RPC method
|
|
1286
|
+
* @name QuerySmartContractStateRequest
|
|
1287
|
+
* @package cosmwasm.wasm.v1
|
|
1288
|
+
* @see proto type: cosmwasm.wasm.v1.QuerySmartContractStateRequest
|
|
1289
|
+
*/
|
|
791
1290
|
export declare const QuerySmartContractStateRequest: {
|
|
792
1291
|
typeUrl: string;
|
|
793
1292
|
aminoType: string;
|
|
@@ -805,6 +1304,13 @@ export declare const QuerySmartContractStateRequest: {
|
|
|
805
1304
|
toProtoMsg(message: QuerySmartContractStateRequest): QuerySmartContractStateRequestProtoMsg;
|
|
806
1305
|
registerTypeUrl(): void;
|
|
807
1306
|
};
|
|
1307
|
+
/**
|
|
1308
|
+
* QuerySmartContractStateResponse is the response type for the
|
|
1309
|
+
* Query/SmartContractState RPC method
|
|
1310
|
+
* @name QuerySmartContractStateResponse
|
|
1311
|
+
* @package cosmwasm.wasm.v1
|
|
1312
|
+
* @see proto type: cosmwasm.wasm.v1.QuerySmartContractStateResponse
|
|
1313
|
+
*/
|
|
808
1314
|
export declare const QuerySmartContractStateResponse: {
|
|
809
1315
|
typeUrl: string;
|
|
810
1316
|
aminoType: string;
|
|
@@ -822,6 +1328,12 @@ export declare const QuerySmartContractStateResponse: {
|
|
|
822
1328
|
toProtoMsg(message: QuerySmartContractStateResponse): QuerySmartContractStateResponseProtoMsg;
|
|
823
1329
|
registerTypeUrl(): void;
|
|
824
1330
|
};
|
|
1331
|
+
/**
|
|
1332
|
+
* QueryCodeRequest is the request type for the Query/Code RPC method
|
|
1333
|
+
* @name QueryCodeRequest
|
|
1334
|
+
* @package cosmwasm.wasm.v1
|
|
1335
|
+
* @see proto type: cosmwasm.wasm.v1.QueryCodeRequest
|
|
1336
|
+
*/
|
|
825
1337
|
export declare const QueryCodeRequest: {
|
|
826
1338
|
typeUrl: string;
|
|
827
1339
|
aminoType: string;
|
|
@@ -839,6 +1351,58 @@ export declare const QueryCodeRequest: {
|
|
|
839
1351
|
toProtoMsg(message: QueryCodeRequest): QueryCodeRequestProtoMsg;
|
|
840
1352
|
registerTypeUrl(): void;
|
|
841
1353
|
};
|
|
1354
|
+
/**
|
|
1355
|
+
* QueryCodeInfoRequest is the request type for the Query/CodeInfo RPC method
|
|
1356
|
+
* @name QueryCodeInfoRequest
|
|
1357
|
+
* @package cosmwasm.wasm.v1
|
|
1358
|
+
* @see proto type: cosmwasm.wasm.v1.QueryCodeInfoRequest
|
|
1359
|
+
*/
|
|
1360
|
+
export declare const QueryCodeInfoRequest: {
|
|
1361
|
+
typeUrl: string;
|
|
1362
|
+
aminoType: string;
|
|
1363
|
+
is(o: any): o is QueryCodeInfoRequest;
|
|
1364
|
+
isAmino(o: any): o is QueryCodeInfoRequestAmino;
|
|
1365
|
+
encode(message: QueryCodeInfoRequest, writer?: BinaryWriter): BinaryWriter;
|
|
1366
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryCodeInfoRequest;
|
|
1367
|
+
fromPartial(object: DeepPartial<QueryCodeInfoRequest>): QueryCodeInfoRequest;
|
|
1368
|
+
fromAmino(object: QueryCodeInfoRequestAmino): QueryCodeInfoRequest;
|
|
1369
|
+
toAmino(message: QueryCodeInfoRequest): QueryCodeInfoRequestAmino;
|
|
1370
|
+
fromAminoMsg(object: QueryCodeInfoRequestAminoMsg): QueryCodeInfoRequest;
|
|
1371
|
+
toAminoMsg(message: QueryCodeInfoRequest): QueryCodeInfoRequestAminoMsg;
|
|
1372
|
+
fromProtoMsg(message: QueryCodeInfoRequestProtoMsg): QueryCodeInfoRequest;
|
|
1373
|
+
toProto(message: QueryCodeInfoRequest): Uint8Array;
|
|
1374
|
+
toProtoMsg(message: QueryCodeInfoRequest): QueryCodeInfoRequestProtoMsg;
|
|
1375
|
+
registerTypeUrl(): void;
|
|
1376
|
+
};
|
|
1377
|
+
/**
|
|
1378
|
+
* QueryCodeInfoResponse is the response type for the Query/CodeInfo RPC method
|
|
1379
|
+
* @name QueryCodeInfoResponse
|
|
1380
|
+
* @package cosmwasm.wasm.v1
|
|
1381
|
+
* @see proto type: cosmwasm.wasm.v1.QueryCodeInfoResponse
|
|
1382
|
+
*/
|
|
1383
|
+
export declare const QueryCodeInfoResponse: {
|
|
1384
|
+
typeUrl: string;
|
|
1385
|
+
aminoType: string;
|
|
1386
|
+
is(o: any): o is QueryCodeInfoResponse;
|
|
1387
|
+
isAmino(o: any): o is QueryCodeInfoResponseAmino;
|
|
1388
|
+
encode(message: QueryCodeInfoResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1389
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryCodeInfoResponse;
|
|
1390
|
+
fromPartial(object: DeepPartial<QueryCodeInfoResponse>): QueryCodeInfoResponse;
|
|
1391
|
+
fromAmino(object: QueryCodeInfoResponseAmino): QueryCodeInfoResponse;
|
|
1392
|
+
toAmino(message: QueryCodeInfoResponse): QueryCodeInfoResponseAmino;
|
|
1393
|
+
fromAminoMsg(object: QueryCodeInfoResponseAminoMsg): QueryCodeInfoResponse;
|
|
1394
|
+
toAminoMsg(message: QueryCodeInfoResponse): QueryCodeInfoResponseAminoMsg;
|
|
1395
|
+
fromProtoMsg(message: QueryCodeInfoResponseProtoMsg): QueryCodeInfoResponse;
|
|
1396
|
+
toProto(message: QueryCodeInfoResponse): Uint8Array;
|
|
1397
|
+
toProtoMsg(message: QueryCodeInfoResponse): QueryCodeInfoResponseProtoMsg;
|
|
1398
|
+
registerTypeUrl(): void;
|
|
1399
|
+
};
|
|
1400
|
+
/**
|
|
1401
|
+
* CodeInfoResponse contains code meta data from CodeInfo
|
|
1402
|
+
* @name CodeInfoResponse
|
|
1403
|
+
* @package cosmwasm.wasm.v1
|
|
1404
|
+
* @see proto type: cosmwasm.wasm.v1.CodeInfoResponse
|
|
1405
|
+
*/
|
|
842
1406
|
export declare const CodeInfoResponse: {
|
|
843
1407
|
typeUrl: string;
|
|
844
1408
|
aminoType: string;
|
|
@@ -856,6 +1420,12 @@ export declare const CodeInfoResponse: {
|
|
|
856
1420
|
toProtoMsg(message: CodeInfoResponse): CodeInfoResponseProtoMsg;
|
|
857
1421
|
registerTypeUrl(): void;
|
|
858
1422
|
};
|
|
1423
|
+
/**
|
|
1424
|
+
* QueryCodeResponse is the response type for the Query/Code RPC method
|
|
1425
|
+
* @name QueryCodeResponse
|
|
1426
|
+
* @package cosmwasm.wasm.v1
|
|
1427
|
+
* @see proto type: cosmwasm.wasm.v1.QueryCodeResponse
|
|
1428
|
+
*/
|
|
859
1429
|
export declare const QueryCodeResponse: {
|
|
860
1430
|
typeUrl: string;
|
|
861
1431
|
aminoType: string;
|
|
@@ -873,6 +1443,12 @@ export declare const QueryCodeResponse: {
|
|
|
873
1443
|
toProtoMsg(message: QueryCodeResponse): QueryCodeResponseProtoMsg;
|
|
874
1444
|
registerTypeUrl(): void;
|
|
875
1445
|
};
|
|
1446
|
+
/**
|
|
1447
|
+
* QueryCodesRequest is the request type for the Query/Codes RPC method
|
|
1448
|
+
* @name QueryCodesRequest
|
|
1449
|
+
* @package cosmwasm.wasm.v1
|
|
1450
|
+
* @see proto type: cosmwasm.wasm.v1.QueryCodesRequest
|
|
1451
|
+
*/
|
|
876
1452
|
export declare const QueryCodesRequest: {
|
|
877
1453
|
typeUrl: string;
|
|
878
1454
|
aminoType: string;
|
|
@@ -890,6 +1466,12 @@ export declare const QueryCodesRequest: {
|
|
|
890
1466
|
toProtoMsg(message: QueryCodesRequest): QueryCodesRequestProtoMsg;
|
|
891
1467
|
registerTypeUrl(): void;
|
|
892
1468
|
};
|
|
1469
|
+
/**
|
|
1470
|
+
* QueryCodesResponse is the response type for the Query/Codes RPC method
|
|
1471
|
+
* @name QueryCodesResponse
|
|
1472
|
+
* @package cosmwasm.wasm.v1
|
|
1473
|
+
* @see proto type: cosmwasm.wasm.v1.QueryCodesResponse
|
|
1474
|
+
*/
|
|
893
1475
|
export declare const QueryCodesResponse: {
|
|
894
1476
|
typeUrl: string;
|
|
895
1477
|
aminoType: string;
|
|
@@ -907,6 +1489,13 @@ export declare const QueryCodesResponse: {
|
|
|
907
1489
|
toProtoMsg(message: QueryCodesResponse): QueryCodesResponseProtoMsg;
|
|
908
1490
|
registerTypeUrl(): void;
|
|
909
1491
|
};
|
|
1492
|
+
/**
|
|
1493
|
+
* QueryPinnedCodesRequest is the request type for the Query/PinnedCodes
|
|
1494
|
+
* RPC method
|
|
1495
|
+
* @name QueryPinnedCodesRequest
|
|
1496
|
+
* @package cosmwasm.wasm.v1
|
|
1497
|
+
* @see proto type: cosmwasm.wasm.v1.QueryPinnedCodesRequest
|
|
1498
|
+
*/
|
|
910
1499
|
export declare const QueryPinnedCodesRequest: {
|
|
911
1500
|
typeUrl: string;
|
|
912
1501
|
aminoType: string;
|
|
@@ -924,6 +1513,13 @@ export declare const QueryPinnedCodesRequest: {
|
|
|
924
1513
|
toProtoMsg(message: QueryPinnedCodesRequest): QueryPinnedCodesRequestProtoMsg;
|
|
925
1514
|
registerTypeUrl(): void;
|
|
926
1515
|
};
|
|
1516
|
+
/**
|
|
1517
|
+
* QueryPinnedCodesResponse is the response type for the
|
|
1518
|
+
* Query/PinnedCodes RPC method
|
|
1519
|
+
* @name QueryPinnedCodesResponse
|
|
1520
|
+
* @package cosmwasm.wasm.v1
|
|
1521
|
+
* @see proto type: cosmwasm.wasm.v1.QueryPinnedCodesResponse
|
|
1522
|
+
*/
|
|
927
1523
|
export declare const QueryPinnedCodesResponse: {
|
|
928
1524
|
typeUrl: string;
|
|
929
1525
|
aminoType: string;
|
|
@@ -941,6 +1537,12 @@ export declare const QueryPinnedCodesResponse: {
|
|
|
941
1537
|
toProtoMsg(message: QueryPinnedCodesResponse): QueryPinnedCodesResponseProtoMsg;
|
|
942
1538
|
registerTypeUrl(): void;
|
|
943
1539
|
};
|
|
1540
|
+
/**
|
|
1541
|
+
* QueryParamsRequest is the request type for the Query/Params RPC method.
|
|
1542
|
+
* @name QueryParamsRequest
|
|
1543
|
+
* @package cosmwasm.wasm.v1
|
|
1544
|
+
* @see proto type: cosmwasm.wasm.v1.QueryParamsRequest
|
|
1545
|
+
*/
|
|
944
1546
|
export declare const QueryParamsRequest: {
|
|
945
1547
|
typeUrl: string;
|
|
946
1548
|
aminoType: string;
|
|
@@ -958,6 +1560,12 @@ export declare const QueryParamsRequest: {
|
|
|
958
1560
|
toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg;
|
|
959
1561
|
registerTypeUrl(): void;
|
|
960
1562
|
};
|
|
1563
|
+
/**
|
|
1564
|
+
* QueryParamsResponse is the response type for the Query/Params RPC method.
|
|
1565
|
+
* @name QueryParamsResponse
|
|
1566
|
+
* @package cosmwasm.wasm.v1
|
|
1567
|
+
* @see proto type: cosmwasm.wasm.v1.QueryParamsResponse
|
|
1568
|
+
*/
|
|
961
1569
|
export declare const QueryParamsResponse: {
|
|
962
1570
|
typeUrl: string;
|
|
963
1571
|
aminoType: string;
|
|
@@ -975,6 +1583,13 @@ export declare const QueryParamsResponse: {
|
|
|
975
1583
|
toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg;
|
|
976
1584
|
registerTypeUrl(): void;
|
|
977
1585
|
};
|
|
1586
|
+
/**
|
|
1587
|
+
* QueryContractsByCreatorRequest is the request type for the
|
|
1588
|
+
* Query/ContractsByCreator RPC method.
|
|
1589
|
+
* @name QueryContractsByCreatorRequest
|
|
1590
|
+
* @package cosmwasm.wasm.v1
|
|
1591
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractsByCreatorRequest
|
|
1592
|
+
*/
|
|
978
1593
|
export declare const QueryContractsByCreatorRequest: {
|
|
979
1594
|
typeUrl: string;
|
|
980
1595
|
aminoType: string;
|
|
@@ -992,6 +1607,13 @@ export declare const QueryContractsByCreatorRequest: {
|
|
|
992
1607
|
toProtoMsg(message: QueryContractsByCreatorRequest): QueryContractsByCreatorRequestProtoMsg;
|
|
993
1608
|
registerTypeUrl(): void;
|
|
994
1609
|
};
|
|
1610
|
+
/**
|
|
1611
|
+
* QueryContractsByCreatorResponse is the response type for the
|
|
1612
|
+
* Query/ContractsByCreator RPC method.
|
|
1613
|
+
* @name QueryContractsByCreatorResponse
|
|
1614
|
+
* @package cosmwasm.wasm.v1
|
|
1615
|
+
* @see proto type: cosmwasm.wasm.v1.QueryContractsByCreatorResponse
|
|
1616
|
+
*/
|
|
995
1617
|
export declare const QueryContractsByCreatorResponse: {
|
|
996
1618
|
typeUrl: string;
|
|
997
1619
|
aminoType: string;
|
|
@@ -1009,6 +1631,62 @@ export declare const QueryContractsByCreatorResponse: {
|
|
|
1009
1631
|
toProtoMsg(message: QueryContractsByCreatorResponse): QueryContractsByCreatorResponseProtoMsg;
|
|
1010
1632
|
registerTypeUrl(): void;
|
|
1011
1633
|
};
|
|
1634
|
+
/**
|
|
1635
|
+
* QueryWasmLimitsConfigRequest is the request type for the
|
|
1636
|
+
* Query/WasmLimitsConfig RPC method.
|
|
1637
|
+
* @name QueryWasmLimitsConfigRequest
|
|
1638
|
+
* @package cosmwasm.wasm.v1
|
|
1639
|
+
* @see proto type: cosmwasm.wasm.v1.QueryWasmLimitsConfigRequest
|
|
1640
|
+
*/
|
|
1641
|
+
export declare const QueryWasmLimitsConfigRequest: {
|
|
1642
|
+
typeUrl: string;
|
|
1643
|
+
aminoType: string;
|
|
1644
|
+
is(o: any): o is QueryWasmLimitsConfigRequest;
|
|
1645
|
+
isAmino(o: any): o is QueryWasmLimitsConfigRequestAmino;
|
|
1646
|
+
encode(_: QueryWasmLimitsConfigRequest, writer?: BinaryWriter): BinaryWriter;
|
|
1647
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryWasmLimitsConfigRequest;
|
|
1648
|
+
fromPartial(_: DeepPartial<QueryWasmLimitsConfigRequest>): QueryWasmLimitsConfigRequest;
|
|
1649
|
+
fromAmino(_: QueryWasmLimitsConfigRequestAmino): QueryWasmLimitsConfigRequest;
|
|
1650
|
+
toAmino(_: QueryWasmLimitsConfigRequest): QueryWasmLimitsConfigRequestAmino;
|
|
1651
|
+
fromAminoMsg(object: QueryWasmLimitsConfigRequestAminoMsg): QueryWasmLimitsConfigRequest;
|
|
1652
|
+
toAminoMsg(message: QueryWasmLimitsConfigRequest): QueryWasmLimitsConfigRequestAminoMsg;
|
|
1653
|
+
fromProtoMsg(message: QueryWasmLimitsConfigRequestProtoMsg): QueryWasmLimitsConfigRequest;
|
|
1654
|
+
toProto(message: QueryWasmLimitsConfigRequest): Uint8Array;
|
|
1655
|
+
toProtoMsg(message: QueryWasmLimitsConfigRequest): QueryWasmLimitsConfigRequestProtoMsg;
|
|
1656
|
+
registerTypeUrl(): void;
|
|
1657
|
+
};
|
|
1658
|
+
/**
|
|
1659
|
+
* QueryWasmLimitsConfigResponse is the response type for the
|
|
1660
|
+
* Query/WasmLimitsConfig RPC method. It contains the JSON encoded limits for
|
|
1661
|
+
* static validation of Wasm files.
|
|
1662
|
+
* @name QueryWasmLimitsConfigResponse
|
|
1663
|
+
* @package cosmwasm.wasm.v1
|
|
1664
|
+
* @see proto type: cosmwasm.wasm.v1.QueryWasmLimitsConfigResponse
|
|
1665
|
+
*/
|
|
1666
|
+
export declare const QueryWasmLimitsConfigResponse: {
|
|
1667
|
+
typeUrl: string;
|
|
1668
|
+
aminoType: string;
|
|
1669
|
+
is(o: any): o is QueryWasmLimitsConfigResponse;
|
|
1670
|
+
isAmino(o: any): o is QueryWasmLimitsConfigResponseAmino;
|
|
1671
|
+
encode(message: QueryWasmLimitsConfigResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1672
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryWasmLimitsConfigResponse;
|
|
1673
|
+
fromPartial(object: DeepPartial<QueryWasmLimitsConfigResponse>): QueryWasmLimitsConfigResponse;
|
|
1674
|
+
fromAmino(object: QueryWasmLimitsConfigResponseAmino): QueryWasmLimitsConfigResponse;
|
|
1675
|
+
toAmino(message: QueryWasmLimitsConfigResponse): QueryWasmLimitsConfigResponseAmino;
|
|
1676
|
+
fromAminoMsg(object: QueryWasmLimitsConfigResponseAminoMsg): QueryWasmLimitsConfigResponse;
|
|
1677
|
+
toAminoMsg(message: QueryWasmLimitsConfigResponse): QueryWasmLimitsConfigResponseAminoMsg;
|
|
1678
|
+
fromProtoMsg(message: QueryWasmLimitsConfigResponseProtoMsg): QueryWasmLimitsConfigResponse;
|
|
1679
|
+
toProto(message: QueryWasmLimitsConfigResponse): Uint8Array;
|
|
1680
|
+
toProtoMsg(message: QueryWasmLimitsConfigResponse): QueryWasmLimitsConfigResponseProtoMsg;
|
|
1681
|
+
registerTypeUrl(): void;
|
|
1682
|
+
};
|
|
1683
|
+
/**
|
|
1684
|
+
* QueryBuildAddressRequest is the request type for the Query/BuildAddress RPC
|
|
1685
|
+
* method.
|
|
1686
|
+
* @name QueryBuildAddressRequest
|
|
1687
|
+
* @package cosmwasm.wasm.v1
|
|
1688
|
+
* @see proto type: cosmwasm.wasm.v1.QueryBuildAddressRequest
|
|
1689
|
+
*/
|
|
1012
1690
|
export declare const QueryBuildAddressRequest: {
|
|
1013
1691
|
typeUrl: string;
|
|
1014
1692
|
aminoType: string;
|
|
@@ -1026,6 +1704,13 @@ export declare const QueryBuildAddressRequest: {
|
|
|
1026
1704
|
toProtoMsg(message: QueryBuildAddressRequest): QueryBuildAddressRequestProtoMsg;
|
|
1027
1705
|
registerTypeUrl(): void;
|
|
1028
1706
|
};
|
|
1707
|
+
/**
|
|
1708
|
+
* QueryBuildAddressResponse is the response type for the Query/BuildAddress RPC
|
|
1709
|
+
* method.
|
|
1710
|
+
* @name QueryBuildAddressResponse
|
|
1711
|
+
* @package cosmwasm.wasm.v1
|
|
1712
|
+
* @see proto type: cosmwasm.wasm.v1.QueryBuildAddressResponse
|
|
1713
|
+
*/
|
|
1029
1714
|
export declare const QueryBuildAddressResponse: {
|
|
1030
1715
|
typeUrl: string;
|
|
1031
1716
|
aminoType: string;
|