@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
package/cosmwasm/wasm/v1/tx.d.ts
CHANGED
|
@@ -2,11 +2,20 @@ import { AccessConfig, AccessConfigAmino, Params, ParamsAmino } from "./types";
|
|
|
2
2
|
import { Coin, CoinAmino } from "../../../cosmos/base/v1beta1/coin";
|
|
3
3
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
4
4
|
import { DeepPartial } from "../../../helpers";
|
|
5
|
-
/**
|
|
5
|
+
/**
|
|
6
|
+
* MsgStoreCode submit Wasm code to the system
|
|
7
|
+
* @name MsgStoreCode
|
|
8
|
+
* @package cosmwasm.wasm.v1
|
|
9
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreCode
|
|
10
|
+
*/
|
|
6
11
|
export interface MsgStoreCode {
|
|
7
|
-
/**
|
|
12
|
+
/**
|
|
13
|
+
* Sender is the actor that signed the messages
|
|
14
|
+
*/
|
|
8
15
|
sender: string;
|
|
9
|
-
/**
|
|
16
|
+
/**
|
|
17
|
+
* WASMByteCode can be raw or gzip compressed
|
|
18
|
+
*/
|
|
10
19
|
wasmByteCode: Uint8Array;
|
|
11
20
|
/**
|
|
12
21
|
* InstantiatePermission access control to apply on contract creation,
|
|
@@ -18,11 +27,20 @@ export interface MsgStoreCodeProtoMsg {
|
|
|
18
27
|
typeUrl: "/cosmwasm.wasm.v1.MsgStoreCode";
|
|
19
28
|
value: Uint8Array;
|
|
20
29
|
}
|
|
21
|
-
/**
|
|
30
|
+
/**
|
|
31
|
+
* MsgStoreCode submit Wasm code to the system
|
|
32
|
+
* @name MsgStoreCodeAmino
|
|
33
|
+
* @package cosmwasm.wasm.v1
|
|
34
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreCode
|
|
35
|
+
*/
|
|
22
36
|
export interface MsgStoreCodeAmino {
|
|
23
|
-
/**
|
|
37
|
+
/**
|
|
38
|
+
* Sender is the actor that signed the messages
|
|
39
|
+
*/
|
|
24
40
|
sender: string;
|
|
25
|
-
/**
|
|
41
|
+
/**
|
|
42
|
+
* WASMByteCode can be raw or gzip compressed
|
|
43
|
+
*/
|
|
26
44
|
wasm_byte_code: string;
|
|
27
45
|
/**
|
|
28
46
|
* InstantiatePermission access control to apply on contract creation,
|
|
@@ -34,22 +52,40 @@ export interface MsgStoreCodeAminoMsg {
|
|
|
34
52
|
type: "wasm/MsgStoreCode";
|
|
35
53
|
value: MsgStoreCodeAmino;
|
|
36
54
|
}
|
|
37
|
-
/**
|
|
55
|
+
/**
|
|
56
|
+
* MsgStoreCodeResponse returns store result data.
|
|
57
|
+
* @name MsgStoreCodeResponse
|
|
58
|
+
* @package cosmwasm.wasm.v1
|
|
59
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreCodeResponse
|
|
60
|
+
*/
|
|
38
61
|
export interface MsgStoreCodeResponse {
|
|
39
|
-
/**
|
|
62
|
+
/**
|
|
63
|
+
* CodeID is the reference to the stored WASM code
|
|
64
|
+
*/
|
|
40
65
|
codeId: bigint;
|
|
41
|
-
/**
|
|
66
|
+
/**
|
|
67
|
+
* Checksum is the sha256 hash of the stored code
|
|
68
|
+
*/
|
|
42
69
|
checksum: Uint8Array;
|
|
43
70
|
}
|
|
44
71
|
export interface MsgStoreCodeResponseProtoMsg {
|
|
45
72
|
typeUrl: "/cosmwasm.wasm.v1.MsgStoreCodeResponse";
|
|
46
73
|
value: Uint8Array;
|
|
47
74
|
}
|
|
48
|
-
/**
|
|
75
|
+
/**
|
|
76
|
+
* MsgStoreCodeResponse returns store result data.
|
|
77
|
+
* @name MsgStoreCodeResponseAmino
|
|
78
|
+
* @package cosmwasm.wasm.v1
|
|
79
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreCodeResponse
|
|
80
|
+
*/
|
|
49
81
|
export interface MsgStoreCodeResponseAmino {
|
|
50
|
-
/**
|
|
82
|
+
/**
|
|
83
|
+
* CodeID is the reference to the stored WASM code
|
|
84
|
+
*/
|
|
51
85
|
code_id: string;
|
|
52
|
-
/**
|
|
86
|
+
/**
|
|
87
|
+
* Checksum is the sha256 hash of the stored code
|
|
88
|
+
*/
|
|
53
89
|
checksum: string;
|
|
54
90
|
}
|
|
55
91
|
export interface MsgStoreCodeResponseAminoMsg {
|
|
@@ -59,19 +95,34 @@ export interface MsgStoreCodeResponseAminoMsg {
|
|
|
59
95
|
/**
|
|
60
96
|
* MsgInstantiateContract create a new smart contract instance for the given
|
|
61
97
|
* code id.
|
|
98
|
+
* @name MsgInstantiateContract
|
|
99
|
+
* @package cosmwasm.wasm.v1
|
|
100
|
+
* @see proto type: cosmwasm.wasm.v1.MsgInstantiateContract
|
|
62
101
|
*/
|
|
63
102
|
export interface MsgInstantiateContract {
|
|
64
|
-
/**
|
|
103
|
+
/**
|
|
104
|
+
* Sender is the that actor that signed the messages
|
|
105
|
+
*/
|
|
65
106
|
sender: string;
|
|
66
|
-
/**
|
|
107
|
+
/**
|
|
108
|
+
* Admin is an optional address that can execute migrations
|
|
109
|
+
*/
|
|
67
110
|
admin: string;
|
|
68
|
-
/**
|
|
111
|
+
/**
|
|
112
|
+
* CodeID is the reference to the stored WASM code
|
|
113
|
+
*/
|
|
69
114
|
codeId: bigint;
|
|
70
|
-
/**
|
|
115
|
+
/**
|
|
116
|
+
* Label is optional metadata to be stored with a contract instance.
|
|
117
|
+
*/
|
|
71
118
|
label: string;
|
|
72
|
-
/**
|
|
119
|
+
/**
|
|
120
|
+
* Msg json encoded message to be passed to the contract on instantiation
|
|
121
|
+
*/
|
|
73
122
|
msg: Uint8Array;
|
|
74
|
-
/**
|
|
123
|
+
/**
|
|
124
|
+
* Funds coins that are transferred to the contract on instantiation
|
|
125
|
+
*/
|
|
75
126
|
funds: Coin[];
|
|
76
127
|
}
|
|
77
128
|
export interface MsgInstantiateContractProtoMsg {
|
|
@@ -81,41 +132,74 @@ export interface MsgInstantiateContractProtoMsg {
|
|
|
81
132
|
/**
|
|
82
133
|
* MsgInstantiateContract create a new smart contract instance for the given
|
|
83
134
|
* code id.
|
|
135
|
+
* @name MsgInstantiateContractAmino
|
|
136
|
+
* @package cosmwasm.wasm.v1
|
|
137
|
+
* @see proto type: cosmwasm.wasm.v1.MsgInstantiateContract
|
|
84
138
|
*/
|
|
85
139
|
export interface MsgInstantiateContractAmino {
|
|
86
|
-
/**
|
|
140
|
+
/**
|
|
141
|
+
* Sender is the that actor that signed the messages
|
|
142
|
+
*/
|
|
87
143
|
sender: string;
|
|
88
|
-
/**
|
|
144
|
+
/**
|
|
145
|
+
* Admin is an optional address that can execute migrations
|
|
146
|
+
*/
|
|
89
147
|
admin: string;
|
|
90
|
-
/**
|
|
148
|
+
/**
|
|
149
|
+
* CodeID is the reference to the stored WASM code
|
|
150
|
+
*/
|
|
91
151
|
code_id: string;
|
|
92
|
-
/**
|
|
152
|
+
/**
|
|
153
|
+
* Label is optional metadata to be stored with a contract instance.
|
|
154
|
+
*/
|
|
93
155
|
label: string;
|
|
94
|
-
/**
|
|
156
|
+
/**
|
|
157
|
+
* Msg json encoded message to be passed to the contract on instantiation
|
|
158
|
+
*/
|
|
95
159
|
msg: any;
|
|
96
|
-
/**
|
|
160
|
+
/**
|
|
161
|
+
* Funds coins that are transferred to the contract on instantiation
|
|
162
|
+
*/
|
|
97
163
|
funds: CoinAmino[];
|
|
98
164
|
}
|
|
99
165
|
export interface MsgInstantiateContractAminoMsg {
|
|
100
166
|
type: "wasm/MsgInstantiateContract";
|
|
101
167
|
value: MsgInstantiateContractAmino;
|
|
102
168
|
}
|
|
103
|
-
/**
|
|
169
|
+
/**
|
|
170
|
+
* MsgInstantiateContractResponse return instantiation result data
|
|
171
|
+
* @name MsgInstantiateContractResponse
|
|
172
|
+
* @package cosmwasm.wasm.v1
|
|
173
|
+
* @see proto type: cosmwasm.wasm.v1.MsgInstantiateContractResponse
|
|
174
|
+
*/
|
|
104
175
|
export interface MsgInstantiateContractResponse {
|
|
105
|
-
/**
|
|
176
|
+
/**
|
|
177
|
+
* Address is the bech32 address of the new contract instance.
|
|
178
|
+
*/
|
|
106
179
|
address: string;
|
|
107
|
-
/**
|
|
180
|
+
/**
|
|
181
|
+
* Data contains bytes to returned from the contract
|
|
182
|
+
*/
|
|
108
183
|
data: Uint8Array;
|
|
109
184
|
}
|
|
110
185
|
export interface MsgInstantiateContractResponseProtoMsg {
|
|
111
186
|
typeUrl: "/cosmwasm.wasm.v1.MsgInstantiateContractResponse";
|
|
112
187
|
value: Uint8Array;
|
|
113
188
|
}
|
|
114
|
-
/**
|
|
189
|
+
/**
|
|
190
|
+
* MsgInstantiateContractResponse return instantiation result data
|
|
191
|
+
* @name MsgInstantiateContractResponseAmino
|
|
192
|
+
* @package cosmwasm.wasm.v1
|
|
193
|
+
* @see proto type: cosmwasm.wasm.v1.MsgInstantiateContractResponse
|
|
194
|
+
*/
|
|
115
195
|
export interface MsgInstantiateContractResponseAmino {
|
|
116
|
-
/**
|
|
196
|
+
/**
|
|
197
|
+
* Address is the bech32 address of the new contract instance.
|
|
198
|
+
*/
|
|
117
199
|
address: string;
|
|
118
|
-
/**
|
|
200
|
+
/**
|
|
201
|
+
* Data contains bytes to returned from the contract
|
|
202
|
+
*/
|
|
119
203
|
data: string;
|
|
120
204
|
}
|
|
121
205
|
export interface MsgInstantiateContractResponseAminoMsg {
|
|
@@ -125,21 +209,38 @@ export interface MsgInstantiateContractResponseAminoMsg {
|
|
|
125
209
|
/**
|
|
126
210
|
* MsgInstantiateContract2 create a new smart contract instance for the given
|
|
127
211
|
* code id with a predictable address.
|
|
212
|
+
* @name MsgInstantiateContract2
|
|
213
|
+
* @package cosmwasm.wasm.v1
|
|
214
|
+
* @see proto type: cosmwasm.wasm.v1.MsgInstantiateContract2
|
|
128
215
|
*/
|
|
129
216
|
export interface MsgInstantiateContract2 {
|
|
130
|
-
/**
|
|
217
|
+
/**
|
|
218
|
+
* Sender is the that actor that signed the messages
|
|
219
|
+
*/
|
|
131
220
|
sender: string;
|
|
132
|
-
/**
|
|
221
|
+
/**
|
|
222
|
+
* Admin is an optional address that can execute migrations
|
|
223
|
+
*/
|
|
133
224
|
admin: string;
|
|
134
|
-
/**
|
|
225
|
+
/**
|
|
226
|
+
* CodeID is the reference to the stored WASM code
|
|
227
|
+
*/
|
|
135
228
|
codeId: bigint;
|
|
136
|
-
/**
|
|
229
|
+
/**
|
|
230
|
+
* Label is optional metadata to be stored with a contract instance.
|
|
231
|
+
*/
|
|
137
232
|
label: string;
|
|
138
|
-
/**
|
|
233
|
+
/**
|
|
234
|
+
* Msg json encoded message to be passed to the contract on instantiation
|
|
235
|
+
*/
|
|
139
236
|
msg: Uint8Array;
|
|
140
|
-
/**
|
|
237
|
+
/**
|
|
238
|
+
* Funds coins that are transferred to the contract on instantiation
|
|
239
|
+
*/
|
|
141
240
|
funds: Coin[];
|
|
142
|
-
/**
|
|
241
|
+
/**
|
|
242
|
+
* Salt is an arbitrary value provided by the sender. Size can be 1 to 64.
|
|
243
|
+
*/
|
|
143
244
|
salt: Uint8Array;
|
|
144
245
|
/**
|
|
145
246
|
* FixMsg include the msg value into the hash for the predictable address.
|
|
@@ -154,21 +255,38 @@ export interface MsgInstantiateContract2ProtoMsg {
|
|
|
154
255
|
/**
|
|
155
256
|
* MsgInstantiateContract2 create a new smart contract instance for the given
|
|
156
257
|
* code id with a predictable address.
|
|
258
|
+
* @name MsgInstantiateContract2Amino
|
|
259
|
+
* @package cosmwasm.wasm.v1
|
|
260
|
+
* @see proto type: cosmwasm.wasm.v1.MsgInstantiateContract2
|
|
157
261
|
*/
|
|
158
262
|
export interface MsgInstantiateContract2Amino {
|
|
159
|
-
/**
|
|
263
|
+
/**
|
|
264
|
+
* Sender is the that actor that signed the messages
|
|
265
|
+
*/
|
|
160
266
|
sender: string;
|
|
161
|
-
/**
|
|
267
|
+
/**
|
|
268
|
+
* Admin is an optional address that can execute migrations
|
|
269
|
+
*/
|
|
162
270
|
admin: string;
|
|
163
|
-
/**
|
|
271
|
+
/**
|
|
272
|
+
* CodeID is the reference to the stored WASM code
|
|
273
|
+
*/
|
|
164
274
|
code_id: string;
|
|
165
|
-
/**
|
|
275
|
+
/**
|
|
276
|
+
* Label is optional metadata to be stored with a contract instance.
|
|
277
|
+
*/
|
|
166
278
|
label: string;
|
|
167
|
-
/**
|
|
279
|
+
/**
|
|
280
|
+
* Msg json encoded message to be passed to the contract on instantiation
|
|
281
|
+
*/
|
|
168
282
|
msg: any;
|
|
169
|
-
/**
|
|
283
|
+
/**
|
|
284
|
+
* Funds coins that are transferred to the contract on instantiation
|
|
285
|
+
*/
|
|
170
286
|
funds: CoinAmino[];
|
|
171
|
-
/**
|
|
287
|
+
/**
|
|
288
|
+
* Salt is an arbitrary value provided by the sender. Size can be 1 to 64.
|
|
289
|
+
*/
|
|
172
290
|
salt: string;
|
|
173
291
|
/**
|
|
174
292
|
* FixMsg include the msg value into the hash for the predictable address.
|
|
@@ -180,107 +298,196 @@ export interface MsgInstantiateContract2AminoMsg {
|
|
|
180
298
|
type: "wasm/MsgInstantiateContract2";
|
|
181
299
|
value: MsgInstantiateContract2Amino;
|
|
182
300
|
}
|
|
183
|
-
/**
|
|
301
|
+
/**
|
|
302
|
+
* MsgInstantiateContract2Response return instantiation result data
|
|
303
|
+
* @name MsgInstantiateContract2Response
|
|
304
|
+
* @package cosmwasm.wasm.v1
|
|
305
|
+
* @see proto type: cosmwasm.wasm.v1.MsgInstantiateContract2Response
|
|
306
|
+
*/
|
|
184
307
|
export interface MsgInstantiateContract2Response {
|
|
185
|
-
/**
|
|
308
|
+
/**
|
|
309
|
+
* Address is the bech32 address of the new contract instance.
|
|
310
|
+
*/
|
|
186
311
|
address: string;
|
|
187
|
-
/**
|
|
312
|
+
/**
|
|
313
|
+
* Data contains bytes to returned from the contract
|
|
314
|
+
*/
|
|
188
315
|
data: Uint8Array;
|
|
189
316
|
}
|
|
190
317
|
export interface MsgInstantiateContract2ResponseProtoMsg {
|
|
191
318
|
typeUrl: "/cosmwasm.wasm.v1.MsgInstantiateContract2Response";
|
|
192
319
|
value: Uint8Array;
|
|
193
320
|
}
|
|
194
|
-
/**
|
|
321
|
+
/**
|
|
322
|
+
* MsgInstantiateContract2Response return instantiation result data
|
|
323
|
+
* @name MsgInstantiateContract2ResponseAmino
|
|
324
|
+
* @package cosmwasm.wasm.v1
|
|
325
|
+
* @see proto type: cosmwasm.wasm.v1.MsgInstantiateContract2Response
|
|
326
|
+
*/
|
|
195
327
|
export interface MsgInstantiateContract2ResponseAmino {
|
|
196
|
-
/**
|
|
328
|
+
/**
|
|
329
|
+
* Address is the bech32 address of the new contract instance.
|
|
330
|
+
*/
|
|
197
331
|
address: string;
|
|
198
|
-
/**
|
|
332
|
+
/**
|
|
333
|
+
* Data contains bytes to returned from the contract
|
|
334
|
+
*/
|
|
199
335
|
data: string;
|
|
200
336
|
}
|
|
201
337
|
export interface MsgInstantiateContract2ResponseAminoMsg {
|
|
202
338
|
type: "wasm/MsgInstantiateContract2Response";
|
|
203
339
|
value: MsgInstantiateContract2ResponseAmino;
|
|
204
340
|
}
|
|
205
|
-
/**
|
|
341
|
+
/**
|
|
342
|
+
* MsgExecuteContract submits the given message data to a smart contract
|
|
343
|
+
* @name MsgExecuteContract
|
|
344
|
+
* @package cosmwasm.wasm.v1
|
|
345
|
+
* @see proto type: cosmwasm.wasm.v1.MsgExecuteContract
|
|
346
|
+
*/
|
|
206
347
|
export interface MsgExecuteContract {
|
|
207
|
-
/**
|
|
348
|
+
/**
|
|
349
|
+
* Sender is the that actor that signed the messages
|
|
350
|
+
*/
|
|
208
351
|
sender: string;
|
|
209
|
-
/**
|
|
352
|
+
/**
|
|
353
|
+
* Contract is the address of the smart contract
|
|
354
|
+
*/
|
|
210
355
|
contract: string;
|
|
211
|
-
/**
|
|
356
|
+
/**
|
|
357
|
+
* Msg json encoded message to be passed to the contract
|
|
358
|
+
*/
|
|
212
359
|
msg: Uint8Array;
|
|
213
|
-
/**
|
|
360
|
+
/**
|
|
361
|
+
* Funds coins that are transferred to the contract on execution
|
|
362
|
+
*/
|
|
214
363
|
funds: Coin[];
|
|
215
364
|
}
|
|
216
365
|
export interface MsgExecuteContractProtoMsg {
|
|
217
366
|
typeUrl: "/cosmwasm.wasm.v1.MsgExecuteContract";
|
|
218
367
|
value: Uint8Array;
|
|
219
368
|
}
|
|
220
|
-
/**
|
|
369
|
+
/**
|
|
370
|
+
* MsgExecuteContract submits the given message data to a smart contract
|
|
371
|
+
* @name MsgExecuteContractAmino
|
|
372
|
+
* @package cosmwasm.wasm.v1
|
|
373
|
+
* @see proto type: cosmwasm.wasm.v1.MsgExecuteContract
|
|
374
|
+
*/
|
|
221
375
|
export interface MsgExecuteContractAmino {
|
|
222
|
-
/**
|
|
376
|
+
/**
|
|
377
|
+
* Sender is the that actor that signed the messages
|
|
378
|
+
*/
|
|
223
379
|
sender: string;
|
|
224
|
-
/**
|
|
380
|
+
/**
|
|
381
|
+
* Contract is the address of the smart contract
|
|
382
|
+
*/
|
|
225
383
|
contract: string;
|
|
226
|
-
/**
|
|
384
|
+
/**
|
|
385
|
+
* Msg json encoded message to be passed to the contract
|
|
386
|
+
*/
|
|
227
387
|
msg: any;
|
|
228
|
-
/**
|
|
388
|
+
/**
|
|
389
|
+
* Funds coins that are transferred to the contract on execution
|
|
390
|
+
*/
|
|
229
391
|
funds: CoinAmino[];
|
|
230
392
|
}
|
|
231
393
|
export interface MsgExecuteContractAminoMsg {
|
|
232
394
|
type: "wasm/MsgExecuteContract";
|
|
233
395
|
value: MsgExecuteContractAmino;
|
|
234
396
|
}
|
|
235
|
-
/**
|
|
397
|
+
/**
|
|
398
|
+
* MsgExecuteContractResponse returns execution result data.
|
|
399
|
+
* @name MsgExecuteContractResponse
|
|
400
|
+
* @package cosmwasm.wasm.v1
|
|
401
|
+
* @see proto type: cosmwasm.wasm.v1.MsgExecuteContractResponse
|
|
402
|
+
*/
|
|
236
403
|
export interface MsgExecuteContractResponse {
|
|
237
|
-
/**
|
|
404
|
+
/**
|
|
405
|
+
* Data contains bytes to returned from the contract
|
|
406
|
+
*/
|
|
238
407
|
data: Uint8Array;
|
|
239
408
|
}
|
|
240
409
|
export interface MsgExecuteContractResponseProtoMsg {
|
|
241
410
|
typeUrl: "/cosmwasm.wasm.v1.MsgExecuteContractResponse";
|
|
242
411
|
value: Uint8Array;
|
|
243
412
|
}
|
|
244
|
-
/**
|
|
413
|
+
/**
|
|
414
|
+
* MsgExecuteContractResponse returns execution result data.
|
|
415
|
+
* @name MsgExecuteContractResponseAmino
|
|
416
|
+
* @package cosmwasm.wasm.v1
|
|
417
|
+
* @see proto type: cosmwasm.wasm.v1.MsgExecuteContractResponse
|
|
418
|
+
*/
|
|
245
419
|
export interface MsgExecuteContractResponseAmino {
|
|
246
|
-
/**
|
|
420
|
+
/**
|
|
421
|
+
* Data contains bytes to returned from the contract
|
|
422
|
+
*/
|
|
247
423
|
data: string;
|
|
248
424
|
}
|
|
249
425
|
export interface MsgExecuteContractResponseAminoMsg {
|
|
250
426
|
type: "wasm/MsgExecuteContractResponse";
|
|
251
427
|
value: MsgExecuteContractResponseAmino;
|
|
252
428
|
}
|
|
253
|
-
/**
|
|
429
|
+
/**
|
|
430
|
+
* MsgMigrateContract runs a code upgrade/ downgrade for a smart contract
|
|
431
|
+
* @name MsgMigrateContract
|
|
432
|
+
* @package cosmwasm.wasm.v1
|
|
433
|
+
* @see proto type: cosmwasm.wasm.v1.MsgMigrateContract
|
|
434
|
+
*/
|
|
254
435
|
export interface MsgMigrateContract {
|
|
255
|
-
/**
|
|
436
|
+
/**
|
|
437
|
+
* Sender is the that actor that signed the messages
|
|
438
|
+
*/
|
|
256
439
|
sender: string;
|
|
257
|
-
/**
|
|
440
|
+
/**
|
|
441
|
+
* Contract is the address of the smart contract
|
|
442
|
+
*/
|
|
258
443
|
contract: string;
|
|
259
|
-
/**
|
|
444
|
+
/**
|
|
445
|
+
* CodeID references the new WASM code
|
|
446
|
+
*/
|
|
260
447
|
codeId: bigint;
|
|
261
|
-
/**
|
|
448
|
+
/**
|
|
449
|
+
* Msg json encoded message to be passed to the contract on migration
|
|
450
|
+
*/
|
|
262
451
|
msg: Uint8Array;
|
|
263
452
|
}
|
|
264
453
|
export interface MsgMigrateContractProtoMsg {
|
|
265
454
|
typeUrl: "/cosmwasm.wasm.v1.MsgMigrateContract";
|
|
266
455
|
value: Uint8Array;
|
|
267
456
|
}
|
|
268
|
-
/**
|
|
457
|
+
/**
|
|
458
|
+
* MsgMigrateContract runs a code upgrade/ downgrade for a smart contract
|
|
459
|
+
* @name MsgMigrateContractAmino
|
|
460
|
+
* @package cosmwasm.wasm.v1
|
|
461
|
+
* @see proto type: cosmwasm.wasm.v1.MsgMigrateContract
|
|
462
|
+
*/
|
|
269
463
|
export interface MsgMigrateContractAmino {
|
|
270
|
-
/**
|
|
464
|
+
/**
|
|
465
|
+
* Sender is the that actor that signed the messages
|
|
466
|
+
*/
|
|
271
467
|
sender: string;
|
|
272
|
-
/**
|
|
468
|
+
/**
|
|
469
|
+
* Contract is the address of the smart contract
|
|
470
|
+
*/
|
|
273
471
|
contract: string;
|
|
274
|
-
/**
|
|
472
|
+
/**
|
|
473
|
+
* CodeID references the new WASM code
|
|
474
|
+
*/
|
|
275
475
|
code_id: string;
|
|
276
|
-
/**
|
|
476
|
+
/**
|
|
477
|
+
* Msg json encoded message to be passed to the contract on migration
|
|
478
|
+
*/
|
|
277
479
|
msg: any;
|
|
278
480
|
}
|
|
279
481
|
export interface MsgMigrateContractAminoMsg {
|
|
280
482
|
type: "wasm/MsgMigrateContract";
|
|
281
483
|
value: MsgMigrateContractAmino;
|
|
282
484
|
}
|
|
283
|
-
/**
|
|
485
|
+
/**
|
|
486
|
+
* MsgMigrateContractResponse returns contract migration result data.
|
|
487
|
+
* @name MsgMigrateContractResponse
|
|
488
|
+
* @package cosmwasm.wasm.v1
|
|
489
|
+
* @see proto type: cosmwasm.wasm.v1.MsgMigrateContractResponse
|
|
490
|
+
*/
|
|
284
491
|
export interface MsgMigrateContractResponse {
|
|
285
492
|
/**
|
|
286
493
|
* Data contains same raw bytes returned as data from the wasm contract.
|
|
@@ -292,7 +499,12 @@ export interface MsgMigrateContractResponseProtoMsg {
|
|
|
292
499
|
typeUrl: "/cosmwasm.wasm.v1.MsgMigrateContractResponse";
|
|
293
500
|
value: Uint8Array;
|
|
294
501
|
}
|
|
295
|
-
/**
|
|
502
|
+
/**
|
|
503
|
+
* MsgMigrateContractResponse returns contract migration result data.
|
|
504
|
+
* @name MsgMigrateContractResponseAmino
|
|
505
|
+
* @package cosmwasm.wasm.v1
|
|
506
|
+
* @see proto type: cosmwasm.wasm.v1.MsgMigrateContractResponse
|
|
507
|
+
*/
|
|
296
508
|
export interface MsgMigrateContractResponseAmino {
|
|
297
509
|
/**
|
|
298
510
|
* Data contains same raw bytes returned as data from the wasm contract.
|
|
@@ -304,116 +516,208 @@ export interface MsgMigrateContractResponseAminoMsg {
|
|
|
304
516
|
type: "wasm/MsgMigrateContractResponse";
|
|
305
517
|
value: MsgMigrateContractResponseAmino;
|
|
306
518
|
}
|
|
307
|
-
/**
|
|
519
|
+
/**
|
|
520
|
+
* MsgUpdateAdmin sets a new admin for a smart contract
|
|
521
|
+
* @name MsgUpdateAdmin
|
|
522
|
+
* @package cosmwasm.wasm.v1
|
|
523
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateAdmin
|
|
524
|
+
*/
|
|
308
525
|
export interface MsgUpdateAdmin {
|
|
309
|
-
/**
|
|
526
|
+
/**
|
|
527
|
+
* Sender is the that actor that signed the messages
|
|
528
|
+
*/
|
|
310
529
|
sender: string;
|
|
311
|
-
/**
|
|
530
|
+
/**
|
|
531
|
+
* NewAdmin address to be set
|
|
532
|
+
*/
|
|
312
533
|
newAdmin: string;
|
|
313
|
-
/**
|
|
534
|
+
/**
|
|
535
|
+
* Contract is the address of the smart contract
|
|
536
|
+
*/
|
|
314
537
|
contract: string;
|
|
315
538
|
}
|
|
316
539
|
export interface MsgUpdateAdminProtoMsg {
|
|
317
540
|
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateAdmin";
|
|
318
541
|
value: Uint8Array;
|
|
319
542
|
}
|
|
320
|
-
/**
|
|
543
|
+
/**
|
|
544
|
+
* MsgUpdateAdmin sets a new admin for a smart contract
|
|
545
|
+
* @name MsgUpdateAdminAmino
|
|
546
|
+
* @package cosmwasm.wasm.v1
|
|
547
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateAdmin
|
|
548
|
+
*/
|
|
321
549
|
export interface MsgUpdateAdminAmino {
|
|
322
|
-
/**
|
|
550
|
+
/**
|
|
551
|
+
* Sender is the that actor that signed the messages
|
|
552
|
+
*/
|
|
323
553
|
sender: string;
|
|
324
|
-
/**
|
|
554
|
+
/**
|
|
555
|
+
* NewAdmin address to be set
|
|
556
|
+
*/
|
|
325
557
|
new_admin: string;
|
|
326
|
-
/**
|
|
558
|
+
/**
|
|
559
|
+
* Contract is the address of the smart contract
|
|
560
|
+
*/
|
|
327
561
|
contract: string;
|
|
328
562
|
}
|
|
329
563
|
export interface MsgUpdateAdminAminoMsg {
|
|
330
564
|
type: "wasm/MsgUpdateAdmin";
|
|
331
565
|
value: MsgUpdateAdminAmino;
|
|
332
566
|
}
|
|
333
|
-
/**
|
|
567
|
+
/**
|
|
568
|
+
* MsgUpdateAdminResponse returns empty data
|
|
569
|
+
* @name MsgUpdateAdminResponse
|
|
570
|
+
* @package cosmwasm.wasm.v1
|
|
571
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateAdminResponse
|
|
572
|
+
*/
|
|
334
573
|
export interface MsgUpdateAdminResponse {
|
|
335
574
|
}
|
|
336
575
|
export interface MsgUpdateAdminResponseProtoMsg {
|
|
337
576
|
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateAdminResponse";
|
|
338
577
|
value: Uint8Array;
|
|
339
578
|
}
|
|
340
|
-
/**
|
|
579
|
+
/**
|
|
580
|
+
* MsgUpdateAdminResponse returns empty data
|
|
581
|
+
* @name MsgUpdateAdminResponseAmino
|
|
582
|
+
* @package cosmwasm.wasm.v1
|
|
583
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateAdminResponse
|
|
584
|
+
*/
|
|
341
585
|
export interface MsgUpdateAdminResponseAmino {
|
|
342
586
|
}
|
|
343
587
|
export interface MsgUpdateAdminResponseAminoMsg {
|
|
344
588
|
type: "wasm/MsgUpdateAdminResponse";
|
|
345
589
|
value: MsgUpdateAdminResponseAmino;
|
|
346
590
|
}
|
|
347
|
-
/**
|
|
591
|
+
/**
|
|
592
|
+
* MsgClearAdmin removes any admin stored for a smart contract
|
|
593
|
+
* @name MsgClearAdmin
|
|
594
|
+
* @package cosmwasm.wasm.v1
|
|
595
|
+
* @see proto type: cosmwasm.wasm.v1.MsgClearAdmin
|
|
596
|
+
*/
|
|
348
597
|
export interface MsgClearAdmin {
|
|
349
|
-
/**
|
|
598
|
+
/**
|
|
599
|
+
* Sender is the actor that signed the messages
|
|
600
|
+
*/
|
|
350
601
|
sender: string;
|
|
351
|
-
/**
|
|
602
|
+
/**
|
|
603
|
+
* Contract is the address of the smart contract
|
|
604
|
+
*/
|
|
352
605
|
contract: string;
|
|
353
606
|
}
|
|
354
607
|
export interface MsgClearAdminProtoMsg {
|
|
355
608
|
typeUrl: "/cosmwasm.wasm.v1.MsgClearAdmin";
|
|
356
609
|
value: Uint8Array;
|
|
357
610
|
}
|
|
358
|
-
/**
|
|
611
|
+
/**
|
|
612
|
+
* MsgClearAdmin removes any admin stored for a smart contract
|
|
613
|
+
* @name MsgClearAdminAmino
|
|
614
|
+
* @package cosmwasm.wasm.v1
|
|
615
|
+
* @see proto type: cosmwasm.wasm.v1.MsgClearAdmin
|
|
616
|
+
*/
|
|
359
617
|
export interface MsgClearAdminAmino {
|
|
360
|
-
/**
|
|
618
|
+
/**
|
|
619
|
+
* Sender is the actor that signed the messages
|
|
620
|
+
*/
|
|
361
621
|
sender: string;
|
|
362
|
-
/**
|
|
622
|
+
/**
|
|
623
|
+
* Contract is the address of the smart contract
|
|
624
|
+
*/
|
|
363
625
|
contract: string;
|
|
364
626
|
}
|
|
365
627
|
export interface MsgClearAdminAminoMsg {
|
|
366
628
|
type: "wasm/MsgClearAdmin";
|
|
367
629
|
value: MsgClearAdminAmino;
|
|
368
630
|
}
|
|
369
|
-
/**
|
|
631
|
+
/**
|
|
632
|
+
* MsgClearAdminResponse returns empty data
|
|
633
|
+
* @name MsgClearAdminResponse
|
|
634
|
+
* @package cosmwasm.wasm.v1
|
|
635
|
+
* @see proto type: cosmwasm.wasm.v1.MsgClearAdminResponse
|
|
636
|
+
*/
|
|
370
637
|
export interface MsgClearAdminResponse {
|
|
371
638
|
}
|
|
372
639
|
export interface MsgClearAdminResponseProtoMsg {
|
|
373
640
|
typeUrl: "/cosmwasm.wasm.v1.MsgClearAdminResponse";
|
|
374
641
|
value: Uint8Array;
|
|
375
642
|
}
|
|
376
|
-
/**
|
|
643
|
+
/**
|
|
644
|
+
* MsgClearAdminResponse returns empty data
|
|
645
|
+
* @name MsgClearAdminResponseAmino
|
|
646
|
+
* @package cosmwasm.wasm.v1
|
|
647
|
+
* @see proto type: cosmwasm.wasm.v1.MsgClearAdminResponse
|
|
648
|
+
*/
|
|
377
649
|
export interface MsgClearAdminResponseAmino {
|
|
378
650
|
}
|
|
379
651
|
export interface MsgClearAdminResponseAminoMsg {
|
|
380
652
|
type: "wasm/MsgClearAdminResponse";
|
|
381
653
|
value: MsgClearAdminResponseAmino;
|
|
382
654
|
}
|
|
383
|
-
/**
|
|
655
|
+
/**
|
|
656
|
+
* MsgUpdateInstantiateConfig updates instantiate config for a smart contract
|
|
657
|
+
* @name MsgUpdateInstantiateConfig
|
|
658
|
+
* @package cosmwasm.wasm.v1
|
|
659
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateInstantiateConfig
|
|
660
|
+
*/
|
|
384
661
|
export interface MsgUpdateInstantiateConfig {
|
|
385
|
-
/**
|
|
662
|
+
/**
|
|
663
|
+
* Sender is the that actor that signed the messages
|
|
664
|
+
*/
|
|
386
665
|
sender: string;
|
|
387
|
-
/**
|
|
666
|
+
/**
|
|
667
|
+
* CodeID references the stored WASM code
|
|
668
|
+
*/
|
|
388
669
|
codeId: bigint;
|
|
389
|
-
/**
|
|
670
|
+
/**
|
|
671
|
+
* NewInstantiatePermission is the new access control
|
|
672
|
+
*/
|
|
390
673
|
newInstantiatePermission?: AccessConfig;
|
|
391
674
|
}
|
|
392
675
|
export interface MsgUpdateInstantiateConfigProtoMsg {
|
|
393
676
|
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateInstantiateConfig";
|
|
394
677
|
value: Uint8Array;
|
|
395
678
|
}
|
|
396
|
-
/**
|
|
679
|
+
/**
|
|
680
|
+
* MsgUpdateInstantiateConfig updates instantiate config for a smart contract
|
|
681
|
+
* @name MsgUpdateInstantiateConfigAmino
|
|
682
|
+
* @package cosmwasm.wasm.v1
|
|
683
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateInstantiateConfig
|
|
684
|
+
*/
|
|
397
685
|
export interface MsgUpdateInstantiateConfigAmino {
|
|
398
|
-
/**
|
|
686
|
+
/**
|
|
687
|
+
* Sender is the that actor that signed the messages
|
|
688
|
+
*/
|
|
399
689
|
sender: string;
|
|
400
|
-
/**
|
|
690
|
+
/**
|
|
691
|
+
* CodeID references the stored WASM code
|
|
692
|
+
*/
|
|
401
693
|
code_id: string;
|
|
402
|
-
/**
|
|
694
|
+
/**
|
|
695
|
+
* NewInstantiatePermission is the new access control
|
|
696
|
+
*/
|
|
403
697
|
new_instantiate_permission?: AccessConfigAmino;
|
|
404
698
|
}
|
|
405
699
|
export interface MsgUpdateInstantiateConfigAminoMsg {
|
|
406
700
|
type: "wasm/MsgUpdateInstantiateConfig";
|
|
407
701
|
value: MsgUpdateInstantiateConfigAmino;
|
|
408
702
|
}
|
|
409
|
-
/**
|
|
703
|
+
/**
|
|
704
|
+
* MsgUpdateInstantiateConfigResponse returns empty data
|
|
705
|
+
* @name MsgUpdateInstantiateConfigResponse
|
|
706
|
+
* @package cosmwasm.wasm.v1
|
|
707
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateInstantiateConfigResponse
|
|
708
|
+
*/
|
|
410
709
|
export interface MsgUpdateInstantiateConfigResponse {
|
|
411
710
|
}
|
|
412
711
|
export interface MsgUpdateInstantiateConfigResponseProtoMsg {
|
|
413
712
|
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateInstantiateConfigResponse";
|
|
414
713
|
value: Uint8Array;
|
|
415
714
|
}
|
|
416
|
-
/**
|
|
715
|
+
/**
|
|
716
|
+
* MsgUpdateInstantiateConfigResponse returns empty data
|
|
717
|
+
* @name MsgUpdateInstantiateConfigResponseAmino
|
|
718
|
+
* @package cosmwasm.wasm.v1
|
|
719
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateInstantiateConfigResponse
|
|
720
|
+
*/
|
|
417
721
|
export interface MsgUpdateInstantiateConfigResponseAmino {
|
|
418
722
|
}
|
|
419
723
|
export interface MsgUpdateInstantiateConfigResponseAminoMsg {
|
|
@@ -424,9 +728,14 @@ export interface MsgUpdateInstantiateConfigResponseAminoMsg {
|
|
|
424
728
|
* MsgUpdateParams is the MsgUpdateParams request type.
|
|
425
729
|
*
|
|
426
730
|
* Since: 0.40
|
|
731
|
+
* @name MsgUpdateParams
|
|
732
|
+
* @package cosmwasm.wasm.v1
|
|
733
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateParams
|
|
427
734
|
*/
|
|
428
735
|
export interface MsgUpdateParams {
|
|
429
|
-
/**
|
|
736
|
+
/**
|
|
737
|
+
* Authority is the address of the governance account.
|
|
738
|
+
*/
|
|
430
739
|
authority: string;
|
|
431
740
|
/**
|
|
432
741
|
* params defines the x/wasm parameters to update.
|
|
@@ -443,9 +752,14 @@ export interface MsgUpdateParamsProtoMsg {
|
|
|
443
752
|
* MsgUpdateParams is the MsgUpdateParams request type.
|
|
444
753
|
*
|
|
445
754
|
* Since: 0.40
|
|
755
|
+
* @name MsgUpdateParamsAmino
|
|
756
|
+
* @package cosmwasm.wasm.v1
|
|
757
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateParams
|
|
446
758
|
*/
|
|
447
759
|
export interface MsgUpdateParamsAmino {
|
|
448
|
-
/**
|
|
760
|
+
/**
|
|
761
|
+
* Authority is the address of the governance account.
|
|
762
|
+
*/
|
|
449
763
|
authority: string;
|
|
450
764
|
/**
|
|
451
765
|
* params defines the x/wasm parameters to update.
|
|
@@ -463,6 +777,9 @@ export interface MsgUpdateParamsAminoMsg {
|
|
|
463
777
|
* MsgUpdateParams message.
|
|
464
778
|
*
|
|
465
779
|
* Since: 0.40
|
|
780
|
+
* @name MsgUpdateParamsResponse
|
|
781
|
+
* @package cosmwasm.wasm.v1
|
|
782
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateParamsResponse
|
|
466
783
|
*/
|
|
467
784
|
export interface MsgUpdateParamsResponse {
|
|
468
785
|
}
|
|
@@ -475,6 +792,9 @@ export interface MsgUpdateParamsResponseProtoMsg {
|
|
|
475
792
|
* MsgUpdateParams message.
|
|
476
793
|
*
|
|
477
794
|
* Since: 0.40
|
|
795
|
+
* @name MsgUpdateParamsResponseAmino
|
|
796
|
+
* @package cosmwasm.wasm.v1
|
|
797
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateParamsResponse
|
|
478
798
|
*/
|
|
479
799
|
export interface MsgUpdateParamsResponseAmino {
|
|
480
800
|
}
|
|
@@ -486,13 +806,22 @@ export interface MsgUpdateParamsResponseAminoMsg {
|
|
|
486
806
|
* MsgSudoContract is the MsgSudoContract request type.
|
|
487
807
|
*
|
|
488
808
|
* Since: 0.40
|
|
809
|
+
* @name MsgSudoContract
|
|
810
|
+
* @package cosmwasm.wasm.v1
|
|
811
|
+
* @see proto type: cosmwasm.wasm.v1.MsgSudoContract
|
|
489
812
|
*/
|
|
490
813
|
export interface MsgSudoContract {
|
|
491
|
-
/**
|
|
814
|
+
/**
|
|
815
|
+
* Authority is the address of the governance account.
|
|
816
|
+
*/
|
|
492
817
|
authority: string;
|
|
493
|
-
/**
|
|
818
|
+
/**
|
|
819
|
+
* Contract is the address of the smart contract
|
|
820
|
+
*/
|
|
494
821
|
contract: string;
|
|
495
|
-
/**
|
|
822
|
+
/**
|
|
823
|
+
* Msg json encoded message to be passed to the contract as sudo
|
|
824
|
+
*/
|
|
496
825
|
msg: Uint8Array;
|
|
497
826
|
}
|
|
498
827
|
export interface MsgSudoContractProtoMsg {
|
|
@@ -503,13 +832,22 @@ export interface MsgSudoContractProtoMsg {
|
|
|
503
832
|
* MsgSudoContract is the MsgSudoContract request type.
|
|
504
833
|
*
|
|
505
834
|
* Since: 0.40
|
|
835
|
+
* @name MsgSudoContractAmino
|
|
836
|
+
* @package cosmwasm.wasm.v1
|
|
837
|
+
* @see proto type: cosmwasm.wasm.v1.MsgSudoContract
|
|
506
838
|
*/
|
|
507
839
|
export interface MsgSudoContractAmino {
|
|
508
|
-
/**
|
|
840
|
+
/**
|
|
841
|
+
* Authority is the address of the governance account.
|
|
842
|
+
*/
|
|
509
843
|
authority: string;
|
|
510
|
-
/**
|
|
844
|
+
/**
|
|
845
|
+
* Contract is the address of the smart contract
|
|
846
|
+
*/
|
|
511
847
|
contract: string;
|
|
512
|
-
/**
|
|
848
|
+
/**
|
|
849
|
+
* Msg json encoded message to be passed to the contract as sudo
|
|
850
|
+
*/
|
|
513
851
|
msg: any;
|
|
514
852
|
}
|
|
515
853
|
export interface MsgSudoContractAminoMsg {
|
|
@@ -521,9 +859,14 @@ export interface MsgSudoContractAminoMsg {
|
|
|
521
859
|
* MsgSudoContract message.
|
|
522
860
|
*
|
|
523
861
|
* Since: 0.40
|
|
862
|
+
* @name MsgSudoContractResponse
|
|
863
|
+
* @package cosmwasm.wasm.v1
|
|
864
|
+
* @see proto type: cosmwasm.wasm.v1.MsgSudoContractResponse
|
|
524
865
|
*/
|
|
525
866
|
export interface MsgSudoContractResponse {
|
|
526
|
-
/**
|
|
867
|
+
/**
|
|
868
|
+
* Data contains bytes to returned from the contract
|
|
869
|
+
*/
|
|
527
870
|
data: Uint8Array;
|
|
528
871
|
}
|
|
529
872
|
export interface MsgSudoContractResponseProtoMsg {
|
|
@@ -535,9 +878,14 @@ export interface MsgSudoContractResponseProtoMsg {
|
|
|
535
878
|
* MsgSudoContract message.
|
|
536
879
|
*
|
|
537
880
|
* Since: 0.40
|
|
881
|
+
* @name MsgSudoContractResponseAmino
|
|
882
|
+
* @package cosmwasm.wasm.v1
|
|
883
|
+
* @see proto type: cosmwasm.wasm.v1.MsgSudoContractResponse
|
|
538
884
|
*/
|
|
539
885
|
export interface MsgSudoContractResponseAmino {
|
|
540
|
-
/**
|
|
886
|
+
/**
|
|
887
|
+
* Data contains bytes to returned from the contract
|
|
888
|
+
*/
|
|
541
889
|
data: string;
|
|
542
890
|
}
|
|
543
891
|
export interface MsgSudoContractResponseAminoMsg {
|
|
@@ -548,11 +896,18 @@ export interface MsgSudoContractResponseAminoMsg {
|
|
|
548
896
|
* MsgPinCodes is the MsgPinCodes request type.
|
|
549
897
|
*
|
|
550
898
|
* Since: 0.40
|
|
899
|
+
* @name MsgPinCodes
|
|
900
|
+
* @package cosmwasm.wasm.v1
|
|
901
|
+
* @see proto type: cosmwasm.wasm.v1.MsgPinCodes
|
|
551
902
|
*/
|
|
552
903
|
export interface MsgPinCodes {
|
|
553
|
-
/**
|
|
904
|
+
/**
|
|
905
|
+
* Authority is the address of the governance account.
|
|
906
|
+
*/
|
|
554
907
|
authority: string;
|
|
555
|
-
/**
|
|
908
|
+
/**
|
|
909
|
+
* CodeIDs references the new WASM codes
|
|
910
|
+
*/
|
|
556
911
|
codeIds: bigint[];
|
|
557
912
|
}
|
|
558
913
|
export interface MsgPinCodesProtoMsg {
|
|
@@ -563,11 +918,18 @@ export interface MsgPinCodesProtoMsg {
|
|
|
563
918
|
* MsgPinCodes is the MsgPinCodes request type.
|
|
564
919
|
*
|
|
565
920
|
* Since: 0.40
|
|
921
|
+
* @name MsgPinCodesAmino
|
|
922
|
+
* @package cosmwasm.wasm.v1
|
|
923
|
+
* @see proto type: cosmwasm.wasm.v1.MsgPinCodes
|
|
566
924
|
*/
|
|
567
925
|
export interface MsgPinCodesAmino {
|
|
568
|
-
/**
|
|
926
|
+
/**
|
|
927
|
+
* Authority is the address of the governance account.
|
|
928
|
+
*/
|
|
569
929
|
authority: string;
|
|
570
|
-
/**
|
|
930
|
+
/**
|
|
931
|
+
* CodeIDs references the new WASM codes
|
|
932
|
+
*/
|
|
571
933
|
code_ids: string[];
|
|
572
934
|
}
|
|
573
935
|
export interface MsgPinCodesAminoMsg {
|
|
@@ -579,6 +941,9 @@ export interface MsgPinCodesAminoMsg {
|
|
|
579
941
|
* MsgPinCodes message.
|
|
580
942
|
*
|
|
581
943
|
* Since: 0.40
|
|
944
|
+
* @name MsgPinCodesResponse
|
|
945
|
+
* @package cosmwasm.wasm.v1
|
|
946
|
+
* @see proto type: cosmwasm.wasm.v1.MsgPinCodesResponse
|
|
582
947
|
*/
|
|
583
948
|
export interface MsgPinCodesResponse {
|
|
584
949
|
}
|
|
@@ -591,6 +956,9 @@ export interface MsgPinCodesResponseProtoMsg {
|
|
|
591
956
|
* MsgPinCodes message.
|
|
592
957
|
*
|
|
593
958
|
* Since: 0.40
|
|
959
|
+
* @name MsgPinCodesResponseAmino
|
|
960
|
+
* @package cosmwasm.wasm.v1
|
|
961
|
+
* @see proto type: cosmwasm.wasm.v1.MsgPinCodesResponse
|
|
594
962
|
*/
|
|
595
963
|
export interface MsgPinCodesResponseAmino {
|
|
596
964
|
}
|
|
@@ -602,11 +970,18 @@ export interface MsgPinCodesResponseAminoMsg {
|
|
|
602
970
|
* MsgUnpinCodes is the MsgUnpinCodes request type.
|
|
603
971
|
*
|
|
604
972
|
* Since: 0.40
|
|
973
|
+
* @name MsgUnpinCodes
|
|
974
|
+
* @package cosmwasm.wasm.v1
|
|
975
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUnpinCodes
|
|
605
976
|
*/
|
|
606
977
|
export interface MsgUnpinCodes {
|
|
607
|
-
/**
|
|
978
|
+
/**
|
|
979
|
+
* Authority is the address of the governance account.
|
|
980
|
+
*/
|
|
608
981
|
authority: string;
|
|
609
|
-
/**
|
|
982
|
+
/**
|
|
983
|
+
* CodeIDs references the WASM codes
|
|
984
|
+
*/
|
|
610
985
|
codeIds: bigint[];
|
|
611
986
|
}
|
|
612
987
|
export interface MsgUnpinCodesProtoMsg {
|
|
@@ -617,11 +992,18 @@ export interface MsgUnpinCodesProtoMsg {
|
|
|
617
992
|
* MsgUnpinCodes is the MsgUnpinCodes request type.
|
|
618
993
|
*
|
|
619
994
|
* Since: 0.40
|
|
995
|
+
* @name MsgUnpinCodesAmino
|
|
996
|
+
* @package cosmwasm.wasm.v1
|
|
997
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUnpinCodes
|
|
620
998
|
*/
|
|
621
999
|
export interface MsgUnpinCodesAmino {
|
|
622
|
-
/**
|
|
1000
|
+
/**
|
|
1001
|
+
* Authority is the address of the governance account.
|
|
1002
|
+
*/
|
|
623
1003
|
authority: string;
|
|
624
|
-
/**
|
|
1004
|
+
/**
|
|
1005
|
+
* CodeIDs references the WASM codes
|
|
1006
|
+
*/
|
|
625
1007
|
code_ids: string[];
|
|
626
1008
|
}
|
|
627
1009
|
export interface MsgUnpinCodesAminoMsg {
|
|
@@ -633,6 +1015,9 @@ export interface MsgUnpinCodesAminoMsg {
|
|
|
633
1015
|
* MsgUnpinCodes message.
|
|
634
1016
|
*
|
|
635
1017
|
* Since: 0.40
|
|
1018
|
+
* @name MsgUnpinCodesResponse
|
|
1019
|
+
* @package cosmwasm.wasm.v1
|
|
1020
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUnpinCodesResponse
|
|
636
1021
|
*/
|
|
637
1022
|
export interface MsgUnpinCodesResponse {
|
|
638
1023
|
}
|
|
@@ -645,6 +1030,9 @@ export interface MsgUnpinCodesResponseProtoMsg {
|
|
|
645
1030
|
* MsgUnpinCodes message.
|
|
646
1031
|
*
|
|
647
1032
|
* Since: 0.40
|
|
1033
|
+
* @name MsgUnpinCodesResponseAmino
|
|
1034
|
+
* @package cosmwasm.wasm.v1
|
|
1035
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUnpinCodesResponse
|
|
648
1036
|
*/
|
|
649
1037
|
export interface MsgUnpinCodesResponseAmino {
|
|
650
1038
|
}
|
|
@@ -657,31 +1045,48 @@ export interface MsgUnpinCodesResponseAminoMsg {
|
|
|
657
1045
|
* request type.
|
|
658
1046
|
*
|
|
659
1047
|
* Since: 0.40
|
|
1048
|
+
* @name MsgStoreAndInstantiateContract
|
|
1049
|
+
* @package cosmwasm.wasm.v1
|
|
1050
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreAndInstantiateContract
|
|
660
1051
|
*/
|
|
661
1052
|
export interface MsgStoreAndInstantiateContract {
|
|
662
|
-
/**
|
|
1053
|
+
/**
|
|
1054
|
+
* Authority is the address of the governance account.
|
|
1055
|
+
*/
|
|
663
1056
|
authority: string;
|
|
664
|
-
/**
|
|
1057
|
+
/**
|
|
1058
|
+
* WASMByteCode can be raw or gzip compressed
|
|
1059
|
+
*/
|
|
665
1060
|
wasmByteCode: Uint8Array;
|
|
666
|
-
/**
|
|
1061
|
+
/**
|
|
1062
|
+
* InstantiatePermission to apply on contract creation, optional
|
|
1063
|
+
*/
|
|
667
1064
|
instantiatePermission?: AccessConfig;
|
|
668
1065
|
/**
|
|
669
1066
|
* UnpinCode code on upload, optional. As default the uploaded contract is
|
|
670
1067
|
* pinned to cache.
|
|
671
1068
|
*/
|
|
672
1069
|
unpinCode: boolean;
|
|
673
|
-
/**
|
|
1070
|
+
/**
|
|
1071
|
+
* Admin is an optional address that can execute migrations
|
|
1072
|
+
*/
|
|
674
1073
|
admin: string;
|
|
675
|
-
/**
|
|
1074
|
+
/**
|
|
1075
|
+
* Label is optional metadata to be stored with a contract instance.
|
|
1076
|
+
*/
|
|
676
1077
|
label: string;
|
|
677
|
-
/**
|
|
1078
|
+
/**
|
|
1079
|
+
* Msg json encoded message to be passed to the contract on instantiation
|
|
1080
|
+
*/
|
|
678
1081
|
msg: Uint8Array;
|
|
679
1082
|
/**
|
|
680
1083
|
* Funds coins that are transferred from the authority account to the contract
|
|
681
1084
|
* on instantiation
|
|
682
1085
|
*/
|
|
683
1086
|
funds: Coin[];
|
|
684
|
-
/**
|
|
1087
|
+
/**
|
|
1088
|
+
* Source is the URL where the code is hosted
|
|
1089
|
+
*/
|
|
685
1090
|
source: string;
|
|
686
1091
|
/**
|
|
687
1092
|
* Builder is the docker image used to build the code deterministically, used
|
|
@@ -703,31 +1108,48 @@ export interface MsgStoreAndInstantiateContractProtoMsg {
|
|
|
703
1108
|
* request type.
|
|
704
1109
|
*
|
|
705
1110
|
* Since: 0.40
|
|
1111
|
+
* @name MsgStoreAndInstantiateContractAmino
|
|
1112
|
+
* @package cosmwasm.wasm.v1
|
|
1113
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreAndInstantiateContract
|
|
706
1114
|
*/
|
|
707
1115
|
export interface MsgStoreAndInstantiateContractAmino {
|
|
708
|
-
/**
|
|
1116
|
+
/**
|
|
1117
|
+
* Authority is the address of the governance account.
|
|
1118
|
+
*/
|
|
709
1119
|
authority: string;
|
|
710
|
-
/**
|
|
1120
|
+
/**
|
|
1121
|
+
* WASMByteCode can be raw or gzip compressed
|
|
1122
|
+
*/
|
|
711
1123
|
wasm_byte_code: string;
|
|
712
|
-
/**
|
|
1124
|
+
/**
|
|
1125
|
+
* InstantiatePermission to apply on contract creation, optional
|
|
1126
|
+
*/
|
|
713
1127
|
instantiate_permission?: AccessConfigAmino;
|
|
714
1128
|
/**
|
|
715
1129
|
* UnpinCode code on upload, optional. As default the uploaded contract is
|
|
716
1130
|
* pinned to cache.
|
|
717
1131
|
*/
|
|
718
1132
|
unpin_code: boolean;
|
|
719
|
-
/**
|
|
1133
|
+
/**
|
|
1134
|
+
* Admin is an optional address that can execute migrations
|
|
1135
|
+
*/
|
|
720
1136
|
admin: string;
|
|
721
|
-
/**
|
|
1137
|
+
/**
|
|
1138
|
+
* Label is optional metadata to be stored with a contract instance.
|
|
1139
|
+
*/
|
|
722
1140
|
label: string;
|
|
723
|
-
/**
|
|
1141
|
+
/**
|
|
1142
|
+
* Msg json encoded message to be passed to the contract on instantiation
|
|
1143
|
+
*/
|
|
724
1144
|
msg: any;
|
|
725
1145
|
/**
|
|
726
1146
|
* Funds coins that are transferred from the authority account to the contract
|
|
727
1147
|
* on instantiation
|
|
728
1148
|
*/
|
|
729
1149
|
funds: CoinAmino[];
|
|
730
|
-
/**
|
|
1150
|
+
/**
|
|
1151
|
+
* Source is the URL where the code is hosted
|
|
1152
|
+
*/
|
|
731
1153
|
source: string;
|
|
732
1154
|
/**
|
|
733
1155
|
* Builder is the docker image used to build the code deterministically, used
|
|
@@ -749,11 +1171,18 @@ export interface MsgStoreAndInstantiateContractAminoMsg {
|
|
|
749
1171
|
* for executing a MsgStoreAndInstantiateContract message.
|
|
750
1172
|
*
|
|
751
1173
|
* Since: 0.40
|
|
1174
|
+
* @name MsgStoreAndInstantiateContractResponse
|
|
1175
|
+
* @package cosmwasm.wasm.v1
|
|
1176
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreAndInstantiateContractResponse
|
|
752
1177
|
*/
|
|
753
1178
|
export interface MsgStoreAndInstantiateContractResponse {
|
|
754
|
-
/**
|
|
1179
|
+
/**
|
|
1180
|
+
* Address is the bech32 address of the new contract instance.
|
|
1181
|
+
*/
|
|
755
1182
|
address: string;
|
|
756
|
-
/**
|
|
1183
|
+
/**
|
|
1184
|
+
* Data contains bytes to returned from the contract
|
|
1185
|
+
*/
|
|
757
1186
|
data: Uint8Array;
|
|
758
1187
|
}
|
|
759
1188
|
export interface MsgStoreAndInstantiateContractResponseProtoMsg {
|
|
@@ -765,11 +1194,18 @@ export interface MsgStoreAndInstantiateContractResponseProtoMsg {
|
|
|
765
1194
|
* for executing a MsgStoreAndInstantiateContract message.
|
|
766
1195
|
*
|
|
767
1196
|
* Since: 0.40
|
|
1197
|
+
* @name MsgStoreAndInstantiateContractResponseAmino
|
|
1198
|
+
* @package cosmwasm.wasm.v1
|
|
1199
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreAndInstantiateContractResponse
|
|
768
1200
|
*/
|
|
769
1201
|
export interface MsgStoreAndInstantiateContractResponseAmino {
|
|
770
|
-
/**
|
|
1202
|
+
/**
|
|
1203
|
+
* Address is the bech32 address of the new contract instance.
|
|
1204
|
+
*/
|
|
771
1205
|
address: string;
|
|
772
|
-
/**
|
|
1206
|
+
/**
|
|
1207
|
+
* Data contains bytes to returned from the contract
|
|
1208
|
+
*/
|
|
773
1209
|
data: string;
|
|
774
1210
|
}
|
|
775
1211
|
export interface MsgStoreAndInstantiateContractResponseAminoMsg {
|
|
@@ -779,9 +1215,14 @@ export interface MsgStoreAndInstantiateContractResponseAminoMsg {
|
|
|
779
1215
|
/**
|
|
780
1216
|
* MsgAddCodeUploadParamsAddresses is the
|
|
781
1217
|
* MsgAddCodeUploadParamsAddresses request type.
|
|
1218
|
+
* @name MsgAddCodeUploadParamsAddresses
|
|
1219
|
+
* @package cosmwasm.wasm.v1
|
|
1220
|
+
* @see proto type: cosmwasm.wasm.v1.MsgAddCodeUploadParamsAddresses
|
|
782
1221
|
*/
|
|
783
1222
|
export interface MsgAddCodeUploadParamsAddresses {
|
|
784
|
-
/**
|
|
1223
|
+
/**
|
|
1224
|
+
* Authority is the address of the governance account.
|
|
1225
|
+
*/
|
|
785
1226
|
authority: string;
|
|
786
1227
|
addresses: string[];
|
|
787
1228
|
}
|
|
@@ -792,9 +1233,14 @@ export interface MsgAddCodeUploadParamsAddressesProtoMsg {
|
|
|
792
1233
|
/**
|
|
793
1234
|
* MsgAddCodeUploadParamsAddresses is the
|
|
794
1235
|
* MsgAddCodeUploadParamsAddresses request type.
|
|
1236
|
+
* @name MsgAddCodeUploadParamsAddressesAmino
|
|
1237
|
+
* @package cosmwasm.wasm.v1
|
|
1238
|
+
* @see proto type: cosmwasm.wasm.v1.MsgAddCodeUploadParamsAddresses
|
|
795
1239
|
*/
|
|
796
1240
|
export interface MsgAddCodeUploadParamsAddressesAmino {
|
|
797
|
-
/**
|
|
1241
|
+
/**
|
|
1242
|
+
* Authority is the address of the governance account.
|
|
1243
|
+
*/
|
|
798
1244
|
authority: string;
|
|
799
1245
|
addresses: string[];
|
|
800
1246
|
}
|
|
@@ -805,6 +1251,9 @@ export interface MsgAddCodeUploadParamsAddressesAminoMsg {
|
|
|
805
1251
|
/**
|
|
806
1252
|
* MsgAddCodeUploadParamsAddressesResponse defines the response
|
|
807
1253
|
* structure for executing a MsgAddCodeUploadParamsAddresses message.
|
|
1254
|
+
* @name MsgAddCodeUploadParamsAddressesResponse
|
|
1255
|
+
* @package cosmwasm.wasm.v1
|
|
1256
|
+
* @see proto type: cosmwasm.wasm.v1.MsgAddCodeUploadParamsAddressesResponse
|
|
808
1257
|
*/
|
|
809
1258
|
export interface MsgAddCodeUploadParamsAddressesResponse {
|
|
810
1259
|
}
|
|
@@ -815,6 +1264,9 @@ export interface MsgAddCodeUploadParamsAddressesResponseProtoMsg {
|
|
|
815
1264
|
/**
|
|
816
1265
|
* MsgAddCodeUploadParamsAddressesResponse defines the response
|
|
817
1266
|
* structure for executing a MsgAddCodeUploadParamsAddresses message.
|
|
1267
|
+
* @name MsgAddCodeUploadParamsAddressesResponseAmino
|
|
1268
|
+
* @package cosmwasm.wasm.v1
|
|
1269
|
+
* @see proto type: cosmwasm.wasm.v1.MsgAddCodeUploadParamsAddressesResponse
|
|
818
1270
|
*/
|
|
819
1271
|
export interface MsgAddCodeUploadParamsAddressesResponseAmino {
|
|
820
1272
|
}
|
|
@@ -825,9 +1277,14 @@ export interface MsgAddCodeUploadParamsAddressesResponseAminoMsg {
|
|
|
825
1277
|
/**
|
|
826
1278
|
* MsgRemoveCodeUploadParamsAddresses is the
|
|
827
1279
|
* MsgRemoveCodeUploadParamsAddresses request type.
|
|
1280
|
+
* @name MsgRemoveCodeUploadParamsAddresses
|
|
1281
|
+
* @package cosmwasm.wasm.v1
|
|
1282
|
+
* @see proto type: cosmwasm.wasm.v1.MsgRemoveCodeUploadParamsAddresses
|
|
828
1283
|
*/
|
|
829
1284
|
export interface MsgRemoveCodeUploadParamsAddresses {
|
|
830
|
-
/**
|
|
1285
|
+
/**
|
|
1286
|
+
* Authority is the address of the governance account.
|
|
1287
|
+
*/
|
|
831
1288
|
authority: string;
|
|
832
1289
|
addresses: string[];
|
|
833
1290
|
}
|
|
@@ -838,9 +1295,14 @@ export interface MsgRemoveCodeUploadParamsAddressesProtoMsg {
|
|
|
838
1295
|
/**
|
|
839
1296
|
* MsgRemoveCodeUploadParamsAddresses is the
|
|
840
1297
|
* MsgRemoveCodeUploadParamsAddresses request type.
|
|
1298
|
+
* @name MsgRemoveCodeUploadParamsAddressesAmino
|
|
1299
|
+
* @package cosmwasm.wasm.v1
|
|
1300
|
+
* @see proto type: cosmwasm.wasm.v1.MsgRemoveCodeUploadParamsAddresses
|
|
841
1301
|
*/
|
|
842
1302
|
export interface MsgRemoveCodeUploadParamsAddressesAmino {
|
|
843
|
-
/**
|
|
1303
|
+
/**
|
|
1304
|
+
* Authority is the address of the governance account.
|
|
1305
|
+
*/
|
|
844
1306
|
authority: string;
|
|
845
1307
|
addresses: string[];
|
|
846
1308
|
}
|
|
@@ -851,6 +1313,9 @@ export interface MsgRemoveCodeUploadParamsAddressesAminoMsg {
|
|
|
851
1313
|
/**
|
|
852
1314
|
* MsgRemoveCodeUploadParamsAddressesResponse defines the response
|
|
853
1315
|
* structure for executing a MsgRemoveCodeUploadParamsAddresses message.
|
|
1316
|
+
* @name MsgRemoveCodeUploadParamsAddressesResponse
|
|
1317
|
+
* @package cosmwasm.wasm.v1
|
|
1318
|
+
* @see proto type: cosmwasm.wasm.v1.MsgRemoveCodeUploadParamsAddressesResponse
|
|
854
1319
|
*/
|
|
855
1320
|
export interface MsgRemoveCodeUploadParamsAddressesResponse {
|
|
856
1321
|
}
|
|
@@ -861,6 +1326,9 @@ export interface MsgRemoveCodeUploadParamsAddressesResponseProtoMsg {
|
|
|
861
1326
|
/**
|
|
862
1327
|
* MsgRemoveCodeUploadParamsAddressesResponse defines the response
|
|
863
1328
|
* structure for executing a MsgRemoveCodeUploadParamsAddresses message.
|
|
1329
|
+
* @name MsgRemoveCodeUploadParamsAddressesResponseAmino
|
|
1330
|
+
* @package cosmwasm.wasm.v1
|
|
1331
|
+
* @see proto type: cosmwasm.wasm.v1.MsgRemoveCodeUploadParamsAddressesResponse
|
|
864
1332
|
*/
|
|
865
1333
|
export interface MsgRemoveCodeUploadParamsAddressesResponseAmino {
|
|
866
1334
|
}
|
|
@@ -873,17 +1341,30 @@ export interface MsgRemoveCodeUploadParamsAddressesResponseAminoMsg {
|
|
|
873
1341
|
* request type.
|
|
874
1342
|
*
|
|
875
1343
|
* Since: 0.42
|
|
1344
|
+
* @name MsgStoreAndMigrateContract
|
|
1345
|
+
* @package cosmwasm.wasm.v1
|
|
1346
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreAndMigrateContract
|
|
876
1347
|
*/
|
|
877
1348
|
export interface MsgStoreAndMigrateContract {
|
|
878
|
-
/**
|
|
1349
|
+
/**
|
|
1350
|
+
* Authority is the address of the governance account.
|
|
1351
|
+
*/
|
|
879
1352
|
authority: string;
|
|
880
|
-
/**
|
|
1353
|
+
/**
|
|
1354
|
+
* WASMByteCode can be raw or gzip compressed
|
|
1355
|
+
*/
|
|
881
1356
|
wasmByteCode: Uint8Array;
|
|
882
|
-
/**
|
|
1357
|
+
/**
|
|
1358
|
+
* InstantiatePermission to apply on contract creation, optional
|
|
1359
|
+
*/
|
|
883
1360
|
instantiatePermission?: AccessConfig;
|
|
884
|
-
/**
|
|
1361
|
+
/**
|
|
1362
|
+
* Contract is the address of the smart contract
|
|
1363
|
+
*/
|
|
885
1364
|
contract: string;
|
|
886
|
-
/**
|
|
1365
|
+
/**
|
|
1366
|
+
* Msg json encoded message to be passed to the contract on migration
|
|
1367
|
+
*/
|
|
887
1368
|
msg: Uint8Array;
|
|
888
1369
|
}
|
|
889
1370
|
export interface MsgStoreAndMigrateContractProtoMsg {
|
|
@@ -895,17 +1376,30 @@ export interface MsgStoreAndMigrateContractProtoMsg {
|
|
|
895
1376
|
* request type.
|
|
896
1377
|
*
|
|
897
1378
|
* Since: 0.42
|
|
1379
|
+
* @name MsgStoreAndMigrateContractAmino
|
|
1380
|
+
* @package cosmwasm.wasm.v1
|
|
1381
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreAndMigrateContract
|
|
898
1382
|
*/
|
|
899
1383
|
export interface MsgStoreAndMigrateContractAmino {
|
|
900
|
-
/**
|
|
1384
|
+
/**
|
|
1385
|
+
* Authority is the address of the governance account.
|
|
1386
|
+
*/
|
|
901
1387
|
authority: string;
|
|
902
|
-
/**
|
|
1388
|
+
/**
|
|
1389
|
+
* WASMByteCode can be raw or gzip compressed
|
|
1390
|
+
*/
|
|
903
1391
|
wasm_byte_code: string;
|
|
904
|
-
/**
|
|
1392
|
+
/**
|
|
1393
|
+
* InstantiatePermission to apply on contract creation, optional
|
|
1394
|
+
*/
|
|
905
1395
|
instantiate_permission?: AccessConfigAmino;
|
|
906
|
-
/**
|
|
1396
|
+
/**
|
|
1397
|
+
* Contract is the address of the smart contract
|
|
1398
|
+
*/
|
|
907
1399
|
contract: string;
|
|
908
|
-
/**
|
|
1400
|
+
/**
|
|
1401
|
+
* Msg json encoded message to be passed to the contract on migration
|
|
1402
|
+
*/
|
|
909
1403
|
msg: any;
|
|
910
1404
|
}
|
|
911
1405
|
export interface MsgStoreAndMigrateContractAminoMsg {
|
|
@@ -917,13 +1411,22 @@ export interface MsgStoreAndMigrateContractAminoMsg {
|
|
|
917
1411
|
* for executing a MsgStoreAndMigrateContract message.
|
|
918
1412
|
*
|
|
919
1413
|
* Since: 0.42
|
|
1414
|
+
* @name MsgStoreAndMigrateContractResponse
|
|
1415
|
+
* @package cosmwasm.wasm.v1
|
|
1416
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreAndMigrateContractResponse
|
|
920
1417
|
*/
|
|
921
1418
|
export interface MsgStoreAndMigrateContractResponse {
|
|
922
|
-
/**
|
|
1419
|
+
/**
|
|
1420
|
+
* CodeID is the reference to the stored WASM code
|
|
1421
|
+
*/
|
|
923
1422
|
codeId: bigint;
|
|
924
|
-
/**
|
|
1423
|
+
/**
|
|
1424
|
+
* Checksum is the sha256 hash of the stored code
|
|
1425
|
+
*/
|
|
925
1426
|
checksum: Uint8Array;
|
|
926
|
-
/**
|
|
1427
|
+
/**
|
|
1428
|
+
* Data contains bytes to returned from the contract
|
|
1429
|
+
*/
|
|
927
1430
|
data: Uint8Array;
|
|
928
1431
|
}
|
|
929
1432
|
export interface MsgStoreAndMigrateContractResponseProtoMsg {
|
|
@@ -935,59 +1438,106 @@ export interface MsgStoreAndMigrateContractResponseProtoMsg {
|
|
|
935
1438
|
* for executing a MsgStoreAndMigrateContract message.
|
|
936
1439
|
*
|
|
937
1440
|
* Since: 0.42
|
|
1441
|
+
* @name MsgStoreAndMigrateContractResponseAmino
|
|
1442
|
+
* @package cosmwasm.wasm.v1
|
|
1443
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreAndMigrateContractResponse
|
|
938
1444
|
*/
|
|
939
1445
|
export interface MsgStoreAndMigrateContractResponseAmino {
|
|
940
|
-
/**
|
|
1446
|
+
/**
|
|
1447
|
+
* CodeID is the reference to the stored WASM code
|
|
1448
|
+
*/
|
|
941
1449
|
code_id: string;
|
|
942
|
-
/**
|
|
1450
|
+
/**
|
|
1451
|
+
* Checksum is the sha256 hash of the stored code
|
|
1452
|
+
*/
|
|
943
1453
|
checksum: string;
|
|
944
|
-
/**
|
|
1454
|
+
/**
|
|
1455
|
+
* Data contains bytes to returned from the contract
|
|
1456
|
+
*/
|
|
945
1457
|
data: string;
|
|
946
1458
|
}
|
|
947
1459
|
export interface MsgStoreAndMigrateContractResponseAminoMsg {
|
|
948
1460
|
type: "wasm/MsgStoreAndMigrateContractResponse";
|
|
949
1461
|
value: MsgStoreAndMigrateContractResponseAmino;
|
|
950
1462
|
}
|
|
951
|
-
/**
|
|
1463
|
+
/**
|
|
1464
|
+
* MsgUpdateContractLabel sets a new label for a smart contract
|
|
1465
|
+
* @name MsgUpdateContractLabel
|
|
1466
|
+
* @package cosmwasm.wasm.v1
|
|
1467
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateContractLabel
|
|
1468
|
+
*/
|
|
952
1469
|
export interface MsgUpdateContractLabel {
|
|
953
|
-
/**
|
|
1470
|
+
/**
|
|
1471
|
+
* Sender is the that actor that signed the messages
|
|
1472
|
+
*/
|
|
954
1473
|
sender: string;
|
|
955
|
-
/**
|
|
1474
|
+
/**
|
|
1475
|
+
* NewLabel string to be set
|
|
1476
|
+
*/
|
|
956
1477
|
newLabel: string;
|
|
957
|
-
/**
|
|
1478
|
+
/**
|
|
1479
|
+
* Contract is the address of the smart contract
|
|
1480
|
+
*/
|
|
958
1481
|
contract: string;
|
|
959
1482
|
}
|
|
960
1483
|
export interface MsgUpdateContractLabelProtoMsg {
|
|
961
1484
|
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateContractLabel";
|
|
962
1485
|
value: Uint8Array;
|
|
963
1486
|
}
|
|
964
|
-
/**
|
|
1487
|
+
/**
|
|
1488
|
+
* MsgUpdateContractLabel sets a new label for a smart contract
|
|
1489
|
+
* @name MsgUpdateContractLabelAmino
|
|
1490
|
+
* @package cosmwasm.wasm.v1
|
|
1491
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateContractLabel
|
|
1492
|
+
*/
|
|
965
1493
|
export interface MsgUpdateContractLabelAmino {
|
|
966
|
-
/**
|
|
1494
|
+
/**
|
|
1495
|
+
* Sender is the that actor that signed the messages
|
|
1496
|
+
*/
|
|
967
1497
|
sender: string;
|
|
968
|
-
/**
|
|
1498
|
+
/**
|
|
1499
|
+
* NewLabel string to be set
|
|
1500
|
+
*/
|
|
969
1501
|
new_label: string;
|
|
970
|
-
/**
|
|
1502
|
+
/**
|
|
1503
|
+
* Contract is the address of the smart contract
|
|
1504
|
+
*/
|
|
971
1505
|
contract: string;
|
|
972
1506
|
}
|
|
973
1507
|
export interface MsgUpdateContractLabelAminoMsg {
|
|
974
1508
|
type: "wasm/MsgUpdateContractLabel";
|
|
975
1509
|
value: MsgUpdateContractLabelAmino;
|
|
976
1510
|
}
|
|
977
|
-
/**
|
|
1511
|
+
/**
|
|
1512
|
+
* MsgUpdateContractLabelResponse returns empty data
|
|
1513
|
+
* @name MsgUpdateContractLabelResponse
|
|
1514
|
+
* @package cosmwasm.wasm.v1
|
|
1515
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateContractLabelResponse
|
|
1516
|
+
*/
|
|
978
1517
|
export interface MsgUpdateContractLabelResponse {
|
|
979
1518
|
}
|
|
980
1519
|
export interface MsgUpdateContractLabelResponseProtoMsg {
|
|
981
1520
|
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateContractLabelResponse";
|
|
982
1521
|
value: Uint8Array;
|
|
983
1522
|
}
|
|
984
|
-
/**
|
|
1523
|
+
/**
|
|
1524
|
+
* MsgUpdateContractLabelResponse returns empty data
|
|
1525
|
+
* @name MsgUpdateContractLabelResponseAmino
|
|
1526
|
+
* @package cosmwasm.wasm.v1
|
|
1527
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateContractLabelResponse
|
|
1528
|
+
*/
|
|
985
1529
|
export interface MsgUpdateContractLabelResponseAmino {
|
|
986
1530
|
}
|
|
987
1531
|
export interface MsgUpdateContractLabelResponseAminoMsg {
|
|
988
1532
|
type: "wasm/MsgUpdateContractLabelResponse";
|
|
989
1533
|
value: MsgUpdateContractLabelResponseAmino;
|
|
990
1534
|
}
|
|
1535
|
+
/**
|
|
1536
|
+
* MsgStoreCode submit Wasm code to the system
|
|
1537
|
+
* @name MsgStoreCode
|
|
1538
|
+
* @package cosmwasm.wasm.v1
|
|
1539
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreCode
|
|
1540
|
+
*/
|
|
991
1541
|
export declare const MsgStoreCode: {
|
|
992
1542
|
typeUrl: string;
|
|
993
1543
|
aminoType: string;
|
|
@@ -1005,6 +1555,12 @@ export declare const MsgStoreCode: {
|
|
|
1005
1555
|
toProtoMsg(message: MsgStoreCode): MsgStoreCodeProtoMsg;
|
|
1006
1556
|
registerTypeUrl(): void;
|
|
1007
1557
|
};
|
|
1558
|
+
/**
|
|
1559
|
+
* MsgStoreCodeResponse returns store result data.
|
|
1560
|
+
* @name MsgStoreCodeResponse
|
|
1561
|
+
* @package cosmwasm.wasm.v1
|
|
1562
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreCodeResponse
|
|
1563
|
+
*/
|
|
1008
1564
|
export declare const MsgStoreCodeResponse: {
|
|
1009
1565
|
typeUrl: string;
|
|
1010
1566
|
aminoType: string;
|
|
@@ -1022,6 +1578,13 @@ export declare const MsgStoreCodeResponse: {
|
|
|
1022
1578
|
toProtoMsg(message: MsgStoreCodeResponse): MsgStoreCodeResponseProtoMsg;
|
|
1023
1579
|
registerTypeUrl(): void;
|
|
1024
1580
|
};
|
|
1581
|
+
/**
|
|
1582
|
+
* MsgInstantiateContract create a new smart contract instance for the given
|
|
1583
|
+
* code id.
|
|
1584
|
+
* @name MsgInstantiateContract
|
|
1585
|
+
* @package cosmwasm.wasm.v1
|
|
1586
|
+
* @see proto type: cosmwasm.wasm.v1.MsgInstantiateContract
|
|
1587
|
+
*/
|
|
1025
1588
|
export declare const MsgInstantiateContract: {
|
|
1026
1589
|
typeUrl: string;
|
|
1027
1590
|
aminoType: string;
|
|
@@ -1039,6 +1602,12 @@ export declare const MsgInstantiateContract: {
|
|
|
1039
1602
|
toProtoMsg(message: MsgInstantiateContract): MsgInstantiateContractProtoMsg;
|
|
1040
1603
|
registerTypeUrl(): void;
|
|
1041
1604
|
};
|
|
1605
|
+
/**
|
|
1606
|
+
* MsgInstantiateContractResponse return instantiation result data
|
|
1607
|
+
* @name MsgInstantiateContractResponse
|
|
1608
|
+
* @package cosmwasm.wasm.v1
|
|
1609
|
+
* @see proto type: cosmwasm.wasm.v1.MsgInstantiateContractResponse
|
|
1610
|
+
*/
|
|
1042
1611
|
export declare const MsgInstantiateContractResponse: {
|
|
1043
1612
|
typeUrl: string;
|
|
1044
1613
|
aminoType: string;
|
|
@@ -1056,6 +1625,13 @@ export declare const MsgInstantiateContractResponse: {
|
|
|
1056
1625
|
toProtoMsg(message: MsgInstantiateContractResponse): MsgInstantiateContractResponseProtoMsg;
|
|
1057
1626
|
registerTypeUrl(): void;
|
|
1058
1627
|
};
|
|
1628
|
+
/**
|
|
1629
|
+
* MsgInstantiateContract2 create a new smart contract instance for the given
|
|
1630
|
+
* code id with a predictable address.
|
|
1631
|
+
* @name MsgInstantiateContract2
|
|
1632
|
+
* @package cosmwasm.wasm.v1
|
|
1633
|
+
* @see proto type: cosmwasm.wasm.v1.MsgInstantiateContract2
|
|
1634
|
+
*/
|
|
1059
1635
|
export declare const MsgInstantiateContract2: {
|
|
1060
1636
|
typeUrl: string;
|
|
1061
1637
|
aminoType: string;
|
|
@@ -1073,6 +1649,12 @@ export declare const MsgInstantiateContract2: {
|
|
|
1073
1649
|
toProtoMsg(message: MsgInstantiateContract2): MsgInstantiateContract2ProtoMsg;
|
|
1074
1650
|
registerTypeUrl(): void;
|
|
1075
1651
|
};
|
|
1652
|
+
/**
|
|
1653
|
+
* MsgInstantiateContract2Response return instantiation result data
|
|
1654
|
+
* @name MsgInstantiateContract2Response
|
|
1655
|
+
* @package cosmwasm.wasm.v1
|
|
1656
|
+
* @see proto type: cosmwasm.wasm.v1.MsgInstantiateContract2Response
|
|
1657
|
+
*/
|
|
1076
1658
|
export declare const MsgInstantiateContract2Response: {
|
|
1077
1659
|
typeUrl: string;
|
|
1078
1660
|
aminoType: string;
|
|
@@ -1090,6 +1672,12 @@ export declare const MsgInstantiateContract2Response: {
|
|
|
1090
1672
|
toProtoMsg(message: MsgInstantiateContract2Response): MsgInstantiateContract2ResponseProtoMsg;
|
|
1091
1673
|
registerTypeUrl(): void;
|
|
1092
1674
|
};
|
|
1675
|
+
/**
|
|
1676
|
+
* MsgExecuteContract submits the given message data to a smart contract
|
|
1677
|
+
* @name MsgExecuteContract
|
|
1678
|
+
* @package cosmwasm.wasm.v1
|
|
1679
|
+
* @see proto type: cosmwasm.wasm.v1.MsgExecuteContract
|
|
1680
|
+
*/
|
|
1093
1681
|
export declare const MsgExecuteContract: {
|
|
1094
1682
|
typeUrl: string;
|
|
1095
1683
|
aminoType: string;
|
|
@@ -1107,6 +1695,12 @@ export declare const MsgExecuteContract: {
|
|
|
1107
1695
|
toProtoMsg(message: MsgExecuteContract): MsgExecuteContractProtoMsg;
|
|
1108
1696
|
registerTypeUrl(): void;
|
|
1109
1697
|
};
|
|
1698
|
+
/**
|
|
1699
|
+
* MsgExecuteContractResponse returns execution result data.
|
|
1700
|
+
* @name MsgExecuteContractResponse
|
|
1701
|
+
* @package cosmwasm.wasm.v1
|
|
1702
|
+
* @see proto type: cosmwasm.wasm.v1.MsgExecuteContractResponse
|
|
1703
|
+
*/
|
|
1110
1704
|
export declare const MsgExecuteContractResponse: {
|
|
1111
1705
|
typeUrl: string;
|
|
1112
1706
|
aminoType: string;
|
|
@@ -1124,6 +1718,12 @@ export declare const MsgExecuteContractResponse: {
|
|
|
1124
1718
|
toProtoMsg(message: MsgExecuteContractResponse): MsgExecuteContractResponseProtoMsg;
|
|
1125
1719
|
registerTypeUrl(): void;
|
|
1126
1720
|
};
|
|
1721
|
+
/**
|
|
1722
|
+
* MsgMigrateContract runs a code upgrade/ downgrade for a smart contract
|
|
1723
|
+
* @name MsgMigrateContract
|
|
1724
|
+
* @package cosmwasm.wasm.v1
|
|
1725
|
+
* @see proto type: cosmwasm.wasm.v1.MsgMigrateContract
|
|
1726
|
+
*/
|
|
1127
1727
|
export declare const MsgMigrateContract: {
|
|
1128
1728
|
typeUrl: string;
|
|
1129
1729
|
aminoType: string;
|
|
@@ -1141,6 +1741,12 @@ export declare const MsgMigrateContract: {
|
|
|
1141
1741
|
toProtoMsg(message: MsgMigrateContract): MsgMigrateContractProtoMsg;
|
|
1142
1742
|
registerTypeUrl(): void;
|
|
1143
1743
|
};
|
|
1744
|
+
/**
|
|
1745
|
+
* MsgMigrateContractResponse returns contract migration result data.
|
|
1746
|
+
* @name MsgMigrateContractResponse
|
|
1747
|
+
* @package cosmwasm.wasm.v1
|
|
1748
|
+
* @see proto type: cosmwasm.wasm.v1.MsgMigrateContractResponse
|
|
1749
|
+
*/
|
|
1144
1750
|
export declare const MsgMigrateContractResponse: {
|
|
1145
1751
|
typeUrl: string;
|
|
1146
1752
|
aminoType: string;
|
|
@@ -1158,6 +1764,12 @@ export declare const MsgMigrateContractResponse: {
|
|
|
1158
1764
|
toProtoMsg(message: MsgMigrateContractResponse): MsgMigrateContractResponseProtoMsg;
|
|
1159
1765
|
registerTypeUrl(): void;
|
|
1160
1766
|
};
|
|
1767
|
+
/**
|
|
1768
|
+
* MsgUpdateAdmin sets a new admin for a smart contract
|
|
1769
|
+
* @name MsgUpdateAdmin
|
|
1770
|
+
* @package cosmwasm.wasm.v1
|
|
1771
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateAdmin
|
|
1772
|
+
*/
|
|
1161
1773
|
export declare const MsgUpdateAdmin: {
|
|
1162
1774
|
typeUrl: string;
|
|
1163
1775
|
aminoType: string;
|
|
@@ -1175,6 +1787,12 @@ export declare const MsgUpdateAdmin: {
|
|
|
1175
1787
|
toProtoMsg(message: MsgUpdateAdmin): MsgUpdateAdminProtoMsg;
|
|
1176
1788
|
registerTypeUrl(): void;
|
|
1177
1789
|
};
|
|
1790
|
+
/**
|
|
1791
|
+
* MsgUpdateAdminResponse returns empty data
|
|
1792
|
+
* @name MsgUpdateAdminResponse
|
|
1793
|
+
* @package cosmwasm.wasm.v1
|
|
1794
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateAdminResponse
|
|
1795
|
+
*/
|
|
1178
1796
|
export declare const MsgUpdateAdminResponse: {
|
|
1179
1797
|
typeUrl: string;
|
|
1180
1798
|
aminoType: string;
|
|
@@ -1192,6 +1810,12 @@ export declare const MsgUpdateAdminResponse: {
|
|
|
1192
1810
|
toProtoMsg(message: MsgUpdateAdminResponse): MsgUpdateAdminResponseProtoMsg;
|
|
1193
1811
|
registerTypeUrl(): void;
|
|
1194
1812
|
};
|
|
1813
|
+
/**
|
|
1814
|
+
* MsgClearAdmin removes any admin stored for a smart contract
|
|
1815
|
+
* @name MsgClearAdmin
|
|
1816
|
+
* @package cosmwasm.wasm.v1
|
|
1817
|
+
* @see proto type: cosmwasm.wasm.v1.MsgClearAdmin
|
|
1818
|
+
*/
|
|
1195
1819
|
export declare const MsgClearAdmin: {
|
|
1196
1820
|
typeUrl: string;
|
|
1197
1821
|
aminoType: string;
|
|
@@ -1209,6 +1833,12 @@ export declare const MsgClearAdmin: {
|
|
|
1209
1833
|
toProtoMsg(message: MsgClearAdmin): MsgClearAdminProtoMsg;
|
|
1210
1834
|
registerTypeUrl(): void;
|
|
1211
1835
|
};
|
|
1836
|
+
/**
|
|
1837
|
+
* MsgClearAdminResponse returns empty data
|
|
1838
|
+
* @name MsgClearAdminResponse
|
|
1839
|
+
* @package cosmwasm.wasm.v1
|
|
1840
|
+
* @see proto type: cosmwasm.wasm.v1.MsgClearAdminResponse
|
|
1841
|
+
*/
|
|
1212
1842
|
export declare const MsgClearAdminResponse: {
|
|
1213
1843
|
typeUrl: string;
|
|
1214
1844
|
aminoType: string;
|
|
@@ -1226,6 +1856,12 @@ export declare const MsgClearAdminResponse: {
|
|
|
1226
1856
|
toProtoMsg(message: MsgClearAdminResponse): MsgClearAdminResponseProtoMsg;
|
|
1227
1857
|
registerTypeUrl(): void;
|
|
1228
1858
|
};
|
|
1859
|
+
/**
|
|
1860
|
+
* MsgUpdateInstantiateConfig updates instantiate config for a smart contract
|
|
1861
|
+
* @name MsgUpdateInstantiateConfig
|
|
1862
|
+
* @package cosmwasm.wasm.v1
|
|
1863
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateInstantiateConfig
|
|
1864
|
+
*/
|
|
1229
1865
|
export declare const MsgUpdateInstantiateConfig: {
|
|
1230
1866
|
typeUrl: string;
|
|
1231
1867
|
aminoType: string;
|
|
@@ -1243,6 +1879,12 @@ export declare const MsgUpdateInstantiateConfig: {
|
|
|
1243
1879
|
toProtoMsg(message: MsgUpdateInstantiateConfig): MsgUpdateInstantiateConfigProtoMsg;
|
|
1244
1880
|
registerTypeUrl(): void;
|
|
1245
1881
|
};
|
|
1882
|
+
/**
|
|
1883
|
+
* MsgUpdateInstantiateConfigResponse returns empty data
|
|
1884
|
+
* @name MsgUpdateInstantiateConfigResponse
|
|
1885
|
+
* @package cosmwasm.wasm.v1
|
|
1886
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateInstantiateConfigResponse
|
|
1887
|
+
*/
|
|
1246
1888
|
export declare const MsgUpdateInstantiateConfigResponse: {
|
|
1247
1889
|
typeUrl: string;
|
|
1248
1890
|
aminoType: string;
|
|
@@ -1260,6 +1902,14 @@ export declare const MsgUpdateInstantiateConfigResponse: {
|
|
|
1260
1902
|
toProtoMsg(message: MsgUpdateInstantiateConfigResponse): MsgUpdateInstantiateConfigResponseProtoMsg;
|
|
1261
1903
|
registerTypeUrl(): void;
|
|
1262
1904
|
};
|
|
1905
|
+
/**
|
|
1906
|
+
* MsgUpdateParams is the MsgUpdateParams request type.
|
|
1907
|
+
*
|
|
1908
|
+
* Since: 0.40
|
|
1909
|
+
* @name MsgUpdateParams
|
|
1910
|
+
* @package cosmwasm.wasm.v1
|
|
1911
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateParams
|
|
1912
|
+
*/
|
|
1263
1913
|
export declare const MsgUpdateParams: {
|
|
1264
1914
|
typeUrl: string;
|
|
1265
1915
|
aminoType: string;
|
|
@@ -1277,6 +1927,15 @@ export declare const MsgUpdateParams: {
|
|
|
1277
1927
|
toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg;
|
|
1278
1928
|
registerTypeUrl(): void;
|
|
1279
1929
|
};
|
|
1930
|
+
/**
|
|
1931
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
1932
|
+
* MsgUpdateParams message.
|
|
1933
|
+
*
|
|
1934
|
+
* Since: 0.40
|
|
1935
|
+
* @name MsgUpdateParamsResponse
|
|
1936
|
+
* @package cosmwasm.wasm.v1
|
|
1937
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateParamsResponse
|
|
1938
|
+
*/
|
|
1280
1939
|
export declare const MsgUpdateParamsResponse: {
|
|
1281
1940
|
typeUrl: string;
|
|
1282
1941
|
aminoType: string;
|
|
@@ -1294,6 +1953,14 @@ export declare const MsgUpdateParamsResponse: {
|
|
|
1294
1953
|
toProtoMsg(message: MsgUpdateParamsResponse): MsgUpdateParamsResponseProtoMsg;
|
|
1295
1954
|
registerTypeUrl(): void;
|
|
1296
1955
|
};
|
|
1956
|
+
/**
|
|
1957
|
+
* MsgSudoContract is the MsgSudoContract request type.
|
|
1958
|
+
*
|
|
1959
|
+
* Since: 0.40
|
|
1960
|
+
* @name MsgSudoContract
|
|
1961
|
+
* @package cosmwasm.wasm.v1
|
|
1962
|
+
* @see proto type: cosmwasm.wasm.v1.MsgSudoContract
|
|
1963
|
+
*/
|
|
1297
1964
|
export declare const MsgSudoContract: {
|
|
1298
1965
|
typeUrl: string;
|
|
1299
1966
|
aminoType: string;
|
|
@@ -1311,6 +1978,15 @@ export declare const MsgSudoContract: {
|
|
|
1311
1978
|
toProtoMsg(message: MsgSudoContract): MsgSudoContractProtoMsg;
|
|
1312
1979
|
registerTypeUrl(): void;
|
|
1313
1980
|
};
|
|
1981
|
+
/**
|
|
1982
|
+
* MsgSudoContractResponse defines the response structure for executing a
|
|
1983
|
+
* MsgSudoContract message.
|
|
1984
|
+
*
|
|
1985
|
+
* Since: 0.40
|
|
1986
|
+
* @name MsgSudoContractResponse
|
|
1987
|
+
* @package cosmwasm.wasm.v1
|
|
1988
|
+
* @see proto type: cosmwasm.wasm.v1.MsgSudoContractResponse
|
|
1989
|
+
*/
|
|
1314
1990
|
export declare const MsgSudoContractResponse: {
|
|
1315
1991
|
typeUrl: string;
|
|
1316
1992
|
aminoType: string;
|
|
@@ -1328,6 +2004,14 @@ export declare const MsgSudoContractResponse: {
|
|
|
1328
2004
|
toProtoMsg(message: MsgSudoContractResponse): MsgSudoContractResponseProtoMsg;
|
|
1329
2005
|
registerTypeUrl(): void;
|
|
1330
2006
|
};
|
|
2007
|
+
/**
|
|
2008
|
+
* MsgPinCodes is the MsgPinCodes request type.
|
|
2009
|
+
*
|
|
2010
|
+
* Since: 0.40
|
|
2011
|
+
* @name MsgPinCodes
|
|
2012
|
+
* @package cosmwasm.wasm.v1
|
|
2013
|
+
* @see proto type: cosmwasm.wasm.v1.MsgPinCodes
|
|
2014
|
+
*/
|
|
1331
2015
|
export declare const MsgPinCodes: {
|
|
1332
2016
|
typeUrl: string;
|
|
1333
2017
|
aminoType: string;
|
|
@@ -1345,6 +2029,15 @@ export declare const MsgPinCodes: {
|
|
|
1345
2029
|
toProtoMsg(message: MsgPinCodes): MsgPinCodesProtoMsg;
|
|
1346
2030
|
registerTypeUrl(): void;
|
|
1347
2031
|
};
|
|
2032
|
+
/**
|
|
2033
|
+
* MsgPinCodesResponse defines the response structure for executing a
|
|
2034
|
+
* MsgPinCodes message.
|
|
2035
|
+
*
|
|
2036
|
+
* Since: 0.40
|
|
2037
|
+
* @name MsgPinCodesResponse
|
|
2038
|
+
* @package cosmwasm.wasm.v1
|
|
2039
|
+
* @see proto type: cosmwasm.wasm.v1.MsgPinCodesResponse
|
|
2040
|
+
*/
|
|
1348
2041
|
export declare const MsgPinCodesResponse: {
|
|
1349
2042
|
typeUrl: string;
|
|
1350
2043
|
aminoType: string;
|
|
@@ -1362,6 +2055,14 @@ export declare const MsgPinCodesResponse: {
|
|
|
1362
2055
|
toProtoMsg(message: MsgPinCodesResponse): MsgPinCodesResponseProtoMsg;
|
|
1363
2056
|
registerTypeUrl(): void;
|
|
1364
2057
|
};
|
|
2058
|
+
/**
|
|
2059
|
+
* MsgUnpinCodes is the MsgUnpinCodes request type.
|
|
2060
|
+
*
|
|
2061
|
+
* Since: 0.40
|
|
2062
|
+
* @name MsgUnpinCodes
|
|
2063
|
+
* @package cosmwasm.wasm.v1
|
|
2064
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUnpinCodes
|
|
2065
|
+
*/
|
|
1365
2066
|
export declare const MsgUnpinCodes: {
|
|
1366
2067
|
typeUrl: string;
|
|
1367
2068
|
aminoType: string;
|
|
@@ -1379,6 +2080,15 @@ export declare const MsgUnpinCodes: {
|
|
|
1379
2080
|
toProtoMsg(message: MsgUnpinCodes): MsgUnpinCodesProtoMsg;
|
|
1380
2081
|
registerTypeUrl(): void;
|
|
1381
2082
|
};
|
|
2083
|
+
/**
|
|
2084
|
+
* MsgUnpinCodesResponse defines the response structure for executing a
|
|
2085
|
+
* MsgUnpinCodes message.
|
|
2086
|
+
*
|
|
2087
|
+
* Since: 0.40
|
|
2088
|
+
* @name MsgUnpinCodesResponse
|
|
2089
|
+
* @package cosmwasm.wasm.v1
|
|
2090
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUnpinCodesResponse
|
|
2091
|
+
*/
|
|
1382
2092
|
export declare const MsgUnpinCodesResponse: {
|
|
1383
2093
|
typeUrl: string;
|
|
1384
2094
|
aminoType: string;
|
|
@@ -1396,6 +2106,15 @@ export declare const MsgUnpinCodesResponse: {
|
|
|
1396
2106
|
toProtoMsg(message: MsgUnpinCodesResponse): MsgUnpinCodesResponseProtoMsg;
|
|
1397
2107
|
registerTypeUrl(): void;
|
|
1398
2108
|
};
|
|
2109
|
+
/**
|
|
2110
|
+
* MsgStoreAndInstantiateContract is the MsgStoreAndInstantiateContract
|
|
2111
|
+
* request type.
|
|
2112
|
+
*
|
|
2113
|
+
* Since: 0.40
|
|
2114
|
+
* @name MsgStoreAndInstantiateContract
|
|
2115
|
+
* @package cosmwasm.wasm.v1
|
|
2116
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreAndInstantiateContract
|
|
2117
|
+
*/
|
|
1399
2118
|
export declare const MsgStoreAndInstantiateContract: {
|
|
1400
2119
|
typeUrl: string;
|
|
1401
2120
|
aminoType: string;
|
|
@@ -1413,6 +2132,15 @@ export declare const MsgStoreAndInstantiateContract: {
|
|
|
1413
2132
|
toProtoMsg(message: MsgStoreAndInstantiateContract): MsgStoreAndInstantiateContractProtoMsg;
|
|
1414
2133
|
registerTypeUrl(): void;
|
|
1415
2134
|
};
|
|
2135
|
+
/**
|
|
2136
|
+
* MsgStoreAndInstantiateContractResponse defines the response structure
|
|
2137
|
+
* for executing a MsgStoreAndInstantiateContract message.
|
|
2138
|
+
*
|
|
2139
|
+
* Since: 0.40
|
|
2140
|
+
* @name MsgStoreAndInstantiateContractResponse
|
|
2141
|
+
* @package cosmwasm.wasm.v1
|
|
2142
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreAndInstantiateContractResponse
|
|
2143
|
+
*/
|
|
1416
2144
|
export declare const MsgStoreAndInstantiateContractResponse: {
|
|
1417
2145
|
typeUrl: string;
|
|
1418
2146
|
aminoType: string;
|
|
@@ -1430,6 +2158,13 @@ export declare const MsgStoreAndInstantiateContractResponse: {
|
|
|
1430
2158
|
toProtoMsg(message: MsgStoreAndInstantiateContractResponse): MsgStoreAndInstantiateContractResponseProtoMsg;
|
|
1431
2159
|
registerTypeUrl(): void;
|
|
1432
2160
|
};
|
|
2161
|
+
/**
|
|
2162
|
+
* MsgAddCodeUploadParamsAddresses is the
|
|
2163
|
+
* MsgAddCodeUploadParamsAddresses request type.
|
|
2164
|
+
* @name MsgAddCodeUploadParamsAddresses
|
|
2165
|
+
* @package cosmwasm.wasm.v1
|
|
2166
|
+
* @see proto type: cosmwasm.wasm.v1.MsgAddCodeUploadParamsAddresses
|
|
2167
|
+
*/
|
|
1433
2168
|
export declare const MsgAddCodeUploadParamsAddresses: {
|
|
1434
2169
|
typeUrl: string;
|
|
1435
2170
|
aminoType: string;
|
|
@@ -1447,6 +2182,13 @@ export declare const MsgAddCodeUploadParamsAddresses: {
|
|
|
1447
2182
|
toProtoMsg(message: MsgAddCodeUploadParamsAddresses): MsgAddCodeUploadParamsAddressesProtoMsg;
|
|
1448
2183
|
registerTypeUrl(): void;
|
|
1449
2184
|
};
|
|
2185
|
+
/**
|
|
2186
|
+
* MsgAddCodeUploadParamsAddressesResponse defines the response
|
|
2187
|
+
* structure for executing a MsgAddCodeUploadParamsAddresses message.
|
|
2188
|
+
* @name MsgAddCodeUploadParamsAddressesResponse
|
|
2189
|
+
* @package cosmwasm.wasm.v1
|
|
2190
|
+
* @see proto type: cosmwasm.wasm.v1.MsgAddCodeUploadParamsAddressesResponse
|
|
2191
|
+
*/
|
|
1450
2192
|
export declare const MsgAddCodeUploadParamsAddressesResponse: {
|
|
1451
2193
|
typeUrl: string;
|
|
1452
2194
|
aminoType: string;
|
|
@@ -1464,6 +2206,13 @@ export declare const MsgAddCodeUploadParamsAddressesResponse: {
|
|
|
1464
2206
|
toProtoMsg(message: MsgAddCodeUploadParamsAddressesResponse): MsgAddCodeUploadParamsAddressesResponseProtoMsg;
|
|
1465
2207
|
registerTypeUrl(): void;
|
|
1466
2208
|
};
|
|
2209
|
+
/**
|
|
2210
|
+
* MsgRemoveCodeUploadParamsAddresses is the
|
|
2211
|
+
* MsgRemoveCodeUploadParamsAddresses request type.
|
|
2212
|
+
* @name MsgRemoveCodeUploadParamsAddresses
|
|
2213
|
+
* @package cosmwasm.wasm.v1
|
|
2214
|
+
* @see proto type: cosmwasm.wasm.v1.MsgRemoveCodeUploadParamsAddresses
|
|
2215
|
+
*/
|
|
1467
2216
|
export declare const MsgRemoveCodeUploadParamsAddresses: {
|
|
1468
2217
|
typeUrl: string;
|
|
1469
2218
|
aminoType: string;
|
|
@@ -1481,6 +2230,13 @@ export declare const MsgRemoveCodeUploadParamsAddresses: {
|
|
|
1481
2230
|
toProtoMsg(message: MsgRemoveCodeUploadParamsAddresses): MsgRemoveCodeUploadParamsAddressesProtoMsg;
|
|
1482
2231
|
registerTypeUrl(): void;
|
|
1483
2232
|
};
|
|
2233
|
+
/**
|
|
2234
|
+
* MsgRemoveCodeUploadParamsAddressesResponse defines the response
|
|
2235
|
+
* structure for executing a MsgRemoveCodeUploadParamsAddresses message.
|
|
2236
|
+
* @name MsgRemoveCodeUploadParamsAddressesResponse
|
|
2237
|
+
* @package cosmwasm.wasm.v1
|
|
2238
|
+
* @see proto type: cosmwasm.wasm.v1.MsgRemoveCodeUploadParamsAddressesResponse
|
|
2239
|
+
*/
|
|
1484
2240
|
export declare const MsgRemoveCodeUploadParamsAddressesResponse: {
|
|
1485
2241
|
typeUrl: string;
|
|
1486
2242
|
aminoType: string;
|
|
@@ -1498,6 +2254,15 @@ export declare const MsgRemoveCodeUploadParamsAddressesResponse: {
|
|
|
1498
2254
|
toProtoMsg(message: MsgRemoveCodeUploadParamsAddressesResponse): MsgRemoveCodeUploadParamsAddressesResponseProtoMsg;
|
|
1499
2255
|
registerTypeUrl(): void;
|
|
1500
2256
|
};
|
|
2257
|
+
/**
|
|
2258
|
+
* MsgStoreAndMigrateContract is the MsgStoreAndMigrateContract
|
|
2259
|
+
* request type.
|
|
2260
|
+
*
|
|
2261
|
+
* Since: 0.42
|
|
2262
|
+
* @name MsgStoreAndMigrateContract
|
|
2263
|
+
* @package cosmwasm.wasm.v1
|
|
2264
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreAndMigrateContract
|
|
2265
|
+
*/
|
|
1501
2266
|
export declare const MsgStoreAndMigrateContract: {
|
|
1502
2267
|
typeUrl: string;
|
|
1503
2268
|
aminoType: string;
|
|
@@ -1515,6 +2280,15 @@ export declare const MsgStoreAndMigrateContract: {
|
|
|
1515
2280
|
toProtoMsg(message: MsgStoreAndMigrateContract): MsgStoreAndMigrateContractProtoMsg;
|
|
1516
2281
|
registerTypeUrl(): void;
|
|
1517
2282
|
};
|
|
2283
|
+
/**
|
|
2284
|
+
* MsgStoreAndMigrateContractResponse defines the response structure
|
|
2285
|
+
* for executing a MsgStoreAndMigrateContract message.
|
|
2286
|
+
*
|
|
2287
|
+
* Since: 0.42
|
|
2288
|
+
* @name MsgStoreAndMigrateContractResponse
|
|
2289
|
+
* @package cosmwasm.wasm.v1
|
|
2290
|
+
* @see proto type: cosmwasm.wasm.v1.MsgStoreAndMigrateContractResponse
|
|
2291
|
+
*/
|
|
1518
2292
|
export declare const MsgStoreAndMigrateContractResponse: {
|
|
1519
2293
|
typeUrl: string;
|
|
1520
2294
|
aminoType: string;
|
|
@@ -1532,6 +2306,12 @@ export declare const MsgStoreAndMigrateContractResponse: {
|
|
|
1532
2306
|
toProtoMsg(message: MsgStoreAndMigrateContractResponse): MsgStoreAndMigrateContractResponseProtoMsg;
|
|
1533
2307
|
registerTypeUrl(): void;
|
|
1534
2308
|
};
|
|
2309
|
+
/**
|
|
2310
|
+
* MsgUpdateContractLabel sets a new label for a smart contract
|
|
2311
|
+
* @name MsgUpdateContractLabel
|
|
2312
|
+
* @package cosmwasm.wasm.v1
|
|
2313
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateContractLabel
|
|
2314
|
+
*/
|
|
1535
2315
|
export declare const MsgUpdateContractLabel: {
|
|
1536
2316
|
typeUrl: string;
|
|
1537
2317
|
aminoType: string;
|
|
@@ -1549,6 +2329,12 @@ export declare const MsgUpdateContractLabel: {
|
|
|
1549
2329
|
toProtoMsg(message: MsgUpdateContractLabel): MsgUpdateContractLabelProtoMsg;
|
|
1550
2330
|
registerTypeUrl(): void;
|
|
1551
2331
|
};
|
|
2332
|
+
/**
|
|
2333
|
+
* MsgUpdateContractLabelResponse returns empty data
|
|
2334
|
+
* @name MsgUpdateContractLabelResponse
|
|
2335
|
+
* @package cosmwasm.wasm.v1
|
|
2336
|
+
* @see proto type: cosmwasm.wasm.v1.MsgUpdateContractLabelResponse
|
|
2337
|
+
*/
|
|
1552
2338
|
export declare const MsgUpdateContractLabelResponse: {
|
|
1553
2339
|
typeUrl: string;
|
|
1554
2340
|
aminoType: string;
|