@xpla/xpla-react 1.7.0-beta.0 → 1.7.0-beta.11
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/amino/amino.d.ts +1 -0
- package/amino/amino.js +2 -0
- package/binary.d.ts +130 -0
- package/binary.js +370 -0
- package/cosmos/app/runtime/v1alpha1/module.d.ts +176 -0
- package/cosmos/app/runtime/v1alpha1/module.js +292 -0
- package/cosmos/app/runtime/v2/module.d.ts +231 -0
- package/cosmos/app/runtime/v2/module.js +421 -0
- package/cosmos/app/v1alpha1/config.d.ts +184 -0
- package/cosmos/app/v1alpha1/config.js +298 -0
- package/cosmos/app/v1alpha1/module.d.ts +237 -0
- package/cosmos/app/v1alpha1/module.js +280 -0
- package/cosmos/app/v1alpha1/query.d.ts +69 -0
- package/cosmos/app/v1alpha1/query.js +148 -0
- package/cosmos/app/v1alpha1/query.rpc.func.d.ts +3 -0
- package/cosmos/app/v1alpha1/query.rpc.func.js +14 -0
- package/cosmos/app/v1alpha1/query.rpc.react.d.ts +2 -0
- package/cosmos/app/v1alpha1/query.rpc.react.js +9 -0
- package/cosmos/auth/module/v1/module.d.ts +90 -0
- package/cosmos/auth/module/v1/module.js +202 -0
- package/cosmos/auth/v1beta1/accounts.d.ts +106 -0
- package/cosmos/auth/v1beta1/accounts.js +161 -0
- package/cosmos/auth/v1beta1/auth.d.ts +181 -0
- package/cosmos/auth/v1beta1/auth.js +448 -0
- package/cosmos/auth/v1beta1/genesis.d.ts +43 -0
- package/cosmos/auth/v1beta1/genesis.js +98 -0
- package/cosmos/auth/v1beta1/query.d.ts +830 -0
- package/cosmos/auth/v1beta1/query.js +1558 -0
- package/cosmos/auth/v1beta1/query.rpc.func.d.ts +12 -0
- package/cosmos/auth/v1beta1/query.rpc.func.js +95 -0
- package/cosmos/auth/v1beta1/query.rpc.react.d.ts +11 -0
- package/cosmos/auth/v1beta1/query.rpc.react.js +45 -0
- package/cosmos/auth/v1beta1/tx.d.ts +99 -0
- package/cosmos/auth/v1beta1/tx.js +160 -0
- package/cosmos/auth/v1beta1/tx.registry.d.ts +2 -0
- package/cosmos/auth/v1beta1/tx.registry.js +5 -0
- package/cosmos/auth/v1beta1/tx.rpc.func.d.ts +3 -0
- package/cosmos/auth/v1beta1/tx.rpc.func.js +14 -0
- package/cosmos/auth/v1beta1/tx.rpc.react.d.ts +2 -0
- package/cosmos/auth/v1beta1/tx.rpc.react.js +8 -0
- package/cosmos/authz/module/v1/module.d.ts +33 -0
- package/cosmos/authz/module/v1/module.js +68 -0
- package/cosmos/authz/v1beta1/authz.d.ts +185 -0
- package/cosmos/authz/v1beta1/authz.js +390 -0
- package/cosmos/authz/v1beta1/event.d.ts +88 -0
- package/cosmos/authz/v1beta1/event.js +206 -0
- package/cosmos/authz/v1beta1/genesis.d.ts +36 -0
- package/cosmos/authz/v1beta1/genesis.js +87 -0
- package/cosmos/authz/v1beta1/query.d.ts +238 -0
- package/cosmos/authz/v1beta1/query.js +588 -0
- package/cosmos/authz/v1beta1/query.rpc.func.d.ts +5 -0
- package/cosmos/authz/v1beta1/query.rpc.func.js +32 -0
- package/cosmos/authz/v1beta1/query.rpc.react.d.ts +4 -0
- package/cosmos/authz/v1beta1/query.rpc.react.js +17 -0
- package/cosmos/authz/v1beta1/tx.d.ts +246 -0
- package/cosmos/authz/v1beta1/tx.js +512 -0
- package/cosmos/authz/v1beta1/tx.registry.d.ts +2 -0
- package/cosmos/authz/v1beta1/tx.registry.js +5 -0
- package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +5 -0
- package/cosmos/authz/v1beta1/tx.rpc.func.js +30 -0
- package/cosmos/authz/v1beta1/tx.rpc.react.d.ts +4 -0
- package/cosmos/authz/v1beta1/tx.rpc.react.js +14 -0
- package/cosmos/autocli/v1/options.d.ts +419 -0
- package/cosmos/autocli/v1/options.js +842 -0
- package/cosmos/autocli/v1/query.d.ts +100 -0
- package/cosmos/autocli/v1/query.js +239 -0
- package/cosmos/autocli/v1/query.rpc.func.d.ts +3 -0
- package/cosmos/autocli/v1/query.rpc.func.js +14 -0
- package/cosmos/autocli/v1/query.rpc.react.d.ts +2 -0
- package/cosmos/autocli/v1/query.rpc.react.js +9 -0
- package/cosmos/bank/module/v1/module.d.ts +63 -0
- package/cosmos/bank/module/v1/module.js +111 -0
- package/cosmos/bank/v1beta1/authz.d.ts +60 -0
- package/cosmos/bank/v1beta1/authz.js +105 -0
- package/cosmos/bank/v1beta1/bank.d.ts +378 -0
- package/cosmos/bank/v1beta1/bank.js +731 -0
- package/cosmos/bank/v1beta1/genesis.d.ts +114 -0
- package/cosmos/bank/v1beta1/genesis.js +243 -0
- package/cosmos/bank/v1beta1/query.d.ts +1186 -0
- package/cosmos/bank/v1beta1/query.js +2338 -0
- package/cosmos/bank/v1beta1/query.rpc.func.d.ts +15 -0
- package/cosmos/bank/v1beta1/query.rpc.func.js +122 -0
- package/cosmos/bank/v1beta1/query.rpc.react.d.ts +14 -0
- package/cosmos/bank/v1beta1/query.rpc.react.js +57 -0
- package/cosmos/bank/v1beta1/tx.d.ts +350 -0
- package/cosmos/bank/v1beta1/tx.js +666 -0
- package/cosmos/bank/v1beta1/tx.registry.d.ts +2 -0
- package/cosmos/bank/v1beta1/tx.registry.js +5 -0
- package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +6 -0
- package/cosmos/bank/v1beta1/tx.rpc.func.js +38 -0
- package/cosmos/bank/v1beta1/tx.rpc.react.d.ts +5 -0
- package/cosmos/bank/v1beta1/tx.rpc.react.js +17 -0
- package/cosmos/base/abci/v1beta1/abci.d.ts +610 -0
- package/cosmos/base/abci/v1beta1/abci.js +1294 -0
- package/cosmos/base/grpc/v2/service.d.ts +168 -0
- package/cosmos/base/grpc/v2/service.js +394 -0
- package/cosmos/base/grpc/v2/service.rpc.func.d.ts +4 -0
- package/cosmos/base/grpc/v2/service.rpc.func.js +23 -0
- package/cosmos/base/grpc/v2/service.rpc.react.d.ts +3 -0
- package/cosmos/base/grpc/v2/service.rpc.react.js +13 -0
- package/cosmos/base/node/v1beta1/query.d.ts +154 -0
- package/cosmos/base/node/v1beta1/query.js +372 -0
- package/cosmos/base/node/v1beta1/query.rpc.func.d.ts +4 -0
- package/cosmos/base/node/v1beta1/query.rpc.func.js +23 -0
- package/cosmos/base/node/v1beta1/query.rpc.react.d.ts +3 -0
- package/cosmos/base/node/v1beta1/query.rpc.react.js +13 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +178 -0
- package/cosmos/base/query/v1beta1/pagination.js +219 -0
- package/cosmos/base/reflection/v1beta1/reflection.d.ts +148 -0
- package/cosmos/base/reflection/v1beta1/reflection.js +305 -0
- package/cosmos/base/reflection/v1beta1/reflection.rpc.func.d.ts +4 -0
- package/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +23 -0
- package/cosmos/base/reflection/v1beta1/reflection.rpc.react.d.ts +3 -0
- package/cosmos/base/reflection/v1beta1/reflection.rpc.react.js +13 -0
- package/cosmos/base/reflection/v2alpha1/reflection.d.ts +1034 -0
- package/cosmos/base/reflection/v2alpha1/reflection.js +2164 -0
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.d.ts +8 -0
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +59 -0
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.react.d.ts +7 -0
- package/cosmos/base/reflection/v2alpha1/reflection.rpc.react.js +29 -0
- package/cosmos/base/tendermint/v1beta1/query.d.ts +759 -0
- package/cosmos/base/tendermint/v1beta1/query.js +1894 -0
- package/cosmos/base/tendermint/v1beta1/query.rpc.func.d.ts +9 -0
- package/cosmos/base/tendermint/v1beta1/query.rpc.func.js +68 -0
- package/cosmos/base/tendermint/v1beta1/query.rpc.react.d.ts +8 -0
- package/cosmos/base/tendermint/v1beta1/query.rpc.react.js +33 -0
- package/cosmos/base/tendermint/v1beta1/types.d.ts +139 -0
- package/cosmos/base/tendermint/v1beta1/types.js +363 -0
- package/cosmos/base/v1beta1/coin.d.ts +170 -0
- package/cosmos/base/v1beta1/coin.js +337 -0
- package/cosmos/circuit/module/v1/module.d.ts +36 -0
- package/cosmos/circuit/module/v1/module.js +83 -0
- package/cosmos/circuit/v1/query.d.ts +200 -0
- package/cosmos/circuit/v1/query.js +480 -0
- package/cosmos/circuit/v1/query.rpc.func.d.ts +8 -0
- package/cosmos/circuit/v1/query.rpc.func.js +42 -0
- package/cosmos/circuit/v1/tx.d.ts +251 -0
- package/cosmos/circuit/v1/tx.js +528 -0
- package/cosmos/circuit/v1/tx.registry.d.ts +47 -0
- package/cosmos/circuit/v1/tx.registry.js +67 -0
- package/cosmos/circuit/v1/tx.rpc.func.d.ts +8 -0
- package/cosmos/circuit/v1/tx.rpc.func.js +37 -0
- package/cosmos/circuit/v1/types.d.ts +151 -0
- package/cosmos/circuit/v1/types.js +350 -0
- package/cosmos/consensus/module/v1/module.d.ts +37 -0
- package/cosmos/consensus/module/v1/module.js +81 -0
- package/cosmos/consensus/v1/query.d.ts +77 -0
- package/cosmos/consensus/v1/query.js +148 -0
- package/cosmos/consensus/v1/query.rpc.func.d.ts +3 -0
- package/cosmos/consensus/v1/query.rpc.func.js +14 -0
- package/cosmos/consensus/v1/query.rpc.react.d.ts +2 -0
- package/cosmos/consensus/v1/query.rpc.react.js +9 -0
- package/cosmos/consensus/v1/tx.d.ts +99 -0
- package/cosmos/consensus/v1/tx.js +199 -0
- package/cosmos/consensus/v1/tx.registry.d.ts +2 -0
- package/cosmos/consensus/v1/tx.registry.js +5 -0
- package/cosmos/consensus/v1/tx.rpc.func.d.ts +3 -0
- package/cosmos/consensus/v1/tx.rpc.func.js +14 -0
- package/cosmos/consensus/v1/tx.rpc.react.d.ts +2 -0
- package/cosmos/consensus/v1/tx.rpc.react.js +8 -0
- package/cosmos/crisis/module/v1/module.d.ts +40 -0
- package/cosmos/crisis/module/v1/module.js +95 -0
- package/cosmos/crisis/v1beta1/genesis.d.ts +43 -0
- package/cosmos/crisis/v1beta1/genesis.js +84 -0
- package/cosmos/crisis/v1beta1/tx.d.ts +161 -0
- package/cosmos/crisis/v1beta1/tx.js +328 -0
- package/cosmos/crisis/v1beta1/tx.registry.d.ts +35 -0
- package/cosmos/crisis/v1beta1/tx.registry.js +49 -0
- package/cosmos/crisis/v1beta1/tx.rpc.func.d.ts +6 -0
- package/cosmos/crisis/v1beta1/tx.rpc.func.js +27 -0
- package/cosmos/crypto/ed25519/keys.d.ts +84 -0
- package/cosmos/crypto/ed25519/keys.js +162 -0
- package/cosmos/crypto/hd/v1/hd.d.ts +58 -0
- package/cosmos/crypto/hd/v1/hd.js +131 -0
- package/cosmos/crypto/keyring/v1/record.d.ts +188 -0
- package/cosmos/crypto/keyring/v1/record.js +431 -0
- package/cosmos/crypto/multisig/keys.d.ts +45 -0
- package/cosmos/crypto/multisig/keys.js +99 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +88 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +174 -0
- package/cosmos/crypto/secp256k1/keys.d.ts +78 -0
- package/cosmos/crypto/secp256k1/keys.js +162 -0
- package/cosmos/crypto/secp256r1/keys.d.ts +76 -0
- package/cosmos/crypto/secp256r1/keys.js +162 -0
- package/cosmos/distribution/module/v1/module.d.ts +39 -0
- package/cosmos/distribution/module/v1/module.js +93 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +553 -0
- package/cosmos/distribution/v1beta1/distribution.js +1168 -0
- package/cosmos/distribution/v1beta1/genesis.d.ts +384 -0
- package/cosmos/distribution/v1beta1/genesis.js +908 -0
- package/cosmos/distribution/v1beta1/query.d.ts +823 -0
- package/cosmos/distribution/v1beta1/query.js +1661 -0
- package/cosmos/distribution/v1beta1/query.rpc.func.d.ts +12 -0
- package/cosmos/distribution/v1beta1/query.rpc.func.js +95 -0
- package/cosmos/distribution/v1beta1/query.rpc.react.d.ts +11 -0
- package/cosmos/distribution/v1beta1/query.rpc.react.js +45 -0
- package/cosmos/distribution/v1beta1/tx.d.ts +592 -0
- package/cosmos/distribution/v1beta1/tx.js +1142 -0
- package/cosmos/distribution/v1beta1/tx.registry.d.ts +2 -0
- package/cosmos/distribution/v1beta1/tx.registry.js +5 -0
- package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +9 -0
- package/cosmos/distribution/v1beta1/tx.rpc.func.js +62 -0
- package/cosmos/distribution/v1beta1/tx.rpc.react.d.ts +8 -0
- package/cosmos/distribution/v1beta1/tx.rpc.react.js +26 -0
- package/cosmos/evidence/module/v1/module.d.ts +33 -0
- package/cosmos/evidence/module/v1/module.js +68 -0
- package/cosmos/evidence/v1beta1/evidence.d.ts +55 -0
- package/cosmos/evidence/v1beta1/evidence.js +119 -0
- package/cosmos/evidence/v1beta1/genesis.d.ts +38 -0
- package/cosmos/evidence/v1beta1/genesis.js +85 -0
- package/cosmos/evidence/v1beta1/query.d.ts +180 -0
- package/cosmos/evidence/v1beta1/query.js +346 -0
- package/cosmos/evidence/v1beta1/query.rpc.func.d.ts +4 -0
- package/cosmos/evidence/v1beta1/query.rpc.func.js +23 -0
- package/cosmos/evidence/v1beta1/query.rpc.react.d.ts +3 -0
- package/cosmos/evidence/v1beta1/query.rpc.react.js +13 -0
- package/cosmos/evidence/v1beta1/tx.d.ts +86 -0
- package/cosmos/evidence/v1beta1/tx.js +173 -0
- package/cosmos/evidence/v1beta1/tx.registry.d.ts +2 -0
- package/cosmos/evidence/v1beta1/tx.registry.js +5 -0
- package/cosmos/evidence/v1beta1/tx.rpc.func.d.ts +3 -0
- package/cosmos/evidence/v1beta1/tx.rpc.func.js +14 -0
- package/cosmos/evidence/v1beta1/tx.rpc.react.d.ts +2 -0
- package/cosmos/evidence/v1beta1/tx.rpc.react.js +8 -0
- package/cosmos/feegrant/module/v1/module.d.ts +33 -0
- package/cosmos/feegrant/module/v1/module.js +68 -0
- package/cosmos/feegrant/v1beta1/feegrant.d.ts +223 -0
- package/cosmos/feegrant/v1beta1/feegrant.js +445 -0
- package/cosmos/feegrant/v1beta1/genesis.d.ts +36 -0
- package/cosmos/feegrant/v1beta1/genesis.js +87 -0
- package/cosmos/feegrant/v1beta1/query.d.ts +246 -0
- package/cosmos/feegrant/v1beta1/query.js +546 -0
- package/cosmos/feegrant/v1beta1/query.rpc.func.d.ts +5 -0
- package/cosmos/feegrant/v1beta1/query.rpc.func.js +32 -0
- package/cosmos/feegrant/v1beta1/query.rpc.react.d.ts +4 -0
- package/cosmos/feegrant/v1beta1/query.rpc.react.js +17 -0
- package/cosmos/feegrant/v1beta1/tx.d.ts +239 -0
- package/cosmos/feegrant/v1beta1/tx.js +470 -0
- package/cosmos/feegrant/v1beta1/tx.registry.d.ts +2 -0
- package/cosmos/feegrant/v1beta1/tx.registry.js +5 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +5 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.func.js +30 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.react.d.ts +4 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.react.js +14 -0
- package/cosmos/genutil/module/v1/module.d.ts +32 -0
- package/cosmos/genutil/module/v1/module.js +70 -0
- package/cosmos/genutil/v1beta1/genesis.d.ts +36 -0
- package/cosmos/genutil/v1beta1/genesis.js +87 -0
- package/cosmos/gov/module/v1/module.d.ts +47 -0
- package/cosmos/gov/module/v1/module.js +93 -0
- package/cosmos/gov/v1/genesis.d.ts +116 -0
- package/cosmos/gov/v1/genesis.js +195 -0
- package/cosmos/gov/v1/gov.d.ts +705 -0
- package/cosmos/gov/v1/gov.js +1364 -0
- package/cosmos/gov/v1/query.d.ts +724 -0
- package/cosmos/gov/v1/query.js +1573 -0
- package/cosmos/gov/v1/query.rpc.func.d.ts +11 -0
- package/cosmos/gov/v1/query.rpc.func.js +86 -0
- package/cosmos/gov/v1/query.rpc.react.d.ts +10 -0
- package/cosmos/gov/v1/query.rpc.react.js +41 -0
- package/cosmos/gov/v1/tx.d.ts +640 -0
- package/cosmos/gov/v1/tx.js +1298 -0
- package/cosmos/gov/v1/tx.registry.d.ts +2 -0
- package/cosmos/gov/v1/tx.registry.js +5 -0
- package/cosmos/gov/v1/tx.rpc.func.d.ts +9 -0
- package/cosmos/gov/v1/tx.rpc.func.js +62 -0
- package/cosmos/gov/v1/tx.rpc.react.d.ts +8 -0
- package/cosmos/gov/v1/tx.rpc.react.js +26 -0
- package/cosmos/gov/v1beta1/genesis.d.ts +62 -0
- package/cosmos/gov/v1beta1/genesis.js +170 -0
- package/cosmos/gov/v1beta1/gov.d.ts +533 -0
- package/cosmos/gov/v1beta1/gov.js +1143 -0
- package/cosmos/gov/v1beta1/query.d.ts +622 -0
- package/cosmos/gov/v1beta1/query.js +1419 -0
- package/cosmos/gov/v1beta1/query.rpc.func.d.ts +10 -0
- package/cosmos/gov/v1beta1/query.rpc.func.js +77 -0
- package/cosmos/gov/v1beta1/query.rpc.react.d.ts +9 -0
- package/cosmos/gov/v1beta1/query.rpc.react.js +37 -0
- package/cosmos/gov/v1beta1/tx.d.ts +335 -0
- package/cosmos/gov/v1beta1/tx.js +722 -0
- package/cosmos/gov/v1beta1/tx.registry.d.ts +2 -0
- package/cosmos/gov/v1beta1/tx.registry.js +5 -0
- package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +6 -0
- package/cosmos/gov/v1beta1/tx.rpc.func.js +38 -0
- package/cosmos/gov/v1beta1/tx.rpc.react.d.ts +5 -0
- package/cosmos/gov/v1beta1/tx.rpc.react.js +17 -0
- package/cosmos/group/module/v1/module.d.ts +53 -0
- package/cosmos/group/module/v1/module.js +96 -0
- package/cosmos/group/v1/events.d.ts +363 -0
- package/cosmos/group/v1/events.js +847 -0
- package/cosmos/group/v1/genesis.d.ts +83 -0
- package/cosmos/group/v1/genesis.js +183 -0
- package/cosmos/group/v1/query.d.ts +1044 -0
- package/cosmos/group/v1/query.js +2434 -0
- package/cosmos/group/v1/query.rpc.func.d.ts +30 -0
- package/cosmos/group/v1/query.rpc.func.js +174 -0
- package/cosmos/group/v1/tx.d.ts +1140 -0
- package/cosmos/group/v1/tx.js +2567 -0
- package/cosmos/group/v1/tx.registry.d.ts +179 -0
- package/cosmos/group/v1/tx.registry.js +265 -0
- package/cosmos/group/v1/tx.rpc.func.d.ts +30 -0
- package/cosmos/group/v1/tx.rpc.func.js +147 -0
- package/cosmos/group/v1/types.d.ts +799 -0
- package/cosmos/group/v1/types.js +1542 -0
- package/cosmos/ics23/v1/proofs.d.ts +743 -0
- package/cosmos/ics23/v1/proofs.js +1619 -0
- package/cosmos/mint/module/v1/module.d.ts +39 -0
- package/cosmos/mint/module/v1/module.js +93 -0
- package/cosmos/mint/v1beta1/genesis.d.ts +42 -0
- package/cosmos/mint/v1beta1/genesis.js +97 -0
- package/cosmos/mint/v1beta1/mint.d.ts +96 -0
- package/cosmos/mint/v1beta1/mint.js +231 -0
- package/cosmos/mint/v1beta1/query.d.ts +219 -0
- package/cosmos/mint/v1beta1/query.js +431 -0
- package/cosmos/mint/v1beta1/query.rpc.func.d.ts +5 -0
- package/cosmos/mint/v1beta1/query.rpc.func.js +32 -0
- package/cosmos/mint/v1beta1/query.rpc.react.d.ts +4 -0
- package/cosmos/mint/v1beta1/query.rpc.react.js +17 -0
- package/cosmos/mint/v1beta1/tx.d.ts +99 -0
- package/cosmos/mint/v1beta1/tx.js +160 -0
- package/cosmos/mint/v1beta1/tx.registry.d.ts +2 -0
- package/cosmos/mint/v1beta1/tx.registry.js +5 -0
- package/cosmos/mint/v1beta1/tx.rpc.func.d.ts +3 -0
- package/cosmos/mint/v1beta1/tx.rpc.func.js +14 -0
- package/cosmos/mint/v1beta1/tx.rpc.react.d.ts +2 -0
- package/cosmos/mint/v1beta1/tx.rpc.react.js +8 -0
- package/cosmos/msg/textual/v1/textual.d.ts +1 -0
- package/cosmos/msg/textual/v1/textual.js +2 -0
- package/cosmos/msg/v1/msg.d.ts +1 -0
- package/cosmos/msg/v1/msg.js +2 -0
- package/cosmos/nft/module/v1/module.d.ts +32 -0
- package/cosmos/nft/module/v1/module.js +70 -0
- package/cosmos/nft/v1beta1/event.d.ts +132 -0
- package/cosmos/nft/v1beta1/event.js +323 -0
- package/cosmos/nft/v1beta1/genesis.d.ts +79 -0
- package/cosmos/nft/v1beta1/genesis.js +195 -0
- package/cosmos/nft/v1beta1/nft.d.ts +111 -0
- package/cosmos/nft/v1beta1/nft.js +282 -0
- package/cosmos/nft/v1beta1/query.d.ts +508 -0
- package/cosmos/nft/v1beta1/query.js +1189 -0
- package/cosmos/nft/v1beta1/query.rpc.func.d.ts +16 -0
- package/cosmos/nft/v1beta1/query.rpc.func.js +90 -0
- package/cosmos/nft/v1beta1/tx.d.ts +78 -0
- package/cosmos/nft/v1beta1/tx.js +184 -0
- package/cosmos/nft/v1beta1/tx.registry.d.ts +23 -0
- package/cosmos/nft/v1beta1/tx.registry.js +31 -0
- package/cosmos/nft/v1beta1/tx.rpc.func.d.ts +4 -0
- package/cosmos/nft/v1beta1/tx.rpc.func.js +17 -0
- package/cosmos/orm/module/v1alpha1/module.d.ts +40 -0
- package/cosmos/orm/module/v1alpha1/module.js +70 -0
- package/cosmos/orm/query/v1alpha1/query.d.ts +367 -0
- package/cosmos/orm/query/v1alpha1/query.js +751 -0
- package/cosmos/orm/query/v1alpha1/query.rpc.func.d.ts +6 -0
- package/cosmos/orm/query/v1alpha1/query.rpc.func.js +30 -0
- package/cosmos/orm/v1/orm.d.ts +278 -0
- package/cosmos/orm/v1/orm.js +380 -0
- package/cosmos/orm/v1alpha1/schema.d.ts +134 -0
- package/cosmos/orm/v1alpha1/schema.js +258 -0
- package/cosmos/params/module/v1/module.d.ts +33 -0
- package/cosmos/params/module/v1/module.js +68 -0
- package/cosmos/params/v1beta1/params.d.ts +82 -0
- package/cosmos/params/v1beta1/params.js +214 -0
- package/cosmos/params/v1beta1/query.d.ts +206 -0
- package/cosmos/params/v1beta1/query.js +411 -0
- package/cosmos/params/v1beta1/query.rpc.func.d.ts +4 -0
- package/cosmos/params/v1beta1/query.rpc.func.js +23 -0
- package/cosmos/params/v1beta1/query.rpc.react.d.ts +3 -0
- package/cosmos/params/v1beta1/query.rpc.react.js +13 -0
- package/cosmos/query/v1/query.d.ts +1 -0
- package/cosmos/query/v1/query.js +2 -0
- package/cosmos/reflection/v1/reflection.d.ts +67 -0
- package/cosmos/reflection/v1/reflection.js +152 -0
- package/cosmos/reflection/v1/reflection.rpc.func.d.ts +4 -0
- package/cosmos/reflection/v1/reflection.rpc.func.js +18 -0
- package/cosmos/slashing/module/v1/module.d.ts +37 -0
- package/cosmos/slashing/module/v1/module.js +81 -0
- package/cosmos/slashing/v1beta1/genesis.d.ts +181 -0
- package/cosmos/slashing/v1beta1/genesis.js +390 -0
- package/cosmos/slashing/v1beta1/query.d.ts +232 -0
- package/cosmos/slashing/v1beta1/query.js +479 -0
- package/cosmos/slashing/v1beta1/query.rpc.func.d.ts +5 -0
- package/cosmos/slashing/v1beta1/query.rpc.func.js +32 -0
- package/cosmos/slashing/v1beta1/query.rpc.react.d.ts +4 -0
- package/cosmos/slashing/v1beta1/query.rpc.react.js +17 -0
- package/cosmos/slashing/v1beta1/slashing.d.ts +125 -0
- package/cosmos/slashing/v1beta1/slashing.js +269 -0
- package/cosmos/slashing/v1beta1/tx.d.ts +163 -0
- package/cosmos/slashing/v1beta1/tx.js +301 -0
- package/cosmos/slashing/v1beta1/tx.registry.d.ts +2 -0
- package/cosmos/slashing/v1beta1/tx.registry.js +5 -0
- package/cosmos/slashing/v1beta1/tx.rpc.func.d.ts +4 -0
- package/cosmos/slashing/v1beta1/tx.rpc.func.js +22 -0
- package/cosmos/slashing/v1beta1/tx.rpc.react.d.ts +3 -0
- package/cosmos/slashing/v1beta1/tx.rpc.react.js +11 -0
- package/cosmos/staking/module/v1/module.d.ts +57 -0
- package/cosmos/staking/module/v1/module.js +120 -0
- package/cosmos/staking/v1beta1/authz.d.ts +124 -0
- package/cosmos/staking/v1beta1/authz.js +267 -0
- package/cosmos/staking/v1beta1/genesis.d.ts +117 -0
- package/cosmos/staking/v1beta1/genesis.js +278 -0
- package/cosmos/staking/v1beta1/query.d.ts +1152 -0
- package/cosmos/staking/v1beta1/query.js +2434 -0
- package/cosmos/staking/v1beta1/query.rpc.func.d.ts +16 -0
- package/cosmos/staking/v1beta1/query.rpc.func.js +131 -0
- package/cosmos/staking/v1beta1/query.rpc.react.d.ts +15 -0
- package/cosmos/staking/v1beta1/query.rpc.react.js +61 -0
- package/cosmos/staking/v1beta1/staking.d.ts +1045 -0
- package/cosmos/staking/v1beta1/staking.js +2377 -0
- package/cosmos/staking/v1beta1/tx.d.ts +604 -0
- package/cosmos/staking/v1beta1/tx.js +1293 -0
- package/cosmos/staking/v1beta1/tx.registry.d.ts +2 -0
- package/cosmos/staking/v1beta1/tx.registry.js +5 -0
- package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +9 -0
- package/cosmos/staking/v1beta1/tx.rpc.func.js +62 -0
- package/cosmos/staking/v1beta1/tx.rpc.react.d.ts +8 -0
- package/cosmos/staking/v1beta1/tx.rpc.react.js +26 -0
- package/cosmos/store/internal/kv/v1beta1/kv.d.ts +68 -0
- package/cosmos/store/internal/kv/v1beta1/kv.js +177 -0
- package/cosmos/store/snapshots/v1/snapshot.d.ts +294 -0
- package/cosmos/store/snapshots/v1/snapshot.js +687 -0
- package/cosmos/store/snapshots/v2/snapshot.d.ts +254 -0
- package/cosmos/store/snapshots/v2/snapshot.js +687 -0
- package/cosmos/store/streaming/abci/grpc.d.ts +136 -0
- package/cosmos/store/streaming/abci/grpc.js +332 -0
- package/cosmos/store/v1beta1/commit_info.d.ts +124 -0
- package/cosmos/store/v1beta1/commit_info.js +292 -0
- package/cosmos/store/v1beta1/listening.d.ts +101 -0
- package/cosmos/store/v1beta1/listening.js +223 -0
- package/cosmos/streaming/v1/grpc.d.ts +302 -0
- package/cosmos/streaming/v1/grpc.js +826 -0
- package/cosmos/tx/config/v1/config.d.ts +53 -0
- package/cosmos/tx/config/v1/config.js +93 -0
- package/cosmos/tx/signing/v1beta1/signing.d.ts +275 -0
- package/cosmos/tx/signing/v1beta1/signing.js +574 -0
- package/cosmos/tx/v1beta1/service.d.ts +934 -0
- package/cosmos/tx/v1beta1/service.js +1737 -0
- package/cosmos/tx/v1beta1/service.rpc.func.d.ts +11 -0
- package/cosmos/tx/v1beta1/service.rpc.func.js +86 -0
- package/cosmos/tx/v1beta1/service.rpc.react.d.ts +10 -0
- package/cosmos/tx/v1beta1/service.rpc.react.js +41 -0
- package/cosmos/tx/v1beta1/tx.d.ts +869 -0
- package/cosmos/tx/v1beta1/tx.js +1407 -0
- package/cosmos/upgrade/module/v1/module.d.ts +37 -0
- package/cosmos/upgrade/module/v1/module.js +81 -0
- package/cosmos/upgrade/v1beta1/query.d.ts +433 -0
- package/cosmos/upgrade/v1beta1/query.js +757 -0
- package/cosmos/upgrade/v1beta1/query.rpc.func.d.ts +7 -0
- package/cosmos/upgrade/v1beta1/query.rpc.func.js +50 -0
- package/cosmos/upgrade/v1beta1/query.rpc.react.d.ts +6 -0
- package/cosmos/upgrade/v1beta1/query.rpc.react.js +25 -0
- package/cosmos/upgrade/v1beta1/tx.d.ts +171 -0
- package/cosmos/upgrade/v1beta1/tx.js +301 -0
- package/cosmos/upgrade/v1beta1/tx.registry.d.ts +2 -0
- package/cosmos/upgrade/v1beta1/tx.registry.js +5 -0
- package/cosmos/upgrade/v1beta1/tx.rpc.func.d.ts +4 -0
- package/cosmos/upgrade/v1beta1/tx.rpc.func.js +22 -0
- package/cosmos/upgrade/v1beta1/tx.rpc.react.d.ts +3 -0
- package/cosmos/upgrade/v1beta1/tx.rpc.react.js +11 -0
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +249 -0
- package/cosmos/upgrade/v1beta1/upgrade.js +419 -0
- package/cosmos/validate/module/v1/module.d.ts +32 -0
- package/cosmos/validate/module/v1/module.js +70 -0
- package/cosmos/vesting/module/v1/module.d.ts +32 -0
- package/cosmos/vesting/module/v1/module.js +70 -0
- package/cosmos/vesting/v1beta1/tx.d.ts +256 -0
- package/cosmos/vesting/v1beta1/tx.js +553 -0
- package/cosmos/vesting/v1beta1/tx.registry.d.ts +47 -0
- package/cosmos/vesting/v1beta1/tx.registry.js +67 -0
- package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +8 -0
- package/cosmos/vesting/v1beta1/tx.rpc.func.js +37 -0
- package/cosmos/vesting/v1beta1/vesting.d.ts +256 -0
- package/cosmos/vesting/v1beta1/vesting.js +586 -0
- package/cosmos_proto/cosmos.d.ts +155 -0
- package/cosmos_proto/cosmos.js +233 -0
- package/cosmwasm/wasm/v1/authz.d.ts +511 -0
- package/cosmwasm/wasm/v1/authz.js +951 -0
- package/cosmwasm/wasm/v1/genesis.d.ts +157 -0
- package/cosmwasm/wasm/v1/genesis.js +460 -0
- package/cosmwasm/wasm/v1/ibc.d.ts +166 -0
- package/cosmwasm/wasm/v1/ibc.js +336 -0
- package/cosmwasm/wasm/v1/proposal_legacy.d.ts +885 -0
- package/cosmwasm/wasm/v1/proposal_legacy.js +1816 -0
- package/cosmwasm/wasm/v1/query.d.ts +1045 -0
- package/cosmwasm/wasm/v1/query.js +2223 -0
- package/cosmwasm/wasm/v1/query.rpc.func.d.ts +14 -0
- package/cosmwasm/wasm/v1/query.rpc.func.js +113 -0
- package/cosmwasm/wasm/v1/query.rpc.react.d.ts +13 -0
- package/cosmwasm/wasm/v1/query.rpc.react.js +53 -0
- package/cosmwasm/wasm/v1/tx.d.ts +1568 -0
- package/cosmwasm/wasm/v1/tx.js +3218 -0
- package/cosmwasm/wasm/v1/tx.registry.d.ts +2 -0
- package/cosmwasm/wasm/v1/tx.registry.js +5 -0
- package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +19 -0
- package/cosmwasm/wasm/v1/tx.rpc.func.js +142 -0
- package/cosmwasm/wasm/v1/tx.rpc.react.d.ts +18 -0
- package/cosmwasm/wasm/v1/tx.rpc.react.js +56 -0
- package/cosmwasm/wasm/v1/types.d.ts +382 -0
- package/cosmwasm/wasm/v1/types.js +915 -0
- package/esm/amino/amino.js +1 -0
- package/esm/binary.js +365 -0
- package/esm/cosmos/app/runtime/v1alpha1/module.js +289 -0
- package/esm/cosmos/app/runtime/v2/module.js +418 -0
- package/esm/cosmos/app/v1alpha1/config.js +295 -0
- package/esm/cosmos/app/v1alpha1/module.js +277 -0
- package/esm/cosmos/app/v1alpha1/query.js +145 -0
- package/esm/cosmos/app/v1alpha1/query.rpc.func.js +10 -0
- package/esm/cosmos/app/v1alpha1/query.rpc.react.js +6 -0
- package/esm/cosmos/auth/module/v1/module.js +199 -0
- package/esm/cosmos/auth/v1beta1/accounts.js +158 -0
- package/esm/cosmos/auth/v1beta1/auth.js +445 -0
- package/esm/cosmos/auth/v1beta1/genesis.js +95 -0
- package/esm/cosmos/auth/v1beta1/query.js +1555 -0
- package/esm/cosmos/auth/v1beta1/query.rpc.func.js +82 -0
- package/esm/cosmos/auth/v1beta1/query.rpc.react.js +42 -0
- package/esm/cosmos/auth/v1beta1/tx.js +157 -0
- package/esm/cosmos/auth/v1beta1/tx.registry.js +2 -0
- package/esm/cosmos/auth/v1beta1/tx.rpc.func.js +10 -0
- package/esm/cosmos/auth/v1beta1/tx.rpc.react.js +5 -0
- package/esm/cosmos/authz/module/v1/module.js +65 -0
- package/esm/cosmos/authz/v1beta1/authz.js +387 -0
- package/esm/cosmos/authz/v1beta1/event.js +203 -0
- package/esm/cosmos/authz/v1beta1/genesis.js +84 -0
- package/esm/cosmos/authz/v1beta1/query.js +585 -0
- package/esm/cosmos/authz/v1beta1/query.rpc.func.js +26 -0
- package/esm/cosmos/authz/v1beta1/query.rpc.react.js +14 -0
- package/esm/cosmos/authz/v1beta1/tx.js +509 -0
- package/esm/cosmos/authz/v1beta1/tx.registry.js +2 -0
- package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +24 -0
- package/esm/cosmos/authz/v1beta1/tx.rpc.react.js +11 -0
- package/esm/cosmos/autocli/v1/options.js +839 -0
- package/esm/cosmos/autocli/v1/query.js +236 -0
- package/esm/cosmos/autocli/v1/query.rpc.func.js +10 -0
- package/esm/cosmos/autocli/v1/query.rpc.react.js +6 -0
- package/esm/cosmos/bank/module/v1/module.js +108 -0
- package/esm/cosmos/bank/v1beta1/authz.js +102 -0
- package/esm/cosmos/bank/v1beta1/bank.js +728 -0
- package/esm/cosmos/bank/v1beta1/genesis.js +240 -0
- package/esm/cosmos/bank/v1beta1/query.js +2335 -0
- package/esm/cosmos/bank/v1beta1/query.rpc.func.js +106 -0
- package/esm/cosmos/bank/v1beta1/query.rpc.react.js +54 -0
- package/esm/cosmos/bank/v1beta1/tx.js +663 -0
- package/esm/cosmos/bank/v1beta1/tx.registry.js +2 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +31 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.react.js +14 -0
- package/esm/cosmos/base/abci/v1beta1/abci.js +1291 -0
- package/esm/cosmos/base/grpc/v2/service.js +391 -0
- package/esm/cosmos/base/grpc/v2/service.rpc.func.js +18 -0
- package/esm/cosmos/base/grpc/v2/service.rpc.react.js +10 -0
- package/esm/cosmos/base/node/v1beta1/query.js +369 -0
- package/esm/cosmos/base/node/v1beta1/query.rpc.func.js +18 -0
- package/esm/cosmos/base/node/v1beta1/query.rpc.react.js +10 -0
- package/esm/cosmos/base/query/v1beta1/pagination.js +216 -0
- package/esm/cosmos/base/reflection/v1beta1/reflection.js +302 -0
- package/esm/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +18 -0
- package/esm/cosmos/base/reflection/v1beta1/reflection.rpc.react.js +10 -0
- package/esm/cosmos/base/reflection/v2alpha1/reflection.js +2161 -0
- package/esm/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +50 -0
- package/esm/cosmos/base/reflection/v2alpha1/reflection.rpc.react.js +26 -0
- package/esm/cosmos/base/tendermint/v1beta1/query.js +1891 -0
- package/esm/cosmos/base/tendermint/v1beta1/query.rpc.func.js +58 -0
- package/esm/cosmos/base/tendermint/v1beta1/query.rpc.react.js +30 -0
- package/esm/cosmos/base/tendermint/v1beta1/types.js +360 -0
- package/esm/cosmos/base/v1beta1/coin.js +334 -0
- package/esm/cosmos/circuit/module/v1/module.js +80 -0
- package/esm/cosmos/circuit/v1/query.js +477 -0
- package/esm/cosmos/circuit/v1/query.rpc.func.js +36 -0
- package/esm/cosmos/circuit/v1/tx.js +525 -0
- package/esm/cosmos/circuit/v1/tx.registry.js +64 -0
- package/esm/cosmos/circuit/v1/tx.rpc.func.js +31 -0
- package/esm/cosmos/circuit/v1/types.js +345 -0
- package/esm/cosmos/consensus/module/v1/module.js +78 -0
- package/esm/cosmos/consensus/v1/query.js +145 -0
- package/esm/cosmos/consensus/v1/query.rpc.func.js +10 -0
- package/esm/cosmos/consensus/v1/query.rpc.react.js +6 -0
- package/esm/cosmos/consensus/v1/tx.js +196 -0
- package/esm/cosmos/consensus/v1/tx.registry.js +2 -0
- package/esm/cosmos/consensus/v1/tx.rpc.func.js +10 -0
- package/esm/cosmos/consensus/v1/tx.rpc.react.js +5 -0
- package/esm/cosmos/crisis/module/v1/module.js +92 -0
- package/esm/cosmos/crisis/v1beta1/genesis.js +81 -0
- package/esm/cosmos/crisis/v1beta1/tx.js +325 -0
- package/esm/cosmos/crisis/v1beta1/tx.registry.js +46 -0
- package/esm/cosmos/crisis/v1beta1/tx.rpc.func.js +22 -0
- package/esm/cosmos/crypto/ed25519/keys.js +159 -0
- package/esm/cosmos/crypto/hd/v1/hd.js +128 -0
- package/esm/cosmos/crypto/keyring/v1/record.js +428 -0
- package/esm/cosmos/crypto/multisig/keys.js +96 -0
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +171 -0
- package/esm/cosmos/crypto/secp256k1/keys.js +159 -0
- package/esm/cosmos/crypto/secp256r1/keys.js +159 -0
- package/esm/cosmos/distribution/module/v1/module.js +90 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +1165 -0
- package/esm/cosmos/distribution/v1beta1/genesis.js +905 -0
- package/esm/cosmos/distribution/v1beta1/query.js +1658 -0
- package/esm/cosmos/distribution/v1beta1/query.rpc.func.js +82 -0
- package/esm/cosmos/distribution/v1beta1/query.rpc.react.js +42 -0
- package/esm/cosmos/distribution/v1beta1/tx.js +1139 -0
- package/esm/cosmos/distribution/v1beta1/tx.registry.js +2 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +52 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.react.js +23 -0
- package/esm/cosmos/evidence/module/v1/module.js +65 -0
- package/esm/cosmos/evidence/v1beta1/evidence.js +116 -0
- package/esm/cosmos/evidence/v1beta1/genesis.js +82 -0
- package/esm/cosmos/evidence/v1beta1/query.js +343 -0
- package/esm/cosmos/evidence/v1beta1/query.rpc.func.js +18 -0
- package/esm/cosmos/evidence/v1beta1/query.rpc.react.js +10 -0
- package/esm/cosmos/evidence/v1beta1/tx.js +170 -0
- package/esm/cosmos/evidence/v1beta1/tx.registry.js +2 -0
- package/esm/cosmos/evidence/v1beta1/tx.rpc.func.js +10 -0
- package/esm/cosmos/evidence/v1beta1/tx.rpc.react.js +5 -0
- package/esm/cosmos/feegrant/module/v1/module.js +65 -0
- package/esm/cosmos/feegrant/v1beta1/feegrant.js +442 -0
- package/esm/cosmos/feegrant/v1beta1/genesis.js +84 -0
- package/esm/cosmos/feegrant/v1beta1/query.js +543 -0
- package/esm/cosmos/feegrant/v1beta1/query.rpc.func.js +26 -0
- package/esm/cosmos/feegrant/v1beta1/query.rpc.react.js +14 -0
- package/esm/cosmos/feegrant/v1beta1/tx.js +467 -0
- package/esm/cosmos/feegrant/v1beta1/tx.registry.js +2 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +24 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.react.js +11 -0
- package/esm/cosmos/genutil/module/v1/module.js +67 -0
- package/esm/cosmos/genutil/v1beta1/genesis.js +84 -0
- package/esm/cosmos/gov/module/v1/module.js +90 -0
- package/esm/cosmos/gov/v1/genesis.js +192 -0
- package/esm/cosmos/gov/v1/gov.js +1357 -0
- package/esm/cosmos/gov/v1/query.js +1570 -0
- package/esm/cosmos/gov/v1/query.rpc.func.js +74 -0
- package/esm/cosmos/gov/v1/query.rpc.react.js +38 -0
- package/esm/cosmos/gov/v1/tx.js +1295 -0
- package/esm/cosmos/gov/v1/tx.registry.js +2 -0
- package/esm/cosmos/gov/v1/tx.rpc.func.js +52 -0
- package/esm/cosmos/gov/v1/tx.rpc.react.js +23 -0
- package/esm/cosmos/gov/v1beta1/genesis.js +167 -0
- package/esm/cosmos/gov/v1beta1/gov.js +1136 -0
- package/esm/cosmos/gov/v1beta1/query.js +1416 -0
- package/esm/cosmos/gov/v1beta1/query.rpc.func.js +66 -0
- package/esm/cosmos/gov/v1beta1/query.rpc.react.js +34 -0
- package/esm/cosmos/gov/v1beta1/tx.js +719 -0
- package/esm/cosmos/gov/v1beta1/tx.registry.js +2 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +31 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.react.js +14 -0
- package/esm/cosmos/group/module/v1/module.js +93 -0
- package/esm/cosmos/group/v1/events.js +844 -0
- package/esm/cosmos/group/v1/genesis.js +180 -0
- package/esm/cosmos/group/v1/query.js +2431 -0
- package/esm/cosmos/group/v1/query.rpc.func.js +157 -0
- package/esm/cosmos/group/v1/tx.js +2562 -0
- package/esm/cosmos/group/v1/tx.registry.js +262 -0
- package/esm/cosmos/group/v1/tx.rpc.func.js +130 -0
- package/esm/cosmos/group/v1/types.js +1533 -0
- package/esm/cosmos/ics23/v1/proofs.js +1612 -0
- package/esm/cosmos/mint/module/v1/module.js +90 -0
- package/esm/cosmos/mint/v1beta1/genesis.js +94 -0
- package/esm/cosmos/mint/v1beta1/mint.js +228 -0
- package/esm/cosmos/mint/v1beta1/query.js +428 -0
- package/esm/cosmos/mint/v1beta1/query.rpc.func.js +26 -0
- package/esm/cosmos/mint/v1beta1/query.rpc.react.js +14 -0
- package/esm/cosmos/mint/v1beta1/tx.js +157 -0
- package/esm/cosmos/mint/v1beta1/tx.registry.js +2 -0
- package/esm/cosmos/mint/v1beta1/tx.rpc.func.js +10 -0
- package/esm/cosmos/mint/v1beta1/tx.rpc.react.js +5 -0
- package/esm/cosmos/msg/textual/v1/textual.js +1 -0
- package/esm/cosmos/msg/v1/msg.js +1 -0
- package/esm/cosmos/nft/module/v1/module.js +67 -0
- package/esm/cosmos/nft/v1beta1/event.js +320 -0
- package/esm/cosmos/nft/v1beta1/genesis.js +192 -0
- package/esm/cosmos/nft/v1beta1/nft.js +279 -0
- package/esm/cosmos/nft/v1beta1/query.js +1186 -0
- package/esm/cosmos/nft/v1beta1/query.rpc.func.js +80 -0
- package/esm/cosmos/nft/v1beta1/tx.js +181 -0
- package/esm/cosmos/nft/v1beta1/tx.registry.js +28 -0
- package/esm/cosmos/nft/v1beta1/tx.rpc.func.js +13 -0
- package/esm/cosmos/orm/module/v1alpha1/module.js +67 -0
- package/esm/cosmos/orm/query/v1alpha1/query.js +748 -0
- package/esm/cosmos/orm/query/v1alpha1/query.rpc.func.js +25 -0
- package/esm/cosmos/orm/v1/orm.js +377 -0
- package/esm/cosmos/orm/v1alpha1/schema.js +253 -0
- package/esm/cosmos/params/module/v1/module.js +65 -0
- package/esm/cosmos/params/v1beta1/params.js +211 -0
- package/esm/cosmos/params/v1beta1/query.js +408 -0
- package/esm/cosmos/params/v1beta1/query.rpc.func.js +18 -0
- package/esm/cosmos/params/v1beta1/query.rpc.react.js +10 -0
- package/esm/cosmos/query/v1/query.js +1 -0
- package/esm/cosmos/reflection/v1/reflection.js +149 -0
- package/esm/cosmos/reflection/v1/reflection.rpc.func.js +14 -0
- package/esm/cosmos/slashing/module/v1/module.js +78 -0
- package/esm/cosmos/slashing/v1beta1/genesis.js +387 -0
- package/esm/cosmos/slashing/v1beta1/query.js +476 -0
- package/esm/cosmos/slashing/v1beta1/query.rpc.func.js +26 -0
- package/esm/cosmos/slashing/v1beta1/query.rpc.react.js +14 -0
- package/esm/cosmos/slashing/v1beta1/slashing.js +266 -0
- package/esm/cosmos/slashing/v1beta1/tx.js +298 -0
- package/esm/cosmos/slashing/v1beta1/tx.registry.js +2 -0
- package/esm/cosmos/slashing/v1beta1/tx.rpc.func.js +17 -0
- package/esm/cosmos/slashing/v1beta1/tx.rpc.react.js +8 -0
- package/esm/cosmos/staking/module/v1/module.js +117 -0
- package/esm/cosmos/staking/v1beta1/authz.js +262 -0
- package/esm/cosmos/staking/v1beta1/genesis.js +275 -0
- package/esm/cosmos/staking/v1beta1/query.js +2431 -0
- package/esm/cosmos/staking/v1beta1/query.rpc.func.js +114 -0
- package/esm/cosmos/staking/v1beta1/query.rpc.react.js +58 -0
- package/esm/cosmos/staking/v1beta1/staking.js +2370 -0
- package/esm/cosmos/staking/v1beta1/tx.js +1290 -0
- package/esm/cosmos/staking/v1beta1/tx.registry.js +2 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +52 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.react.js +23 -0
- package/esm/cosmos/store/internal/kv/v1beta1/kv.js +174 -0
- package/esm/cosmos/store/snapshots/v1/snapshot.js +684 -0
- package/esm/cosmos/store/snapshots/v2/snapshot.js +684 -0
- package/esm/cosmos/store/streaming/abci/grpc.js +329 -0
- package/esm/cosmos/store/v1beta1/commit_info.js +289 -0
- package/esm/cosmos/store/v1beta1/listening.js +220 -0
- package/esm/cosmos/streaming/v1/grpc.js +823 -0
- package/esm/cosmos/tx/config/v1/config.js +90 -0
- package/esm/cosmos/tx/signing/v1beta1/signing.js +569 -0
- package/esm/cosmos/tx/v1beta1/service.js +1730 -0
- package/esm/cosmos/tx/v1beta1/service.rpc.func.js +74 -0
- package/esm/cosmos/tx/v1beta1/service.rpc.react.js +38 -0
- package/esm/cosmos/tx/v1beta1/tx.js +1404 -0
- package/esm/cosmos/upgrade/module/v1/module.js +78 -0
- package/esm/cosmos/upgrade/v1beta1/query.js +754 -0
- package/esm/cosmos/upgrade/v1beta1/query.rpc.func.js +42 -0
- package/esm/cosmos/upgrade/v1beta1/query.rpc.react.js +22 -0
- package/esm/cosmos/upgrade/v1beta1/tx.js +298 -0
- package/esm/cosmos/upgrade/v1beta1/tx.registry.js +2 -0
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.func.js +17 -0
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.react.js +8 -0
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +416 -0
- package/esm/cosmos/validate/module/v1/module.js +67 -0
- package/esm/cosmos/vesting/module/v1/module.js +67 -0
- package/esm/cosmos/vesting/v1beta1/tx.js +550 -0
- package/esm/cosmos/vesting/v1beta1/tx.registry.js +64 -0
- package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +31 -0
- package/esm/cosmos/vesting/v1beta1/vesting.js +583 -0
- package/esm/cosmos_proto/cosmos.js +228 -0
- package/esm/cosmwasm/wasm/v1/authz.js +948 -0
- package/esm/cosmwasm/wasm/v1/genesis.js +457 -0
- package/esm/cosmwasm/wasm/v1/ibc.js +333 -0
- package/esm/cosmwasm/wasm/v1/proposal_legacy.js +1813 -0
- package/esm/cosmwasm/wasm/v1/query.js +2220 -0
- package/esm/cosmwasm/wasm/v1/query.rpc.func.js +98 -0
- package/esm/cosmwasm/wasm/v1/query.rpc.react.js +50 -0
- package/esm/cosmwasm/wasm/v1/tx.js +3215 -0
- package/esm/cosmwasm/wasm/v1/tx.registry.js +2 -0
- package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +122 -0
- package/esm/cosmwasm/wasm/v1/tx.rpc.react.js +53 -0
- package/esm/cosmwasm/wasm/v1/types.js +908 -0
- package/esm/ethermint/crypto/v1/ethsecp256k1/keys.js +142 -0
- package/esm/ethermint/evm/v1/events.js +380 -0
- package/esm/ethermint/evm/v1/evm.js +1187 -0
- package/esm/ethermint/evm/v1/genesis.js +189 -0
- package/esm/ethermint/evm/v1/query.js +1982 -0
- package/esm/ethermint/evm/v1/query.rpc.func.js +99 -0
- package/esm/ethermint/evm/v1/query.rpc.react.js +50 -0
- package/esm/ethermint/evm/v1/tx.js +1018 -0
- package/esm/ethermint/evm/v1/tx.registry.js +2 -0
- package/esm/ethermint/evm/v1/tx.rpc.func.js +17 -0
- package/esm/ethermint/evm/v1/tx.rpc.react.js +8 -0
- package/esm/ethermint/feemarket/v1/events.js +153 -0
- package/esm/ethermint/feemarket/v1/feemarket.js +151 -0
- package/esm/ethermint/feemarket/v1/genesis.js +86 -0
- package/esm/ethermint/feemarket/v1/query.js +385 -0
- package/esm/ethermint/feemarket/v1/query.rpc.func.js +26 -0
- package/esm/ethermint/feemarket/v1/query.rpc.react.js +14 -0
- package/esm/ethermint/feemarket/v1/tx.js +150 -0
- package/esm/ethermint/feemarket/v1/tx.registry.js +2 -0
- package/esm/ethermint/feemarket/v1/tx.rpc.func.js +10 -0
- package/esm/ethermint/feemarket/v1/tx.rpc.react.js +5 -0
- package/esm/ethermint/types/v1/account.js +88 -0
- package/esm/ethermint/types/v1/dynamic_fee.js +71 -0
- package/esm/ethermint/types/v1/indexer.js +143 -0
- package/esm/ethermint/types/v1/web3.js +96 -0
- package/esm/extern.js +30 -0
- package/esm/gogoproto/gogo.js +1 -0
- package/esm/google/api/annotations.js +1 -0
- package/esm/google/api/http.js +354 -0
- package/esm/google/protobuf/any.js +79 -0
- package/esm/google/protobuf/descriptor.js +5136 -0
- package/esm/google/protobuf/duration.js +77 -0
- package/esm/google/protobuf/timestamp.js +74 -0
- package/esm/helper-func-types.js +60 -0
- package/esm/helpers.js +128 -0
- package/esm/ibc/applications/fee/v1/ack.js +103 -0
- package/esm/ibc/applications/fee/v1/fee.js +398 -0
- package/esm/ibc/applications/fee/v1/genesis.js +531 -0
- package/esm/ibc/applications/fee/v1/metadata.js +90 -0
- package/esm/ibc/applications/fee/v1/query.js +1739 -0
- package/esm/ibc/applications/fee/v1/query.rpc.func.js +82 -0
- package/esm/ibc/applications/fee/v1/query.rpc.react.js +42 -0
- package/esm/ibc/applications/fee/v1/tx.js +707 -0
- package/esm/ibc/applications/fee/v1/tx.registry.js +2 -0
- package/esm/ibc/applications/fee/v1/tx.rpc.func.js +31 -0
- package/esm/ibc/applications/fee/v1/tx.rpc.react.js +14 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +78 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +311 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +18 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.js +10 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +553 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +2 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +24 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.js +11 -0
- package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +558 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/host.js +183 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.js +145 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +10 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.rpc.react.js +6 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +344 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.registry.js +2 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +17 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.js +8 -0
- package/esm/ibc/applications/interchain_accounts/v1/account.js +96 -0
- package/esm/ibc/applications/interchain_accounts/v1/metadata.js +138 -0
- package/esm/ibc/applications/interchain_accounts/v1/packet.js +222 -0
- package/esm/ibc/applications/transfer/v1/authz.js +223 -0
- package/esm/ibc/applications/transfer/v1/genesis.js +126 -0
- package/esm/ibc/applications/transfer/v1/query.js +953 -0
- package/esm/ibc/applications/transfer/v1/query.rpc.func.js +50 -0
- package/esm/ibc/applications/transfer/v1/query.rpc.react.js +26 -0
- package/esm/ibc/applications/transfer/v1/transfer.js +179 -0
- package/esm/ibc/applications/transfer/v1/tx.js +399 -0
- package/esm/ibc/applications/transfer/v1/tx.registry.js +2 -0
- package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +17 -0
- package/esm/ibc/applications/transfer/v1/tx.rpc.react.js +8 -0
- package/esm/ibc/applications/transfer/v2/packet.js +126 -0
- package/esm/ibc/core/channel/v1/channel.js +1160 -0
- package/esm/ibc/core/channel/v1/genesis.js +302 -0
- package/esm/ibc/core/channel/v1/query.js +3415 -0
- package/esm/ibc/core/channel/v1/query.rpc.func.js +138 -0
- package/esm/ibc/core/channel/v1/query.rpc.react.js +70 -0
- package/esm/ibc/core/channel/v1/tx.js +4031 -0
- package/esm/ibc/core/channel/v1/tx.registry.js +2 -0
- package/esm/ibc/core/channel/v1/tx.rpc.func.js +136 -0
- package/esm/ibc/core/channel/v1/tx.rpc.react.js +59 -0
- package/esm/ibc/core/channel/v1/upgrade.js +300 -0
- package/esm/ibc/core/client/v1/client.js +673 -0
- package/esm/ibc/core/client/v1/genesis.js +337 -0
- package/esm/ibc/core/client/v1/query.js +1756 -0
- package/esm/ibc/core/client/v1/query.rpc.func.js +82 -0
- package/esm/ibc/core/client/v1/query.rpc.react.js +42 -0
- package/esm/ibc/core/client/v1/tx.js +1186 -0
- package/esm/ibc/core/client/v1/tx.registry.js +2 -0
- package/esm/ibc/core/client/v1/tx.rpc.func.js +52 -0
- package/esm/ibc/core/client/v1/tx.rpc.react.js +23 -0
- package/esm/ibc/core/commitment/v1/commitment.js +319 -0
- package/esm/ibc/core/connection/v1/connection.js +776 -0
- package/esm/ibc/core/connection/v1/genesis.js +125 -0
- package/esm/ibc/core/connection/v1/query.js +1097 -0
- package/esm/ibc/core/connection/v1/query.rpc.func.js +50 -0
- package/esm/ibc/core/connection/v1/query.rpc.react.js +26 -0
- package/esm/ibc/core/connection/v1/tx.js +1086 -0
- package/esm/ibc/core/connection/v1/tx.registry.js +2 -0
- package/esm/ibc/core/connection/v1/tx.rpc.func.js +38 -0
- package/esm/ibc/core/connection/v1/tx.rpc.react.js +17 -0
- package/esm/ibc/core/types/v1/genesis.js +109 -0
- package/esm/ibc/lightclients/localhost/v2/localhost.js +81 -0
- package/esm/ibc/lightclients/solomachine/v2/solomachine.js +1675 -0
- package/esm/ibc/lightclients/solomachine/v3/solomachine.js +839 -0
- package/esm/ibc/lightclients/tendermint/v1/tendermint.js +628 -0
- package/esm/ibc/lightclients/wasm/v1/genesis.js +161 -0
- package/esm/ibc/lightclients/wasm/v1/query.js +330 -0
- package/esm/ibc/lightclients/wasm/v1/query.rpc.func.js +18 -0
- package/esm/ibc/lightclients/wasm/v1/query.rpc.react.js +10 -0
- package/esm/ibc/lightclients/wasm/v1/tx.js +498 -0
- package/esm/ibc/lightclients/wasm/v1/tx.registry.js +2 -0
- package/esm/ibc/lightclients/wasm/v1/tx.rpc.func.js +24 -0
- package/esm/ibc/lightclients/wasm/v1/tx.rpc.react.js +11 -0
- package/esm/ibc/lightclients/wasm/v1/wasm.js +340 -0
- package/esm/react-query.js +92 -0
- package/esm/registry.js +154 -0
- package/esm/tendermint/abci/types.js +5300 -0
- package/esm/tendermint/crypto/keys.js +84 -0
- package/esm/tendermint/crypto/proof.js +458 -0
- package/esm/tendermint/p2p/types.js +429 -0
- package/esm/tendermint/types/block.js +114 -0
- package/esm/tendermint/types/evidence.js +409 -0
- package/esm/tendermint/types/params.js +597 -0
- package/esm/tendermint/types/types.js +1776 -0
- package/esm/tendermint/types/validator.js +342 -0
- package/esm/tendermint/version/types.js +165 -0
- package/esm/types.js +6 -0
- package/esm/utf8.js +136 -0
- package/esm/varint.js +407 -0
- package/esm/xpla/reward/v1beta1/genesis.js +74 -0
- package/esm/xpla/reward/v1beta1/query.js +264 -0
- package/esm/xpla/reward/v1beta1/query.rpc.func.js +18 -0
- package/esm/xpla/reward/v1beta1/query.rpc.react.js +10 -0
- package/esm/xpla/reward/v1beta1/reward.js +127 -0
- package/esm/xpla/reward/v1beta1/tx.js +302 -0
- package/esm/xpla/reward/v1beta1/tx.registry.js +2 -0
- package/esm/xpla/reward/v1beta1/tx.rpc.func.js +17 -0
- package/esm/xpla/reward/v1beta1/tx.rpc.react.js +8 -0
- package/esm/xpla/volunteer/v1beta1/genesis.js +77 -0
- package/esm/xpla/volunteer/v1beta1/proposal.js +534 -0
- package/esm/xpla/volunteer/v1beta1/query.js +131 -0
- package/esm/xpla/volunteer/v1beta1/query.rpc.func.js +10 -0
- package/esm/xpla/volunteer/v1beta1/query.rpc.react.js +6 -0
- package/esm/xpla/volunteer/v1beta1/tx.js +348 -0
- package/esm/xpla/volunteer/v1beta1/tx.registry.js +2 -0
- package/esm/xpla/volunteer/v1beta1/tx.rpc.func.js +17 -0
- package/esm/xpla/volunteer/v1beta1/tx.rpc.react.js +8 -0
- package/esm/xpla/volunteer/v1beta1/volunteervalidator.js +83 -0
- package/ethermint/crypto/v1/ethsecp256k1/keys.d.ts +82 -0
- package/ethermint/crypto/v1/ethsecp256k1/keys.js +145 -0
- package/ethermint/evm/v1/events.d.ts +166 -0
- package/ethermint/evm/v1/events.js +383 -0
- package/ethermint/evm/v1/evm.d.ts +538 -0
- package/ethermint/evm/v1/evm.js +1190 -0
- package/ethermint/evm/v1/genesis.d.ts +89 -0
- package/ethermint/evm/v1/genesis.js +192 -0
- package/ethermint/evm/v1/query.d.ts +937 -0
- package/ethermint/evm/v1/query.js +1985 -0
- package/ethermint/evm/v1/query.rpc.func.d.ts +15 -0
- package/ethermint/evm/v1/query.rpc.func.js +114 -0
- package/ethermint/evm/v1/query.rpc.react.d.ts +14 -0
- package/ethermint/evm/v1/query.rpc.react.js +53 -0
- package/ethermint/evm/v1/tx.d.ts +460 -0
- package/ethermint/evm/v1/tx.js +1021 -0
- package/ethermint/evm/v1/tx.registry.d.ts +2 -0
- package/ethermint/evm/v1/tx.registry.js +5 -0
- package/ethermint/evm/v1/tx.rpc.func.d.ts +4 -0
- package/ethermint/evm/v1/tx.rpc.func.js +22 -0
- package/ethermint/evm/v1/tx.rpc.react.d.ts +3 -0
- package/ethermint/evm/v1/tx.rpc.react.js +11 -0
- package/ethermint/feemarket/v1/events.d.ts +72 -0
- package/ethermint/feemarket/v1/events.js +156 -0
- package/ethermint/feemarket/v1/feemarket.d.ts +79 -0
- package/ethermint/feemarket/v1/feemarket.js +154 -0
- package/ethermint/feemarket/v1/genesis.d.ts +46 -0
- package/ethermint/feemarket/v1/genesis.js +89 -0
- package/ethermint/feemarket/v1/query.d.ts +201 -0
- package/ethermint/feemarket/v1/query.js +388 -0
- package/ethermint/feemarket/v1/query.rpc.func.d.ts +5 -0
- package/ethermint/feemarket/v1/query.rpc.func.js +32 -0
- package/ethermint/feemarket/v1/query.rpc.react.d.ts +4 -0
- package/ethermint/feemarket/v1/query.rpc.react.js +17 -0
- package/ethermint/feemarket/v1/tx.d.ts +83 -0
- package/ethermint/feemarket/v1/tx.js +153 -0
- package/ethermint/feemarket/v1/tx.registry.d.ts +2 -0
- package/ethermint/feemarket/v1/tx.registry.js +5 -0
- package/ethermint/feemarket/v1/tx.rpc.func.d.ts +3 -0
- package/ethermint/feemarket/v1/tx.rpc.func.js +14 -0
- package/ethermint/feemarket/v1/tx.rpc.react.d.ts +2 -0
- package/ethermint/feemarket/v1/tx.rpc.react.js +8 -0
- package/ethermint/types/v1/account.d.ts +46 -0
- package/ethermint/types/v1/account.js +91 -0
- package/ethermint/types/v1/dynamic_fee.d.ts +35 -0
- package/ethermint/types/v1/dynamic_fee.js +74 -0
- package/ethermint/types/v1/indexer.d.ts +77 -0
- package/ethermint/types/v1/indexer.js +146 -0
- package/ethermint/types/v1/web3.d.ts +67 -0
- package/ethermint/types/v1/web3.js +99 -0
- package/extern.d.ts +10 -0
- package/extern.js +36 -0
- package/gogoproto/gogo.d.ts +1 -0
- package/gogoproto/gogo.js +2 -0
- package/google/api/annotations.d.ts +1 -0
- package/google/api/annotations.js +2 -0
- package/google/api/http.d.ts +767 -0
- package/google/api/http.js +357 -0
- package/google/protobuf/any.d.ts +269 -0
- package/google/protobuf/any.js +82 -0
- package/google/protobuf/descriptor.d.ts +2952 -0
- package/google/protobuf/descriptor.js +5175 -0
- package/google/protobuf/duration.d.ts +163 -0
- package/google/protobuf/duration.js +80 -0
- package/google/protobuf/timestamp.d.ts +223 -0
- package/google/protobuf/timestamp.js +77 -0
- package/helper-func-types.d.ts +120 -0
- package/helper-func-types.js +66 -0
- package/helpers.d.ts +82 -0
- package/helpers.js +143 -0
- package/ibc/applications/fee/v1/ack.d.ts +45 -0
- package/ibc/applications/fee/v1/ack.js +106 -0
- package/ibc/applications/fee/v1/fee.d.ts +164 -0
- package/ibc/applications/fee/v1/fee.js +401 -0
- package/ibc/applications/fee/v1/genesis.d.ts +225 -0
- package/ibc/applications/fee/v1/genesis.js +534 -0
- package/ibc/applications/fee/v1/metadata.d.ts +47 -0
- package/ibc/applications/fee/v1/metadata.js +93 -0
- package/ibc/applications/fee/v1/query.d.ts +757 -0
- package/ibc/applications/fee/v1/query.js +1742 -0
- package/ibc/applications/fee/v1/query.rpc.func.d.ts +12 -0
- package/ibc/applications/fee/v1/query.rpc.func.js +95 -0
- package/ibc/applications/fee/v1/query.rpc.react.d.ts +11 -0
- package/ibc/applications/fee/v1/query.rpc.react.js +45 -0
- package/ibc/applications/fee/v1/tx.d.ts +326 -0
- package/ibc/applications/fee/v1/tx.js +710 -0
- package/ibc/applications/fee/v1/tx.registry.d.ts +2 -0
- package/ibc/applications/fee/v1/tx.registry.js +5 -0
- package/ibc/applications/fee/v1/tx.rpc.func.d.ts +6 -0
- package/ibc/applications/fee/v1/tx.rpc.func.js +38 -0
- package/ibc/applications/fee/v1/tx.rpc.react.d.ts +5 -0
- package/ibc/applications/fee/v1/tx.rpc.react.js +17 -0
- package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +43 -0
- package/ibc/applications/interchain_accounts/controller/v1/controller.js +81 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +137 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.js +314 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.d.ts +4 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +23 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.d.ts +3 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.js +13 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +237 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.js +556 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.registry.d.ts +2 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +5 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.d.ts +5 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +30 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.d.ts +4 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.js +14 -0
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +201 -0
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +561 -0
- package/ibc/applications/interchain_accounts/host/v1/host.d.ts +104 -0
- package/ibc/applications/interchain_accounts/host/v1/host.js +186 -0
- package/ibc/applications/interchain_accounts/host/v1/query.d.ts +69 -0
- package/ibc/applications/interchain_accounts/host/v1/query.js +148 -0
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.d.ts +3 -0
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +14 -0
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.react.d.ts +2 -0
- package/ibc/applications/interchain_accounts/host/v1/query.rpc.react.js +9 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +159 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.js +347 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.registry.d.ts +2 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.registry.js +5 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.d.ts +4 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +22 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.d.ts +3 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.js +11 -0
- package/ibc/applications/interchain_accounts/v1/account.d.ts +38 -0
- package/ibc/applications/interchain_accounts/v1/account.js +99 -0
- package/ibc/applications/interchain_accounts/v1/metadata.d.ts +69 -0
- package/ibc/applications/interchain_accounts/v1/metadata.js +141 -0
- package/ibc/applications/interchain_accounts/v1/packet.d.ts +87 -0
- package/ibc/applications/interchain_accounts/v1/packet.js +227 -0
- package/ibc/applications/transfer/v1/authz.d.ts +101 -0
- package/ibc/applications/transfer/v1/authz.js +226 -0
- package/ibc/applications/transfer/v1/genesis.d.ts +51 -0
- package/ibc/applications/transfer/v1/genesis.js +129 -0
- package/ibc/applications/transfer/v1/query.d.ts +461 -0
- package/ibc/applications/transfer/v1/query.js +956 -0
- package/ibc/applications/transfer/v1/query.rpc.func.d.ts +8 -0
- package/ibc/applications/transfer/v1/query.rpc.func.js +59 -0
- package/ibc/applications/transfer/v1/query.rpc.react.d.ts +7 -0
- package/ibc/applications/transfer/v1/query.rpc.react.js +29 -0
- package/ibc/applications/transfer/v1/transfer.d.ts +114 -0
- package/ibc/applications/transfer/v1/transfer.js +182 -0
- package/ibc/applications/transfer/v1/tx.d.ts +206 -0
- package/ibc/applications/transfer/v1/tx.js +402 -0
- package/ibc/applications/transfer/v1/tx.registry.d.ts +2 -0
- package/ibc/applications/transfer/v1/tx.registry.js +5 -0
- package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +4 -0
- package/ibc/applications/transfer/v1/tx.rpc.func.js +22 -0
- package/ibc/applications/transfer/v1/tx.rpc.react.d.ts +3 -0
- package/ibc/applications/transfer/v1/tx.rpc.react.js +11 -0
- package/ibc/applications/transfer/v2/packet.d.ts +61 -0
- package/ibc/applications/transfer/v2/packet.js +129 -0
- package/ibc/core/channel/v1/channel.d.ts +556 -0
- package/ibc/core/channel/v1/channel.js +1167 -0
- package/ibc/core/channel/v1/genesis.d.ts +97 -0
- package/ibc/core/channel/v1/genesis.js +305 -0
- package/ibc/core/channel/v1/query.d.ts +1559 -0
- package/ibc/core/channel/v1/query.js +3418 -0
- package/ibc/core/channel/v1/query.rpc.func.d.ts +19 -0
- package/ibc/core/channel/v1/query.rpc.func.js +158 -0
- package/ibc/core/channel/v1/query.rpc.react.d.ts +18 -0
- package/ibc/core/channel/v1/query.rpc.react.js +73 -0
- package/ibc/core/channel/v1/tx.d.ts +1528 -0
- package/ibc/core/channel/v1/tx.js +4036 -0
- package/ibc/core/channel/v1/tx.registry.d.ts +2 -0
- package/ibc/core/channel/v1/tx.registry.js +5 -0
- package/ibc/core/channel/v1/tx.rpc.func.d.ts +21 -0
- package/ibc/core/channel/v1/tx.rpc.func.js +158 -0
- package/ibc/core/channel/v1/tx.rpc.react.d.ts +20 -0
- package/ibc/core/channel/v1/tx.rpc.react.js +62 -0
- package/ibc/core/channel/v1/upgrade.d.ts +142 -0
- package/ibc/core/channel/v1/upgrade.js +303 -0
- package/ibc/core/client/v1/client.d.ts +379 -0
- package/ibc/core/client/v1/client.js +676 -0
- package/ibc/core/client/v1/genesis.d.ts +150 -0
- package/ibc/core/client/v1/genesis.js +340 -0
- package/ibc/core/client/v1/query.d.ts +882 -0
- package/ibc/core/client/v1/query.js +1759 -0
- package/ibc/core/client/v1/query.rpc.func.d.ts +12 -0
- package/ibc/core/client/v1/query.rpc.func.js +95 -0
- package/ibc/core/client/v1/query.rpc.react.d.ts +11 -0
- package/ibc/core/client/v1/query.rpc.react.js +45 -0
- package/ibc/core/client/v1/tx.d.ts +601 -0
- package/ibc/core/client/v1/tx.js +1189 -0
- package/ibc/core/client/v1/tx.registry.d.ts +2 -0
- package/ibc/core/client/v1/tx.registry.js +5 -0
- package/ibc/core/client/v1/tx.rpc.func.d.ts +9 -0
- package/ibc/core/client/v1/tx.rpc.func.js +62 -0
- package/ibc/core/client/v1/tx.rpc.react.d.ts +8 -0
- package/ibc/core/client/v1/tx.rpc.react.js +26 -0
- package/ibc/core/commitment/v1/commitment.d.ts +169 -0
- package/ibc/core/commitment/v1/commitment.js +322 -0
- package/ibc/core/connection/v1/connection.d.ts +383 -0
- package/ibc/core/connection/v1/connection.js +781 -0
- package/ibc/core/connection/v1/genesis.d.ts +44 -0
- package/ibc/core/connection/v1/genesis.js +128 -0
- package/ibc/core/connection/v1/query.d.ts +530 -0
- package/ibc/core/connection/v1/query.js +1100 -0
- package/ibc/core/connection/v1/query.rpc.func.d.ts +8 -0
- package/ibc/core/connection/v1/query.rpc.func.js +59 -0
- package/ibc/core/connection/v1/query.rpc.react.d.ts +7 -0
- package/ibc/core/connection/v1/query.rpc.react.js +29 -0
- package/ibc/core/connection/v1/tx.d.ts +467 -0
- package/ibc/core/connection/v1/tx.js +1089 -0
- package/ibc/core/connection/v1/tx.registry.d.ts +2 -0
- package/ibc/core/connection/v1/tx.registry.js +5 -0
- package/ibc/core/connection/v1/tx.rpc.func.d.ts +7 -0
- package/ibc/core/connection/v1/tx.rpc.func.js +46 -0
- package/ibc/core/connection/v1/tx.rpc.react.d.ts +6 -0
- package/ibc/core/connection/v1/tx.rpc.react.js +20 -0
- package/ibc/core/types/v1/genesis.d.ts +51 -0
- package/ibc/core/types/v1/genesis.js +112 -0
- package/ibc/lightclients/localhost/v2/localhost.d.ts +38 -0
- package/ibc/lightclients/localhost/v2/localhost.js +84 -0
- package/ibc/lightclients/solomachine/v2/solomachine.d.ts +727 -0
- package/ibc/lightclients/solomachine/v2/solomachine.js +1680 -0
- package/ibc/lightclients/solomachine/v3/solomachine.d.ts +365 -0
- package/ibc/lightclients/solomachine/v3/solomachine.js +842 -0
- package/ibc/lightclients/tendermint/v1/tendermint.d.ts +311 -0
- package/ibc/lightclients/tendermint/v1/tendermint.js +631 -0
- package/ibc/lightclients/wasm/v1/genesis.d.ts +72 -0
- package/ibc/lightclients/wasm/v1/genesis.js +164 -0
- package/ibc/lightclients/wasm/v1/query.d.ts +145 -0
- package/ibc/lightclients/wasm/v1/query.js +333 -0
- package/ibc/lightclients/wasm/v1/query.rpc.func.d.ts +4 -0
- package/ibc/lightclients/wasm/v1/query.rpc.func.js +23 -0
- package/ibc/lightclients/wasm/v1/query.rpc.react.d.ts +3 -0
- package/ibc/lightclients/wasm/v1/query.rpc.react.js +13 -0
- package/ibc/lightclients/wasm/v1/tx.d.ts +224 -0
- package/ibc/lightclients/wasm/v1/tx.js +501 -0
- package/ibc/lightclients/wasm/v1/tx.registry.d.ts +2 -0
- package/ibc/lightclients/wasm/v1/tx.registry.js +5 -0
- package/ibc/lightclients/wasm/v1/tx.rpc.func.d.ts +5 -0
- package/ibc/lightclients/wasm/v1/tx.rpc.func.js +30 -0
- package/ibc/lightclients/wasm/v1/tx.rpc.react.d.ts +4 -0
- package/ibc/lightclients/wasm/v1/tx.rpc.react.js +14 -0
- package/ibc/lightclients/wasm/v1/wasm.d.ts +167 -0
- package/ibc/lightclients/wasm/v1/wasm.js +343 -0
- package/package.json +11 -7
- package/react-query.d.ts +48 -0
- package/react-query.js +100 -0
- package/registry.d.ts +33 -0
- package/registry.js +158 -0
- package/tendermint/abci/types.d.ts +1890 -0
- package/tendermint/abci/types.js +5316 -0
- package/tendermint/crypto/keys.d.ts +35 -0
- package/tendermint/crypto/keys.js +87 -0
- package/tendermint/crypto/proof.d.ts +179 -0
- package/tendermint/crypto/proof.js +461 -0
- package/tendermint/p2p/types.d.ts +142 -0
- package/tendermint/p2p/types.js +432 -0
- package/tendermint/types/block.d.ts +39 -0
- package/tendermint/types/block.js +117 -0
- package/tendermint/types/evidence.d.ts +142 -0
- package/tendermint/types/evidence.js +412 -0
- package/tendermint/types/params.d.ts +330 -0
- package/tendermint/types/params.js +600 -0
- package/tendermint/types/types.d.ts +655 -0
- package/tendermint/types/types.js +1781 -0
- package/tendermint/types/validator.d.ts +116 -0
- package/tendermint/types/validator.js +347 -0
- package/tendermint/version/types.d.ts +84 -0
- package/tendermint/version/types.js +168 -0
- package/types.d.ts +119 -0
- package/types.js +7 -0
- package/utf8.d.ts +27 -0
- package/utf8.js +141 -0
- package/varint.d.ts +105 -0
- package/varint.js +426 -0
- package/xpla/reward/v1beta1/genesis.d.ts +36 -0
- package/xpla/reward/v1beta1/genesis.js +77 -0
- package/xpla/reward/v1beta1/query.d.ts +140 -0
- package/xpla/reward/v1beta1/query.js +267 -0
- package/xpla/reward/v1beta1/query.rpc.func.d.ts +4 -0
- package/xpla/reward/v1beta1/query.rpc.func.js +23 -0
- package/xpla/reward/v1beta1/query.rpc.react.d.ts +3 -0
- package/xpla/reward/v1beta1/query.rpc.react.js +13 -0
- package/xpla/reward/v1beta1/reward.d.ts +43 -0
- package/xpla/reward/v1beta1/reward.js +130 -0
- package/xpla/reward/v1beta1/tx.d.ts +162 -0
- package/xpla/reward/v1beta1/tx.js +305 -0
- package/xpla/reward/v1beta1/tx.registry.d.ts +2 -0
- package/xpla/reward/v1beta1/tx.registry.js +5 -0
- package/xpla/reward/v1beta1/tx.rpc.func.d.ts +4 -0
- package/xpla/reward/v1beta1/tx.rpc.func.js +22 -0
- package/xpla/reward/v1beta1/tx.rpc.react.d.ts +3 -0
- package/xpla/reward/v1beta1/tx.rpc.react.js +11 -0
- package/xpla/volunteer/v1beta1/genesis.d.ts +34 -0
- package/xpla/volunteer/v1beta1/genesis.js +80 -0
- package/xpla/volunteer/v1beta1/proposal.d.ts +187 -0
- package/xpla/volunteer/v1beta1/proposal.js +537 -0
- package/xpla/volunteer/v1beta1/query.d.ts +62 -0
- package/xpla/volunteer/v1beta1/query.js +134 -0
- package/xpla/volunteer/v1beta1/query.rpc.func.d.ts +3 -0
- package/xpla/volunteer/v1beta1/query.rpc.func.js +14 -0
- package/xpla/volunteer/v1beta1/query.rpc.react.d.ts +2 -0
- package/xpla/volunteer/v1beta1/query.rpc.react.js +9 -0
- package/xpla/volunteer/v1beta1/tx.d.ts +172 -0
- package/xpla/volunteer/v1beta1/tx.js +351 -0
- package/xpla/volunteer/v1beta1/tx.registry.d.ts +2 -0
- package/xpla/volunteer/v1beta1/tx.registry.js +5 -0
- package/xpla/volunteer/v1beta1/tx.rpc.func.d.ts +4 -0
- package/xpla/volunteer/v1beta1/tx.rpc.func.js +22 -0
- package/xpla/volunteer/v1beta1/tx.rpc.react.d.ts +3 -0
- package/xpla/volunteer/v1beta1/tx.rpc.react.js +11 -0
- package/xpla/volunteer/v1beta1/volunteervalidator.d.ts +39 -0
- package/xpla/volunteer/v1beta1/volunteervalidator.js +86 -0
- package/CHANGELOG.md +0 -8
- package/src/amino/amino.ts +0 -1
- package/src/binary.ts +0 -534
- package/src/cosmos/app/runtime/v1alpha1/module.ts +0 -423
- package/src/cosmos/app/runtime/v2/module.ts +0 -589
- package/src/cosmos/app/v1alpha1/config.ts +0 -422
- package/src/cosmos/app/v1alpha1/module.ts +0 -461
- package/src/cosmos/app/v1alpha1/query.rpc.func.ts +0 -14
- package/src/cosmos/app/v1alpha1/query.ts +0 -177
- package/src/cosmos/auth/module/v1/module.ts +0 -253
- package/src/cosmos/auth/v1beta1/accounts.ts +0 -226
- package/src/cosmos/auth/v1beta1/auth.ts +0 -550
- package/src/cosmos/auth/v1beta1/genesis.ts +0 -119
- package/src/cosmos/auth/v1beta1/query.rpc.func.ts +0 -113
- package/src/cosmos/auth/v1beta1/query.ts +0 -2034
- package/src/cosmos/auth/v1beta1/tx.registry.ts +0 -29
- package/src/cosmos/auth/v1beta1/tx.rpc.func.ts +0 -13
- package/src/cosmos/auth/v1beta1/tx.ts +0 -219
- package/src/cosmos/authz/module/v1/module.ts +0 -80
- package/src/cosmos/authz/v1beta1/authz.ts +0 -481
- package/src/cosmos/authz/v1beta1/event.ts +0 -259
- package/src/cosmos/authz/v1beta1/genesis.ts +0 -100
- package/src/cosmos/authz/v1beta1/query.rpc.func.ts +0 -36
- package/src/cosmos/authz/v1beta1/query.ts +0 -707
- package/src/cosmos/authz/v1beta1/tx.registry.ts +0 -65
- package/src/cosmos/authz/v1beta1/tx.rpc.func.ts +0 -31
- package/src/cosmos/authz/v1beta1/tx.ts +0 -647
- package/src/cosmos/autocli/v1/options.ts +0 -1145
- package/src/cosmos/autocli/v1/query.rpc.func.ts +0 -14
- package/src/cosmos/autocli/v1/query.ts +0 -288
- package/src/cosmos/bank/module/v1/module.ts +0 -153
- package/src/cosmos/bank/v1beta1/authz.ts +0 -138
- package/src/cosmos/bank/v1beta1/bank.ts +0 -974
- package/src/cosmos/bank/v1beta1/genesis.ts +0 -307
- package/src/cosmos/bank/v1beta1/query.rpc.func.ts +0 -146
- package/src/cosmos/bank/v1beta1/query.ts +0 -3027
- package/src/cosmos/bank/v1beta1/tx.registry.ts +0 -83
- package/src/cosmos/bank/v1beta1/tx.rpc.func.ts +0 -40
- package/src/cosmos/bank/v1beta1/tx.ts +0 -861
- package/src/cosmos/base/abci/v1beta1/abci.ts +0 -1698
- package/src/cosmos/base/grpc/v2/service.rpc.func.ts +0 -25
- package/src/cosmos/base/grpc/v2/service.ts +0 -473
- package/src/cosmos/base/node/v1beta1/query.rpc.func.ts +0 -25
- package/src/cosmos/base/node/v1beta1/query.ts +0 -454
- package/src/cosmos/base/query/v1beta1/pagination.ts +0 -361
- package/src/cosmos/base/reflection/v1beta1/reflection.rpc.func.ts +0 -25
- package/src/cosmos/base/reflection/v1beta1/reflection.ts +0 -382
- package/src/cosmos/base/reflection/v2alpha1/reflection.rpc.func.ts +0 -69
- package/src/cosmos/base/reflection/v2alpha1/reflection.ts +0 -2727
- package/src/cosmos/base/tendermint/v1beta1/query.rpc.func.ts +0 -80
- package/src/cosmos/base/tendermint/v1beta1/query.ts +0 -2302
- package/src/cosmos/base/tendermint/v1beta1/types.ts +0 -455
- package/src/cosmos/base/v1beta1/coin.ts +0 -439
- package/src/cosmos/circuit/module/v1/module.ts +0 -99
- package/src/cosmos/circuit/v1/query.rpc.func.ts +0 -36
- package/src/cosmos/circuit/v1/query.ts +0 -574
- package/src/cosmos/circuit/v1/tx.registry.ts +0 -65
- package/src/cosmos/circuit/v1/tx.rpc.func.ts +0 -31
- package/src/cosmos/circuit/v1/tx.ts +0 -676
- package/src/cosmos/circuit/v1/types.ts +0 -413
- package/src/cosmos/consensus/module/v1/module.ts +0 -99
- package/src/cosmos/consensus/v1/query.rpc.func.ts +0 -14
- package/src/cosmos/consensus/v1/query.ts +0 -185
- package/src/cosmos/consensus/v1/tx.registry.ts +0 -29
- package/src/cosmos/consensus/v1/tx.rpc.func.ts +0 -13
- package/src/cosmos/consensus/v1/tx.ts +0 -255
- package/src/cosmos/crisis/module/v1/module.ts +0 -115
- package/src/cosmos/crisis/v1beta1/genesis.ts +0 -106
- package/src/cosmos/crisis/v1beta1/tx.registry.ts +0 -47
- package/src/cosmos/crisis/v1beta1/tx.rpc.func.ts +0 -22
- package/src/cosmos/crisis/v1beta1/tx.ts +0 -416
- package/src/cosmos/crypto/ed25519/keys.ts +0 -209
- package/src/cosmos/crypto/hd/v1/hd.ts +0 -169
- package/src/cosmos/crypto/keyring/v1/record.ts +0 -529
- package/src/cosmos/crypto/multisig/keys.ts +0 -122
- package/src/cosmos/crypto/multisig/v1beta1/multisig.ts +0 -225
- package/src/cosmos/crypto/secp256k1/keys.ts +0 -203
- package/src/cosmos/crypto/secp256r1/keys.ts +0 -201
- package/src/cosmos/distribution/module/v1/module.ts +0 -113
- package/src/cosmos/distribution/v1beta1/distribution.ts +0 -1494
- package/src/cosmos/distribution/v1beta1/genesis.ts +0 -1129
- package/src/cosmos/distribution/v1beta1/query.rpc.func.ts +0 -113
- package/src/cosmos/distribution/v1beta1/query.ts +0 -2126
- package/src/cosmos/distribution/v1beta1/tx.registry.ts +0 -137
- package/src/cosmos/distribution/v1beta1/tx.rpc.func.ts +0 -67
- package/src/cosmos/distribution/v1beta1/tx.ts +0 -1478
- package/src/cosmos/evidence/module/v1/module.ts +0 -80
- package/src/cosmos/evidence/v1beta1/evidence.ts +0 -154
- package/src/cosmos/evidence/v1beta1/genesis.ts +0 -102
- package/src/cosmos/evidence/v1beta1/query.rpc.func.ts +0 -25
- package/src/cosmos/evidence/v1beta1/query.ts +0 -451
- package/src/cosmos/evidence/v1beta1/tx.registry.ts +0 -29
- package/src/cosmos/evidence/v1beta1/tx.rpc.func.ts +0 -13
- package/src/cosmos/evidence/v1beta1/tx.ts +0 -221
- package/src/cosmos/feegrant/module/v1/module.ts +0 -80
- package/src/cosmos/feegrant/v1beta1/feegrant.ts +0 -573
- package/src/cosmos/feegrant/v1beta1/genesis.ts +0 -100
- package/src/cosmos/feegrant/v1beta1/query.rpc.func.ts +0 -36
- package/src/cosmos/feegrant/v1beta1/query.ts +0 -677
- package/src/cosmos/feegrant/v1beta1/tx.registry.ts +0 -65
- package/src/cosmos/feegrant/v1beta1/tx.rpc.func.ts +0 -31
- package/src/cosmos/feegrant/v1beta1/tx.ts +0 -597
- package/src/cosmos/genutil/module/v1/module.ts +0 -80
- package/src/cosmos/genutil/v1beta1/genesis.ts +0 -101
- package/src/cosmos/gov/module/v1/module.ts +0 -121
- package/src/cosmos/gov/v1/genesis.ts +0 -280
- package/src/cosmos/gov/v1/gov.ts +0 -1843
- package/src/cosmos/gov/v1/query.rpc.func.ts +0 -102
- package/src/cosmos/gov/v1/query.ts +0 -1970
- package/src/cosmos/gov/v1/tx.registry.ts +0 -137
- package/src/cosmos/gov/v1/tx.rpc.func.ts +0 -67
- package/src/cosmos/gov/v1/tx.ts +0 -1657
- package/src/cosmos/gov/v1beta1/genesis.ts +0 -202
- package/src/cosmos/gov/v1beta1/gov.ts +0 -1425
- package/src/cosmos/gov/v1beta1/query.rpc.func.ts +0 -91
- package/src/cosmos/gov/v1beta1/query.ts +0 -1749
- package/src/cosmos/gov/v1beta1/tx.registry.ts +0 -83
- package/src/cosmos/gov/v1beta1/tx.rpc.func.ts +0 -40
- package/src/cosmos/gov/v1beta1/tx.ts +0 -881
- package/src/cosmos/group/module/v1/module.ts +0 -128
- package/src/cosmos/group/v1/events.ts +0 -1044
- package/src/cosmos/group/v1/genesis.ts +0 -240
- package/src/cosmos/group/v1/query.rpc.func.ts +0 -157
- package/src/cosmos/group/v1/query.ts +0 -3015
- package/src/cosmos/group/v1/tx.registry.ts +0 -263
- package/src/cosmos/group/v1/tx.rpc.func.ts +0 -130
- package/src/cosmos/group/v1/tx.ts +0 -3207
- package/src/cosmos/group/v1/types.ts +0 -2081
- package/src/cosmos/ics23/v1/proofs.ts +0 -2060
- package/src/cosmos/mint/module/v1/module.ts +0 -113
- package/src/cosmos/mint/v1beta1/genesis.ts +0 -116
- package/src/cosmos/mint/v1beta1/mint.ts +0 -291
- package/src/cosmos/mint/v1beta1/query.rpc.func.ts +0 -36
- package/src/cosmos/mint/v1beta1/query.ts +0 -541
- package/src/cosmos/mint/v1beta1/tx.registry.ts +0 -29
- package/src/cosmos/mint/v1beta1/tx.rpc.func.ts +0 -13
- package/src/cosmos/mint/v1beta1/tx.ts +0 -219
- package/src/cosmos/msg/textual/v1/textual.ts +0 -1
- package/src/cosmos/msg/v1/msg.ts +0 -1
- package/src/cosmos/nft/module/v1/module.ts +0 -80
- package/src/cosmos/nft/v1beta1/event.ts +0 -403
- package/src/cosmos/nft/v1beta1/genesis.ts +0 -234
- package/src/cosmos/nft/v1beta1/nft.ts +0 -356
- package/src/cosmos/nft/v1beta1/query.rpc.func.ts +0 -80
- package/src/cosmos/nft/v1beta1/query.ts +0 -1465
- package/src/cosmos/nft/v1beta1/tx.registry.ts +0 -29
- package/src/cosmos/nft/v1beta1/tx.rpc.func.ts +0 -13
- package/src/cosmos/nft/v1beta1/tx.ts +0 -224
- package/src/cosmos/orm/module/v1alpha1/module.ts +0 -88
- package/src/cosmos/orm/query/v1alpha1/query.rpc.func.ts +0 -25
- package/src/cosmos/orm/query/v1alpha1/query.ts +0 -993
- package/src/cosmos/orm/v1/orm.ts +0 -589
- package/src/cosmos/orm/v1alpha1/schema.ts +0 -325
- package/src/cosmos/params/module/v1/module.ts +0 -80
- package/src/cosmos/params/v1beta1/params.ts +0 -255
- package/src/cosmos/params/v1beta1/query.rpc.func.ts +0 -25
- package/src/cosmos/params/v1beta1/query.ts +0 -525
- package/src/cosmos/query/v1/query.ts +0 -1
- package/src/cosmos/reflection/v1/reflection.rpc.func.ts +0 -14
- package/src/cosmos/reflection/v1/reflection.ts +0 -179
- package/src/cosmos/slashing/module/v1/module.ts +0 -99
- package/src/cosmos/slashing/v1beta1/genesis.ts +0 -492
- package/src/cosmos/slashing/v1beta1/query.rpc.func.ts +0 -36
- package/src/cosmos/slashing/v1beta1/query.ts +0 -598
- package/src/cosmos/slashing/v1beta1/slashing.ts +0 -357
- package/src/cosmos/slashing/v1beta1/tx.registry.ts +0 -47
- package/src/cosmos/slashing/v1beta1/tx.rpc.func.ts +0 -22
- package/src/cosmos/slashing/v1beta1/tx.ts +0 -390
- package/src/cosmos/staking/module/v1/module.ts +0 -157
- package/src/cosmos/staking/v1beta1/authz.ts +0 -323
- package/src/cosmos/staking/v1beta1/genesis.ts +0 -346
- package/src/cosmos/staking/v1beta1/query.rpc.func.ts +0 -157
- package/src/cosmos/staking/v1beta1/query.ts +0 -3073
- package/src/cosmos/staking/v1beta1/staking.ts +0 -3005
- package/src/cosmos/staking/v1beta1/tx.registry.ts +0 -137
- package/src/cosmos/staking/v1beta1/tx.rpc.func.ts +0 -67
- package/src/cosmos/staking/v1beta1/tx.ts +0 -1638
- package/src/cosmos/store/internal/kv/v1beta1/kv.ts +0 -207
- package/src/cosmos/store/snapshots/v1/snapshot.ts +0 -863
- package/src/cosmos/store/snapshots/v2/snapshot.ts +0 -823
- package/src/cosmos/store/streaming/abci/grpc.ts +0 -393
- package/src/cosmos/store/v1beta1/commit_info.ts +0 -362
- package/src/cosmos/store/v1beta1/listening.ts +0 -286
- package/src/cosmos/streaming/v1/grpc.ts +0 -985
- package/src/cosmos/tx/config/v1/config.ts +0 -127
- package/src/cosmos/tx/signing/v1beta1/signing.ts +0 -688
- package/src/cosmos/tx/v1beta1/service.rpc.func.ts +0 -102
- package/src/cosmos/tx/v1beta1/service.ts +0 -2294
- package/src/cosmos/tx/v1beta1/tx.ts +0 -2029
- package/src/cosmos/upgrade/module/v1/module.ts +0 -99
- package/src/cosmos/upgrade/v1beta1/query.rpc.func.ts +0 -58
- package/src/cosmos/upgrade/v1beta1/query.ts +0 -1016
- package/src/cosmos/upgrade/v1beta1/tx.registry.ts +0 -47
- package/src/cosmos/upgrade/v1beta1/tx.rpc.func.ts +0 -22
- package/src/cosmos/upgrade/v1beta1/tx.ts +0 -398
- package/src/cosmos/upgrade/v1beta1/upgrade.ts +0 -591
- package/src/cosmos/validate/module/v1/module.ts +0 -80
- package/src/cosmos/vesting/module/v1/module.ts +0 -80
- package/src/cosmos/vesting/v1beta1/tx.registry.ts +0 -65
- package/src/cosmos/vesting/v1beta1/tx.rpc.func.ts +0 -31
- package/src/cosmos/vesting/v1beta1/tx.ts +0 -698
- package/src/cosmos/vesting/v1beta1/vesting.ts +0 -735
- package/src/cosmos_proto/cosmos.ts +0 -341
- package/src/cosmwasm/wasm/v1/authz.ts +0 -1231
- package/src/cosmwasm/wasm/v1/genesis.ts +0 -532
- package/src/cosmwasm/wasm/v1/ibc.ts +0 -355
- package/src/cosmwasm/wasm/v1/proposal_legacy.ts +0 -2432
- package/src/cosmwasm/wasm/v1/query.rpc.func.ts +0 -124
- package/src/cosmwasm/wasm/v1/query.ts +0 -2560
- package/src/cosmwasm/wasm/v1/tx.registry.ts +0 -317
- package/src/cosmwasm/wasm/v1/tx.rpc.func.ts +0 -157
- package/src/cosmwasm/wasm/v1/tx.ts +0 -4191
- package/src/cosmwasm/wasm/v1/types.ts +0 -1120
- package/src/ethermint/crypto/v1/ethsecp256k1/keys.ts +0 -193
- package/src/ethermint/evm/v1/events.ts +0 -485
- package/src/ethermint/evm/v1/evm.ts +0 -1590
- package/src/ethermint/evm/v1/genesis.ts +0 -240
- package/src/ethermint/evm/v1/query.rpc.func.ts +0 -136
- package/src/ethermint/evm/v1/query.ts +0 -2535
- package/src/ethermint/evm/v1/tx.registry.ts +0 -47
- package/src/ethermint/evm/v1/tx.rpc.func.ts +0 -22
- package/src/ethermint/evm/v1/tx.ts +0 -1333
- package/src/ethermint/feemarket/v1/events.ts +0 -195
- package/src/ethermint/feemarket/v1/feemarket.ts +0 -213
- package/src/ethermint/feemarket/v1/genesis.ts +0 -114
- package/src/ethermint/feemarket/v1/query.rpc.func.ts +0 -36
- package/src/ethermint/feemarket/v1/query.ts +0 -487
- package/src/ethermint/feemarket/v1/tx.registry.ts +0 -29
- package/src/ethermint/feemarket/v1/tx.rpc.func.ts +0 -13
- package/src/ethermint/feemarket/v1/tx.ts +0 -197
- package/src/ethermint/types/v1/account.ts +0 -114
- package/src/ethermint/types/v1/dynamic_fee.ts +0 -91
- package/src/ethermint/types/v1/indexer.ts +0 -205
- package/src/ethermint/types/v1/web3.ts +0 -147
- package/src/extern.ts +0 -38
- package/src/gogoproto/gogo.ts +0 -1
- package/src/google/api/annotations.ts +0 -1
- package/src/google/api/http.ts +0 -1069
- package/src/google/protobuf/any.ts +0 -331
- package/src/google/protobuf/descriptor.ts +0 -7177
- package/src/google/protobuf/duration.ts +0 -225
- package/src/google/protobuf/timestamp.ts +0 -281
- package/src/helper-func-types.ts +0 -191
- package/src/helpers.ts +0 -259
- package/src/ibc/applications/fee/v1/ack.ts +0 -131
- package/src/ibc/applications/fee/v1/fee.ts +0 -481
- package/src/ibc/applications/fee/v1/genesis.ts +0 -661
- package/src/ibc/applications/fee/v1/metadata.ts +0 -121
- package/src/ibc/applications/fee/v1/query.rpc.func.ts +0 -113
- package/src/ibc/applications/fee/v1/query.ts +0 -2134
- package/src/ibc/applications/fee/v1/tx.registry.ts +0 -83
- package/src/ibc/applications/fee/v1/tx.rpc.func.ts +0 -40
- package/src/ibc/applications/fee/v1/tx.ts +0 -889
- package/src/ibc/applications/interchain_accounts/controller/v1/controller.ts +0 -105
- package/src/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.ts +0 -25
- package/src/ibc/applications/interchain_accounts/controller/v1/query.ts +0 -379
- package/src/ibc/applications/interchain_accounts/controller/v1/tx.registry.ts +0 -65
- package/src/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.ts +0 -31
- package/src/ibc/applications/interchain_accounts/controller/v1/tx.ts +0 -685
- package/src/ibc/applications/interchain_accounts/genesis/v1/genesis.ts +0 -661
- package/src/ibc/applications/interchain_accounts/host/v1/host.ts +0 -253
- package/src/ibc/applications/interchain_accounts/host/v1/query.rpc.func.ts +0 -14
- package/src/ibc/applications/interchain_accounts/host/v1/query.ts +0 -177
- package/src/ibc/applications/interchain_accounts/host/v1/tx.registry.ts +0 -47
- package/src/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.ts +0 -22
- package/src/ibc/applications/interchain_accounts/host/v1/tx.ts +0 -429
- package/src/ibc/applications/interchain_accounts/v1/account.ts +0 -112
- package/src/ibc/applications/interchain_accounts/v1/metadata.ts +0 -191
- package/src/ibc/applications/interchain_accounts/v1/packet.ts +0 -259
- package/src/ibc/applications/transfer/v1/authz.ts +0 -280
- package/src/ibc/applications/transfer/v1/genesis.ts +0 -153
- package/src/ibc/applications/transfer/v1/query.rpc.func.ts +0 -69
- package/src/ibc/applications/transfer/v1/query.ts +0 -1205
- package/src/ibc/applications/transfer/v1/transfer.ts +0 -261
- package/src/ibc/applications/transfer/v1/tx.registry.ts +0 -47
- package/src/ibc/applications/transfer/v1/tx.rpc.func.ts +0 -22
- package/src/ibc/applications/transfer/v1/tx.ts +0 -532
- package/src/ibc/applications/transfer/v2/packet.ts +0 -171
- package/src/ibc/core/channel/v1/channel.ts +0 -1510
- package/src/ibc/core/channel/v1/genesis.ts +0 -354
- package/src/ibc/core/channel/v1/query.rpc.func.ts +0 -190
- package/src/ibc/core/channel/v1/query.ts +0 -4354
- package/src/ibc/core/channel/v1/tx.registry.ts +0 -353
- package/src/ibc/core/channel/v1/tx.rpc.func.ts +0 -175
- package/src/ibc/core/channel/v1/tx.ts +0 -4866
- package/src/ibc/core/channel/v1/upgrade.ts +0 -388
- package/src/ibc/core/client/v1/client.ts +0 -927
- package/src/ibc/core/client/v1/genesis.ts +0 -426
- package/src/ibc/core/client/v1/query.rpc.func.ts +0 -113
- package/src/ibc/core/client/v1/query.ts +0 -2280
- package/src/ibc/core/client/v1/tx.registry.ts +0 -137
- package/src/ibc/core/client/v1/tx.rpc.func.ts +0 -67
- package/src/ibc/core/client/v1/tx.ts +0 -1543
- package/src/ibc/core/commitment/v1/commitment.ts +0 -418
- package/src/ibc/core/connection/v1/connection.ts +0 -1010
- package/src/ibc/core/connection/v1/genesis.ts +0 -146
- package/src/ibc/core/connection/v1/query.rpc.func.ts +0 -69
- package/src/ibc/core/connection/v1/query.ts +0 -1408
- package/src/ibc/core/connection/v1/tx.registry.ts +0 -101
- package/src/ibc/core/connection/v1/tx.rpc.func.ts +0 -49
- package/src/ibc/core/connection/v1/tx.ts +0 -1365
- package/src/ibc/core/types/v1/genesis.ts +0 -137
- package/src/ibc/lightclients/localhost/v2/localhost.ts +0 -100
- package/src/ibc/lightclients/solomachine/v2/solomachine.ts +0 -2103
- package/src/ibc/lightclients/solomachine/v3/solomachine.ts +0 -1070
- package/src/ibc/lightclients/tendermint/v1/tendermint.ts +0 -838
- package/src/ibc/lightclients/wasm/v1/genesis.ts +0 -197
- package/src/ibc/lightclients/wasm/v1/query.rpc.func.ts +0 -25
- package/src/ibc/lightclients/wasm/v1/query.ts +0 -404
- package/src/ibc/lightclients/wasm/v1/tx.registry.ts +0 -65
- package/src/ibc/lightclients/wasm/v1/tx.rpc.func.ts +0 -31
- package/src/ibc/lightclients/wasm/v1/tx.ts +0 -621
- package/src/ibc/lightclients/wasm/v1/wasm.ts +0 -438
- package/src/react-query.ts +0 -185
- package/src/registry.ts +0 -218
- package/src/tendermint/abci/types.ts +0 -6283
- package/src/tendermint/crypto/keys.ts +0 -103
- package/src/tendermint/crypto/proof.ts +0 -555
- package/src/tendermint/p2p/types.ts +0 -507
- package/src/tendermint/types/block.ts +0 -131
- package/src/tendermint/types/evidence.ts +0 -476
- package/src/tendermint/types/params.ts +0 -814
- package/src/tendermint/types/types.ts +0 -2157
- package/src/tendermint/types/validator.ts +0 -389
- package/src/tendermint/version/types.ts +0 -219
- package/src/types.ts +0 -155
- package/src/utf8.ts +0 -148
- package/src/varint.ts +0 -488
- package/src/xpla/reward/v1beta1/genesis.ts +0 -92
- package/src/xpla/reward/v1beta1/query.rpc.func.ts +0 -25
- package/src/xpla/reward/v1beta1/query.ts +0 -333
- package/src/xpla/reward/v1beta1/reward.ts +0 -153
- package/src/xpla/reward/v1beta1/tx.registry.ts +0 -47
- package/src/xpla/reward/v1beta1/tx.rpc.func.ts +0 -22
- package/src/xpla/reward/v1beta1/tx.ts +0 -391
- package/src/xpla/volunteer/v1beta1/genesis.ts +0 -92
- package/src/xpla/volunteer/v1beta1/proposal.ts +0 -649
- package/src/xpla/volunteer/v1beta1/query.rpc.func.ts +0 -14
- package/src/xpla/volunteer/v1beta1/query.ts +0 -160
- package/src/xpla/volunteer/v1beta1/tx.registry.ts +0 -47
- package/src/xpla/volunteer/v1beta1/tx.rpc.func.ts +0 -22
- package/src/xpla/volunteer/v1beta1/tx.ts +0 -448
- package/src/xpla/volunteer/v1beta1/volunteervalidator.ts +0 -107
- package/tsconfig.esm.json +0 -10
- package/tsconfig.json +0 -10
|
@@ -0,0 +1,1568 @@
|
|
|
1
|
+
import { AccessConfig, AccessConfigAmino, Params, ParamsAmino } from "./types";
|
|
2
|
+
import { Coin, CoinAmino } from "../../../cosmos/base/v1beta1/coin";
|
|
3
|
+
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
4
|
+
import { DeepPartial } from "../../../helpers";
|
|
5
|
+
/** MsgStoreCode submit Wasm code to the system */
|
|
6
|
+
export interface MsgStoreCode {
|
|
7
|
+
/** Sender is the actor that signed the messages */
|
|
8
|
+
sender: string;
|
|
9
|
+
/** WASMByteCode can be raw or gzip compressed */
|
|
10
|
+
wasmByteCode: Uint8Array;
|
|
11
|
+
/**
|
|
12
|
+
* InstantiatePermission access control to apply on contract creation,
|
|
13
|
+
* optional
|
|
14
|
+
*/
|
|
15
|
+
instantiatePermission?: AccessConfig;
|
|
16
|
+
}
|
|
17
|
+
export interface MsgStoreCodeProtoMsg {
|
|
18
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgStoreCode";
|
|
19
|
+
value: Uint8Array;
|
|
20
|
+
}
|
|
21
|
+
/** MsgStoreCode submit Wasm code to the system */
|
|
22
|
+
export interface MsgStoreCodeAmino {
|
|
23
|
+
/** Sender is the actor that signed the messages */
|
|
24
|
+
sender: string;
|
|
25
|
+
/** WASMByteCode can be raw or gzip compressed */
|
|
26
|
+
wasm_byte_code: string;
|
|
27
|
+
/**
|
|
28
|
+
* InstantiatePermission access control to apply on contract creation,
|
|
29
|
+
* optional
|
|
30
|
+
*/
|
|
31
|
+
instantiate_permission?: AccessConfigAmino;
|
|
32
|
+
}
|
|
33
|
+
export interface MsgStoreCodeAminoMsg {
|
|
34
|
+
type: "wasm/MsgStoreCode";
|
|
35
|
+
value: MsgStoreCodeAmino;
|
|
36
|
+
}
|
|
37
|
+
/** MsgStoreCodeResponse returns store result data. */
|
|
38
|
+
export interface MsgStoreCodeResponse {
|
|
39
|
+
/** CodeID is the reference to the stored WASM code */
|
|
40
|
+
codeId: bigint;
|
|
41
|
+
/** Checksum is the sha256 hash of the stored code */
|
|
42
|
+
checksum: Uint8Array;
|
|
43
|
+
}
|
|
44
|
+
export interface MsgStoreCodeResponseProtoMsg {
|
|
45
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgStoreCodeResponse";
|
|
46
|
+
value: Uint8Array;
|
|
47
|
+
}
|
|
48
|
+
/** MsgStoreCodeResponse returns store result data. */
|
|
49
|
+
export interface MsgStoreCodeResponseAmino {
|
|
50
|
+
/** CodeID is the reference to the stored WASM code */
|
|
51
|
+
code_id: string;
|
|
52
|
+
/** Checksum is the sha256 hash of the stored code */
|
|
53
|
+
checksum: string;
|
|
54
|
+
}
|
|
55
|
+
export interface MsgStoreCodeResponseAminoMsg {
|
|
56
|
+
type: "wasm/MsgStoreCodeResponse";
|
|
57
|
+
value: MsgStoreCodeResponseAmino;
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* MsgInstantiateContract create a new smart contract instance for the given
|
|
61
|
+
* code id.
|
|
62
|
+
*/
|
|
63
|
+
export interface MsgInstantiateContract {
|
|
64
|
+
/** Sender is the that actor that signed the messages */
|
|
65
|
+
sender: string;
|
|
66
|
+
/** Admin is an optional address that can execute migrations */
|
|
67
|
+
admin: string;
|
|
68
|
+
/** CodeID is the reference to the stored WASM code */
|
|
69
|
+
codeId: bigint;
|
|
70
|
+
/** Label is optional metadata to be stored with a contract instance. */
|
|
71
|
+
label: string;
|
|
72
|
+
/** Msg json encoded message to be passed to the contract on instantiation */
|
|
73
|
+
msg: Uint8Array;
|
|
74
|
+
/** Funds coins that are transferred to the contract on instantiation */
|
|
75
|
+
funds: Coin[];
|
|
76
|
+
}
|
|
77
|
+
export interface MsgInstantiateContractProtoMsg {
|
|
78
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgInstantiateContract";
|
|
79
|
+
value: Uint8Array;
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* MsgInstantiateContract create a new smart contract instance for the given
|
|
83
|
+
* code id.
|
|
84
|
+
*/
|
|
85
|
+
export interface MsgInstantiateContractAmino {
|
|
86
|
+
/** Sender is the that actor that signed the messages */
|
|
87
|
+
sender: string;
|
|
88
|
+
/** Admin is an optional address that can execute migrations */
|
|
89
|
+
admin: string;
|
|
90
|
+
/** CodeID is the reference to the stored WASM code */
|
|
91
|
+
code_id: string;
|
|
92
|
+
/** Label is optional metadata to be stored with a contract instance. */
|
|
93
|
+
label: string;
|
|
94
|
+
/** Msg json encoded message to be passed to the contract on instantiation */
|
|
95
|
+
msg: any;
|
|
96
|
+
/** Funds coins that are transferred to the contract on instantiation */
|
|
97
|
+
funds: CoinAmino[];
|
|
98
|
+
}
|
|
99
|
+
export interface MsgInstantiateContractAminoMsg {
|
|
100
|
+
type: "wasm/MsgInstantiateContract";
|
|
101
|
+
value: MsgInstantiateContractAmino;
|
|
102
|
+
}
|
|
103
|
+
/** MsgInstantiateContractResponse return instantiation result data */
|
|
104
|
+
export interface MsgInstantiateContractResponse {
|
|
105
|
+
/** Address is the bech32 address of the new contract instance. */
|
|
106
|
+
address: string;
|
|
107
|
+
/** Data contains bytes to returned from the contract */
|
|
108
|
+
data: Uint8Array;
|
|
109
|
+
}
|
|
110
|
+
export interface MsgInstantiateContractResponseProtoMsg {
|
|
111
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgInstantiateContractResponse";
|
|
112
|
+
value: Uint8Array;
|
|
113
|
+
}
|
|
114
|
+
/** MsgInstantiateContractResponse return instantiation result data */
|
|
115
|
+
export interface MsgInstantiateContractResponseAmino {
|
|
116
|
+
/** Address is the bech32 address of the new contract instance. */
|
|
117
|
+
address: string;
|
|
118
|
+
/** Data contains bytes to returned from the contract */
|
|
119
|
+
data: string;
|
|
120
|
+
}
|
|
121
|
+
export interface MsgInstantiateContractResponseAminoMsg {
|
|
122
|
+
type: "wasm/MsgInstantiateContractResponse";
|
|
123
|
+
value: MsgInstantiateContractResponseAmino;
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* MsgInstantiateContract2 create a new smart contract instance for the given
|
|
127
|
+
* code id with a predictable address.
|
|
128
|
+
*/
|
|
129
|
+
export interface MsgInstantiateContract2 {
|
|
130
|
+
/** Sender is the that actor that signed the messages */
|
|
131
|
+
sender: string;
|
|
132
|
+
/** Admin is an optional address that can execute migrations */
|
|
133
|
+
admin: string;
|
|
134
|
+
/** CodeID is the reference to the stored WASM code */
|
|
135
|
+
codeId: bigint;
|
|
136
|
+
/** Label is optional metadata to be stored with a contract instance. */
|
|
137
|
+
label: string;
|
|
138
|
+
/** Msg json encoded message to be passed to the contract on instantiation */
|
|
139
|
+
msg: Uint8Array;
|
|
140
|
+
/** Funds coins that are transferred to the contract on instantiation */
|
|
141
|
+
funds: Coin[];
|
|
142
|
+
/** Salt is an arbitrary value provided by the sender. Size can be 1 to 64. */
|
|
143
|
+
salt: Uint8Array;
|
|
144
|
+
/**
|
|
145
|
+
* FixMsg include the msg value into the hash for the predictable address.
|
|
146
|
+
* Default is false
|
|
147
|
+
*/
|
|
148
|
+
fixMsg: boolean;
|
|
149
|
+
}
|
|
150
|
+
export interface MsgInstantiateContract2ProtoMsg {
|
|
151
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgInstantiateContract2";
|
|
152
|
+
value: Uint8Array;
|
|
153
|
+
}
|
|
154
|
+
/**
|
|
155
|
+
* MsgInstantiateContract2 create a new smart contract instance for the given
|
|
156
|
+
* code id with a predictable address.
|
|
157
|
+
*/
|
|
158
|
+
export interface MsgInstantiateContract2Amino {
|
|
159
|
+
/** Sender is the that actor that signed the messages */
|
|
160
|
+
sender: string;
|
|
161
|
+
/** Admin is an optional address that can execute migrations */
|
|
162
|
+
admin: string;
|
|
163
|
+
/** CodeID is the reference to the stored WASM code */
|
|
164
|
+
code_id: string;
|
|
165
|
+
/** Label is optional metadata to be stored with a contract instance. */
|
|
166
|
+
label: string;
|
|
167
|
+
/** Msg json encoded message to be passed to the contract on instantiation */
|
|
168
|
+
msg: any;
|
|
169
|
+
/** Funds coins that are transferred to the contract on instantiation */
|
|
170
|
+
funds: CoinAmino[];
|
|
171
|
+
/** Salt is an arbitrary value provided by the sender. Size can be 1 to 64. */
|
|
172
|
+
salt: string;
|
|
173
|
+
/**
|
|
174
|
+
* FixMsg include the msg value into the hash for the predictable address.
|
|
175
|
+
* Default is false
|
|
176
|
+
*/
|
|
177
|
+
fix_msg: boolean;
|
|
178
|
+
}
|
|
179
|
+
export interface MsgInstantiateContract2AminoMsg {
|
|
180
|
+
type: "wasm/MsgInstantiateContract2";
|
|
181
|
+
value: MsgInstantiateContract2Amino;
|
|
182
|
+
}
|
|
183
|
+
/** MsgInstantiateContract2Response return instantiation result data */
|
|
184
|
+
export interface MsgInstantiateContract2Response {
|
|
185
|
+
/** Address is the bech32 address of the new contract instance. */
|
|
186
|
+
address: string;
|
|
187
|
+
/** Data contains bytes to returned from the contract */
|
|
188
|
+
data: Uint8Array;
|
|
189
|
+
}
|
|
190
|
+
export interface MsgInstantiateContract2ResponseProtoMsg {
|
|
191
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgInstantiateContract2Response";
|
|
192
|
+
value: Uint8Array;
|
|
193
|
+
}
|
|
194
|
+
/** MsgInstantiateContract2Response return instantiation result data */
|
|
195
|
+
export interface MsgInstantiateContract2ResponseAmino {
|
|
196
|
+
/** Address is the bech32 address of the new contract instance. */
|
|
197
|
+
address: string;
|
|
198
|
+
/** Data contains bytes to returned from the contract */
|
|
199
|
+
data: string;
|
|
200
|
+
}
|
|
201
|
+
export interface MsgInstantiateContract2ResponseAminoMsg {
|
|
202
|
+
type: "wasm/MsgInstantiateContract2Response";
|
|
203
|
+
value: MsgInstantiateContract2ResponseAmino;
|
|
204
|
+
}
|
|
205
|
+
/** MsgExecuteContract submits the given message data to a smart contract */
|
|
206
|
+
export interface MsgExecuteContract {
|
|
207
|
+
/** Sender is the that actor that signed the messages */
|
|
208
|
+
sender: string;
|
|
209
|
+
/** Contract is the address of the smart contract */
|
|
210
|
+
contract: string;
|
|
211
|
+
/** Msg json encoded message to be passed to the contract */
|
|
212
|
+
msg: Uint8Array;
|
|
213
|
+
/** Funds coins that are transferred to the contract on execution */
|
|
214
|
+
funds: Coin[];
|
|
215
|
+
}
|
|
216
|
+
export interface MsgExecuteContractProtoMsg {
|
|
217
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgExecuteContract";
|
|
218
|
+
value: Uint8Array;
|
|
219
|
+
}
|
|
220
|
+
/** MsgExecuteContract submits the given message data to a smart contract */
|
|
221
|
+
export interface MsgExecuteContractAmino {
|
|
222
|
+
/** Sender is the that actor that signed the messages */
|
|
223
|
+
sender: string;
|
|
224
|
+
/** Contract is the address of the smart contract */
|
|
225
|
+
contract: string;
|
|
226
|
+
/** Msg json encoded message to be passed to the contract */
|
|
227
|
+
msg: any;
|
|
228
|
+
/** Funds coins that are transferred to the contract on execution */
|
|
229
|
+
funds: CoinAmino[];
|
|
230
|
+
}
|
|
231
|
+
export interface MsgExecuteContractAminoMsg {
|
|
232
|
+
type: "wasm/MsgExecuteContract";
|
|
233
|
+
value: MsgExecuteContractAmino;
|
|
234
|
+
}
|
|
235
|
+
/** MsgExecuteContractResponse returns execution result data. */
|
|
236
|
+
export interface MsgExecuteContractResponse {
|
|
237
|
+
/** Data contains bytes to returned from the contract */
|
|
238
|
+
data: Uint8Array;
|
|
239
|
+
}
|
|
240
|
+
export interface MsgExecuteContractResponseProtoMsg {
|
|
241
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgExecuteContractResponse";
|
|
242
|
+
value: Uint8Array;
|
|
243
|
+
}
|
|
244
|
+
/** MsgExecuteContractResponse returns execution result data. */
|
|
245
|
+
export interface MsgExecuteContractResponseAmino {
|
|
246
|
+
/** Data contains bytes to returned from the contract */
|
|
247
|
+
data: string;
|
|
248
|
+
}
|
|
249
|
+
export interface MsgExecuteContractResponseAminoMsg {
|
|
250
|
+
type: "wasm/MsgExecuteContractResponse";
|
|
251
|
+
value: MsgExecuteContractResponseAmino;
|
|
252
|
+
}
|
|
253
|
+
/** MsgMigrateContract runs a code upgrade/ downgrade for a smart contract */
|
|
254
|
+
export interface MsgMigrateContract {
|
|
255
|
+
/** Sender is the that actor that signed the messages */
|
|
256
|
+
sender: string;
|
|
257
|
+
/** Contract is the address of the smart contract */
|
|
258
|
+
contract: string;
|
|
259
|
+
/** CodeID references the new WASM code */
|
|
260
|
+
codeId: bigint;
|
|
261
|
+
/** Msg json encoded message to be passed to the contract on migration */
|
|
262
|
+
msg: Uint8Array;
|
|
263
|
+
}
|
|
264
|
+
export interface MsgMigrateContractProtoMsg {
|
|
265
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgMigrateContract";
|
|
266
|
+
value: Uint8Array;
|
|
267
|
+
}
|
|
268
|
+
/** MsgMigrateContract runs a code upgrade/ downgrade for a smart contract */
|
|
269
|
+
export interface MsgMigrateContractAmino {
|
|
270
|
+
/** Sender is the that actor that signed the messages */
|
|
271
|
+
sender: string;
|
|
272
|
+
/** Contract is the address of the smart contract */
|
|
273
|
+
contract: string;
|
|
274
|
+
/** CodeID references the new WASM code */
|
|
275
|
+
code_id: string;
|
|
276
|
+
/** Msg json encoded message to be passed to the contract on migration */
|
|
277
|
+
msg: any;
|
|
278
|
+
}
|
|
279
|
+
export interface MsgMigrateContractAminoMsg {
|
|
280
|
+
type: "wasm/MsgMigrateContract";
|
|
281
|
+
value: MsgMigrateContractAmino;
|
|
282
|
+
}
|
|
283
|
+
/** MsgMigrateContractResponse returns contract migration result data. */
|
|
284
|
+
export interface MsgMigrateContractResponse {
|
|
285
|
+
/**
|
|
286
|
+
* Data contains same raw bytes returned as data from the wasm contract.
|
|
287
|
+
* (May be empty)
|
|
288
|
+
*/
|
|
289
|
+
data: Uint8Array;
|
|
290
|
+
}
|
|
291
|
+
export interface MsgMigrateContractResponseProtoMsg {
|
|
292
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgMigrateContractResponse";
|
|
293
|
+
value: Uint8Array;
|
|
294
|
+
}
|
|
295
|
+
/** MsgMigrateContractResponse returns contract migration result data. */
|
|
296
|
+
export interface MsgMigrateContractResponseAmino {
|
|
297
|
+
/**
|
|
298
|
+
* Data contains same raw bytes returned as data from the wasm contract.
|
|
299
|
+
* (May be empty)
|
|
300
|
+
*/
|
|
301
|
+
data: string;
|
|
302
|
+
}
|
|
303
|
+
export interface MsgMigrateContractResponseAminoMsg {
|
|
304
|
+
type: "wasm/MsgMigrateContractResponse";
|
|
305
|
+
value: MsgMigrateContractResponseAmino;
|
|
306
|
+
}
|
|
307
|
+
/** MsgUpdateAdmin sets a new admin for a smart contract */
|
|
308
|
+
export interface MsgUpdateAdmin {
|
|
309
|
+
/** Sender is the that actor that signed the messages */
|
|
310
|
+
sender: string;
|
|
311
|
+
/** NewAdmin address to be set */
|
|
312
|
+
newAdmin: string;
|
|
313
|
+
/** Contract is the address of the smart contract */
|
|
314
|
+
contract: string;
|
|
315
|
+
}
|
|
316
|
+
export interface MsgUpdateAdminProtoMsg {
|
|
317
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateAdmin";
|
|
318
|
+
value: Uint8Array;
|
|
319
|
+
}
|
|
320
|
+
/** MsgUpdateAdmin sets a new admin for a smart contract */
|
|
321
|
+
export interface MsgUpdateAdminAmino {
|
|
322
|
+
/** Sender is the that actor that signed the messages */
|
|
323
|
+
sender: string;
|
|
324
|
+
/** NewAdmin address to be set */
|
|
325
|
+
new_admin: string;
|
|
326
|
+
/** Contract is the address of the smart contract */
|
|
327
|
+
contract: string;
|
|
328
|
+
}
|
|
329
|
+
export interface MsgUpdateAdminAminoMsg {
|
|
330
|
+
type: "wasm/MsgUpdateAdmin";
|
|
331
|
+
value: MsgUpdateAdminAmino;
|
|
332
|
+
}
|
|
333
|
+
/** MsgUpdateAdminResponse returns empty data */
|
|
334
|
+
export interface MsgUpdateAdminResponse {
|
|
335
|
+
}
|
|
336
|
+
export interface MsgUpdateAdminResponseProtoMsg {
|
|
337
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateAdminResponse";
|
|
338
|
+
value: Uint8Array;
|
|
339
|
+
}
|
|
340
|
+
/** MsgUpdateAdminResponse returns empty data */
|
|
341
|
+
export interface MsgUpdateAdminResponseAmino {
|
|
342
|
+
}
|
|
343
|
+
export interface MsgUpdateAdminResponseAminoMsg {
|
|
344
|
+
type: "wasm/MsgUpdateAdminResponse";
|
|
345
|
+
value: MsgUpdateAdminResponseAmino;
|
|
346
|
+
}
|
|
347
|
+
/** MsgClearAdmin removes any admin stored for a smart contract */
|
|
348
|
+
export interface MsgClearAdmin {
|
|
349
|
+
/** Sender is the actor that signed the messages */
|
|
350
|
+
sender: string;
|
|
351
|
+
/** Contract is the address of the smart contract */
|
|
352
|
+
contract: string;
|
|
353
|
+
}
|
|
354
|
+
export interface MsgClearAdminProtoMsg {
|
|
355
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgClearAdmin";
|
|
356
|
+
value: Uint8Array;
|
|
357
|
+
}
|
|
358
|
+
/** MsgClearAdmin removes any admin stored for a smart contract */
|
|
359
|
+
export interface MsgClearAdminAmino {
|
|
360
|
+
/** Sender is the actor that signed the messages */
|
|
361
|
+
sender: string;
|
|
362
|
+
/** Contract is the address of the smart contract */
|
|
363
|
+
contract: string;
|
|
364
|
+
}
|
|
365
|
+
export interface MsgClearAdminAminoMsg {
|
|
366
|
+
type: "wasm/MsgClearAdmin";
|
|
367
|
+
value: MsgClearAdminAmino;
|
|
368
|
+
}
|
|
369
|
+
/** MsgClearAdminResponse returns empty data */
|
|
370
|
+
export interface MsgClearAdminResponse {
|
|
371
|
+
}
|
|
372
|
+
export interface MsgClearAdminResponseProtoMsg {
|
|
373
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgClearAdminResponse";
|
|
374
|
+
value: Uint8Array;
|
|
375
|
+
}
|
|
376
|
+
/** MsgClearAdminResponse returns empty data */
|
|
377
|
+
export interface MsgClearAdminResponseAmino {
|
|
378
|
+
}
|
|
379
|
+
export interface MsgClearAdminResponseAminoMsg {
|
|
380
|
+
type: "wasm/MsgClearAdminResponse";
|
|
381
|
+
value: MsgClearAdminResponseAmino;
|
|
382
|
+
}
|
|
383
|
+
/** MsgUpdateInstantiateConfig updates instantiate config for a smart contract */
|
|
384
|
+
export interface MsgUpdateInstantiateConfig {
|
|
385
|
+
/** Sender is the that actor that signed the messages */
|
|
386
|
+
sender: string;
|
|
387
|
+
/** CodeID references the stored WASM code */
|
|
388
|
+
codeId: bigint;
|
|
389
|
+
/** NewInstantiatePermission is the new access control */
|
|
390
|
+
newInstantiatePermission?: AccessConfig;
|
|
391
|
+
}
|
|
392
|
+
export interface MsgUpdateInstantiateConfigProtoMsg {
|
|
393
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateInstantiateConfig";
|
|
394
|
+
value: Uint8Array;
|
|
395
|
+
}
|
|
396
|
+
/** MsgUpdateInstantiateConfig updates instantiate config for a smart contract */
|
|
397
|
+
export interface MsgUpdateInstantiateConfigAmino {
|
|
398
|
+
/** Sender is the that actor that signed the messages */
|
|
399
|
+
sender: string;
|
|
400
|
+
/** CodeID references the stored WASM code */
|
|
401
|
+
code_id: string;
|
|
402
|
+
/** NewInstantiatePermission is the new access control */
|
|
403
|
+
new_instantiate_permission?: AccessConfigAmino;
|
|
404
|
+
}
|
|
405
|
+
export interface MsgUpdateInstantiateConfigAminoMsg {
|
|
406
|
+
type: "wasm/MsgUpdateInstantiateConfig";
|
|
407
|
+
value: MsgUpdateInstantiateConfigAmino;
|
|
408
|
+
}
|
|
409
|
+
/** MsgUpdateInstantiateConfigResponse returns empty data */
|
|
410
|
+
export interface MsgUpdateInstantiateConfigResponse {
|
|
411
|
+
}
|
|
412
|
+
export interface MsgUpdateInstantiateConfigResponseProtoMsg {
|
|
413
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateInstantiateConfigResponse";
|
|
414
|
+
value: Uint8Array;
|
|
415
|
+
}
|
|
416
|
+
/** MsgUpdateInstantiateConfigResponse returns empty data */
|
|
417
|
+
export interface MsgUpdateInstantiateConfigResponseAmino {
|
|
418
|
+
}
|
|
419
|
+
export interface MsgUpdateInstantiateConfigResponseAminoMsg {
|
|
420
|
+
type: "wasm/MsgUpdateInstantiateConfigResponse";
|
|
421
|
+
value: MsgUpdateInstantiateConfigResponseAmino;
|
|
422
|
+
}
|
|
423
|
+
/**
|
|
424
|
+
* MsgUpdateParams is the MsgUpdateParams request type.
|
|
425
|
+
*
|
|
426
|
+
* Since: 0.40
|
|
427
|
+
*/
|
|
428
|
+
export interface MsgUpdateParams {
|
|
429
|
+
/** Authority is the address of the governance account. */
|
|
430
|
+
authority: string;
|
|
431
|
+
/**
|
|
432
|
+
* params defines the x/wasm parameters to update.
|
|
433
|
+
*
|
|
434
|
+
* NOTE: All parameters must be supplied.
|
|
435
|
+
*/
|
|
436
|
+
params: Params;
|
|
437
|
+
}
|
|
438
|
+
export interface MsgUpdateParamsProtoMsg {
|
|
439
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateParams";
|
|
440
|
+
value: Uint8Array;
|
|
441
|
+
}
|
|
442
|
+
/**
|
|
443
|
+
* MsgUpdateParams is the MsgUpdateParams request type.
|
|
444
|
+
*
|
|
445
|
+
* Since: 0.40
|
|
446
|
+
*/
|
|
447
|
+
export interface MsgUpdateParamsAmino {
|
|
448
|
+
/** Authority is the address of the governance account. */
|
|
449
|
+
authority: string;
|
|
450
|
+
/**
|
|
451
|
+
* params defines the x/wasm parameters to update.
|
|
452
|
+
*
|
|
453
|
+
* NOTE: All parameters must be supplied.
|
|
454
|
+
*/
|
|
455
|
+
params: ParamsAmino;
|
|
456
|
+
}
|
|
457
|
+
export interface MsgUpdateParamsAminoMsg {
|
|
458
|
+
type: "wasm/MsgUpdateParams";
|
|
459
|
+
value: MsgUpdateParamsAmino;
|
|
460
|
+
}
|
|
461
|
+
/**
|
|
462
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
463
|
+
* MsgUpdateParams message.
|
|
464
|
+
*
|
|
465
|
+
* Since: 0.40
|
|
466
|
+
*/
|
|
467
|
+
export interface MsgUpdateParamsResponse {
|
|
468
|
+
}
|
|
469
|
+
export interface MsgUpdateParamsResponseProtoMsg {
|
|
470
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateParamsResponse";
|
|
471
|
+
value: Uint8Array;
|
|
472
|
+
}
|
|
473
|
+
/**
|
|
474
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
475
|
+
* MsgUpdateParams message.
|
|
476
|
+
*
|
|
477
|
+
* Since: 0.40
|
|
478
|
+
*/
|
|
479
|
+
export interface MsgUpdateParamsResponseAmino {
|
|
480
|
+
}
|
|
481
|
+
export interface MsgUpdateParamsResponseAminoMsg {
|
|
482
|
+
type: "wasm/MsgUpdateParamsResponse";
|
|
483
|
+
value: MsgUpdateParamsResponseAmino;
|
|
484
|
+
}
|
|
485
|
+
/**
|
|
486
|
+
* MsgSudoContract is the MsgSudoContract request type.
|
|
487
|
+
*
|
|
488
|
+
* Since: 0.40
|
|
489
|
+
*/
|
|
490
|
+
export interface MsgSudoContract {
|
|
491
|
+
/** Authority is the address of the governance account. */
|
|
492
|
+
authority: string;
|
|
493
|
+
/** Contract is the address of the smart contract */
|
|
494
|
+
contract: string;
|
|
495
|
+
/** Msg json encoded message to be passed to the contract as sudo */
|
|
496
|
+
msg: Uint8Array;
|
|
497
|
+
}
|
|
498
|
+
export interface MsgSudoContractProtoMsg {
|
|
499
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgSudoContract";
|
|
500
|
+
value: Uint8Array;
|
|
501
|
+
}
|
|
502
|
+
/**
|
|
503
|
+
* MsgSudoContract is the MsgSudoContract request type.
|
|
504
|
+
*
|
|
505
|
+
* Since: 0.40
|
|
506
|
+
*/
|
|
507
|
+
export interface MsgSudoContractAmino {
|
|
508
|
+
/** Authority is the address of the governance account. */
|
|
509
|
+
authority: string;
|
|
510
|
+
/** Contract is the address of the smart contract */
|
|
511
|
+
contract: string;
|
|
512
|
+
/** Msg json encoded message to be passed to the contract as sudo */
|
|
513
|
+
msg: any;
|
|
514
|
+
}
|
|
515
|
+
export interface MsgSudoContractAminoMsg {
|
|
516
|
+
type: "wasm/MsgSudoContract";
|
|
517
|
+
value: MsgSudoContractAmino;
|
|
518
|
+
}
|
|
519
|
+
/**
|
|
520
|
+
* MsgSudoContractResponse defines the response structure for executing a
|
|
521
|
+
* MsgSudoContract message.
|
|
522
|
+
*
|
|
523
|
+
* Since: 0.40
|
|
524
|
+
*/
|
|
525
|
+
export interface MsgSudoContractResponse {
|
|
526
|
+
/** Data contains bytes to returned from the contract */
|
|
527
|
+
data: Uint8Array;
|
|
528
|
+
}
|
|
529
|
+
export interface MsgSudoContractResponseProtoMsg {
|
|
530
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgSudoContractResponse";
|
|
531
|
+
value: Uint8Array;
|
|
532
|
+
}
|
|
533
|
+
/**
|
|
534
|
+
* MsgSudoContractResponse defines the response structure for executing a
|
|
535
|
+
* MsgSudoContract message.
|
|
536
|
+
*
|
|
537
|
+
* Since: 0.40
|
|
538
|
+
*/
|
|
539
|
+
export interface MsgSudoContractResponseAmino {
|
|
540
|
+
/** Data contains bytes to returned from the contract */
|
|
541
|
+
data: string;
|
|
542
|
+
}
|
|
543
|
+
export interface MsgSudoContractResponseAminoMsg {
|
|
544
|
+
type: "wasm/MsgSudoContractResponse";
|
|
545
|
+
value: MsgSudoContractResponseAmino;
|
|
546
|
+
}
|
|
547
|
+
/**
|
|
548
|
+
* MsgPinCodes is the MsgPinCodes request type.
|
|
549
|
+
*
|
|
550
|
+
* Since: 0.40
|
|
551
|
+
*/
|
|
552
|
+
export interface MsgPinCodes {
|
|
553
|
+
/** Authority is the address of the governance account. */
|
|
554
|
+
authority: string;
|
|
555
|
+
/** CodeIDs references the new WASM codes */
|
|
556
|
+
codeIds: bigint[];
|
|
557
|
+
}
|
|
558
|
+
export interface MsgPinCodesProtoMsg {
|
|
559
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgPinCodes";
|
|
560
|
+
value: Uint8Array;
|
|
561
|
+
}
|
|
562
|
+
/**
|
|
563
|
+
* MsgPinCodes is the MsgPinCodes request type.
|
|
564
|
+
*
|
|
565
|
+
* Since: 0.40
|
|
566
|
+
*/
|
|
567
|
+
export interface MsgPinCodesAmino {
|
|
568
|
+
/** Authority is the address of the governance account. */
|
|
569
|
+
authority: string;
|
|
570
|
+
/** CodeIDs references the new WASM codes */
|
|
571
|
+
code_ids: string[];
|
|
572
|
+
}
|
|
573
|
+
export interface MsgPinCodesAminoMsg {
|
|
574
|
+
type: "wasm/MsgPinCodes";
|
|
575
|
+
value: MsgPinCodesAmino;
|
|
576
|
+
}
|
|
577
|
+
/**
|
|
578
|
+
* MsgPinCodesResponse defines the response structure for executing a
|
|
579
|
+
* MsgPinCodes message.
|
|
580
|
+
*
|
|
581
|
+
* Since: 0.40
|
|
582
|
+
*/
|
|
583
|
+
export interface MsgPinCodesResponse {
|
|
584
|
+
}
|
|
585
|
+
export interface MsgPinCodesResponseProtoMsg {
|
|
586
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgPinCodesResponse";
|
|
587
|
+
value: Uint8Array;
|
|
588
|
+
}
|
|
589
|
+
/**
|
|
590
|
+
* MsgPinCodesResponse defines the response structure for executing a
|
|
591
|
+
* MsgPinCodes message.
|
|
592
|
+
*
|
|
593
|
+
* Since: 0.40
|
|
594
|
+
*/
|
|
595
|
+
export interface MsgPinCodesResponseAmino {
|
|
596
|
+
}
|
|
597
|
+
export interface MsgPinCodesResponseAminoMsg {
|
|
598
|
+
type: "wasm/MsgPinCodesResponse";
|
|
599
|
+
value: MsgPinCodesResponseAmino;
|
|
600
|
+
}
|
|
601
|
+
/**
|
|
602
|
+
* MsgUnpinCodes is the MsgUnpinCodes request type.
|
|
603
|
+
*
|
|
604
|
+
* Since: 0.40
|
|
605
|
+
*/
|
|
606
|
+
export interface MsgUnpinCodes {
|
|
607
|
+
/** Authority is the address of the governance account. */
|
|
608
|
+
authority: string;
|
|
609
|
+
/** CodeIDs references the WASM codes */
|
|
610
|
+
codeIds: bigint[];
|
|
611
|
+
}
|
|
612
|
+
export interface MsgUnpinCodesProtoMsg {
|
|
613
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgUnpinCodes";
|
|
614
|
+
value: Uint8Array;
|
|
615
|
+
}
|
|
616
|
+
/**
|
|
617
|
+
* MsgUnpinCodes is the MsgUnpinCodes request type.
|
|
618
|
+
*
|
|
619
|
+
* Since: 0.40
|
|
620
|
+
*/
|
|
621
|
+
export interface MsgUnpinCodesAmino {
|
|
622
|
+
/** Authority is the address of the governance account. */
|
|
623
|
+
authority: string;
|
|
624
|
+
/** CodeIDs references the WASM codes */
|
|
625
|
+
code_ids: string[];
|
|
626
|
+
}
|
|
627
|
+
export interface MsgUnpinCodesAminoMsg {
|
|
628
|
+
type: "wasm/MsgUnpinCodes";
|
|
629
|
+
value: MsgUnpinCodesAmino;
|
|
630
|
+
}
|
|
631
|
+
/**
|
|
632
|
+
* MsgUnpinCodesResponse defines the response structure for executing a
|
|
633
|
+
* MsgUnpinCodes message.
|
|
634
|
+
*
|
|
635
|
+
* Since: 0.40
|
|
636
|
+
*/
|
|
637
|
+
export interface MsgUnpinCodesResponse {
|
|
638
|
+
}
|
|
639
|
+
export interface MsgUnpinCodesResponseProtoMsg {
|
|
640
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgUnpinCodesResponse";
|
|
641
|
+
value: Uint8Array;
|
|
642
|
+
}
|
|
643
|
+
/**
|
|
644
|
+
* MsgUnpinCodesResponse defines the response structure for executing a
|
|
645
|
+
* MsgUnpinCodes message.
|
|
646
|
+
*
|
|
647
|
+
* Since: 0.40
|
|
648
|
+
*/
|
|
649
|
+
export interface MsgUnpinCodesResponseAmino {
|
|
650
|
+
}
|
|
651
|
+
export interface MsgUnpinCodesResponseAminoMsg {
|
|
652
|
+
type: "wasm/MsgUnpinCodesResponse";
|
|
653
|
+
value: MsgUnpinCodesResponseAmino;
|
|
654
|
+
}
|
|
655
|
+
/**
|
|
656
|
+
* MsgStoreAndInstantiateContract is the MsgStoreAndInstantiateContract
|
|
657
|
+
* request type.
|
|
658
|
+
*
|
|
659
|
+
* Since: 0.40
|
|
660
|
+
*/
|
|
661
|
+
export interface MsgStoreAndInstantiateContract {
|
|
662
|
+
/** Authority is the address of the governance account. */
|
|
663
|
+
authority: string;
|
|
664
|
+
/** WASMByteCode can be raw or gzip compressed */
|
|
665
|
+
wasmByteCode: Uint8Array;
|
|
666
|
+
/** InstantiatePermission to apply on contract creation, optional */
|
|
667
|
+
instantiatePermission?: AccessConfig;
|
|
668
|
+
/**
|
|
669
|
+
* UnpinCode code on upload, optional. As default the uploaded contract is
|
|
670
|
+
* pinned to cache.
|
|
671
|
+
*/
|
|
672
|
+
unpinCode: boolean;
|
|
673
|
+
/** Admin is an optional address that can execute migrations */
|
|
674
|
+
admin: string;
|
|
675
|
+
/** Label is optional metadata to be stored with a constract instance. */
|
|
676
|
+
label: string;
|
|
677
|
+
/** Msg json encoded message to be passed to the contract on instantiation */
|
|
678
|
+
msg: Uint8Array;
|
|
679
|
+
/**
|
|
680
|
+
* Funds coins that are transferred from the authority account to the contract
|
|
681
|
+
* on instantiation
|
|
682
|
+
*/
|
|
683
|
+
funds: Coin[];
|
|
684
|
+
/** Source is the URL where the code is hosted */
|
|
685
|
+
source: string;
|
|
686
|
+
/**
|
|
687
|
+
* Builder is the docker image used to build the code deterministically, used
|
|
688
|
+
* for smart contract verification
|
|
689
|
+
*/
|
|
690
|
+
builder: string;
|
|
691
|
+
/**
|
|
692
|
+
* CodeHash is the SHA256 sum of the code outputted by builder, used for smart
|
|
693
|
+
* contract verification
|
|
694
|
+
*/
|
|
695
|
+
codeHash: Uint8Array;
|
|
696
|
+
}
|
|
697
|
+
export interface MsgStoreAndInstantiateContractProtoMsg {
|
|
698
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgStoreAndInstantiateContract";
|
|
699
|
+
value: Uint8Array;
|
|
700
|
+
}
|
|
701
|
+
/**
|
|
702
|
+
* MsgStoreAndInstantiateContract is the MsgStoreAndInstantiateContract
|
|
703
|
+
* request type.
|
|
704
|
+
*
|
|
705
|
+
* Since: 0.40
|
|
706
|
+
*/
|
|
707
|
+
export interface MsgStoreAndInstantiateContractAmino {
|
|
708
|
+
/** Authority is the address of the governance account. */
|
|
709
|
+
authority: string;
|
|
710
|
+
/** WASMByteCode can be raw or gzip compressed */
|
|
711
|
+
wasm_byte_code: string;
|
|
712
|
+
/** InstantiatePermission to apply on contract creation, optional */
|
|
713
|
+
instantiate_permission?: AccessConfigAmino;
|
|
714
|
+
/**
|
|
715
|
+
* UnpinCode code on upload, optional. As default the uploaded contract is
|
|
716
|
+
* pinned to cache.
|
|
717
|
+
*/
|
|
718
|
+
unpin_code: boolean;
|
|
719
|
+
/** Admin is an optional address that can execute migrations */
|
|
720
|
+
admin: string;
|
|
721
|
+
/** Label is optional metadata to be stored with a constract instance. */
|
|
722
|
+
label: string;
|
|
723
|
+
/** Msg json encoded message to be passed to the contract on instantiation */
|
|
724
|
+
msg: any;
|
|
725
|
+
/**
|
|
726
|
+
* Funds coins that are transferred from the authority account to the contract
|
|
727
|
+
* on instantiation
|
|
728
|
+
*/
|
|
729
|
+
funds: CoinAmino[];
|
|
730
|
+
/** Source is the URL where the code is hosted */
|
|
731
|
+
source: string;
|
|
732
|
+
/**
|
|
733
|
+
* Builder is the docker image used to build the code deterministically, used
|
|
734
|
+
* for smart contract verification
|
|
735
|
+
*/
|
|
736
|
+
builder: string;
|
|
737
|
+
/**
|
|
738
|
+
* CodeHash is the SHA256 sum of the code outputted by builder, used for smart
|
|
739
|
+
* contract verification
|
|
740
|
+
*/
|
|
741
|
+
code_hash: string;
|
|
742
|
+
}
|
|
743
|
+
export interface MsgStoreAndInstantiateContractAminoMsg {
|
|
744
|
+
type: "wasm/MsgStoreAndInstantiateContract";
|
|
745
|
+
value: MsgStoreAndInstantiateContractAmino;
|
|
746
|
+
}
|
|
747
|
+
/**
|
|
748
|
+
* MsgStoreAndInstantiateContractResponse defines the response structure
|
|
749
|
+
* for executing a MsgStoreAndInstantiateContract message.
|
|
750
|
+
*
|
|
751
|
+
* Since: 0.40
|
|
752
|
+
*/
|
|
753
|
+
export interface MsgStoreAndInstantiateContractResponse {
|
|
754
|
+
/** Address is the bech32 address of the new contract instance. */
|
|
755
|
+
address: string;
|
|
756
|
+
/** Data contains bytes to returned from the contract */
|
|
757
|
+
data: Uint8Array;
|
|
758
|
+
}
|
|
759
|
+
export interface MsgStoreAndInstantiateContractResponseProtoMsg {
|
|
760
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgStoreAndInstantiateContractResponse";
|
|
761
|
+
value: Uint8Array;
|
|
762
|
+
}
|
|
763
|
+
/**
|
|
764
|
+
* MsgStoreAndInstantiateContractResponse defines the response structure
|
|
765
|
+
* for executing a MsgStoreAndInstantiateContract message.
|
|
766
|
+
*
|
|
767
|
+
* Since: 0.40
|
|
768
|
+
*/
|
|
769
|
+
export interface MsgStoreAndInstantiateContractResponseAmino {
|
|
770
|
+
/** Address is the bech32 address of the new contract instance. */
|
|
771
|
+
address: string;
|
|
772
|
+
/** Data contains bytes to returned from the contract */
|
|
773
|
+
data: string;
|
|
774
|
+
}
|
|
775
|
+
export interface MsgStoreAndInstantiateContractResponseAminoMsg {
|
|
776
|
+
type: "wasm/MsgStoreAndInstantiateContractResponse";
|
|
777
|
+
value: MsgStoreAndInstantiateContractResponseAmino;
|
|
778
|
+
}
|
|
779
|
+
/**
|
|
780
|
+
* MsgAddCodeUploadParamsAddresses is the
|
|
781
|
+
* MsgAddCodeUploadParamsAddresses request type.
|
|
782
|
+
*/
|
|
783
|
+
export interface MsgAddCodeUploadParamsAddresses {
|
|
784
|
+
/** Authority is the address of the governance account. */
|
|
785
|
+
authority: string;
|
|
786
|
+
addresses: string[];
|
|
787
|
+
}
|
|
788
|
+
export interface MsgAddCodeUploadParamsAddressesProtoMsg {
|
|
789
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgAddCodeUploadParamsAddresses";
|
|
790
|
+
value: Uint8Array;
|
|
791
|
+
}
|
|
792
|
+
/**
|
|
793
|
+
* MsgAddCodeUploadParamsAddresses is the
|
|
794
|
+
* MsgAddCodeUploadParamsAddresses request type.
|
|
795
|
+
*/
|
|
796
|
+
export interface MsgAddCodeUploadParamsAddressesAmino {
|
|
797
|
+
/** Authority is the address of the governance account. */
|
|
798
|
+
authority: string;
|
|
799
|
+
addresses: string[];
|
|
800
|
+
}
|
|
801
|
+
export interface MsgAddCodeUploadParamsAddressesAminoMsg {
|
|
802
|
+
type: "wasm/MsgAddCodeUploadParamsAddresses";
|
|
803
|
+
value: MsgAddCodeUploadParamsAddressesAmino;
|
|
804
|
+
}
|
|
805
|
+
/**
|
|
806
|
+
* MsgAddCodeUploadParamsAddressesResponse defines the response
|
|
807
|
+
* structure for executing a MsgAddCodeUploadParamsAddresses message.
|
|
808
|
+
*/
|
|
809
|
+
export interface MsgAddCodeUploadParamsAddressesResponse {
|
|
810
|
+
}
|
|
811
|
+
export interface MsgAddCodeUploadParamsAddressesResponseProtoMsg {
|
|
812
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgAddCodeUploadParamsAddressesResponse";
|
|
813
|
+
value: Uint8Array;
|
|
814
|
+
}
|
|
815
|
+
/**
|
|
816
|
+
* MsgAddCodeUploadParamsAddressesResponse defines the response
|
|
817
|
+
* structure for executing a MsgAddCodeUploadParamsAddresses message.
|
|
818
|
+
*/
|
|
819
|
+
export interface MsgAddCodeUploadParamsAddressesResponseAmino {
|
|
820
|
+
}
|
|
821
|
+
export interface MsgAddCodeUploadParamsAddressesResponseAminoMsg {
|
|
822
|
+
type: "wasm/MsgAddCodeUploadParamsAddressesResponse";
|
|
823
|
+
value: MsgAddCodeUploadParamsAddressesResponseAmino;
|
|
824
|
+
}
|
|
825
|
+
/**
|
|
826
|
+
* MsgRemoveCodeUploadParamsAddresses is the
|
|
827
|
+
* MsgRemoveCodeUploadParamsAddresses request type.
|
|
828
|
+
*/
|
|
829
|
+
export interface MsgRemoveCodeUploadParamsAddresses {
|
|
830
|
+
/** Authority is the address of the governance account. */
|
|
831
|
+
authority: string;
|
|
832
|
+
addresses: string[];
|
|
833
|
+
}
|
|
834
|
+
export interface MsgRemoveCodeUploadParamsAddressesProtoMsg {
|
|
835
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgRemoveCodeUploadParamsAddresses";
|
|
836
|
+
value: Uint8Array;
|
|
837
|
+
}
|
|
838
|
+
/**
|
|
839
|
+
* MsgRemoveCodeUploadParamsAddresses is the
|
|
840
|
+
* MsgRemoveCodeUploadParamsAddresses request type.
|
|
841
|
+
*/
|
|
842
|
+
export interface MsgRemoveCodeUploadParamsAddressesAmino {
|
|
843
|
+
/** Authority is the address of the governance account. */
|
|
844
|
+
authority: string;
|
|
845
|
+
addresses: string[];
|
|
846
|
+
}
|
|
847
|
+
export interface MsgRemoveCodeUploadParamsAddressesAminoMsg {
|
|
848
|
+
type: "wasm/MsgRemoveCodeUploadParamsAddresses";
|
|
849
|
+
value: MsgRemoveCodeUploadParamsAddressesAmino;
|
|
850
|
+
}
|
|
851
|
+
/**
|
|
852
|
+
* MsgRemoveCodeUploadParamsAddressesResponse defines the response
|
|
853
|
+
* structure for executing a MsgRemoveCodeUploadParamsAddresses message.
|
|
854
|
+
*/
|
|
855
|
+
export interface MsgRemoveCodeUploadParamsAddressesResponse {
|
|
856
|
+
}
|
|
857
|
+
export interface MsgRemoveCodeUploadParamsAddressesResponseProtoMsg {
|
|
858
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgRemoveCodeUploadParamsAddressesResponse";
|
|
859
|
+
value: Uint8Array;
|
|
860
|
+
}
|
|
861
|
+
/**
|
|
862
|
+
* MsgRemoveCodeUploadParamsAddressesResponse defines the response
|
|
863
|
+
* structure for executing a MsgRemoveCodeUploadParamsAddresses message.
|
|
864
|
+
*/
|
|
865
|
+
export interface MsgRemoveCodeUploadParamsAddressesResponseAmino {
|
|
866
|
+
}
|
|
867
|
+
export interface MsgRemoveCodeUploadParamsAddressesResponseAminoMsg {
|
|
868
|
+
type: "wasm/MsgRemoveCodeUploadParamsAddressesResponse";
|
|
869
|
+
value: MsgRemoveCodeUploadParamsAddressesResponseAmino;
|
|
870
|
+
}
|
|
871
|
+
/**
|
|
872
|
+
* MsgStoreAndMigrateContract is the MsgStoreAndMigrateContract
|
|
873
|
+
* request type.
|
|
874
|
+
*
|
|
875
|
+
* Since: 0.42
|
|
876
|
+
*/
|
|
877
|
+
export interface MsgStoreAndMigrateContract {
|
|
878
|
+
/** Authority is the address of the governance account. */
|
|
879
|
+
authority: string;
|
|
880
|
+
/** WASMByteCode can be raw or gzip compressed */
|
|
881
|
+
wasmByteCode: Uint8Array;
|
|
882
|
+
/** InstantiatePermission to apply on contract creation, optional */
|
|
883
|
+
instantiatePermission?: AccessConfig;
|
|
884
|
+
/** Contract is the address of the smart contract */
|
|
885
|
+
contract: string;
|
|
886
|
+
/** Msg json encoded message to be passed to the contract on migration */
|
|
887
|
+
msg: Uint8Array;
|
|
888
|
+
}
|
|
889
|
+
export interface MsgStoreAndMigrateContractProtoMsg {
|
|
890
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgStoreAndMigrateContract";
|
|
891
|
+
value: Uint8Array;
|
|
892
|
+
}
|
|
893
|
+
/**
|
|
894
|
+
* MsgStoreAndMigrateContract is the MsgStoreAndMigrateContract
|
|
895
|
+
* request type.
|
|
896
|
+
*
|
|
897
|
+
* Since: 0.42
|
|
898
|
+
*/
|
|
899
|
+
export interface MsgStoreAndMigrateContractAmino {
|
|
900
|
+
/** Authority is the address of the governance account. */
|
|
901
|
+
authority: string;
|
|
902
|
+
/** WASMByteCode can be raw or gzip compressed */
|
|
903
|
+
wasm_byte_code: string;
|
|
904
|
+
/** InstantiatePermission to apply on contract creation, optional */
|
|
905
|
+
instantiate_permission?: AccessConfigAmino;
|
|
906
|
+
/** Contract is the address of the smart contract */
|
|
907
|
+
contract: string;
|
|
908
|
+
/** Msg json encoded message to be passed to the contract on migration */
|
|
909
|
+
msg: any;
|
|
910
|
+
}
|
|
911
|
+
export interface MsgStoreAndMigrateContractAminoMsg {
|
|
912
|
+
type: "wasm/MsgStoreAndMigrateContract";
|
|
913
|
+
value: MsgStoreAndMigrateContractAmino;
|
|
914
|
+
}
|
|
915
|
+
/**
|
|
916
|
+
* MsgStoreAndMigrateContractResponse defines the response structure
|
|
917
|
+
* for executing a MsgStoreAndMigrateContract message.
|
|
918
|
+
*
|
|
919
|
+
* Since: 0.42
|
|
920
|
+
*/
|
|
921
|
+
export interface MsgStoreAndMigrateContractResponse {
|
|
922
|
+
/** CodeID is the reference to the stored WASM code */
|
|
923
|
+
codeId: bigint;
|
|
924
|
+
/** Checksum is the sha256 hash of the stored code */
|
|
925
|
+
checksum: Uint8Array;
|
|
926
|
+
/** Data contains bytes to returned from the contract */
|
|
927
|
+
data: Uint8Array;
|
|
928
|
+
}
|
|
929
|
+
export interface MsgStoreAndMigrateContractResponseProtoMsg {
|
|
930
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgStoreAndMigrateContractResponse";
|
|
931
|
+
value: Uint8Array;
|
|
932
|
+
}
|
|
933
|
+
/**
|
|
934
|
+
* MsgStoreAndMigrateContractResponse defines the response structure
|
|
935
|
+
* for executing a MsgStoreAndMigrateContract message.
|
|
936
|
+
*
|
|
937
|
+
* Since: 0.42
|
|
938
|
+
*/
|
|
939
|
+
export interface MsgStoreAndMigrateContractResponseAmino {
|
|
940
|
+
/** CodeID is the reference to the stored WASM code */
|
|
941
|
+
code_id: string;
|
|
942
|
+
/** Checksum is the sha256 hash of the stored code */
|
|
943
|
+
checksum: string;
|
|
944
|
+
/** Data contains bytes to returned from the contract */
|
|
945
|
+
data: string;
|
|
946
|
+
}
|
|
947
|
+
export interface MsgStoreAndMigrateContractResponseAminoMsg {
|
|
948
|
+
type: "wasm/MsgStoreAndMigrateContractResponse";
|
|
949
|
+
value: MsgStoreAndMigrateContractResponseAmino;
|
|
950
|
+
}
|
|
951
|
+
/** MsgUpdateContractLabel sets a new label for a smart contract */
|
|
952
|
+
export interface MsgUpdateContractLabel {
|
|
953
|
+
/** Sender is the that actor that signed the messages */
|
|
954
|
+
sender: string;
|
|
955
|
+
/** NewLabel string to be set */
|
|
956
|
+
newLabel: string;
|
|
957
|
+
/** Contract is the address of the smart contract */
|
|
958
|
+
contract: string;
|
|
959
|
+
}
|
|
960
|
+
export interface MsgUpdateContractLabelProtoMsg {
|
|
961
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateContractLabel";
|
|
962
|
+
value: Uint8Array;
|
|
963
|
+
}
|
|
964
|
+
/** MsgUpdateContractLabel sets a new label for a smart contract */
|
|
965
|
+
export interface MsgUpdateContractLabelAmino {
|
|
966
|
+
/** Sender is the that actor that signed the messages */
|
|
967
|
+
sender: string;
|
|
968
|
+
/** NewLabel string to be set */
|
|
969
|
+
new_label: string;
|
|
970
|
+
/** Contract is the address of the smart contract */
|
|
971
|
+
contract: string;
|
|
972
|
+
}
|
|
973
|
+
export interface MsgUpdateContractLabelAminoMsg {
|
|
974
|
+
type: "wasm/MsgUpdateContractLabel";
|
|
975
|
+
value: MsgUpdateContractLabelAmino;
|
|
976
|
+
}
|
|
977
|
+
/** MsgUpdateContractLabelResponse returns empty data */
|
|
978
|
+
export interface MsgUpdateContractLabelResponse {
|
|
979
|
+
}
|
|
980
|
+
export interface MsgUpdateContractLabelResponseProtoMsg {
|
|
981
|
+
typeUrl: "/cosmwasm.wasm.v1.MsgUpdateContractLabelResponse";
|
|
982
|
+
value: Uint8Array;
|
|
983
|
+
}
|
|
984
|
+
/** MsgUpdateContractLabelResponse returns empty data */
|
|
985
|
+
export interface MsgUpdateContractLabelResponseAmino {
|
|
986
|
+
}
|
|
987
|
+
export interface MsgUpdateContractLabelResponseAminoMsg {
|
|
988
|
+
type: "wasm/MsgUpdateContractLabelResponse";
|
|
989
|
+
value: MsgUpdateContractLabelResponseAmino;
|
|
990
|
+
}
|
|
991
|
+
export declare const MsgStoreCode: {
|
|
992
|
+
typeUrl: string;
|
|
993
|
+
aminoType: string;
|
|
994
|
+
is(o: any): o is MsgStoreCode;
|
|
995
|
+
isAmino(o: any): o is MsgStoreCodeAmino;
|
|
996
|
+
encode(message: MsgStoreCode, writer?: BinaryWriter): BinaryWriter;
|
|
997
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgStoreCode;
|
|
998
|
+
fromPartial(object: DeepPartial<MsgStoreCode>): MsgStoreCode;
|
|
999
|
+
fromAmino(object: MsgStoreCodeAmino): MsgStoreCode;
|
|
1000
|
+
toAmino(message: MsgStoreCode): MsgStoreCodeAmino;
|
|
1001
|
+
fromAminoMsg(object: MsgStoreCodeAminoMsg): MsgStoreCode;
|
|
1002
|
+
toAminoMsg(message: MsgStoreCode): MsgStoreCodeAminoMsg;
|
|
1003
|
+
fromProtoMsg(message: MsgStoreCodeProtoMsg): MsgStoreCode;
|
|
1004
|
+
toProto(message: MsgStoreCode): Uint8Array;
|
|
1005
|
+
toProtoMsg(message: MsgStoreCode): MsgStoreCodeProtoMsg;
|
|
1006
|
+
registerTypeUrl(): void;
|
|
1007
|
+
};
|
|
1008
|
+
export declare const MsgStoreCodeResponse: {
|
|
1009
|
+
typeUrl: string;
|
|
1010
|
+
aminoType: string;
|
|
1011
|
+
is(o: any): o is MsgStoreCodeResponse;
|
|
1012
|
+
isAmino(o: any): o is MsgStoreCodeResponseAmino;
|
|
1013
|
+
encode(message: MsgStoreCodeResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1014
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgStoreCodeResponse;
|
|
1015
|
+
fromPartial(object: DeepPartial<MsgStoreCodeResponse>): MsgStoreCodeResponse;
|
|
1016
|
+
fromAmino(object: MsgStoreCodeResponseAmino): MsgStoreCodeResponse;
|
|
1017
|
+
toAmino(message: MsgStoreCodeResponse): MsgStoreCodeResponseAmino;
|
|
1018
|
+
fromAminoMsg(object: MsgStoreCodeResponseAminoMsg): MsgStoreCodeResponse;
|
|
1019
|
+
toAminoMsg(message: MsgStoreCodeResponse): MsgStoreCodeResponseAminoMsg;
|
|
1020
|
+
fromProtoMsg(message: MsgStoreCodeResponseProtoMsg): MsgStoreCodeResponse;
|
|
1021
|
+
toProto(message: MsgStoreCodeResponse): Uint8Array;
|
|
1022
|
+
toProtoMsg(message: MsgStoreCodeResponse): MsgStoreCodeResponseProtoMsg;
|
|
1023
|
+
registerTypeUrl(): void;
|
|
1024
|
+
};
|
|
1025
|
+
export declare const MsgInstantiateContract: {
|
|
1026
|
+
typeUrl: string;
|
|
1027
|
+
aminoType: string;
|
|
1028
|
+
is(o: any): o is MsgInstantiateContract;
|
|
1029
|
+
isAmino(o: any): o is MsgInstantiateContractAmino;
|
|
1030
|
+
encode(message: MsgInstantiateContract, writer?: BinaryWriter): BinaryWriter;
|
|
1031
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgInstantiateContract;
|
|
1032
|
+
fromPartial(object: DeepPartial<MsgInstantiateContract>): MsgInstantiateContract;
|
|
1033
|
+
fromAmino(object: MsgInstantiateContractAmino): MsgInstantiateContract;
|
|
1034
|
+
toAmino(message: MsgInstantiateContract): MsgInstantiateContractAmino;
|
|
1035
|
+
fromAminoMsg(object: MsgInstantiateContractAminoMsg): MsgInstantiateContract;
|
|
1036
|
+
toAminoMsg(message: MsgInstantiateContract): MsgInstantiateContractAminoMsg;
|
|
1037
|
+
fromProtoMsg(message: MsgInstantiateContractProtoMsg): MsgInstantiateContract;
|
|
1038
|
+
toProto(message: MsgInstantiateContract): Uint8Array;
|
|
1039
|
+
toProtoMsg(message: MsgInstantiateContract): MsgInstantiateContractProtoMsg;
|
|
1040
|
+
registerTypeUrl(): void;
|
|
1041
|
+
};
|
|
1042
|
+
export declare const MsgInstantiateContractResponse: {
|
|
1043
|
+
typeUrl: string;
|
|
1044
|
+
aminoType: string;
|
|
1045
|
+
is(o: any): o is MsgInstantiateContractResponse;
|
|
1046
|
+
isAmino(o: any): o is MsgInstantiateContractResponseAmino;
|
|
1047
|
+
encode(message: MsgInstantiateContractResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1048
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgInstantiateContractResponse;
|
|
1049
|
+
fromPartial(object: DeepPartial<MsgInstantiateContractResponse>): MsgInstantiateContractResponse;
|
|
1050
|
+
fromAmino(object: MsgInstantiateContractResponseAmino): MsgInstantiateContractResponse;
|
|
1051
|
+
toAmino(message: MsgInstantiateContractResponse): MsgInstantiateContractResponseAmino;
|
|
1052
|
+
fromAminoMsg(object: MsgInstantiateContractResponseAminoMsg): MsgInstantiateContractResponse;
|
|
1053
|
+
toAminoMsg(message: MsgInstantiateContractResponse): MsgInstantiateContractResponseAminoMsg;
|
|
1054
|
+
fromProtoMsg(message: MsgInstantiateContractResponseProtoMsg): MsgInstantiateContractResponse;
|
|
1055
|
+
toProto(message: MsgInstantiateContractResponse): Uint8Array;
|
|
1056
|
+
toProtoMsg(message: MsgInstantiateContractResponse): MsgInstantiateContractResponseProtoMsg;
|
|
1057
|
+
registerTypeUrl(): void;
|
|
1058
|
+
};
|
|
1059
|
+
export declare const MsgInstantiateContract2: {
|
|
1060
|
+
typeUrl: string;
|
|
1061
|
+
aminoType: string;
|
|
1062
|
+
is(o: any): o is MsgInstantiateContract2;
|
|
1063
|
+
isAmino(o: any): o is MsgInstantiateContract2Amino;
|
|
1064
|
+
encode(message: MsgInstantiateContract2, writer?: BinaryWriter): BinaryWriter;
|
|
1065
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgInstantiateContract2;
|
|
1066
|
+
fromPartial(object: DeepPartial<MsgInstantiateContract2>): MsgInstantiateContract2;
|
|
1067
|
+
fromAmino(object: MsgInstantiateContract2Amino): MsgInstantiateContract2;
|
|
1068
|
+
toAmino(message: MsgInstantiateContract2): MsgInstantiateContract2Amino;
|
|
1069
|
+
fromAminoMsg(object: MsgInstantiateContract2AminoMsg): MsgInstantiateContract2;
|
|
1070
|
+
toAminoMsg(message: MsgInstantiateContract2): MsgInstantiateContract2AminoMsg;
|
|
1071
|
+
fromProtoMsg(message: MsgInstantiateContract2ProtoMsg): MsgInstantiateContract2;
|
|
1072
|
+
toProto(message: MsgInstantiateContract2): Uint8Array;
|
|
1073
|
+
toProtoMsg(message: MsgInstantiateContract2): MsgInstantiateContract2ProtoMsg;
|
|
1074
|
+
registerTypeUrl(): void;
|
|
1075
|
+
};
|
|
1076
|
+
export declare const MsgInstantiateContract2Response: {
|
|
1077
|
+
typeUrl: string;
|
|
1078
|
+
aminoType: string;
|
|
1079
|
+
is(o: any): o is MsgInstantiateContract2Response;
|
|
1080
|
+
isAmino(o: any): o is MsgInstantiateContract2ResponseAmino;
|
|
1081
|
+
encode(message: MsgInstantiateContract2Response, writer?: BinaryWriter): BinaryWriter;
|
|
1082
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgInstantiateContract2Response;
|
|
1083
|
+
fromPartial(object: DeepPartial<MsgInstantiateContract2Response>): MsgInstantiateContract2Response;
|
|
1084
|
+
fromAmino(object: MsgInstantiateContract2ResponseAmino): MsgInstantiateContract2Response;
|
|
1085
|
+
toAmino(message: MsgInstantiateContract2Response): MsgInstantiateContract2ResponseAmino;
|
|
1086
|
+
fromAminoMsg(object: MsgInstantiateContract2ResponseAminoMsg): MsgInstantiateContract2Response;
|
|
1087
|
+
toAminoMsg(message: MsgInstantiateContract2Response): MsgInstantiateContract2ResponseAminoMsg;
|
|
1088
|
+
fromProtoMsg(message: MsgInstantiateContract2ResponseProtoMsg): MsgInstantiateContract2Response;
|
|
1089
|
+
toProto(message: MsgInstantiateContract2Response): Uint8Array;
|
|
1090
|
+
toProtoMsg(message: MsgInstantiateContract2Response): MsgInstantiateContract2ResponseProtoMsg;
|
|
1091
|
+
registerTypeUrl(): void;
|
|
1092
|
+
};
|
|
1093
|
+
export declare const MsgExecuteContract: {
|
|
1094
|
+
typeUrl: string;
|
|
1095
|
+
aminoType: string;
|
|
1096
|
+
is(o: any): o is MsgExecuteContract;
|
|
1097
|
+
isAmino(o: any): o is MsgExecuteContractAmino;
|
|
1098
|
+
encode(message: MsgExecuteContract, writer?: BinaryWriter): BinaryWriter;
|
|
1099
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgExecuteContract;
|
|
1100
|
+
fromPartial(object: DeepPartial<MsgExecuteContract>): MsgExecuteContract;
|
|
1101
|
+
fromAmino(object: MsgExecuteContractAmino): MsgExecuteContract;
|
|
1102
|
+
toAmino(message: MsgExecuteContract): MsgExecuteContractAmino;
|
|
1103
|
+
fromAminoMsg(object: MsgExecuteContractAminoMsg): MsgExecuteContract;
|
|
1104
|
+
toAminoMsg(message: MsgExecuteContract): MsgExecuteContractAminoMsg;
|
|
1105
|
+
fromProtoMsg(message: MsgExecuteContractProtoMsg): MsgExecuteContract;
|
|
1106
|
+
toProto(message: MsgExecuteContract): Uint8Array;
|
|
1107
|
+
toProtoMsg(message: MsgExecuteContract): MsgExecuteContractProtoMsg;
|
|
1108
|
+
registerTypeUrl(): void;
|
|
1109
|
+
};
|
|
1110
|
+
export declare const MsgExecuteContractResponse: {
|
|
1111
|
+
typeUrl: string;
|
|
1112
|
+
aminoType: string;
|
|
1113
|
+
is(o: any): o is MsgExecuteContractResponse;
|
|
1114
|
+
isAmino(o: any): o is MsgExecuteContractResponseAmino;
|
|
1115
|
+
encode(message: MsgExecuteContractResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1116
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgExecuteContractResponse;
|
|
1117
|
+
fromPartial(object: DeepPartial<MsgExecuteContractResponse>): MsgExecuteContractResponse;
|
|
1118
|
+
fromAmino(object: MsgExecuteContractResponseAmino): MsgExecuteContractResponse;
|
|
1119
|
+
toAmino(message: MsgExecuteContractResponse): MsgExecuteContractResponseAmino;
|
|
1120
|
+
fromAminoMsg(object: MsgExecuteContractResponseAminoMsg): MsgExecuteContractResponse;
|
|
1121
|
+
toAminoMsg(message: MsgExecuteContractResponse): MsgExecuteContractResponseAminoMsg;
|
|
1122
|
+
fromProtoMsg(message: MsgExecuteContractResponseProtoMsg): MsgExecuteContractResponse;
|
|
1123
|
+
toProto(message: MsgExecuteContractResponse): Uint8Array;
|
|
1124
|
+
toProtoMsg(message: MsgExecuteContractResponse): MsgExecuteContractResponseProtoMsg;
|
|
1125
|
+
registerTypeUrl(): void;
|
|
1126
|
+
};
|
|
1127
|
+
export declare const MsgMigrateContract: {
|
|
1128
|
+
typeUrl: string;
|
|
1129
|
+
aminoType: string;
|
|
1130
|
+
is(o: any): o is MsgMigrateContract;
|
|
1131
|
+
isAmino(o: any): o is MsgMigrateContractAmino;
|
|
1132
|
+
encode(message: MsgMigrateContract, writer?: BinaryWriter): BinaryWriter;
|
|
1133
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgMigrateContract;
|
|
1134
|
+
fromPartial(object: DeepPartial<MsgMigrateContract>): MsgMigrateContract;
|
|
1135
|
+
fromAmino(object: MsgMigrateContractAmino): MsgMigrateContract;
|
|
1136
|
+
toAmino(message: MsgMigrateContract): MsgMigrateContractAmino;
|
|
1137
|
+
fromAminoMsg(object: MsgMigrateContractAminoMsg): MsgMigrateContract;
|
|
1138
|
+
toAminoMsg(message: MsgMigrateContract): MsgMigrateContractAminoMsg;
|
|
1139
|
+
fromProtoMsg(message: MsgMigrateContractProtoMsg): MsgMigrateContract;
|
|
1140
|
+
toProto(message: MsgMigrateContract): Uint8Array;
|
|
1141
|
+
toProtoMsg(message: MsgMigrateContract): MsgMigrateContractProtoMsg;
|
|
1142
|
+
registerTypeUrl(): void;
|
|
1143
|
+
};
|
|
1144
|
+
export declare const MsgMigrateContractResponse: {
|
|
1145
|
+
typeUrl: string;
|
|
1146
|
+
aminoType: string;
|
|
1147
|
+
is(o: any): o is MsgMigrateContractResponse;
|
|
1148
|
+
isAmino(o: any): o is MsgMigrateContractResponseAmino;
|
|
1149
|
+
encode(message: MsgMigrateContractResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1150
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgMigrateContractResponse;
|
|
1151
|
+
fromPartial(object: DeepPartial<MsgMigrateContractResponse>): MsgMigrateContractResponse;
|
|
1152
|
+
fromAmino(object: MsgMigrateContractResponseAmino): MsgMigrateContractResponse;
|
|
1153
|
+
toAmino(message: MsgMigrateContractResponse): MsgMigrateContractResponseAmino;
|
|
1154
|
+
fromAminoMsg(object: MsgMigrateContractResponseAminoMsg): MsgMigrateContractResponse;
|
|
1155
|
+
toAminoMsg(message: MsgMigrateContractResponse): MsgMigrateContractResponseAminoMsg;
|
|
1156
|
+
fromProtoMsg(message: MsgMigrateContractResponseProtoMsg): MsgMigrateContractResponse;
|
|
1157
|
+
toProto(message: MsgMigrateContractResponse): Uint8Array;
|
|
1158
|
+
toProtoMsg(message: MsgMigrateContractResponse): MsgMigrateContractResponseProtoMsg;
|
|
1159
|
+
registerTypeUrl(): void;
|
|
1160
|
+
};
|
|
1161
|
+
export declare const MsgUpdateAdmin: {
|
|
1162
|
+
typeUrl: string;
|
|
1163
|
+
aminoType: string;
|
|
1164
|
+
is(o: any): o is MsgUpdateAdmin;
|
|
1165
|
+
isAmino(o: any): o is MsgUpdateAdminAmino;
|
|
1166
|
+
encode(message: MsgUpdateAdmin, writer?: BinaryWriter): BinaryWriter;
|
|
1167
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateAdmin;
|
|
1168
|
+
fromPartial(object: DeepPartial<MsgUpdateAdmin>): MsgUpdateAdmin;
|
|
1169
|
+
fromAmino(object: MsgUpdateAdminAmino): MsgUpdateAdmin;
|
|
1170
|
+
toAmino(message: MsgUpdateAdmin): MsgUpdateAdminAmino;
|
|
1171
|
+
fromAminoMsg(object: MsgUpdateAdminAminoMsg): MsgUpdateAdmin;
|
|
1172
|
+
toAminoMsg(message: MsgUpdateAdmin): MsgUpdateAdminAminoMsg;
|
|
1173
|
+
fromProtoMsg(message: MsgUpdateAdminProtoMsg): MsgUpdateAdmin;
|
|
1174
|
+
toProto(message: MsgUpdateAdmin): Uint8Array;
|
|
1175
|
+
toProtoMsg(message: MsgUpdateAdmin): MsgUpdateAdminProtoMsg;
|
|
1176
|
+
registerTypeUrl(): void;
|
|
1177
|
+
};
|
|
1178
|
+
export declare const MsgUpdateAdminResponse: {
|
|
1179
|
+
typeUrl: string;
|
|
1180
|
+
aminoType: string;
|
|
1181
|
+
is(o: any): o is MsgUpdateAdminResponse;
|
|
1182
|
+
isAmino(o: any): o is MsgUpdateAdminResponseAmino;
|
|
1183
|
+
encode(_: MsgUpdateAdminResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1184
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateAdminResponse;
|
|
1185
|
+
fromPartial(_: DeepPartial<MsgUpdateAdminResponse>): MsgUpdateAdminResponse;
|
|
1186
|
+
fromAmino(_: MsgUpdateAdminResponseAmino): MsgUpdateAdminResponse;
|
|
1187
|
+
toAmino(_: MsgUpdateAdminResponse): MsgUpdateAdminResponseAmino;
|
|
1188
|
+
fromAminoMsg(object: MsgUpdateAdminResponseAminoMsg): MsgUpdateAdminResponse;
|
|
1189
|
+
toAminoMsg(message: MsgUpdateAdminResponse): MsgUpdateAdminResponseAminoMsg;
|
|
1190
|
+
fromProtoMsg(message: MsgUpdateAdminResponseProtoMsg): MsgUpdateAdminResponse;
|
|
1191
|
+
toProto(message: MsgUpdateAdminResponse): Uint8Array;
|
|
1192
|
+
toProtoMsg(message: MsgUpdateAdminResponse): MsgUpdateAdminResponseProtoMsg;
|
|
1193
|
+
registerTypeUrl(): void;
|
|
1194
|
+
};
|
|
1195
|
+
export declare const MsgClearAdmin: {
|
|
1196
|
+
typeUrl: string;
|
|
1197
|
+
aminoType: string;
|
|
1198
|
+
is(o: any): o is MsgClearAdmin;
|
|
1199
|
+
isAmino(o: any): o is MsgClearAdminAmino;
|
|
1200
|
+
encode(message: MsgClearAdmin, writer?: BinaryWriter): BinaryWriter;
|
|
1201
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgClearAdmin;
|
|
1202
|
+
fromPartial(object: DeepPartial<MsgClearAdmin>): MsgClearAdmin;
|
|
1203
|
+
fromAmino(object: MsgClearAdminAmino): MsgClearAdmin;
|
|
1204
|
+
toAmino(message: MsgClearAdmin): MsgClearAdminAmino;
|
|
1205
|
+
fromAminoMsg(object: MsgClearAdminAminoMsg): MsgClearAdmin;
|
|
1206
|
+
toAminoMsg(message: MsgClearAdmin): MsgClearAdminAminoMsg;
|
|
1207
|
+
fromProtoMsg(message: MsgClearAdminProtoMsg): MsgClearAdmin;
|
|
1208
|
+
toProto(message: MsgClearAdmin): Uint8Array;
|
|
1209
|
+
toProtoMsg(message: MsgClearAdmin): MsgClearAdminProtoMsg;
|
|
1210
|
+
registerTypeUrl(): void;
|
|
1211
|
+
};
|
|
1212
|
+
export declare const MsgClearAdminResponse: {
|
|
1213
|
+
typeUrl: string;
|
|
1214
|
+
aminoType: string;
|
|
1215
|
+
is(o: any): o is MsgClearAdminResponse;
|
|
1216
|
+
isAmino(o: any): o is MsgClearAdminResponseAmino;
|
|
1217
|
+
encode(_: MsgClearAdminResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1218
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgClearAdminResponse;
|
|
1219
|
+
fromPartial(_: DeepPartial<MsgClearAdminResponse>): MsgClearAdminResponse;
|
|
1220
|
+
fromAmino(_: MsgClearAdminResponseAmino): MsgClearAdminResponse;
|
|
1221
|
+
toAmino(_: MsgClearAdminResponse): MsgClearAdminResponseAmino;
|
|
1222
|
+
fromAminoMsg(object: MsgClearAdminResponseAminoMsg): MsgClearAdminResponse;
|
|
1223
|
+
toAminoMsg(message: MsgClearAdminResponse): MsgClearAdminResponseAminoMsg;
|
|
1224
|
+
fromProtoMsg(message: MsgClearAdminResponseProtoMsg): MsgClearAdminResponse;
|
|
1225
|
+
toProto(message: MsgClearAdminResponse): Uint8Array;
|
|
1226
|
+
toProtoMsg(message: MsgClearAdminResponse): MsgClearAdminResponseProtoMsg;
|
|
1227
|
+
registerTypeUrl(): void;
|
|
1228
|
+
};
|
|
1229
|
+
export declare const MsgUpdateInstantiateConfig: {
|
|
1230
|
+
typeUrl: string;
|
|
1231
|
+
aminoType: string;
|
|
1232
|
+
is(o: any): o is MsgUpdateInstantiateConfig;
|
|
1233
|
+
isAmino(o: any): o is MsgUpdateInstantiateConfigAmino;
|
|
1234
|
+
encode(message: MsgUpdateInstantiateConfig, writer?: BinaryWriter): BinaryWriter;
|
|
1235
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateInstantiateConfig;
|
|
1236
|
+
fromPartial(object: DeepPartial<MsgUpdateInstantiateConfig>): MsgUpdateInstantiateConfig;
|
|
1237
|
+
fromAmino(object: MsgUpdateInstantiateConfigAmino): MsgUpdateInstantiateConfig;
|
|
1238
|
+
toAmino(message: MsgUpdateInstantiateConfig): MsgUpdateInstantiateConfigAmino;
|
|
1239
|
+
fromAminoMsg(object: MsgUpdateInstantiateConfigAminoMsg): MsgUpdateInstantiateConfig;
|
|
1240
|
+
toAminoMsg(message: MsgUpdateInstantiateConfig): MsgUpdateInstantiateConfigAminoMsg;
|
|
1241
|
+
fromProtoMsg(message: MsgUpdateInstantiateConfigProtoMsg): MsgUpdateInstantiateConfig;
|
|
1242
|
+
toProto(message: MsgUpdateInstantiateConfig): Uint8Array;
|
|
1243
|
+
toProtoMsg(message: MsgUpdateInstantiateConfig): MsgUpdateInstantiateConfigProtoMsg;
|
|
1244
|
+
registerTypeUrl(): void;
|
|
1245
|
+
};
|
|
1246
|
+
export declare const MsgUpdateInstantiateConfigResponse: {
|
|
1247
|
+
typeUrl: string;
|
|
1248
|
+
aminoType: string;
|
|
1249
|
+
is(o: any): o is MsgUpdateInstantiateConfigResponse;
|
|
1250
|
+
isAmino(o: any): o is MsgUpdateInstantiateConfigResponseAmino;
|
|
1251
|
+
encode(_: MsgUpdateInstantiateConfigResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1252
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateInstantiateConfigResponse;
|
|
1253
|
+
fromPartial(_: DeepPartial<MsgUpdateInstantiateConfigResponse>): MsgUpdateInstantiateConfigResponse;
|
|
1254
|
+
fromAmino(_: MsgUpdateInstantiateConfigResponseAmino): MsgUpdateInstantiateConfigResponse;
|
|
1255
|
+
toAmino(_: MsgUpdateInstantiateConfigResponse): MsgUpdateInstantiateConfigResponseAmino;
|
|
1256
|
+
fromAminoMsg(object: MsgUpdateInstantiateConfigResponseAminoMsg): MsgUpdateInstantiateConfigResponse;
|
|
1257
|
+
toAminoMsg(message: MsgUpdateInstantiateConfigResponse): MsgUpdateInstantiateConfigResponseAminoMsg;
|
|
1258
|
+
fromProtoMsg(message: MsgUpdateInstantiateConfigResponseProtoMsg): MsgUpdateInstantiateConfigResponse;
|
|
1259
|
+
toProto(message: MsgUpdateInstantiateConfigResponse): Uint8Array;
|
|
1260
|
+
toProtoMsg(message: MsgUpdateInstantiateConfigResponse): MsgUpdateInstantiateConfigResponseProtoMsg;
|
|
1261
|
+
registerTypeUrl(): void;
|
|
1262
|
+
};
|
|
1263
|
+
export declare const MsgUpdateParams: {
|
|
1264
|
+
typeUrl: string;
|
|
1265
|
+
aminoType: string;
|
|
1266
|
+
is(o: any): o is MsgUpdateParams;
|
|
1267
|
+
isAmino(o: any): o is MsgUpdateParamsAmino;
|
|
1268
|
+
encode(message: MsgUpdateParams, writer?: BinaryWriter): BinaryWriter;
|
|
1269
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateParams;
|
|
1270
|
+
fromPartial(object: DeepPartial<MsgUpdateParams>): MsgUpdateParams;
|
|
1271
|
+
fromAmino(object: MsgUpdateParamsAmino): MsgUpdateParams;
|
|
1272
|
+
toAmino(message: MsgUpdateParams): MsgUpdateParamsAmino;
|
|
1273
|
+
fromAminoMsg(object: MsgUpdateParamsAminoMsg): MsgUpdateParams;
|
|
1274
|
+
toAminoMsg(message: MsgUpdateParams): MsgUpdateParamsAminoMsg;
|
|
1275
|
+
fromProtoMsg(message: MsgUpdateParamsProtoMsg): MsgUpdateParams;
|
|
1276
|
+
toProto(message: MsgUpdateParams): Uint8Array;
|
|
1277
|
+
toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg;
|
|
1278
|
+
registerTypeUrl(): void;
|
|
1279
|
+
};
|
|
1280
|
+
export declare const MsgUpdateParamsResponse: {
|
|
1281
|
+
typeUrl: string;
|
|
1282
|
+
aminoType: string;
|
|
1283
|
+
is(o: any): o is MsgUpdateParamsResponse;
|
|
1284
|
+
isAmino(o: any): o is MsgUpdateParamsResponseAmino;
|
|
1285
|
+
encode(_: MsgUpdateParamsResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1286
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateParamsResponse;
|
|
1287
|
+
fromPartial(_: DeepPartial<MsgUpdateParamsResponse>): MsgUpdateParamsResponse;
|
|
1288
|
+
fromAmino(_: MsgUpdateParamsResponseAmino): MsgUpdateParamsResponse;
|
|
1289
|
+
toAmino(_: MsgUpdateParamsResponse): MsgUpdateParamsResponseAmino;
|
|
1290
|
+
fromAminoMsg(object: MsgUpdateParamsResponseAminoMsg): MsgUpdateParamsResponse;
|
|
1291
|
+
toAminoMsg(message: MsgUpdateParamsResponse): MsgUpdateParamsResponseAminoMsg;
|
|
1292
|
+
fromProtoMsg(message: MsgUpdateParamsResponseProtoMsg): MsgUpdateParamsResponse;
|
|
1293
|
+
toProto(message: MsgUpdateParamsResponse): Uint8Array;
|
|
1294
|
+
toProtoMsg(message: MsgUpdateParamsResponse): MsgUpdateParamsResponseProtoMsg;
|
|
1295
|
+
registerTypeUrl(): void;
|
|
1296
|
+
};
|
|
1297
|
+
export declare const MsgSudoContract: {
|
|
1298
|
+
typeUrl: string;
|
|
1299
|
+
aminoType: string;
|
|
1300
|
+
is(o: any): o is MsgSudoContract;
|
|
1301
|
+
isAmino(o: any): o is MsgSudoContractAmino;
|
|
1302
|
+
encode(message: MsgSudoContract, writer?: BinaryWriter): BinaryWriter;
|
|
1303
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgSudoContract;
|
|
1304
|
+
fromPartial(object: DeepPartial<MsgSudoContract>): MsgSudoContract;
|
|
1305
|
+
fromAmino(object: MsgSudoContractAmino): MsgSudoContract;
|
|
1306
|
+
toAmino(message: MsgSudoContract): MsgSudoContractAmino;
|
|
1307
|
+
fromAminoMsg(object: MsgSudoContractAminoMsg): MsgSudoContract;
|
|
1308
|
+
toAminoMsg(message: MsgSudoContract): MsgSudoContractAminoMsg;
|
|
1309
|
+
fromProtoMsg(message: MsgSudoContractProtoMsg): MsgSudoContract;
|
|
1310
|
+
toProto(message: MsgSudoContract): Uint8Array;
|
|
1311
|
+
toProtoMsg(message: MsgSudoContract): MsgSudoContractProtoMsg;
|
|
1312
|
+
registerTypeUrl(): void;
|
|
1313
|
+
};
|
|
1314
|
+
export declare const MsgSudoContractResponse: {
|
|
1315
|
+
typeUrl: string;
|
|
1316
|
+
aminoType: string;
|
|
1317
|
+
is(o: any): o is MsgSudoContractResponse;
|
|
1318
|
+
isAmino(o: any): o is MsgSudoContractResponseAmino;
|
|
1319
|
+
encode(message: MsgSudoContractResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1320
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgSudoContractResponse;
|
|
1321
|
+
fromPartial(object: DeepPartial<MsgSudoContractResponse>): MsgSudoContractResponse;
|
|
1322
|
+
fromAmino(object: MsgSudoContractResponseAmino): MsgSudoContractResponse;
|
|
1323
|
+
toAmino(message: MsgSudoContractResponse): MsgSudoContractResponseAmino;
|
|
1324
|
+
fromAminoMsg(object: MsgSudoContractResponseAminoMsg): MsgSudoContractResponse;
|
|
1325
|
+
toAminoMsg(message: MsgSudoContractResponse): MsgSudoContractResponseAminoMsg;
|
|
1326
|
+
fromProtoMsg(message: MsgSudoContractResponseProtoMsg): MsgSudoContractResponse;
|
|
1327
|
+
toProto(message: MsgSudoContractResponse): Uint8Array;
|
|
1328
|
+
toProtoMsg(message: MsgSudoContractResponse): MsgSudoContractResponseProtoMsg;
|
|
1329
|
+
registerTypeUrl(): void;
|
|
1330
|
+
};
|
|
1331
|
+
export declare const MsgPinCodes: {
|
|
1332
|
+
typeUrl: string;
|
|
1333
|
+
aminoType: string;
|
|
1334
|
+
is(o: any): o is MsgPinCodes;
|
|
1335
|
+
isAmino(o: any): o is MsgPinCodesAmino;
|
|
1336
|
+
encode(message: MsgPinCodes, writer?: BinaryWriter): BinaryWriter;
|
|
1337
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgPinCodes;
|
|
1338
|
+
fromPartial(object: DeepPartial<MsgPinCodes>): MsgPinCodes;
|
|
1339
|
+
fromAmino(object: MsgPinCodesAmino): MsgPinCodes;
|
|
1340
|
+
toAmino(message: MsgPinCodes): MsgPinCodesAmino;
|
|
1341
|
+
fromAminoMsg(object: MsgPinCodesAminoMsg): MsgPinCodes;
|
|
1342
|
+
toAminoMsg(message: MsgPinCodes): MsgPinCodesAminoMsg;
|
|
1343
|
+
fromProtoMsg(message: MsgPinCodesProtoMsg): MsgPinCodes;
|
|
1344
|
+
toProto(message: MsgPinCodes): Uint8Array;
|
|
1345
|
+
toProtoMsg(message: MsgPinCodes): MsgPinCodesProtoMsg;
|
|
1346
|
+
registerTypeUrl(): void;
|
|
1347
|
+
};
|
|
1348
|
+
export declare const MsgPinCodesResponse: {
|
|
1349
|
+
typeUrl: string;
|
|
1350
|
+
aminoType: string;
|
|
1351
|
+
is(o: any): o is MsgPinCodesResponse;
|
|
1352
|
+
isAmino(o: any): o is MsgPinCodesResponseAmino;
|
|
1353
|
+
encode(_: MsgPinCodesResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1354
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgPinCodesResponse;
|
|
1355
|
+
fromPartial(_: DeepPartial<MsgPinCodesResponse>): MsgPinCodesResponse;
|
|
1356
|
+
fromAmino(_: MsgPinCodesResponseAmino): MsgPinCodesResponse;
|
|
1357
|
+
toAmino(_: MsgPinCodesResponse): MsgPinCodesResponseAmino;
|
|
1358
|
+
fromAminoMsg(object: MsgPinCodesResponseAminoMsg): MsgPinCodesResponse;
|
|
1359
|
+
toAminoMsg(message: MsgPinCodesResponse): MsgPinCodesResponseAminoMsg;
|
|
1360
|
+
fromProtoMsg(message: MsgPinCodesResponseProtoMsg): MsgPinCodesResponse;
|
|
1361
|
+
toProto(message: MsgPinCodesResponse): Uint8Array;
|
|
1362
|
+
toProtoMsg(message: MsgPinCodesResponse): MsgPinCodesResponseProtoMsg;
|
|
1363
|
+
registerTypeUrl(): void;
|
|
1364
|
+
};
|
|
1365
|
+
export declare const MsgUnpinCodes: {
|
|
1366
|
+
typeUrl: string;
|
|
1367
|
+
aminoType: string;
|
|
1368
|
+
is(o: any): o is MsgUnpinCodes;
|
|
1369
|
+
isAmino(o: any): o is MsgUnpinCodesAmino;
|
|
1370
|
+
encode(message: MsgUnpinCodes, writer?: BinaryWriter): BinaryWriter;
|
|
1371
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUnpinCodes;
|
|
1372
|
+
fromPartial(object: DeepPartial<MsgUnpinCodes>): MsgUnpinCodes;
|
|
1373
|
+
fromAmino(object: MsgUnpinCodesAmino): MsgUnpinCodes;
|
|
1374
|
+
toAmino(message: MsgUnpinCodes): MsgUnpinCodesAmino;
|
|
1375
|
+
fromAminoMsg(object: MsgUnpinCodesAminoMsg): MsgUnpinCodes;
|
|
1376
|
+
toAminoMsg(message: MsgUnpinCodes): MsgUnpinCodesAminoMsg;
|
|
1377
|
+
fromProtoMsg(message: MsgUnpinCodesProtoMsg): MsgUnpinCodes;
|
|
1378
|
+
toProto(message: MsgUnpinCodes): Uint8Array;
|
|
1379
|
+
toProtoMsg(message: MsgUnpinCodes): MsgUnpinCodesProtoMsg;
|
|
1380
|
+
registerTypeUrl(): void;
|
|
1381
|
+
};
|
|
1382
|
+
export declare const MsgUnpinCodesResponse: {
|
|
1383
|
+
typeUrl: string;
|
|
1384
|
+
aminoType: string;
|
|
1385
|
+
is(o: any): o is MsgUnpinCodesResponse;
|
|
1386
|
+
isAmino(o: any): o is MsgUnpinCodesResponseAmino;
|
|
1387
|
+
encode(_: MsgUnpinCodesResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1388
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUnpinCodesResponse;
|
|
1389
|
+
fromPartial(_: DeepPartial<MsgUnpinCodesResponse>): MsgUnpinCodesResponse;
|
|
1390
|
+
fromAmino(_: MsgUnpinCodesResponseAmino): MsgUnpinCodesResponse;
|
|
1391
|
+
toAmino(_: MsgUnpinCodesResponse): MsgUnpinCodesResponseAmino;
|
|
1392
|
+
fromAminoMsg(object: MsgUnpinCodesResponseAminoMsg): MsgUnpinCodesResponse;
|
|
1393
|
+
toAminoMsg(message: MsgUnpinCodesResponse): MsgUnpinCodesResponseAminoMsg;
|
|
1394
|
+
fromProtoMsg(message: MsgUnpinCodesResponseProtoMsg): MsgUnpinCodesResponse;
|
|
1395
|
+
toProto(message: MsgUnpinCodesResponse): Uint8Array;
|
|
1396
|
+
toProtoMsg(message: MsgUnpinCodesResponse): MsgUnpinCodesResponseProtoMsg;
|
|
1397
|
+
registerTypeUrl(): void;
|
|
1398
|
+
};
|
|
1399
|
+
export declare const MsgStoreAndInstantiateContract: {
|
|
1400
|
+
typeUrl: string;
|
|
1401
|
+
aminoType: string;
|
|
1402
|
+
is(o: any): o is MsgStoreAndInstantiateContract;
|
|
1403
|
+
isAmino(o: any): o is MsgStoreAndInstantiateContractAmino;
|
|
1404
|
+
encode(message: MsgStoreAndInstantiateContract, writer?: BinaryWriter): BinaryWriter;
|
|
1405
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgStoreAndInstantiateContract;
|
|
1406
|
+
fromPartial(object: DeepPartial<MsgStoreAndInstantiateContract>): MsgStoreAndInstantiateContract;
|
|
1407
|
+
fromAmino(object: MsgStoreAndInstantiateContractAmino): MsgStoreAndInstantiateContract;
|
|
1408
|
+
toAmino(message: MsgStoreAndInstantiateContract): MsgStoreAndInstantiateContractAmino;
|
|
1409
|
+
fromAminoMsg(object: MsgStoreAndInstantiateContractAminoMsg): MsgStoreAndInstantiateContract;
|
|
1410
|
+
toAminoMsg(message: MsgStoreAndInstantiateContract): MsgStoreAndInstantiateContractAminoMsg;
|
|
1411
|
+
fromProtoMsg(message: MsgStoreAndInstantiateContractProtoMsg): MsgStoreAndInstantiateContract;
|
|
1412
|
+
toProto(message: MsgStoreAndInstantiateContract): Uint8Array;
|
|
1413
|
+
toProtoMsg(message: MsgStoreAndInstantiateContract): MsgStoreAndInstantiateContractProtoMsg;
|
|
1414
|
+
registerTypeUrl(): void;
|
|
1415
|
+
};
|
|
1416
|
+
export declare const MsgStoreAndInstantiateContractResponse: {
|
|
1417
|
+
typeUrl: string;
|
|
1418
|
+
aminoType: string;
|
|
1419
|
+
is(o: any): o is MsgStoreAndInstantiateContractResponse;
|
|
1420
|
+
isAmino(o: any): o is MsgStoreAndInstantiateContractResponseAmino;
|
|
1421
|
+
encode(message: MsgStoreAndInstantiateContractResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1422
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgStoreAndInstantiateContractResponse;
|
|
1423
|
+
fromPartial(object: DeepPartial<MsgStoreAndInstantiateContractResponse>): MsgStoreAndInstantiateContractResponse;
|
|
1424
|
+
fromAmino(object: MsgStoreAndInstantiateContractResponseAmino): MsgStoreAndInstantiateContractResponse;
|
|
1425
|
+
toAmino(message: MsgStoreAndInstantiateContractResponse): MsgStoreAndInstantiateContractResponseAmino;
|
|
1426
|
+
fromAminoMsg(object: MsgStoreAndInstantiateContractResponseAminoMsg): MsgStoreAndInstantiateContractResponse;
|
|
1427
|
+
toAminoMsg(message: MsgStoreAndInstantiateContractResponse): MsgStoreAndInstantiateContractResponseAminoMsg;
|
|
1428
|
+
fromProtoMsg(message: MsgStoreAndInstantiateContractResponseProtoMsg): MsgStoreAndInstantiateContractResponse;
|
|
1429
|
+
toProto(message: MsgStoreAndInstantiateContractResponse): Uint8Array;
|
|
1430
|
+
toProtoMsg(message: MsgStoreAndInstantiateContractResponse): MsgStoreAndInstantiateContractResponseProtoMsg;
|
|
1431
|
+
registerTypeUrl(): void;
|
|
1432
|
+
};
|
|
1433
|
+
export declare const MsgAddCodeUploadParamsAddresses: {
|
|
1434
|
+
typeUrl: string;
|
|
1435
|
+
aminoType: string;
|
|
1436
|
+
is(o: any): o is MsgAddCodeUploadParamsAddresses;
|
|
1437
|
+
isAmino(o: any): o is MsgAddCodeUploadParamsAddressesAmino;
|
|
1438
|
+
encode(message: MsgAddCodeUploadParamsAddresses, writer?: BinaryWriter): BinaryWriter;
|
|
1439
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgAddCodeUploadParamsAddresses;
|
|
1440
|
+
fromPartial(object: DeepPartial<MsgAddCodeUploadParamsAddresses>): MsgAddCodeUploadParamsAddresses;
|
|
1441
|
+
fromAmino(object: MsgAddCodeUploadParamsAddressesAmino): MsgAddCodeUploadParamsAddresses;
|
|
1442
|
+
toAmino(message: MsgAddCodeUploadParamsAddresses): MsgAddCodeUploadParamsAddressesAmino;
|
|
1443
|
+
fromAminoMsg(object: MsgAddCodeUploadParamsAddressesAminoMsg): MsgAddCodeUploadParamsAddresses;
|
|
1444
|
+
toAminoMsg(message: MsgAddCodeUploadParamsAddresses): MsgAddCodeUploadParamsAddressesAminoMsg;
|
|
1445
|
+
fromProtoMsg(message: MsgAddCodeUploadParamsAddressesProtoMsg): MsgAddCodeUploadParamsAddresses;
|
|
1446
|
+
toProto(message: MsgAddCodeUploadParamsAddresses): Uint8Array;
|
|
1447
|
+
toProtoMsg(message: MsgAddCodeUploadParamsAddresses): MsgAddCodeUploadParamsAddressesProtoMsg;
|
|
1448
|
+
registerTypeUrl(): void;
|
|
1449
|
+
};
|
|
1450
|
+
export declare const MsgAddCodeUploadParamsAddressesResponse: {
|
|
1451
|
+
typeUrl: string;
|
|
1452
|
+
aminoType: string;
|
|
1453
|
+
is(o: any): o is MsgAddCodeUploadParamsAddressesResponse;
|
|
1454
|
+
isAmino(o: any): o is MsgAddCodeUploadParamsAddressesResponseAmino;
|
|
1455
|
+
encode(_: MsgAddCodeUploadParamsAddressesResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1456
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgAddCodeUploadParamsAddressesResponse;
|
|
1457
|
+
fromPartial(_: DeepPartial<MsgAddCodeUploadParamsAddressesResponse>): MsgAddCodeUploadParamsAddressesResponse;
|
|
1458
|
+
fromAmino(_: MsgAddCodeUploadParamsAddressesResponseAmino): MsgAddCodeUploadParamsAddressesResponse;
|
|
1459
|
+
toAmino(_: MsgAddCodeUploadParamsAddressesResponse): MsgAddCodeUploadParamsAddressesResponseAmino;
|
|
1460
|
+
fromAminoMsg(object: MsgAddCodeUploadParamsAddressesResponseAminoMsg): MsgAddCodeUploadParamsAddressesResponse;
|
|
1461
|
+
toAminoMsg(message: MsgAddCodeUploadParamsAddressesResponse): MsgAddCodeUploadParamsAddressesResponseAminoMsg;
|
|
1462
|
+
fromProtoMsg(message: MsgAddCodeUploadParamsAddressesResponseProtoMsg): MsgAddCodeUploadParamsAddressesResponse;
|
|
1463
|
+
toProto(message: MsgAddCodeUploadParamsAddressesResponse): Uint8Array;
|
|
1464
|
+
toProtoMsg(message: MsgAddCodeUploadParamsAddressesResponse): MsgAddCodeUploadParamsAddressesResponseProtoMsg;
|
|
1465
|
+
registerTypeUrl(): void;
|
|
1466
|
+
};
|
|
1467
|
+
export declare const MsgRemoveCodeUploadParamsAddresses: {
|
|
1468
|
+
typeUrl: string;
|
|
1469
|
+
aminoType: string;
|
|
1470
|
+
is(o: any): o is MsgRemoveCodeUploadParamsAddresses;
|
|
1471
|
+
isAmino(o: any): o is MsgRemoveCodeUploadParamsAddressesAmino;
|
|
1472
|
+
encode(message: MsgRemoveCodeUploadParamsAddresses, writer?: BinaryWriter): BinaryWriter;
|
|
1473
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgRemoveCodeUploadParamsAddresses;
|
|
1474
|
+
fromPartial(object: DeepPartial<MsgRemoveCodeUploadParamsAddresses>): MsgRemoveCodeUploadParamsAddresses;
|
|
1475
|
+
fromAmino(object: MsgRemoveCodeUploadParamsAddressesAmino): MsgRemoveCodeUploadParamsAddresses;
|
|
1476
|
+
toAmino(message: MsgRemoveCodeUploadParamsAddresses): MsgRemoveCodeUploadParamsAddressesAmino;
|
|
1477
|
+
fromAminoMsg(object: MsgRemoveCodeUploadParamsAddressesAminoMsg): MsgRemoveCodeUploadParamsAddresses;
|
|
1478
|
+
toAminoMsg(message: MsgRemoveCodeUploadParamsAddresses): MsgRemoveCodeUploadParamsAddressesAminoMsg;
|
|
1479
|
+
fromProtoMsg(message: MsgRemoveCodeUploadParamsAddressesProtoMsg): MsgRemoveCodeUploadParamsAddresses;
|
|
1480
|
+
toProto(message: MsgRemoveCodeUploadParamsAddresses): Uint8Array;
|
|
1481
|
+
toProtoMsg(message: MsgRemoveCodeUploadParamsAddresses): MsgRemoveCodeUploadParamsAddressesProtoMsg;
|
|
1482
|
+
registerTypeUrl(): void;
|
|
1483
|
+
};
|
|
1484
|
+
export declare const MsgRemoveCodeUploadParamsAddressesResponse: {
|
|
1485
|
+
typeUrl: string;
|
|
1486
|
+
aminoType: string;
|
|
1487
|
+
is(o: any): o is MsgRemoveCodeUploadParamsAddressesResponse;
|
|
1488
|
+
isAmino(o: any): o is MsgRemoveCodeUploadParamsAddressesResponseAmino;
|
|
1489
|
+
encode(_: MsgRemoveCodeUploadParamsAddressesResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1490
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgRemoveCodeUploadParamsAddressesResponse;
|
|
1491
|
+
fromPartial(_: DeepPartial<MsgRemoveCodeUploadParamsAddressesResponse>): MsgRemoveCodeUploadParamsAddressesResponse;
|
|
1492
|
+
fromAmino(_: MsgRemoveCodeUploadParamsAddressesResponseAmino): MsgRemoveCodeUploadParamsAddressesResponse;
|
|
1493
|
+
toAmino(_: MsgRemoveCodeUploadParamsAddressesResponse): MsgRemoveCodeUploadParamsAddressesResponseAmino;
|
|
1494
|
+
fromAminoMsg(object: MsgRemoveCodeUploadParamsAddressesResponseAminoMsg): MsgRemoveCodeUploadParamsAddressesResponse;
|
|
1495
|
+
toAminoMsg(message: MsgRemoveCodeUploadParamsAddressesResponse): MsgRemoveCodeUploadParamsAddressesResponseAminoMsg;
|
|
1496
|
+
fromProtoMsg(message: MsgRemoveCodeUploadParamsAddressesResponseProtoMsg): MsgRemoveCodeUploadParamsAddressesResponse;
|
|
1497
|
+
toProto(message: MsgRemoveCodeUploadParamsAddressesResponse): Uint8Array;
|
|
1498
|
+
toProtoMsg(message: MsgRemoveCodeUploadParamsAddressesResponse): MsgRemoveCodeUploadParamsAddressesResponseProtoMsg;
|
|
1499
|
+
registerTypeUrl(): void;
|
|
1500
|
+
};
|
|
1501
|
+
export declare const MsgStoreAndMigrateContract: {
|
|
1502
|
+
typeUrl: string;
|
|
1503
|
+
aminoType: string;
|
|
1504
|
+
is(o: any): o is MsgStoreAndMigrateContract;
|
|
1505
|
+
isAmino(o: any): o is MsgStoreAndMigrateContractAmino;
|
|
1506
|
+
encode(message: MsgStoreAndMigrateContract, writer?: BinaryWriter): BinaryWriter;
|
|
1507
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgStoreAndMigrateContract;
|
|
1508
|
+
fromPartial(object: DeepPartial<MsgStoreAndMigrateContract>): MsgStoreAndMigrateContract;
|
|
1509
|
+
fromAmino(object: MsgStoreAndMigrateContractAmino): MsgStoreAndMigrateContract;
|
|
1510
|
+
toAmino(message: MsgStoreAndMigrateContract): MsgStoreAndMigrateContractAmino;
|
|
1511
|
+
fromAminoMsg(object: MsgStoreAndMigrateContractAminoMsg): MsgStoreAndMigrateContract;
|
|
1512
|
+
toAminoMsg(message: MsgStoreAndMigrateContract): MsgStoreAndMigrateContractAminoMsg;
|
|
1513
|
+
fromProtoMsg(message: MsgStoreAndMigrateContractProtoMsg): MsgStoreAndMigrateContract;
|
|
1514
|
+
toProto(message: MsgStoreAndMigrateContract): Uint8Array;
|
|
1515
|
+
toProtoMsg(message: MsgStoreAndMigrateContract): MsgStoreAndMigrateContractProtoMsg;
|
|
1516
|
+
registerTypeUrl(): void;
|
|
1517
|
+
};
|
|
1518
|
+
export declare const MsgStoreAndMigrateContractResponse: {
|
|
1519
|
+
typeUrl: string;
|
|
1520
|
+
aminoType: string;
|
|
1521
|
+
is(o: any): o is MsgStoreAndMigrateContractResponse;
|
|
1522
|
+
isAmino(o: any): o is MsgStoreAndMigrateContractResponseAmino;
|
|
1523
|
+
encode(message: MsgStoreAndMigrateContractResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1524
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgStoreAndMigrateContractResponse;
|
|
1525
|
+
fromPartial(object: DeepPartial<MsgStoreAndMigrateContractResponse>): MsgStoreAndMigrateContractResponse;
|
|
1526
|
+
fromAmino(object: MsgStoreAndMigrateContractResponseAmino): MsgStoreAndMigrateContractResponse;
|
|
1527
|
+
toAmino(message: MsgStoreAndMigrateContractResponse): MsgStoreAndMigrateContractResponseAmino;
|
|
1528
|
+
fromAminoMsg(object: MsgStoreAndMigrateContractResponseAminoMsg): MsgStoreAndMigrateContractResponse;
|
|
1529
|
+
toAminoMsg(message: MsgStoreAndMigrateContractResponse): MsgStoreAndMigrateContractResponseAminoMsg;
|
|
1530
|
+
fromProtoMsg(message: MsgStoreAndMigrateContractResponseProtoMsg): MsgStoreAndMigrateContractResponse;
|
|
1531
|
+
toProto(message: MsgStoreAndMigrateContractResponse): Uint8Array;
|
|
1532
|
+
toProtoMsg(message: MsgStoreAndMigrateContractResponse): MsgStoreAndMigrateContractResponseProtoMsg;
|
|
1533
|
+
registerTypeUrl(): void;
|
|
1534
|
+
};
|
|
1535
|
+
export declare const MsgUpdateContractLabel: {
|
|
1536
|
+
typeUrl: string;
|
|
1537
|
+
aminoType: string;
|
|
1538
|
+
is(o: any): o is MsgUpdateContractLabel;
|
|
1539
|
+
isAmino(o: any): o is MsgUpdateContractLabelAmino;
|
|
1540
|
+
encode(message: MsgUpdateContractLabel, writer?: BinaryWriter): BinaryWriter;
|
|
1541
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateContractLabel;
|
|
1542
|
+
fromPartial(object: DeepPartial<MsgUpdateContractLabel>): MsgUpdateContractLabel;
|
|
1543
|
+
fromAmino(object: MsgUpdateContractLabelAmino): MsgUpdateContractLabel;
|
|
1544
|
+
toAmino(message: MsgUpdateContractLabel): MsgUpdateContractLabelAmino;
|
|
1545
|
+
fromAminoMsg(object: MsgUpdateContractLabelAminoMsg): MsgUpdateContractLabel;
|
|
1546
|
+
toAminoMsg(message: MsgUpdateContractLabel): MsgUpdateContractLabelAminoMsg;
|
|
1547
|
+
fromProtoMsg(message: MsgUpdateContractLabelProtoMsg): MsgUpdateContractLabel;
|
|
1548
|
+
toProto(message: MsgUpdateContractLabel): Uint8Array;
|
|
1549
|
+
toProtoMsg(message: MsgUpdateContractLabel): MsgUpdateContractLabelProtoMsg;
|
|
1550
|
+
registerTypeUrl(): void;
|
|
1551
|
+
};
|
|
1552
|
+
export declare const MsgUpdateContractLabelResponse: {
|
|
1553
|
+
typeUrl: string;
|
|
1554
|
+
aminoType: string;
|
|
1555
|
+
is(o: any): o is MsgUpdateContractLabelResponse;
|
|
1556
|
+
isAmino(o: any): o is MsgUpdateContractLabelResponseAmino;
|
|
1557
|
+
encode(_: MsgUpdateContractLabelResponse, writer?: BinaryWriter): BinaryWriter;
|
|
1558
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateContractLabelResponse;
|
|
1559
|
+
fromPartial(_: DeepPartial<MsgUpdateContractLabelResponse>): MsgUpdateContractLabelResponse;
|
|
1560
|
+
fromAmino(_: MsgUpdateContractLabelResponseAmino): MsgUpdateContractLabelResponse;
|
|
1561
|
+
toAmino(_: MsgUpdateContractLabelResponse): MsgUpdateContractLabelResponseAmino;
|
|
1562
|
+
fromAminoMsg(object: MsgUpdateContractLabelResponseAminoMsg): MsgUpdateContractLabelResponse;
|
|
1563
|
+
toAminoMsg(message: MsgUpdateContractLabelResponse): MsgUpdateContractLabelResponseAminoMsg;
|
|
1564
|
+
fromProtoMsg(message: MsgUpdateContractLabelResponseProtoMsg): MsgUpdateContractLabelResponse;
|
|
1565
|
+
toProto(message: MsgUpdateContractLabelResponse): Uint8Array;
|
|
1566
|
+
toProtoMsg(message: MsgUpdateContractLabelResponse): MsgUpdateContractLabelResponseProtoMsg;
|
|
1567
|
+
registerTypeUrl(): void;
|
|
1568
|
+
};
|