@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,1890 @@
|
|
|
1
|
+
import { ConsensusParams, ConsensusParamsAmino } from "../types/params";
|
|
2
|
+
import { ProofOps, ProofOpsAmino } from "../crypto/proof";
|
|
3
|
+
import { PublicKey, PublicKeyAmino } from "../crypto/keys";
|
|
4
|
+
import { BlockIDFlag } from "../types/validator";
|
|
5
|
+
import { BinaryReader, BinaryWriter } from "../../binary";
|
|
6
|
+
import { DeepPartial } from "../../helpers";
|
|
7
|
+
export declare enum CheckTxType {
|
|
8
|
+
NEW = 0,
|
|
9
|
+
RECHECK = 1,
|
|
10
|
+
UNRECOGNIZED = -1
|
|
11
|
+
}
|
|
12
|
+
export declare const CheckTxTypeAmino: typeof CheckTxType;
|
|
13
|
+
export declare function checkTxTypeFromJSON(object: any): CheckTxType;
|
|
14
|
+
export declare function checkTxTypeToJSON(object: CheckTxType): string;
|
|
15
|
+
export declare enum ResponseOfferSnapshot_Result {
|
|
16
|
+
/** UNKNOWN - Unknown result, abort all snapshot restoration */
|
|
17
|
+
UNKNOWN = 0,
|
|
18
|
+
/** ACCEPT - Snapshot accepted, apply chunks */
|
|
19
|
+
ACCEPT = 1,
|
|
20
|
+
/** ABORT - Abort all snapshot restoration */
|
|
21
|
+
ABORT = 2,
|
|
22
|
+
/** REJECT - Reject this specific snapshot, try others */
|
|
23
|
+
REJECT = 3,
|
|
24
|
+
/** REJECT_FORMAT - Reject all snapshots of this format, try others */
|
|
25
|
+
REJECT_FORMAT = 4,
|
|
26
|
+
/** REJECT_SENDER - Reject all snapshots from the sender(s), try others */
|
|
27
|
+
REJECT_SENDER = 5,
|
|
28
|
+
UNRECOGNIZED = -1
|
|
29
|
+
}
|
|
30
|
+
export declare const ResponseOfferSnapshot_ResultAmino: typeof ResponseOfferSnapshot_Result;
|
|
31
|
+
export declare function responseOfferSnapshot_ResultFromJSON(object: any): ResponseOfferSnapshot_Result;
|
|
32
|
+
export declare function responseOfferSnapshot_ResultToJSON(object: ResponseOfferSnapshot_Result): string;
|
|
33
|
+
export declare enum ResponseApplySnapshotChunk_Result {
|
|
34
|
+
/** UNKNOWN - Unknown result, abort all snapshot restoration */
|
|
35
|
+
UNKNOWN = 0,
|
|
36
|
+
/** ACCEPT - Chunk successfully accepted */
|
|
37
|
+
ACCEPT = 1,
|
|
38
|
+
/** ABORT - Abort all snapshot restoration */
|
|
39
|
+
ABORT = 2,
|
|
40
|
+
/** RETRY - Retry chunk (combine with refetch and reject) */
|
|
41
|
+
RETRY = 3,
|
|
42
|
+
/** RETRY_SNAPSHOT - Retry snapshot (combine with refetch and reject) */
|
|
43
|
+
RETRY_SNAPSHOT = 4,
|
|
44
|
+
/** REJECT_SNAPSHOT - Reject this snapshot, try others */
|
|
45
|
+
REJECT_SNAPSHOT = 5,
|
|
46
|
+
UNRECOGNIZED = -1
|
|
47
|
+
}
|
|
48
|
+
export declare const ResponseApplySnapshotChunk_ResultAmino: typeof ResponseApplySnapshotChunk_Result;
|
|
49
|
+
export declare function responseApplySnapshotChunk_ResultFromJSON(object: any): ResponseApplySnapshotChunk_Result;
|
|
50
|
+
export declare function responseApplySnapshotChunk_ResultToJSON(object: ResponseApplySnapshotChunk_Result): string;
|
|
51
|
+
export declare enum ResponseProcessProposal_ProposalStatus {
|
|
52
|
+
UNKNOWN = 0,
|
|
53
|
+
ACCEPT = 1,
|
|
54
|
+
REJECT = 2,
|
|
55
|
+
UNRECOGNIZED = -1
|
|
56
|
+
}
|
|
57
|
+
export declare const ResponseProcessProposal_ProposalStatusAmino: typeof ResponseProcessProposal_ProposalStatus;
|
|
58
|
+
export declare function responseProcessProposal_ProposalStatusFromJSON(object: any): ResponseProcessProposal_ProposalStatus;
|
|
59
|
+
export declare function responseProcessProposal_ProposalStatusToJSON(object: ResponseProcessProposal_ProposalStatus): string;
|
|
60
|
+
export declare enum ResponseVerifyVoteExtension_VerifyStatus {
|
|
61
|
+
UNKNOWN = 0,
|
|
62
|
+
ACCEPT = 1,
|
|
63
|
+
/**
|
|
64
|
+
* REJECT - Rejecting the vote extension will reject the entire precommit by the sender.
|
|
65
|
+
* Incorrectly implementing this thus has liveness implications as it may affect
|
|
66
|
+
* CometBFT's ability to receive 2/3+ valid votes to finalize the block.
|
|
67
|
+
* Honest nodes should never be rejected.
|
|
68
|
+
*/
|
|
69
|
+
REJECT = 2,
|
|
70
|
+
UNRECOGNIZED = -1
|
|
71
|
+
}
|
|
72
|
+
export declare const ResponseVerifyVoteExtension_VerifyStatusAmino: typeof ResponseVerifyVoteExtension_VerifyStatus;
|
|
73
|
+
export declare function responseVerifyVoteExtension_VerifyStatusFromJSON(object: any): ResponseVerifyVoteExtension_VerifyStatus;
|
|
74
|
+
export declare function responseVerifyVoteExtension_VerifyStatusToJSON(object: ResponseVerifyVoteExtension_VerifyStatus): string;
|
|
75
|
+
export declare enum MisbehaviorType {
|
|
76
|
+
UNKNOWN = 0,
|
|
77
|
+
DUPLICATE_VOTE = 1,
|
|
78
|
+
LIGHT_CLIENT_ATTACK = 2,
|
|
79
|
+
UNRECOGNIZED = -1
|
|
80
|
+
}
|
|
81
|
+
export declare const MisbehaviorTypeAmino: typeof MisbehaviorType;
|
|
82
|
+
export declare function misbehaviorTypeFromJSON(object: any): MisbehaviorType;
|
|
83
|
+
export declare function misbehaviorTypeToJSON(object: MisbehaviorType): string;
|
|
84
|
+
export interface Request {
|
|
85
|
+
echo?: RequestEcho;
|
|
86
|
+
flush?: RequestFlush;
|
|
87
|
+
info?: RequestInfo;
|
|
88
|
+
initChain?: RequestInitChain;
|
|
89
|
+
query?: RequestQuery;
|
|
90
|
+
checkTx?: RequestCheckTx;
|
|
91
|
+
commit?: RequestCommit;
|
|
92
|
+
listSnapshots?: RequestListSnapshots;
|
|
93
|
+
offerSnapshot?: RequestOfferSnapshot;
|
|
94
|
+
loadSnapshotChunk?: RequestLoadSnapshotChunk;
|
|
95
|
+
applySnapshotChunk?: RequestApplySnapshotChunk;
|
|
96
|
+
prepareProposal?: RequestPrepareProposal;
|
|
97
|
+
processProposal?: RequestProcessProposal;
|
|
98
|
+
extendVote?: RequestExtendVote;
|
|
99
|
+
verifyVoteExtension?: RequestVerifyVoteExtension;
|
|
100
|
+
finalizeBlock?: RequestFinalizeBlock;
|
|
101
|
+
}
|
|
102
|
+
export interface RequestProtoMsg {
|
|
103
|
+
typeUrl: "/tendermint.abci.Request";
|
|
104
|
+
value: Uint8Array;
|
|
105
|
+
}
|
|
106
|
+
export interface RequestAmino {
|
|
107
|
+
echo?: RequestEchoAmino;
|
|
108
|
+
flush?: RequestFlushAmino;
|
|
109
|
+
info?: RequestInfoAmino;
|
|
110
|
+
init_chain?: RequestInitChainAmino;
|
|
111
|
+
query?: RequestQueryAmino;
|
|
112
|
+
check_tx?: RequestCheckTxAmino;
|
|
113
|
+
commit?: RequestCommitAmino;
|
|
114
|
+
list_snapshots?: RequestListSnapshotsAmino;
|
|
115
|
+
offer_snapshot?: RequestOfferSnapshotAmino;
|
|
116
|
+
load_snapshot_chunk?: RequestLoadSnapshotChunkAmino;
|
|
117
|
+
apply_snapshot_chunk?: RequestApplySnapshotChunkAmino;
|
|
118
|
+
prepare_proposal?: RequestPrepareProposalAmino;
|
|
119
|
+
process_proposal?: RequestProcessProposalAmino;
|
|
120
|
+
extend_vote?: RequestExtendVoteAmino;
|
|
121
|
+
verify_vote_extension?: RequestVerifyVoteExtensionAmino;
|
|
122
|
+
finalize_block?: RequestFinalizeBlockAmino;
|
|
123
|
+
}
|
|
124
|
+
export interface RequestAminoMsg {
|
|
125
|
+
type: "/tendermint.abci.Request";
|
|
126
|
+
value: RequestAmino;
|
|
127
|
+
}
|
|
128
|
+
export interface RequestEcho {
|
|
129
|
+
message: string;
|
|
130
|
+
}
|
|
131
|
+
export interface RequestEchoProtoMsg {
|
|
132
|
+
typeUrl: "/tendermint.abci.RequestEcho";
|
|
133
|
+
value: Uint8Array;
|
|
134
|
+
}
|
|
135
|
+
export interface RequestEchoAmino {
|
|
136
|
+
message: string;
|
|
137
|
+
}
|
|
138
|
+
export interface RequestEchoAminoMsg {
|
|
139
|
+
type: "/tendermint.abci.RequestEcho";
|
|
140
|
+
value: RequestEchoAmino;
|
|
141
|
+
}
|
|
142
|
+
export interface RequestFlush {
|
|
143
|
+
}
|
|
144
|
+
export interface RequestFlushProtoMsg {
|
|
145
|
+
typeUrl: "/tendermint.abci.RequestFlush";
|
|
146
|
+
value: Uint8Array;
|
|
147
|
+
}
|
|
148
|
+
export interface RequestFlushAmino {
|
|
149
|
+
}
|
|
150
|
+
export interface RequestFlushAminoMsg {
|
|
151
|
+
type: "/tendermint.abci.RequestFlush";
|
|
152
|
+
value: RequestFlushAmino;
|
|
153
|
+
}
|
|
154
|
+
export interface RequestInfo {
|
|
155
|
+
version: string;
|
|
156
|
+
blockVersion: bigint;
|
|
157
|
+
p2pVersion: bigint;
|
|
158
|
+
abciVersion: string;
|
|
159
|
+
}
|
|
160
|
+
export interface RequestInfoProtoMsg {
|
|
161
|
+
typeUrl: "/tendermint.abci.RequestInfo";
|
|
162
|
+
value: Uint8Array;
|
|
163
|
+
}
|
|
164
|
+
export interface RequestInfoAmino {
|
|
165
|
+
version: string;
|
|
166
|
+
block_version: string;
|
|
167
|
+
p2p_version: string;
|
|
168
|
+
abci_version: string;
|
|
169
|
+
}
|
|
170
|
+
export interface RequestInfoAminoMsg {
|
|
171
|
+
type: "/tendermint.abci.RequestInfo";
|
|
172
|
+
value: RequestInfoAmino;
|
|
173
|
+
}
|
|
174
|
+
export interface RequestInitChain {
|
|
175
|
+
time: Date;
|
|
176
|
+
chainId: string;
|
|
177
|
+
consensusParams?: ConsensusParams;
|
|
178
|
+
validators: ValidatorUpdate[];
|
|
179
|
+
appStateBytes: Uint8Array;
|
|
180
|
+
initialHeight: bigint;
|
|
181
|
+
}
|
|
182
|
+
export interface RequestInitChainProtoMsg {
|
|
183
|
+
typeUrl: "/tendermint.abci.RequestInitChain";
|
|
184
|
+
value: Uint8Array;
|
|
185
|
+
}
|
|
186
|
+
export interface RequestInitChainAmino {
|
|
187
|
+
time: string;
|
|
188
|
+
chain_id: string;
|
|
189
|
+
consensus_params?: ConsensusParamsAmino;
|
|
190
|
+
validators: ValidatorUpdateAmino[];
|
|
191
|
+
app_state_bytes: string;
|
|
192
|
+
initial_height: string;
|
|
193
|
+
}
|
|
194
|
+
export interface RequestInitChainAminoMsg {
|
|
195
|
+
type: "/tendermint.abci.RequestInitChain";
|
|
196
|
+
value: RequestInitChainAmino;
|
|
197
|
+
}
|
|
198
|
+
export interface RequestQuery {
|
|
199
|
+
data: Uint8Array;
|
|
200
|
+
path: string;
|
|
201
|
+
height: bigint;
|
|
202
|
+
prove: boolean;
|
|
203
|
+
}
|
|
204
|
+
export interface RequestQueryProtoMsg {
|
|
205
|
+
typeUrl: "/tendermint.abci.RequestQuery";
|
|
206
|
+
value: Uint8Array;
|
|
207
|
+
}
|
|
208
|
+
export interface RequestQueryAmino {
|
|
209
|
+
data: string;
|
|
210
|
+
path: string;
|
|
211
|
+
height: string;
|
|
212
|
+
prove: boolean;
|
|
213
|
+
}
|
|
214
|
+
export interface RequestQueryAminoMsg {
|
|
215
|
+
type: "/tendermint.abci.RequestQuery";
|
|
216
|
+
value: RequestQueryAmino;
|
|
217
|
+
}
|
|
218
|
+
export interface RequestCheckTx {
|
|
219
|
+
tx: Uint8Array;
|
|
220
|
+
type: CheckTxType;
|
|
221
|
+
}
|
|
222
|
+
export interface RequestCheckTxProtoMsg {
|
|
223
|
+
typeUrl: "/tendermint.abci.RequestCheckTx";
|
|
224
|
+
value: Uint8Array;
|
|
225
|
+
}
|
|
226
|
+
export interface RequestCheckTxAmino {
|
|
227
|
+
tx: string;
|
|
228
|
+
type: CheckTxType;
|
|
229
|
+
}
|
|
230
|
+
export interface RequestCheckTxAminoMsg {
|
|
231
|
+
type: "/tendermint.abci.RequestCheckTx";
|
|
232
|
+
value: RequestCheckTxAmino;
|
|
233
|
+
}
|
|
234
|
+
export interface RequestCommit {
|
|
235
|
+
}
|
|
236
|
+
export interface RequestCommitProtoMsg {
|
|
237
|
+
typeUrl: "/tendermint.abci.RequestCommit";
|
|
238
|
+
value: Uint8Array;
|
|
239
|
+
}
|
|
240
|
+
export interface RequestCommitAmino {
|
|
241
|
+
}
|
|
242
|
+
export interface RequestCommitAminoMsg {
|
|
243
|
+
type: "/tendermint.abci.RequestCommit";
|
|
244
|
+
value: RequestCommitAmino;
|
|
245
|
+
}
|
|
246
|
+
/** lists available snapshots */
|
|
247
|
+
export interface RequestListSnapshots {
|
|
248
|
+
}
|
|
249
|
+
export interface RequestListSnapshotsProtoMsg {
|
|
250
|
+
typeUrl: "/tendermint.abci.RequestListSnapshots";
|
|
251
|
+
value: Uint8Array;
|
|
252
|
+
}
|
|
253
|
+
/** lists available snapshots */
|
|
254
|
+
export interface RequestListSnapshotsAmino {
|
|
255
|
+
}
|
|
256
|
+
export interface RequestListSnapshotsAminoMsg {
|
|
257
|
+
type: "/tendermint.abci.RequestListSnapshots";
|
|
258
|
+
value: RequestListSnapshotsAmino;
|
|
259
|
+
}
|
|
260
|
+
/** offers a snapshot to the application */
|
|
261
|
+
export interface RequestOfferSnapshot {
|
|
262
|
+
/** snapshot offered by peers */
|
|
263
|
+
snapshot?: Snapshot;
|
|
264
|
+
/** light client-verified app hash for snapshot height */
|
|
265
|
+
appHash: Uint8Array;
|
|
266
|
+
}
|
|
267
|
+
export interface RequestOfferSnapshotProtoMsg {
|
|
268
|
+
typeUrl: "/tendermint.abci.RequestOfferSnapshot";
|
|
269
|
+
value: Uint8Array;
|
|
270
|
+
}
|
|
271
|
+
/** offers a snapshot to the application */
|
|
272
|
+
export interface RequestOfferSnapshotAmino {
|
|
273
|
+
/** snapshot offered by peers */
|
|
274
|
+
snapshot?: SnapshotAmino;
|
|
275
|
+
/** light client-verified app hash for snapshot height */
|
|
276
|
+
app_hash: string;
|
|
277
|
+
}
|
|
278
|
+
export interface RequestOfferSnapshotAminoMsg {
|
|
279
|
+
type: "/tendermint.abci.RequestOfferSnapshot";
|
|
280
|
+
value: RequestOfferSnapshotAmino;
|
|
281
|
+
}
|
|
282
|
+
/** loads a snapshot chunk */
|
|
283
|
+
export interface RequestLoadSnapshotChunk {
|
|
284
|
+
height: bigint;
|
|
285
|
+
format: number;
|
|
286
|
+
chunk: number;
|
|
287
|
+
}
|
|
288
|
+
export interface RequestLoadSnapshotChunkProtoMsg {
|
|
289
|
+
typeUrl: "/tendermint.abci.RequestLoadSnapshotChunk";
|
|
290
|
+
value: Uint8Array;
|
|
291
|
+
}
|
|
292
|
+
/** loads a snapshot chunk */
|
|
293
|
+
export interface RequestLoadSnapshotChunkAmino {
|
|
294
|
+
height: string;
|
|
295
|
+
format: number;
|
|
296
|
+
chunk: number;
|
|
297
|
+
}
|
|
298
|
+
export interface RequestLoadSnapshotChunkAminoMsg {
|
|
299
|
+
type: "/tendermint.abci.RequestLoadSnapshotChunk";
|
|
300
|
+
value: RequestLoadSnapshotChunkAmino;
|
|
301
|
+
}
|
|
302
|
+
/** Applies a snapshot chunk */
|
|
303
|
+
export interface RequestApplySnapshotChunk {
|
|
304
|
+
index: number;
|
|
305
|
+
chunk: Uint8Array;
|
|
306
|
+
sender: string;
|
|
307
|
+
}
|
|
308
|
+
export interface RequestApplySnapshotChunkProtoMsg {
|
|
309
|
+
typeUrl: "/tendermint.abci.RequestApplySnapshotChunk";
|
|
310
|
+
value: Uint8Array;
|
|
311
|
+
}
|
|
312
|
+
/** Applies a snapshot chunk */
|
|
313
|
+
export interface RequestApplySnapshotChunkAmino {
|
|
314
|
+
index: number;
|
|
315
|
+
chunk: string;
|
|
316
|
+
sender: string;
|
|
317
|
+
}
|
|
318
|
+
export interface RequestApplySnapshotChunkAminoMsg {
|
|
319
|
+
type: "/tendermint.abci.RequestApplySnapshotChunk";
|
|
320
|
+
value: RequestApplySnapshotChunkAmino;
|
|
321
|
+
}
|
|
322
|
+
export interface RequestPrepareProposal {
|
|
323
|
+
/** the modified transactions cannot exceed this size. */
|
|
324
|
+
maxTxBytes: bigint;
|
|
325
|
+
/**
|
|
326
|
+
* txs is an array of transactions that will be included in a block,
|
|
327
|
+
* sent to the app for possible modifications.
|
|
328
|
+
*/
|
|
329
|
+
txs: Uint8Array[];
|
|
330
|
+
localLastCommit: ExtendedCommitInfo;
|
|
331
|
+
misbehavior: Misbehavior[];
|
|
332
|
+
height: bigint;
|
|
333
|
+
time: Date;
|
|
334
|
+
nextValidatorsHash: Uint8Array;
|
|
335
|
+
/** address of the public key of the validator proposing the block. */
|
|
336
|
+
proposerAddress: Uint8Array;
|
|
337
|
+
}
|
|
338
|
+
export interface RequestPrepareProposalProtoMsg {
|
|
339
|
+
typeUrl: "/tendermint.abci.RequestPrepareProposal";
|
|
340
|
+
value: Uint8Array;
|
|
341
|
+
}
|
|
342
|
+
export interface RequestPrepareProposalAmino {
|
|
343
|
+
/** the modified transactions cannot exceed this size. */
|
|
344
|
+
max_tx_bytes: string;
|
|
345
|
+
/**
|
|
346
|
+
* txs is an array of transactions that will be included in a block,
|
|
347
|
+
* sent to the app for possible modifications.
|
|
348
|
+
*/
|
|
349
|
+
txs: string[];
|
|
350
|
+
local_last_commit: ExtendedCommitInfoAmino;
|
|
351
|
+
misbehavior: MisbehaviorAmino[];
|
|
352
|
+
height: string;
|
|
353
|
+
time: string;
|
|
354
|
+
next_validators_hash: string;
|
|
355
|
+
/** address of the public key of the validator proposing the block. */
|
|
356
|
+
proposer_address: string;
|
|
357
|
+
}
|
|
358
|
+
export interface RequestPrepareProposalAminoMsg {
|
|
359
|
+
type: "/tendermint.abci.RequestPrepareProposal";
|
|
360
|
+
value: RequestPrepareProposalAmino;
|
|
361
|
+
}
|
|
362
|
+
export interface RequestProcessProposal {
|
|
363
|
+
txs: Uint8Array[];
|
|
364
|
+
proposedLastCommit: CommitInfo;
|
|
365
|
+
misbehavior: Misbehavior[];
|
|
366
|
+
/** hash is the merkle root hash of the fields of the proposed block. */
|
|
367
|
+
hash: Uint8Array;
|
|
368
|
+
height: bigint;
|
|
369
|
+
time: Date;
|
|
370
|
+
nextValidatorsHash: Uint8Array;
|
|
371
|
+
/** address of the public key of the original proposer of the block. */
|
|
372
|
+
proposerAddress: Uint8Array;
|
|
373
|
+
}
|
|
374
|
+
export interface RequestProcessProposalProtoMsg {
|
|
375
|
+
typeUrl: "/tendermint.abci.RequestProcessProposal";
|
|
376
|
+
value: Uint8Array;
|
|
377
|
+
}
|
|
378
|
+
export interface RequestProcessProposalAmino {
|
|
379
|
+
txs: string[];
|
|
380
|
+
proposed_last_commit: CommitInfoAmino;
|
|
381
|
+
misbehavior: MisbehaviorAmino[];
|
|
382
|
+
/** hash is the merkle root hash of the fields of the proposed block. */
|
|
383
|
+
hash: string;
|
|
384
|
+
height: string;
|
|
385
|
+
time: string;
|
|
386
|
+
next_validators_hash: string;
|
|
387
|
+
/** address of the public key of the original proposer of the block. */
|
|
388
|
+
proposer_address: string;
|
|
389
|
+
}
|
|
390
|
+
export interface RequestProcessProposalAminoMsg {
|
|
391
|
+
type: "/tendermint.abci.RequestProcessProposal";
|
|
392
|
+
value: RequestProcessProposalAmino;
|
|
393
|
+
}
|
|
394
|
+
/** Extends a vote with application-injected data */
|
|
395
|
+
export interface RequestExtendVote {
|
|
396
|
+
/** the hash of the block that this vote may be referring to */
|
|
397
|
+
hash: Uint8Array;
|
|
398
|
+
/** the height of the extended vote */
|
|
399
|
+
height: bigint;
|
|
400
|
+
/** info of the block that this vote may be referring to */
|
|
401
|
+
time: Date;
|
|
402
|
+
txs: Uint8Array[];
|
|
403
|
+
proposedLastCommit: CommitInfo;
|
|
404
|
+
misbehavior: Misbehavior[];
|
|
405
|
+
nextValidatorsHash: Uint8Array;
|
|
406
|
+
/** address of the public key of the original proposer of the block. */
|
|
407
|
+
proposerAddress: Uint8Array;
|
|
408
|
+
}
|
|
409
|
+
export interface RequestExtendVoteProtoMsg {
|
|
410
|
+
typeUrl: "/tendermint.abci.RequestExtendVote";
|
|
411
|
+
value: Uint8Array;
|
|
412
|
+
}
|
|
413
|
+
/** Extends a vote with application-injected data */
|
|
414
|
+
export interface RequestExtendVoteAmino {
|
|
415
|
+
/** the hash of the block that this vote may be referring to */
|
|
416
|
+
hash: string;
|
|
417
|
+
/** the height of the extended vote */
|
|
418
|
+
height: string;
|
|
419
|
+
/** info of the block that this vote may be referring to */
|
|
420
|
+
time: string;
|
|
421
|
+
txs: string[];
|
|
422
|
+
proposed_last_commit: CommitInfoAmino;
|
|
423
|
+
misbehavior: MisbehaviorAmino[];
|
|
424
|
+
next_validators_hash: string;
|
|
425
|
+
/** address of the public key of the original proposer of the block. */
|
|
426
|
+
proposer_address: string;
|
|
427
|
+
}
|
|
428
|
+
export interface RequestExtendVoteAminoMsg {
|
|
429
|
+
type: "/tendermint.abci.RequestExtendVote";
|
|
430
|
+
value: RequestExtendVoteAmino;
|
|
431
|
+
}
|
|
432
|
+
/** Verify the vote extension */
|
|
433
|
+
export interface RequestVerifyVoteExtension {
|
|
434
|
+
/** the hash of the block that this received vote corresponds to */
|
|
435
|
+
hash: Uint8Array;
|
|
436
|
+
/** the validator that signed the vote extension */
|
|
437
|
+
validatorAddress: Uint8Array;
|
|
438
|
+
height: bigint;
|
|
439
|
+
voteExtension: Uint8Array;
|
|
440
|
+
}
|
|
441
|
+
export interface RequestVerifyVoteExtensionProtoMsg {
|
|
442
|
+
typeUrl: "/tendermint.abci.RequestVerifyVoteExtension";
|
|
443
|
+
value: Uint8Array;
|
|
444
|
+
}
|
|
445
|
+
/** Verify the vote extension */
|
|
446
|
+
export interface RequestVerifyVoteExtensionAmino {
|
|
447
|
+
/** the hash of the block that this received vote corresponds to */
|
|
448
|
+
hash: string;
|
|
449
|
+
/** the validator that signed the vote extension */
|
|
450
|
+
validator_address: string;
|
|
451
|
+
height: string;
|
|
452
|
+
vote_extension: string;
|
|
453
|
+
}
|
|
454
|
+
export interface RequestVerifyVoteExtensionAminoMsg {
|
|
455
|
+
type: "/tendermint.abci.RequestVerifyVoteExtension";
|
|
456
|
+
value: RequestVerifyVoteExtensionAmino;
|
|
457
|
+
}
|
|
458
|
+
export interface RequestFinalizeBlock {
|
|
459
|
+
txs: Uint8Array[];
|
|
460
|
+
decidedLastCommit: CommitInfo;
|
|
461
|
+
misbehavior: Misbehavior[];
|
|
462
|
+
/** hash is the merkle root hash of the fields of the decided block. */
|
|
463
|
+
hash: Uint8Array;
|
|
464
|
+
height: bigint;
|
|
465
|
+
time: Date;
|
|
466
|
+
nextValidatorsHash: Uint8Array;
|
|
467
|
+
/** proposer_address is the address of the public key of the original proposer of the block. */
|
|
468
|
+
proposerAddress: Uint8Array;
|
|
469
|
+
}
|
|
470
|
+
export interface RequestFinalizeBlockProtoMsg {
|
|
471
|
+
typeUrl: "/tendermint.abci.RequestFinalizeBlock";
|
|
472
|
+
value: Uint8Array;
|
|
473
|
+
}
|
|
474
|
+
export interface RequestFinalizeBlockAmino {
|
|
475
|
+
txs: string[];
|
|
476
|
+
decided_last_commit: CommitInfoAmino;
|
|
477
|
+
misbehavior: MisbehaviorAmino[];
|
|
478
|
+
/** hash is the merkle root hash of the fields of the decided block. */
|
|
479
|
+
hash: string;
|
|
480
|
+
height: string;
|
|
481
|
+
time: string;
|
|
482
|
+
next_validators_hash: string;
|
|
483
|
+
/** proposer_address is the address of the public key of the original proposer of the block. */
|
|
484
|
+
proposer_address: string;
|
|
485
|
+
}
|
|
486
|
+
export interface RequestFinalizeBlockAminoMsg {
|
|
487
|
+
type: "/tendermint.abci.RequestFinalizeBlock";
|
|
488
|
+
value: RequestFinalizeBlockAmino;
|
|
489
|
+
}
|
|
490
|
+
export interface Response {
|
|
491
|
+
exception?: ResponseException;
|
|
492
|
+
echo?: ResponseEcho;
|
|
493
|
+
flush?: ResponseFlush;
|
|
494
|
+
info?: ResponseInfo;
|
|
495
|
+
initChain?: ResponseInitChain;
|
|
496
|
+
query?: ResponseQuery;
|
|
497
|
+
checkTx?: ResponseCheckTx;
|
|
498
|
+
commit?: ResponseCommit;
|
|
499
|
+
listSnapshots?: ResponseListSnapshots;
|
|
500
|
+
offerSnapshot?: ResponseOfferSnapshot;
|
|
501
|
+
loadSnapshotChunk?: ResponseLoadSnapshotChunk;
|
|
502
|
+
applySnapshotChunk?: ResponseApplySnapshotChunk;
|
|
503
|
+
prepareProposal?: ResponsePrepareProposal;
|
|
504
|
+
processProposal?: ResponseProcessProposal;
|
|
505
|
+
extendVote?: ResponseExtendVote;
|
|
506
|
+
verifyVoteExtension?: ResponseVerifyVoteExtension;
|
|
507
|
+
finalizeBlock?: ResponseFinalizeBlock;
|
|
508
|
+
}
|
|
509
|
+
export interface ResponseProtoMsg {
|
|
510
|
+
typeUrl: "/tendermint.abci.Response";
|
|
511
|
+
value: Uint8Array;
|
|
512
|
+
}
|
|
513
|
+
export interface ResponseAmino {
|
|
514
|
+
exception?: ResponseExceptionAmino;
|
|
515
|
+
echo?: ResponseEchoAmino;
|
|
516
|
+
flush?: ResponseFlushAmino;
|
|
517
|
+
info?: ResponseInfoAmino;
|
|
518
|
+
init_chain?: ResponseInitChainAmino;
|
|
519
|
+
query?: ResponseQueryAmino;
|
|
520
|
+
check_tx?: ResponseCheckTxAmino;
|
|
521
|
+
commit?: ResponseCommitAmino;
|
|
522
|
+
list_snapshots?: ResponseListSnapshotsAmino;
|
|
523
|
+
offer_snapshot?: ResponseOfferSnapshotAmino;
|
|
524
|
+
load_snapshot_chunk?: ResponseLoadSnapshotChunkAmino;
|
|
525
|
+
apply_snapshot_chunk?: ResponseApplySnapshotChunkAmino;
|
|
526
|
+
prepare_proposal?: ResponsePrepareProposalAmino;
|
|
527
|
+
process_proposal?: ResponseProcessProposalAmino;
|
|
528
|
+
extend_vote?: ResponseExtendVoteAmino;
|
|
529
|
+
verify_vote_extension?: ResponseVerifyVoteExtensionAmino;
|
|
530
|
+
finalize_block?: ResponseFinalizeBlockAmino;
|
|
531
|
+
}
|
|
532
|
+
export interface ResponseAminoMsg {
|
|
533
|
+
type: "/tendermint.abci.Response";
|
|
534
|
+
value: ResponseAmino;
|
|
535
|
+
}
|
|
536
|
+
/** nondeterministic */
|
|
537
|
+
export interface ResponseException {
|
|
538
|
+
error: string;
|
|
539
|
+
}
|
|
540
|
+
export interface ResponseExceptionProtoMsg {
|
|
541
|
+
typeUrl: "/tendermint.abci.ResponseException";
|
|
542
|
+
value: Uint8Array;
|
|
543
|
+
}
|
|
544
|
+
/** nondeterministic */
|
|
545
|
+
export interface ResponseExceptionAmino {
|
|
546
|
+
error: string;
|
|
547
|
+
}
|
|
548
|
+
export interface ResponseExceptionAminoMsg {
|
|
549
|
+
type: "/tendermint.abci.ResponseException";
|
|
550
|
+
value: ResponseExceptionAmino;
|
|
551
|
+
}
|
|
552
|
+
export interface ResponseEcho {
|
|
553
|
+
message: string;
|
|
554
|
+
}
|
|
555
|
+
export interface ResponseEchoProtoMsg {
|
|
556
|
+
typeUrl: "/tendermint.abci.ResponseEcho";
|
|
557
|
+
value: Uint8Array;
|
|
558
|
+
}
|
|
559
|
+
export interface ResponseEchoAmino {
|
|
560
|
+
message: string;
|
|
561
|
+
}
|
|
562
|
+
export interface ResponseEchoAminoMsg {
|
|
563
|
+
type: "/tendermint.abci.ResponseEcho";
|
|
564
|
+
value: ResponseEchoAmino;
|
|
565
|
+
}
|
|
566
|
+
export interface ResponseFlush {
|
|
567
|
+
}
|
|
568
|
+
export interface ResponseFlushProtoMsg {
|
|
569
|
+
typeUrl: "/tendermint.abci.ResponseFlush";
|
|
570
|
+
value: Uint8Array;
|
|
571
|
+
}
|
|
572
|
+
export interface ResponseFlushAmino {
|
|
573
|
+
}
|
|
574
|
+
export interface ResponseFlushAminoMsg {
|
|
575
|
+
type: "/tendermint.abci.ResponseFlush";
|
|
576
|
+
value: ResponseFlushAmino;
|
|
577
|
+
}
|
|
578
|
+
export interface ResponseInfo {
|
|
579
|
+
data: string;
|
|
580
|
+
version: string;
|
|
581
|
+
appVersion: bigint;
|
|
582
|
+
lastBlockHeight: bigint;
|
|
583
|
+
lastBlockAppHash: Uint8Array;
|
|
584
|
+
}
|
|
585
|
+
export interface ResponseInfoProtoMsg {
|
|
586
|
+
typeUrl: "/tendermint.abci.ResponseInfo";
|
|
587
|
+
value: Uint8Array;
|
|
588
|
+
}
|
|
589
|
+
export interface ResponseInfoAmino {
|
|
590
|
+
data: string;
|
|
591
|
+
version: string;
|
|
592
|
+
app_version: string;
|
|
593
|
+
last_block_height: string;
|
|
594
|
+
last_block_app_hash: string;
|
|
595
|
+
}
|
|
596
|
+
export interface ResponseInfoAminoMsg {
|
|
597
|
+
type: "/tendermint.abci.ResponseInfo";
|
|
598
|
+
value: ResponseInfoAmino;
|
|
599
|
+
}
|
|
600
|
+
export interface ResponseInitChain {
|
|
601
|
+
consensusParams?: ConsensusParams;
|
|
602
|
+
validators: ValidatorUpdate[];
|
|
603
|
+
appHash: Uint8Array;
|
|
604
|
+
}
|
|
605
|
+
export interface ResponseInitChainProtoMsg {
|
|
606
|
+
typeUrl: "/tendermint.abci.ResponseInitChain";
|
|
607
|
+
value: Uint8Array;
|
|
608
|
+
}
|
|
609
|
+
export interface ResponseInitChainAmino {
|
|
610
|
+
consensus_params?: ConsensusParamsAmino;
|
|
611
|
+
validators: ValidatorUpdateAmino[];
|
|
612
|
+
app_hash: string;
|
|
613
|
+
}
|
|
614
|
+
export interface ResponseInitChainAminoMsg {
|
|
615
|
+
type: "/tendermint.abci.ResponseInitChain";
|
|
616
|
+
value: ResponseInitChainAmino;
|
|
617
|
+
}
|
|
618
|
+
export interface ResponseQuery {
|
|
619
|
+
code: number;
|
|
620
|
+
/** bytes data = 2; // use "value" instead. */
|
|
621
|
+
log: string;
|
|
622
|
+
/** nondeterministic */
|
|
623
|
+
info: string;
|
|
624
|
+
index: bigint;
|
|
625
|
+
key: Uint8Array;
|
|
626
|
+
value: Uint8Array;
|
|
627
|
+
proofOps?: ProofOps;
|
|
628
|
+
height: bigint;
|
|
629
|
+
codespace: string;
|
|
630
|
+
}
|
|
631
|
+
export interface ResponseQueryProtoMsg {
|
|
632
|
+
typeUrl: "/tendermint.abci.ResponseQuery";
|
|
633
|
+
value: Uint8Array;
|
|
634
|
+
}
|
|
635
|
+
export interface ResponseQueryAmino {
|
|
636
|
+
code: number;
|
|
637
|
+
/** bytes data = 2; // use "value" instead. */
|
|
638
|
+
log: string;
|
|
639
|
+
/** nondeterministic */
|
|
640
|
+
info: string;
|
|
641
|
+
index: string;
|
|
642
|
+
key: string;
|
|
643
|
+
value: string;
|
|
644
|
+
proof_ops?: ProofOpsAmino;
|
|
645
|
+
height: string;
|
|
646
|
+
codespace: string;
|
|
647
|
+
}
|
|
648
|
+
export interface ResponseQueryAminoMsg {
|
|
649
|
+
type: "/tendermint.abci.ResponseQuery";
|
|
650
|
+
value: ResponseQueryAmino;
|
|
651
|
+
}
|
|
652
|
+
export interface ResponseCheckTx {
|
|
653
|
+
code: number;
|
|
654
|
+
data: Uint8Array;
|
|
655
|
+
/** nondeterministic */
|
|
656
|
+
log: string;
|
|
657
|
+
/** nondeterministic */
|
|
658
|
+
info: string;
|
|
659
|
+
gasWanted: bigint;
|
|
660
|
+
gasUsed: bigint;
|
|
661
|
+
events: Event[];
|
|
662
|
+
codespace: string;
|
|
663
|
+
}
|
|
664
|
+
export interface ResponseCheckTxProtoMsg {
|
|
665
|
+
typeUrl: "/tendermint.abci.ResponseCheckTx";
|
|
666
|
+
value: Uint8Array;
|
|
667
|
+
}
|
|
668
|
+
export interface ResponseCheckTxAmino {
|
|
669
|
+
code: number;
|
|
670
|
+
data: string;
|
|
671
|
+
/** nondeterministic */
|
|
672
|
+
log: string;
|
|
673
|
+
/** nondeterministic */
|
|
674
|
+
info: string;
|
|
675
|
+
gas_wanted: string;
|
|
676
|
+
gas_used: string;
|
|
677
|
+
events: EventAmino[];
|
|
678
|
+
codespace: string;
|
|
679
|
+
}
|
|
680
|
+
export interface ResponseCheckTxAminoMsg {
|
|
681
|
+
type: "/tendermint.abci.ResponseCheckTx";
|
|
682
|
+
value: ResponseCheckTxAmino;
|
|
683
|
+
}
|
|
684
|
+
export interface ResponseCommit {
|
|
685
|
+
retainHeight: bigint;
|
|
686
|
+
}
|
|
687
|
+
export interface ResponseCommitProtoMsg {
|
|
688
|
+
typeUrl: "/tendermint.abci.ResponseCommit";
|
|
689
|
+
value: Uint8Array;
|
|
690
|
+
}
|
|
691
|
+
export interface ResponseCommitAmino {
|
|
692
|
+
retain_height: string;
|
|
693
|
+
}
|
|
694
|
+
export interface ResponseCommitAminoMsg {
|
|
695
|
+
type: "/tendermint.abci.ResponseCommit";
|
|
696
|
+
value: ResponseCommitAmino;
|
|
697
|
+
}
|
|
698
|
+
export interface ResponseListSnapshots {
|
|
699
|
+
snapshots: Snapshot[];
|
|
700
|
+
}
|
|
701
|
+
export interface ResponseListSnapshotsProtoMsg {
|
|
702
|
+
typeUrl: "/tendermint.abci.ResponseListSnapshots";
|
|
703
|
+
value: Uint8Array;
|
|
704
|
+
}
|
|
705
|
+
export interface ResponseListSnapshotsAmino {
|
|
706
|
+
snapshots: SnapshotAmino[];
|
|
707
|
+
}
|
|
708
|
+
export interface ResponseListSnapshotsAminoMsg {
|
|
709
|
+
type: "/tendermint.abci.ResponseListSnapshots";
|
|
710
|
+
value: ResponseListSnapshotsAmino;
|
|
711
|
+
}
|
|
712
|
+
export interface ResponseOfferSnapshot {
|
|
713
|
+
result: ResponseOfferSnapshot_Result;
|
|
714
|
+
}
|
|
715
|
+
export interface ResponseOfferSnapshotProtoMsg {
|
|
716
|
+
typeUrl: "/tendermint.abci.ResponseOfferSnapshot";
|
|
717
|
+
value: Uint8Array;
|
|
718
|
+
}
|
|
719
|
+
export interface ResponseOfferSnapshotAmino {
|
|
720
|
+
result: ResponseOfferSnapshot_Result;
|
|
721
|
+
}
|
|
722
|
+
export interface ResponseOfferSnapshotAminoMsg {
|
|
723
|
+
type: "/tendermint.abci.ResponseOfferSnapshot";
|
|
724
|
+
value: ResponseOfferSnapshotAmino;
|
|
725
|
+
}
|
|
726
|
+
export interface ResponseLoadSnapshotChunk {
|
|
727
|
+
chunk: Uint8Array;
|
|
728
|
+
}
|
|
729
|
+
export interface ResponseLoadSnapshotChunkProtoMsg {
|
|
730
|
+
typeUrl: "/tendermint.abci.ResponseLoadSnapshotChunk";
|
|
731
|
+
value: Uint8Array;
|
|
732
|
+
}
|
|
733
|
+
export interface ResponseLoadSnapshotChunkAmino {
|
|
734
|
+
chunk: string;
|
|
735
|
+
}
|
|
736
|
+
export interface ResponseLoadSnapshotChunkAminoMsg {
|
|
737
|
+
type: "/tendermint.abci.ResponseLoadSnapshotChunk";
|
|
738
|
+
value: ResponseLoadSnapshotChunkAmino;
|
|
739
|
+
}
|
|
740
|
+
export interface ResponseApplySnapshotChunk {
|
|
741
|
+
result: ResponseApplySnapshotChunk_Result;
|
|
742
|
+
/** Chunks to refetch and reapply */
|
|
743
|
+
refetchChunks: number[];
|
|
744
|
+
/** Chunk senders to reject and ban */
|
|
745
|
+
rejectSenders: string[];
|
|
746
|
+
}
|
|
747
|
+
export interface ResponseApplySnapshotChunkProtoMsg {
|
|
748
|
+
typeUrl: "/tendermint.abci.ResponseApplySnapshotChunk";
|
|
749
|
+
value: Uint8Array;
|
|
750
|
+
}
|
|
751
|
+
export interface ResponseApplySnapshotChunkAmino {
|
|
752
|
+
result: ResponseApplySnapshotChunk_Result;
|
|
753
|
+
/** Chunks to refetch and reapply */
|
|
754
|
+
refetch_chunks: number[];
|
|
755
|
+
/** Chunk senders to reject and ban */
|
|
756
|
+
reject_senders: string[];
|
|
757
|
+
}
|
|
758
|
+
export interface ResponseApplySnapshotChunkAminoMsg {
|
|
759
|
+
type: "/tendermint.abci.ResponseApplySnapshotChunk";
|
|
760
|
+
value: ResponseApplySnapshotChunkAmino;
|
|
761
|
+
}
|
|
762
|
+
export interface ResponsePrepareProposal {
|
|
763
|
+
txs: Uint8Array[];
|
|
764
|
+
}
|
|
765
|
+
export interface ResponsePrepareProposalProtoMsg {
|
|
766
|
+
typeUrl: "/tendermint.abci.ResponsePrepareProposal";
|
|
767
|
+
value: Uint8Array;
|
|
768
|
+
}
|
|
769
|
+
export interface ResponsePrepareProposalAmino {
|
|
770
|
+
txs: string[];
|
|
771
|
+
}
|
|
772
|
+
export interface ResponsePrepareProposalAminoMsg {
|
|
773
|
+
type: "/tendermint.abci.ResponsePrepareProposal";
|
|
774
|
+
value: ResponsePrepareProposalAmino;
|
|
775
|
+
}
|
|
776
|
+
export interface ResponseProcessProposal {
|
|
777
|
+
status: ResponseProcessProposal_ProposalStatus;
|
|
778
|
+
}
|
|
779
|
+
export interface ResponseProcessProposalProtoMsg {
|
|
780
|
+
typeUrl: "/tendermint.abci.ResponseProcessProposal";
|
|
781
|
+
value: Uint8Array;
|
|
782
|
+
}
|
|
783
|
+
export interface ResponseProcessProposalAmino {
|
|
784
|
+
status: ResponseProcessProposal_ProposalStatus;
|
|
785
|
+
}
|
|
786
|
+
export interface ResponseProcessProposalAminoMsg {
|
|
787
|
+
type: "/tendermint.abci.ResponseProcessProposal";
|
|
788
|
+
value: ResponseProcessProposalAmino;
|
|
789
|
+
}
|
|
790
|
+
export interface ResponseExtendVote {
|
|
791
|
+
voteExtension: Uint8Array;
|
|
792
|
+
}
|
|
793
|
+
export interface ResponseExtendVoteProtoMsg {
|
|
794
|
+
typeUrl: "/tendermint.abci.ResponseExtendVote";
|
|
795
|
+
value: Uint8Array;
|
|
796
|
+
}
|
|
797
|
+
export interface ResponseExtendVoteAmino {
|
|
798
|
+
vote_extension: string;
|
|
799
|
+
}
|
|
800
|
+
export interface ResponseExtendVoteAminoMsg {
|
|
801
|
+
type: "/tendermint.abci.ResponseExtendVote";
|
|
802
|
+
value: ResponseExtendVoteAmino;
|
|
803
|
+
}
|
|
804
|
+
export interface ResponseVerifyVoteExtension {
|
|
805
|
+
status: ResponseVerifyVoteExtension_VerifyStatus;
|
|
806
|
+
}
|
|
807
|
+
export interface ResponseVerifyVoteExtensionProtoMsg {
|
|
808
|
+
typeUrl: "/tendermint.abci.ResponseVerifyVoteExtension";
|
|
809
|
+
value: Uint8Array;
|
|
810
|
+
}
|
|
811
|
+
export interface ResponseVerifyVoteExtensionAmino {
|
|
812
|
+
status: ResponseVerifyVoteExtension_VerifyStatus;
|
|
813
|
+
}
|
|
814
|
+
export interface ResponseVerifyVoteExtensionAminoMsg {
|
|
815
|
+
type: "/tendermint.abci.ResponseVerifyVoteExtension";
|
|
816
|
+
value: ResponseVerifyVoteExtensionAmino;
|
|
817
|
+
}
|
|
818
|
+
export interface ResponseFinalizeBlock {
|
|
819
|
+
/** set of block events emmitted as part of executing the block */
|
|
820
|
+
events: Event[];
|
|
821
|
+
/**
|
|
822
|
+
* the result of executing each transaction including the events
|
|
823
|
+
* the particular transction emitted. This should match the order
|
|
824
|
+
* of the transactions delivered in the block itself
|
|
825
|
+
*/
|
|
826
|
+
txResults: ExecTxResult[];
|
|
827
|
+
/** a list of updates to the validator set. These will reflect the validator set at current height + 2. */
|
|
828
|
+
validatorUpdates: ValidatorUpdate[];
|
|
829
|
+
/** updates to the consensus params, if any. */
|
|
830
|
+
consensusParamUpdates?: ConsensusParams;
|
|
831
|
+
/**
|
|
832
|
+
* app_hash is the hash of the applications' state which is used to confirm that execution of the transactions was
|
|
833
|
+
* deterministic. It is up to the application to decide which algorithm to use.
|
|
834
|
+
*/
|
|
835
|
+
appHash: Uint8Array;
|
|
836
|
+
}
|
|
837
|
+
export interface ResponseFinalizeBlockProtoMsg {
|
|
838
|
+
typeUrl: "/tendermint.abci.ResponseFinalizeBlock";
|
|
839
|
+
value: Uint8Array;
|
|
840
|
+
}
|
|
841
|
+
export interface ResponseFinalizeBlockAmino {
|
|
842
|
+
/** set of block events emmitted as part of executing the block */
|
|
843
|
+
events: EventAmino[];
|
|
844
|
+
/**
|
|
845
|
+
* the result of executing each transaction including the events
|
|
846
|
+
* the particular transction emitted. This should match the order
|
|
847
|
+
* of the transactions delivered in the block itself
|
|
848
|
+
*/
|
|
849
|
+
tx_results: ExecTxResultAmino[];
|
|
850
|
+
/** a list of updates to the validator set. These will reflect the validator set at current height + 2. */
|
|
851
|
+
validator_updates: ValidatorUpdateAmino[];
|
|
852
|
+
/** updates to the consensus params, if any. */
|
|
853
|
+
consensus_param_updates?: ConsensusParamsAmino;
|
|
854
|
+
/**
|
|
855
|
+
* app_hash is the hash of the applications' state which is used to confirm that execution of the transactions was
|
|
856
|
+
* deterministic. It is up to the application to decide which algorithm to use.
|
|
857
|
+
*/
|
|
858
|
+
app_hash: string;
|
|
859
|
+
}
|
|
860
|
+
export interface ResponseFinalizeBlockAminoMsg {
|
|
861
|
+
type: "/tendermint.abci.ResponseFinalizeBlock";
|
|
862
|
+
value: ResponseFinalizeBlockAmino;
|
|
863
|
+
}
|
|
864
|
+
export interface CommitInfo {
|
|
865
|
+
round: number;
|
|
866
|
+
votes: VoteInfo[];
|
|
867
|
+
}
|
|
868
|
+
export interface CommitInfoProtoMsg {
|
|
869
|
+
typeUrl: "/tendermint.abci.CommitInfo";
|
|
870
|
+
value: Uint8Array;
|
|
871
|
+
}
|
|
872
|
+
export interface CommitInfoAmino {
|
|
873
|
+
round: number;
|
|
874
|
+
votes: VoteInfoAmino[];
|
|
875
|
+
}
|
|
876
|
+
export interface CommitInfoAminoMsg {
|
|
877
|
+
type: "/tendermint.abci.CommitInfo";
|
|
878
|
+
value: CommitInfoAmino;
|
|
879
|
+
}
|
|
880
|
+
/**
|
|
881
|
+
* ExtendedCommitInfo is similar to CommitInfo except that it is only used in
|
|
882
|
+
* the PrepareProposal request such that CometBFT can provide vote extensions
|
|
883
|
+
* to the application.
|
|
884
|
+
*/
|
|
885
|
+
export interface ExtendedCommitInfo {
|
|
886
|
+
/** The round at which the block proposer decided in the previous height. */
|
|
887
|
+
round: number;
|
|
888
|
+
/**
|
|
889
|
+
* List of validators' addresses in the last validator set with their voting
|
|
890
|
+
* information, including vote extensions.
|
|
891
|
+
*/
|
|
892
|
+
votes: ExtendedVoteInfo[];
|
|
893
|
+
}
|
|
894
|
+
export interface ExtendedCommitInfoProtoMsg {
|
|
895
|
+
typeUrl: "/tendermint.abci.ExtendedCommitInfo";
|
|
896
|
+
value: Uint8Array;
|
|
897
|
+
}
|
|
898
|
+
/**
|
|
899
|
+
* ExtendedCommitInfo is similar to CommitInfo except that it is only used in
|
|
900
|
+
* the PrepareProposal request such that CometBFT can provide vote extensions
|
|
901
|
+
* to the application.
|
|
902
|
+
*/
|
|
903
|
+
export interface ExtendedCommitInfoAmino {
|
|
904
|
+
/** The round at which the block proposer decided in the previous height. */
|
|
905
|
+
round: number;
|
|
906
|
+
/**
|
|
907
|
+
* List of validators' addresses in the last validator set with their voting
|
|
908
|
+
* information, including vote extensions.
|
|
909
|
+
*/
|
|
910
|
+
votes: ExtendedVoteInfoAmino[];
|
|
911
|
+
}
|
|
912
|
+
export interface ExtendedCommitInfoAminoMsg {
|
|
913
|
+
type: "/tendermint.abci.ExtendedCommitInfo";
|
|
914
|
+
value: ExtendedCommitInfoAmino;
|
|
915
|
+
}
|
|
916
|
+
/**
|
|
917
|
+
* Event allows application developers to attach additional information to
|
|
918
|
+
* ResponseFinalizeBlock and ResponseCheckTx.
|
|
919
|
+
* Later, transactions may be queried using these events.
|
|
920
|
+
*/
|
|
921
|
+
export interface Event {
|
|
922
|
+
type: string;
|
|
923
|
+
attributes: EventAttribute[];
|
|
924
|
+
}
|
|
925
|
+
export interface EventProtoMsg {
|
|
926
|
+
typeUrl: "/tendermint.abci.Event";
|
|
927
|
+
value: Uint8Array;
|
|
928
|
+
}
|
|
929
|
+
/**
|
|
930
|
+
* Event allows application developers to attach additional information to
|
|
931
|
+
* ResponseFinalizeBlock and ResponseCheckTx.
|
|
932
|
+
* Later, transactions may be queried using these events.
|
|
933
|
+
*/
|
|
934
|
+
export interface EventAmino {
|
|
935
|
+
type: string;
|
|
936
|
+
attributes: EventAttributeAmino[];
|
|
937
|
+
}
|
|
938
|
+
export interface EventAminoMsg {
|
|
939
|
+
type: "/tendermint.abci.Event";
|
|
940
|
+
value: EventAmino;
|
|
941
|
+
}
|
|
942
|
+
/** EventAttribute is a single key-value pair, associated with an event. */
|
|
943
|
+
export interface EventAttribute {
|
|
944
|
+
key: string;
|
|
945
|
+
value: string;
|
|
946
|
+
/** nondeterministic */
|
|
947
|
+
index: boolean;
|
|
948
|
+
}
|
|
949
|
+
export interface EventAttributeProtoMsg {
|
|
950
|
+
typeUrl: "/tendermint.abci.EventAttribute";
|
|
951
|
+
value: Uint8Array;
|
|
952
|
+
}
|
|
953
|
+
/** EventAttribute is a single key-value pair, associated with an event. */
|
|
954
|
+
export interface EventAttributeAmino {
|
|
955
|
+
key: string;
|
|
956
|
+
value: string;
|
|
957
|
+
/** nondeterministic */
|
|
958
|
+
index: boolean;
|
|
959
|
+
}
|
|
960
|
+
export interface EventAttributeAminoMsg {
|
|
961
|
+
type: "/tendermint.abci.EventAttribute";
|
|
962
|
+
value: EventAttributeAmino;
|
|
963
|
+
}
|
|
964
|
+
/**
|
|
965
|
+
* ExecTxResult contains results of executing one individual transaction.
|
|
966
|
+
*
|
|
967
|
+
* * Its structure is equivalent to #ResponseDeliverTx which will be deprecated/deleted
|
|
968
|
+
*/
|
|
969
|
+
export interface ExecTxResult {
|
|
970
|
+
code: number;
|
|
971
|
+
data: Uint8Array;
|
|
972
|
+
/** nondeterministic */
|
|
973
|
+
log: string;
|
|
974
|
+
/** nondeterministic */
|
|
975
|
+
info: string;
|
|
976
|
+
gasWanted: bigint;
|
|
977
|
+
gasUsed: bigint;
|
|
978
|
+
events: Event[];
|
|
979
|
+
codespace: string;
|
|
980
|
+
}
|
|
981
|
+
export interface ExecTxResultProtoMsg {
|
|
982
|
+
typeUrl: "/tendermint.abci.ExecTxResult";
|
|
983
|
+
value: Uint8Array;
|
|
984
|
+
}
|
|
985
|
+
/**
|
|
986
|
+
* ExecTxResult contains results of executing one individual transaction.
|
|
987
|
+
*
|
|
988
|
+
* * Its structure is equivalent to #ResponseDeliverTx which will be deprecated/deleted
|
|
989
|
+
*/
|
|
990
|
+
export interface ExecTxResultAmino {
|
|
991
|
+
code: number;
|
|
992
|
+
data: string;
|
|
993
|
+
/** nondeterministic */
|
|
994
|
+
log: string;
|
|
995
|
+
/** nondeterministic */
|
|
996
|
+
info: string;
|
|
997
|
+
gas_wanted: string;
|
|
998
|
+
gas_used: string;
|
|
999
|
+
events: EventAmino[];
|
|
1000
|
+
codespace: string;
|
|
1001
|
+
}
|
|
1002
|
+
export interface ExecTxResultAminoMsg {
|
|
1003
|
+
type: "/tendermint.abci.ExecTxResult";
|
|
1004
|
+
value: ExecTxResultAmino;
|
|
1005
|
+
}
|
|
1006
|
+
/**
|
|
1007
|
+
* TxResult contains results of executing the transaction.
|
|
1008
|
+
*
|
|
1009
|
+
* One usage is indexing transaction results.
|
|
1010
|
+
*/
|
|
1011
|
+
export interface TxResult {
|
|
1012
|
+
height: bigint;
|
|
1013
|
+
index: number;
|
|
1014
|
+
tx: Uint8Array;
|
|
1015
|
+
result: ExecTxResult;
|
|
1016
|
+
}
|
|
1017
|
+
export interface TxResultProtoMsg {
|
|
1018
|
+
typeUrl: "/tendermint.abci.TxResult";
|
|
1019
|
+
value: Uint8Array;
|
|
1020
|
+
}
|
|
1021
|
+
/**
|
|
1022
|
+
* TxResult contains results of executing the transaction.
|
|
1023
|
+
*
|
|
1024
|
+
* One usage is indexing transaction results.
|
|
1025
|
+
*/
|
|
1026
|
+
export interface TxResultAmino {
|
|
1027
|
+
height: string;
|
|
1028
|
+
index: number;
|
|
1029
|
+
tx: string;
|
|
1030
|
+
result: ExecTxResultAmino;
|
|
1031
|
+
}
|
|
1032
|
+
export interface TxResultAminoMsg {
|
|
1033
|
+
type: "/tendermint.abci.TxResult";
|
|
1034
|
+
value: TxResultAmino;
|
|
1035
|
+
}
|
|
1036
|
+
export interface Validator {
|
|
1037
|
+
/** The first 20 bytes of SHA256(public key) */
|
|
1038
|
+
address: Uint8Array;
|
|
1039
|
+
/** PubKey pub_key = 2 [(gogoproto.nullable)=false]; */
|
|
1040
|
+
power: bigint;
|
|
1041
|
+
}
|
|
1042
|
+
export interface ValidatorProtoMsg {
|
|
1043
|
+
typeUrl: "/tendermint.abci.Validator";
|
|
1044
|
+
value: Uint8Array;
|
|
1045
|
+
}
|
|
1046
|
+
export interface ValidatorAmino {
|
|
1047
|
+
/** The first 20 bytes of SHA256(public key) */
|
|
1048
|
+
address: string;
|
|
1049
|
+
/** PubKey pub_key = 2 [(gogoproto.nullable)=false]; */
|
|
1050
|
+
power: string;
|
|
1051
|
+
}
|
|
1052
|
+
export interface ValidatorAminoMsg {
|
|
1053
|
+
type: "/tendermint.abci.Validator";
|
|
1054
|
+
value: ValidatorAmino;
|
|
1055
|
+
}
|
|
1056
|
+
export interface ValidatorUpdate {
|
|
1057
|
+
pubKey: PublicKey;
|
|
1058
|
+
power: bigint;
|
|
1059
|
+
}
|
|
1060
|
+
export interface ValidatorUpdateProtoMsg {
|
|
1061
|
+
typeUrl: "/tendermint.abci.ValidatorUpdate";
|
|
1062
|
+
value: Uint8Array;
|
|
1063
|
+
}
|
|
1064
|
+
export interface ValidatorUpdateAmino {
|
|
1065
|
+
pub_key: PublicKeyAmino;
|
|
1066
|
+
power: string;
|
|
1067
|
+
}
|
|
1068
|
+
export interface ValidatorUpdateAminoMsg {
|
|
1069
|
+
type: "/tendermint.abci.ValidatorUpdate";
|
|
1070
|
+
value: ValidatorUpdateAmino;
|
|
1071
|
+
}
|
|
1072
|
+
export interface VoteInfo {
|
|
1073
|
+
validator: Validator;
|
|
1074
|
+
blockIdFlag: BlockIDFlag;
|
|
1075
|
+
}
|
|
1076
|
+
export interface VoteInfoProtoMsg {
|
|
1077
|
+
typeUrl: "/tendermint.abci.VoteInfo";
|
|
1078
|
+
value: Uint8Array;
|
|
1079
|
+
}
|
|
1080
|
+
export interface VoteInfoAmino {
|
|
1081
|
+
validator: ValidatorAmino;
|
|
1082
|
+
block_id_flag: BlockIDFlag;
|
|
1083
|
+
}
|
|
1084
|
+
export interface VoteInfoAminoMsg {
|
|
1085
|
+
type: "/tendermint.abci.VoteInfo";
|
|
1086
|
+
value: VoteInfoAmino;
|
|
1087
|
+
}
|
|
1088
|
+
export interface ExtendedVoteInfo {
|
|
1089
|
+
/** The validator that sent the vote. */
|
|
1090
|
+
validator: Validator;
|
|
1091
|
+
/** Non-deterministic extension provided by the sending validator's application. */
|
|
1092
|
+
voteExtension: Uint8Array;
|
|
1093
|
+
/** Vote extension signature created by CometBFT */
|
|
1094
|
+
extensionSignature: Uint8Array;
|
|
1095
|
+
/** block_id_flag indicates whether the validator voted for a block, nil, or did not vote at all */
|
|
1096
|
+
blockIdFlag: BlockIDFlag;
|
|
1097
|
+
}
|
|
1098
|
+
export interface ExtendedVoteInfoProtoMsg {
|
|
1099
|
+
typeUrl: "/tendermint.abci.ExtendedVoteInfo";
|
|
1100
|
+
value: Uint8Array;
|
|
1101
|
+
}
|
|
1102
|
+
export interface ExtendedVoteInfoAmino {
|
|
1103
|
+
/** The validator that sent the vote. */
|
|
1104
|
+
validator: ValidatorAmino;
|
|
1105
|
+
/** Non-deterministic extension provided by the sending validator's application. */
|
|
1106
|
+
vote_extension: string;
|
|
1107
|
+
/** Vote extension signature created by CometBFT */
|
|
1108
|
+
extension_signature: string;
|
|
1109
|
+
/** block_id_flag indicates whether the validator voted for a block, nil, or did not vote at all */
|
|
1110
|
+
block_id_flag: BlockIDFlag;
|
|
1111
|
+
}
|
|
1112
|
+
export interface ExtendedVoteInfoAminoMsg {
|
|
1113
|
+
type: "/tendermint.abci.ExtendedVoteInfo";
|
|
1114
|
+
value: ExtendedVoteInfoAmino;
|
|
1115
|
+
}
|
|
1116
|
+
export interface Misbehavior {
|
|
1117
|
+
type: MisbehaviorType;
|
|
1118
|
+
/** The offending validator */
|
|
1119
|
+
validator: Validator;
|
|
1120
|
+
/** The height when the offense occurred */
|
|
1121
|
+
height: bigint;
|
|
1122
|
+
/** The corresponding time where the offense occurred */
|
|
1123
|
+
time: Date;
|
|
1124
|
+
/**
|
|
1125
|
+
* Total voting power of the validator set in case the ABCI application does
|
|
1126
|
+
* not store historical validators.
|
|
1127
|
+
* https://github.com/tendermint/tendermint/issues/4581
|
|
1128
|
+
*/
|
|
1129
|
+
totalVotingPower: bigint;
|
|
1130
|
+
}
|
|
1131
|
+
export interface MisbehaviorProtoMsg {
|
|
1132
|
+
typeUrl: "/tendermint.abci.Misbehavior";
|
|
1133
|
+
value: Uint8Array;
|
|
1134
|
+
}
|
|
1135
|
+
export interface MisbehaviorAmino {
|
|
1136
|
+
type: MisbehaviorType;
|
|
1137
|
+
/** The offending validator */
|
|
1138
|
+
validator: ValidatorAmino;
|
|
1139
|
+
/** The height when the offense occurred */
|
|
1140
|
+
height: string;
|
|
1141
|
+
/** The corresponding time where the offense occurred */
|
|
1142
|
+
time: string;
|
|
1143
|
+
/**
|
|
1144
|
+
* Total voting power of the validator set in case the ABCI application does
|
|
1145
|
+
* not store historical validators.
|
|
1146
|
+
* https://github.com/tendermint/tendermint/issues/4581
|
|
1147
|
+
*/
|
|
1148
|
+
total_voting_power: string;
|
|
1149
|
+
}
|
|
1150
|
+
export interface MisbehaviorAminoMsg {
|
|
1151
|
+
type: "/tendermint.abci.Misbehavior";
|
|
1152
|
+
value: MisbehaviorAmino;
|
|
1153
|
+
}
|
|
1154
|
+
export interface Snapshot {
|
|
1155
|
+
/** The height at which the snapshot was taken */
|
|
1156
|
+
height: bigint;
|
|
1157
|
+
/** The application-specific snapshot format */
|
|
1158
|
+
format: number;
|
|
1159
|
+
/** Number of chunks in the snapshot */
|
|
1160
|
+
chunks: number;
|
|
1161
|
+
/** Arbitrary snapshot hash, equal only if identical */
|
|
1162
|
+
hash: Uint8Array;
|
|
1163
|
+
/** Arbitrary application metadata */
|
|
1164
|
+
metadata: Uint8Array;
|
|
1165
|
+
}
|
|
1166
|
+
export interface SnapshotProtoMsg {
|
|
1167
|
+
typeUrl: "/tendermint.abci.Snapshot";
|
|
1168
|
+
value: Uint8Array;
|
|
1169
|
+
}
|
|
1170
|
+
export interface SnapshotAmino {
|
|
1171
|
+
/** The height at which the snapshot was taken */
|
|
1172
|
+
height: string;
|
|
1173
|
+
/** The application-specific snapshot format */
|
|
1174
|
+
format: number;
|
|
1175
|
+
/** Number of chunks in the snapshot */
|
|
1176
|
+
chunks: number;
|
|
1177
|
+
/** Arbitrary snapshot hash, equal only if identical */
|
|
1178
|
+
hash: string;
|
|
1179
|
+
/** Arbitrary application metadata */
|
|
1180
|
+
metadata: string;
|
|
1181
|
+
}
|
|
1182
|
+
export interface SnapshotAminoMsg {
|
|
1183
|
+
type: "/tendermint.abci.Snapshot";
|
|
1184
|
+
value: SnapshotAmino;
|
|
1185
|
+
}
|
|
1186
|
+
export declare const Request: {
|
|
1187
|
+
typeUrl: string;
|
|
1188
|
+
is(o: any): o is Request;
|
|
1189
|
+
isAmino(o: any): o is RequestAmino;
|
|
1190
|
+
encode(message: Request, writer?: BinaryWriter): BinaryWriter;
|
|
1191
|
+
decode(input: BinaryReader | Uint8Array, length?: number): Request;
|
|
1192
|
+
fromPartial(object: DeepPartial<Request>): Request;
|
|
1193
|
+
fromAmino(object: RequestAmino): Request;
|
|
1194
|
+
toAmino(message: Request): RequestAmino;
|
|
1195
|
+
fromAminoMsg(object: RequestAminoMsg): Request;
|
|
1196
|
+
fromProtoMsg(message: RequestProtoMsg): Request;
|
|
1197
|
+
toProto(message: Request): Uint8Array;
|
|
1198
|
+
toProtoMsg(message: Request): RequestProtoMsg;
|
|
1199
|
+
registerTypeUrl(): void;
|
|
1200
|
+
};
|
|
1201
|
+
export declare const RequestEcho: {
|
|
1202
|
+
typeUrl: string;
|
|
1203
|
+
is(o: any): o is RequestEcho;
|
|
1204
|
+
isAmino(o: any): o is RequestEchoAmino;
|
|
1205
|
+
encode(message: RequestEcho, writer?: BinaryWriter): BinaryWriter;
|
|
1206
|
+
decode(input: BinaryReader | Uint8Array, length?: number): RequestEcho;
|
|
1207
|
+
fromPartial(object: DeepPartial<RequestEcho>): RequestEcho;
|
|
1208
|
+
fromAmino(object: RequestEchoAmino): RequestEcho;
|
|
1209
|
+
toAmino(message: RequestEcho): RequestEchoAmino;
|
|
1210
|
+
fromAminoMsg(object: RequestEchoAminoMsg): RequestEcho;
|
|
1211
|
+
fromProtoMsg(message: RequestEchoProtoMsg): RequestEcho;
|
|
1212
|
+
toProto(message: RequestEcho): Uint8Array;
|
|
1213
|
+
toProtoMsg(message: RequestEcho): RequestEchoProtoMsg;
|
|
1214
|
+
registerTypeUrl(): void;
|
|
1215
|
+
};
|
|
1216
|
+
export declare const RequestFlush: {
|
|
1217
|
+
typeUrl: string;
|
|
1218
|
+
is(o: any): o is RequestFlush;
|
|
1219
|
+
isAmino(o: any): o is RequestFlushAmino;
|
|
1220
|
+
encode(_: RequestFlush, writer?: BinaryWriter): BinaryWriter;
|
|
1221
|
+
decode(input: BinaryReader | Uint8Array, length?: number): RequestFlush;
|
|
1222
|
+
fromPartial(_: DeepPartial<RequestFlush>): RequestFlush;
|
|
1223
|
+
fromAmino(_: RequestFlushAmino): RequestFlush;
|
|
1224
|
+
toAmino(_: RequestFlush): RequestFlushAmino;
|
|
1225
|
+
fromAminoMsg(object: RequestFlushAminoMsg): RequestFlush;
|
|
1226
|
+
fromProtoMsg(message: RequestFlushProtoMsg): RequestFlush;
|
|
1227
|
+
toProto(message: RequestFlush): Uint8Array;
|
|
1228
|
+
toProtoMsg(message: RequestFlush): RequestFlushProtoMsg;
|
|
1229
|
+
registerTypeUrl(): void;
|
|
1230
|
+
};
|
|
1231
|
+
export declare const RequestInfo: {
|
|
1232
|
+
typeUrl: string;
|
|
1233
|
+
is(o: any): o is RequestInfo;
|
|
1234
|
+
isAmino(o: any): o is RequestInfoAmino;
|
|
1235
|
+
encode(message: RequestInfo, writer?: BinaryWriter): BinaryWriter;
|
|
1236
|
+
decode(input: BinaryReader | Uint8Array, length?: number): RequestInfo;
|
|
1237
|
+
fromPartial(object: DeepPartial<RequestInfo>): RequestInfo;
|
|
1238
|
+
fromAmino(object: RequestInfoAmino): RequestInfo;
|
|
1239
|
+
toAmino(message: RequestInfo): RequestInfoAmino;
|
|
1240
|
+
fromAminoMsg(object: RequestInfoAminoMsg): RequestInfo;
|
|
1241
|
+
fromProtoMsg(message: RequestInfoProtoMsg): RequestInfo;
|
|
1242
|
+
toProto(message: RequestInfo): Uint8Array;
|
|
1243
|
+
toProtoMsg(message: RequestInfo): RequestInfoProtoMsg;
|
|
1244
|
+
registerTypeUrl(): void;
|
|
1245
|
+
};
|
|
1246
|
+
export declare const RequestInitChain: {
|
|
1247
|
+
typeUrl: string;
|
|
1248
|
+
is(o: any): o is RequestInitChain;
|
|
1249
|
+
isAmino(o: any): o is RequestInitChainAmino;
|
|
1250
|
+
encode(message: RequestInitChain, writer?: BinaryWriter): BinaryWriter;
|
|
1251
|
+
decode(input: BinaryReader | Uint8Array, length?: number): RequestInitChain;
|
|
1252
|
+
fromPartial(object: DeepPartial<RequestInitChain>): RequestInitChain;
|
|
1253
|
+
fromAmino(object: RequestInitChainAmino): RequestInitChain;
|
|
1254
|
+
toAmino(message: RequestInitChain): RequestInitChainAmino;
|
|
1255
|
+
fromAminoMsg(object: RequestInitChainAminoMsg): RequestInitChain;
|
|
1256
|
+
fromProtoMsg(message: RequestInitChainProtoMsg): RequestInitChain;
|
|
1257
|
+
toProto(message: RequestInitChain): Uint8Array;
|
|
1258
|
+
toProtoMsg(message: RequestInitChain): RequestInitChainProtoMsg;
|
|
1259
|
+
registerTypeUrl(): void;
|
|
1260
|
+
};
|
|
1261
|
+
export declare const RequestQuery: {
|
|
1262
|
+
typeUrl: string;
|
|
1263
|
+
is(o: any): o is RequestQuery;
|
|
1264
|
+
isAmino(o: any): o is RequestQueryAmino;
|
|
1265
|
+
encode(message: RequestQuery, writer?: BinaryWriter): BinaryWriter;
|
|
1266
|
+
decode(input: BinaryReader | Uint8Array, length?: number): RequestQuery;
|
|
1267
|
+
fromPartial(object: DeepPartial<RequestQuery>): RequestQuery;
|
|
1268
|
+
fromAmino(object: RequestQueryAmino): RequestQuery;
|
|
1269
|
+
toAmino(message: RequestQuery): RequestQueryAmino;
|
|
1270
|
+
fromAminoMsg(object: RequestQueryAminoMsg): RequestQuery;
|
|
1271
|
+
fromProtoMsg(message: RequestQueryProtoMsg): RequestQuery;
|
|
1272
|
+
toProto(message: RequestQuery): Uint8Array;
|
|
1273
|
+
toProtoMsg(message: RequestQuery): RequestQueryProtoMsg;
|
|
1274
|
+
registerTypeUrl(): void;
|
|
1275
|
+
};
|
|
1276
|
+
export declare const RequestCheckTx: {
|
|
1277
|
+
typeUrl: string;
|
|
1278
|
+
is(o: any): o is RequestCheckTx;
|
|
1279
|
+
isAmino(o: any): o is RequestCheckTxAmino;
|
|
1280
|
+
encode(message: RequestCheckTx, writer?: BinaryWriter): BinaryWriter;
|
|
1281
|
+
decode(input: BinaryReader | Uint8Array, length?: number): RequestCheckTx;
|
|
1282
|
+
fromPartial(object: DeepPartial<RequestCheckTx>): RequestCheckTx;
|
|
1283
|
+
fromAmino(object: RequestCheckTxAmino): RequestCheckTx;
|
|
1284
|
+
toAmino(message: RequestCheckTx): RequestCheckTxAmino;
|
|
1285
|
+
fromAminoMsg(object: RequestCheckTxAminoMsg): RequestCheckTx;
|
|
1286
|
+
fromProtoMsg(message: RequestCheckTxProtoMsg): RequestCheckTx;
|
|
1287
|
+
toProto(message: RequestCheckTx): Uint8Array;
|
|
1288
|
+
toProtoMsg(message: RequestCheckTx): RequestCheckTxProtoMsg;
|
|
1289
|
+
registerTypeUrl(): void;
|
|
1290
|
+
};
|
|
1291
|
+
export declare const RequestCommit: {
|
|
1292
|
+
typeUrl: string;
|
|
1293
|
+
is(o: any): o is RequestCommit;
|
|
1294
|
+
isAmino(o: any): o is RequestCommitAmino;
|
|
1295
|
+
encode(_: RequestCommit, writer?: BinaryWriter): BinaryWriter;
|
|
1296
|
+
decode(input: BinaryReader | Uint8Array, length?: number): RequestCommit;
|
|
1297
|
+
fromPartial(_: DeepPartial<RequestCommit>): RequestCommit;
|
|
1298
|
+
fromAmino(_: RequestCommitAmino): RequestCommit;
|
|
1299
|
+
toAmino(_: RequestCommit): RequestCommitAmino;
|
|
1300
|
+
fromAminoMsg(object: RequestCommitAminoMsg): RequestCommit;
|
|
1301
|
+
fromProtoMsg(message: RequestCommitProtoMsg): RequestCommit;
|
|
1302
|
+
toProto(message: RequestCommit): Uint8Array;
|
|
1303
|
+
toProtoMsg(message: RequestCommit): RequestCommitProtoMsg;
|
|
1304
|
+
registerTypeUrl(): void;
|
|
1305
|
+
};
|
|
1306
|
+
export declare const RequestListSnapshots: {
|
|
1307
|
+
typeUrl: string;
|
|
1308
|
+
is(o: any): o is RequestListSnapshots;
|
|
1309
|
+
isAmino(o: any): o is RequestListSnapshotsAmino;
|
|
1310
|
+
encode(_: RequestListSnapshots, writer?: BinaryWriter): BinaryWriter;
|
|
1311
|
+
decode(input: BinaryReader | Uint8Array, length?: number): RequestListSnapshots;
|
|
1312
|
+
fromPartial(_: DeepPartial<RequestListSnapshots>): RequestListSnapshots;
|
|
1313
|
+
fromAmino(_: RequestListSnapshotsAmino): RequestListSnapshots;
|
|
1314
|
+
toAmino(_: RequestListSnapshots): RequestListSnapshotsAmino;
|
|
1315
|
+
fromAminoMsg(object: RequestListSnapshotsAminoMsg): RequestListSnapshots;
|
|
1316
|
+
fromProtoMsg(message: RequestListSnapshotsProtoMsg): RequestListSnapshots;
|
|
1317
|
+
toProto(message: RequestListSnapshots): Uint8Array;
|
|
1318
|
+
toProtoMsg(message: RequestListSnapshots): RequestListSnapshotsProtoMsg;
|
|
1319
|
+
registerTypeUrl(): void;
|
|
1320
|
+
};
|
|
1321
|
+
export declare const RequestOfferSnapshot: {
|
|
1322
|
+
typeUrl: string;
|
|
1323
|
+
is(o: any): o is RequestOfferSnapshot;
|
|
1324
|
+
isAmino(o: any): o is RequestOfferSnapshotAmino;
|
|
1325
|
+
encode(message: RequestOfferSnapshot, writer?: BinaryWriter): BinaryWriter;
|
|
1326
|
+
decode(input: BinaryReader | Uint8Array, length?: number): RequestOfferSnapshot;
|
|
1327
|
+
fromPartial(object: DeepPartial<RequestOfferSnapshot>): RequestOfferSnapshot;
|
|
1328
|
+
fromAmino(object: RequestOfferSnapshotAmino): RequestOfferSnapshot;
|
|
1329
|
+
toAmino(message: RequestOfferSnapshot): RequestOfferSnapshotAmino;
|
|
1330
|
+
fromAminoMsg(object: RequestOfferSnapshotAminoMsg): RequestOfferSnapshot;
|
|
1331
|
+
fromProtoMsg(message: RequestOfferSnapshotProtoMsg): RequestOfferSnapshot;
|
|
1332
|
+
toProto(message: RequestOfferSnapshot): Uint8Array;
|
|
1333
|
+
toProtoMsg(message: RequestOfferSnapshot): RequestOfferSnapshotProtoMsg;
|
|
1334
|
+
registerTypeUrl(): void;
|
|
1335
|
+
};
|
|
1336
|
+
export declare const RequestLoadSnapshotChunk: {
|
|
1337
|
+
typeUrl: string;
|
|
1338
|
+
is(o: any): o is RequestLoadSnapshotChunk;
|
|
1339
|
+
isAmino(o: any): o is RequestLoadSnapshotChunkAmino;
|
|
1340
|
+
encode(message: RequestLoadSnapshotChunk, writer?: BinaryWriter): BinaryWriter;
|
|
1341
|
+
decode(input: BinaryReader | Uint8Array, length?: number): RequestLoadSnapshotChunk;
|
|
1342
|
+
fromPartial(object: DeepPartial<RequestLoadSnapshotChunk>): RequestLoadSnapshotChunk;
|
|
1343
|
+
fromAmino(object: RequestLoadSnapshotChunkAmino): RequestLoadSnapshotChunk;
|
|
1344
|
+
toAmino(message: RequestLoadSnapshotChunk): RequestLoadSnapshotChunkAmino;
|
|
1345
|
+
fromAminoMsg(object: RequestLoadSnapshotChunkAminoMsg): RequestLoadSnapshotChunk;
|
|
1346
|
+
fromProtoMsg(message: RequestLoadSnapshotChunkProtoMsg): RequestLoadSnapshotChunk;
|
|
1347
|
+
toProto(message: RequestLoadSnapshotChunk): Uint8Array;
|
|
1348
|
+
toProtoMsg(message: RequestLoadSnapshotChunk): RequestLoadSnapshotChunkProtoMsg;
|
|
1349
|
+
registerTypeUrl(): void;
|
|
1350
|
+
};
|
|
1351
|
+
export declare const RequestApplySnapshotChunk: {
|
|
1352
|
+
typeUrl: string;
|
|
1353
|
+
is(o: any): o is RequestApplySnapshotChunk;
|
|
1354
|
+
isAmino(o: any): o is RequestApplySnapshotChunkAmino;
|
|
1355
|
+
encode(message: RequestApplySnapshotChunk, writer?: BinaryWriter): BinaryWriter;
|
|
1356
|
+
decode(input: BinaryReader | Uint8Array, length?: number): RequestApplySnapshotChunk;
|
|
1357
|
+
fromPartial(object: DeepPartial<RequestApplySnapshotChunk>): RequestApplySnapshotChunk;
|
|
1358
|
+
fromAmino(object: RequestApplySnapshotChunkAmino): RequestApplySnapshotChunk;
|
|
1359
|
+
toAmino(message: RequestApplySnapshotChunk): RequestApplySnapshotChunkAmino;
|
|
1360
|
+
fromAminoMsg(object: RequestApplySnapshotChunkAminoMsg): RequestApplySnapshotChunk;
|
|
1361
|
+
fromProtoMsg(message: RequestApplySnapshotChunkProtoMsg): RequestApplySnapshotChunk;
|
|
1362
|
+
toProto(message: RequestApplySnapshotChunk): Uint8Array;
|
|
1363
|
+
toProtoMsg(message: RequestApplySnapshotChunk): RequestApplySnapshotChunkProtoMsg;
|
|
1364
|
+
registerTypeUrl(): void;
|
|
1365
|
+
};
|
|
1366
|
+
export declare const RequestPrepareProposal: {
|
|
1367
|
+
typeUrl: string;
|
|
1368
|
+
is(o: any): o is RequestPrepareProposal;
|
|
1369
|
+
isAmino(o: any): o is RequestPrepareProposalAmino;
|
|
1370
|
+
encode(message: RequestPrepareProposal, writer?: BinaryWriter): BinaryWriter;
|
|
1371
|
+
decode(input: BinaryReader | Uint8Array, length?: number): RequestPrepareProposal;
|
|
1372
|
+
fromPartial(object: DeepPartial<RequestPrepareProposal>): RequestPrepareProposal;
|
|
1373
|
+
fromAmino(object: RequestPrepareProposalAmino): RequestPrepareProposal;
|
|
1374
|
+
toAmino(message: RequestPrepareProposal): RequestPrepareProposalAmino;
|
|
1375
|
+
fromAminoMsg(object: RequestPrepareProposalAminoMsg): RequestPrepareProposal;
|
|
1376
|
+
fromProtoMsg(message: RequestPrepareProposalProtoMsg): RequestPrepareProposal;
|
|
1377
|
+
toProto(message: RequestPrepareProposal): Uint8Array;
|
|
1378
|
+
toProtoMsg(message: RequestPrepareProposal): RequestPrepareProposalProtoMsg;
|
|
1379
|
+
registerTypeUrl(): void;
|
|
1380
|
+
};
|
|
1381
|
+
export declare const RequestProcessProposal: {
|
|
1382
|
+
typeUrl: string;
|
|
1383
|
+
is(o: any): o is RequestProcessProposal;
|
|
1384
|
+
isAmino(o: any): o is RequestProcessProposalAmino;
|
|
1385
|
+
encode(message: RequestProcessProposal, writer?: BinaryWriter): BinaryWriter;
|
|
1386
|
+
decode(input: BinaryReader | Uint8Array, length?: number): RequestProcessProposal;
|
|
1387
|
+
fromPartial(object: DeepPartial<RequestProcessProposal>): RequestProcessProposal;
|
|
1388
|
+
fromAmino(object: RequestProcessProposalAmino): RequestProcessProposal;
|
|
1389
|
+
toAmino(message: RequestProcessProposal): RequestProcessProposalAmino;
|
|
1390
|
+
fromAminoMsg(object: RequestProcessProposalAminoMsg): RequestProcessProposal;
|
|
1391
|
+
fromProtoMsg(message: RequestProcessProposalProtoMsg): RequestProcessProposal;
|
|
1392
|
+
toProto(message: RequestProcessProposal): Uint8Array;
|
|
1393
|
+
toProtoMsg(message: RequestProcessProposal): RequestProcessProposalProtoMsg;
|
|
1394
|
+
registerTypeUrl(): void;
|
|
1395
|
+
};
|
|
1396
|
+
export declare const RequestExtendVote: {
|
|
1397
|
+
typeUrl: string;
|
|
1398
|
+
is(o: any): o is RequestExtendVote;
|
|
1399
|
+
isAmino(o: any): o is RequestExtendVoteAmino;
|
|
1400
|
+
encode(message: RequestExtendVote, writer?: BinaryWriter): BinaryWriter;
|
|
1401
|
+
decode(input: BinaryReader | Uint8Array, length?: number): RequestExtendVote;
|
|
1402
|
+
fromPartial(object: DeepPartial<RequestExtendVote>): RequestExtendVote;
|
|
1403
|
+
fromAmino(object: RequestExtendVoteAmino): RequestExtendVote;
|
|
1404
|
+
toAmino(message: RequestExtendVote): RequestExtendVoteAmino;
|
|
1405
|
+
fromAminoMsg(object: RequestExtendVoteAminoMsg): RequestExtendVote;
|
|
1406
|
+
fromProtoMsg(message: RequestExtendVoteProtoMsg): RequestExtendVote;
|
|
1407
|
+
toProto(message: RequestExtendVote): Uint8Array;
|
|
1408
|
+
toProtoMsg(message: RequestExtendVote): RequestExtendVoteProtoMsg;
|
|
1409
|
+
registerTypeUrl(): void;
|
|
1410
|
+
};
|
|
1411
|
+
export declare const RequestVerifyVoteExtension: {
|
|
1412
|
+
typeUrl: string;
|
|
1413
|
+
is(o: any): o is RequestVerifyVoteExtension;
|
|
1414
|
+
isAmino(o: any): o is RequestVerifyVoteExtensionAmino;
|
|
1415
|
+
encode(message: RequestVerifyVoteExtension, writer?: BinaryWriter): BinaryWriter;
|
|
1416
|
+
decode(input: BinaryReader | Uint8Array, length?: number): RequestVerifyVoteExtension;
|
|
1417
|
+
fromPartial(object: DeepPartial<RequestVerifyVoteExtension>): RequestVerifyVoteExtension;
|
|
1418
|
+
fromAmino(object: RequestVerifyVoteExtensionAmino): RequestVerifyVoteExtension;
|
|
1419
|
+
toAmino(message: RequestVerifyVoteExtension): RequestVerifyVoteExtensionAmino;
|
|
1420
|
+
fromAminoMsg(object: RequestVerifyVoteExtensionAminoMsg): RequestVerifyVoteExtension;
|
|
1421
|
+
fromProtoMsg(message: RequestVerifyVoteExtensionProtoMsg): RequestVerifyVoteExtension;
|
|
1422
|
+
toProto(message: RequestVerifyVoteExtension): Uint8Array;
|
|
1423
|
+
toProtoMsg(message: RequestVerifyVoteExtension): RequestVerifyVoteExtensionProtoMsg;
|
|
1424
|
+
registerTypeUrl(): void;
|
|
1425
|
+
};
|
|
1426
|
+
export declare const RequestFinalizeBlock: {
|
|
1427
|
+
typeUrl: string;
|
|
1428
|
+
is(o: any): o is RequestFinalizeBlock;
|
|
1429
|
+
isAmino(o: any): o is RequestFinalizeBlockAmino;
|
|
1430
|
+
encode(message: RequestFinalizeBlock, writer?: BinaryWriter): BinaryWriter;
|
|
1431
|
+
decode(input: BinaryReader | Uint8Array, length?: number): RequestFinalizeBlock;
|
|
1432
|
+
fromPartial(object: DeepPartial<RequestFinalizeBlock>): RequestFinalizeBlock;
|
|
1433
|
+
fromAmino(object: RequestFinalizeBlockAmino): RequestFinalizeBlock;
|
|
1434
|
+
toAmino(message: RequestFinalizeBlock): RequestFinalizeBlockAmino;
|
|
1435
|
+
fromAminoMsg(object: RequestFinalizeBlockAminoMsg): RequestFinalizeBlock;
|
|
1436
|
+
fromProtoMsg(message: RequestFinalizeBlockProtoMsg): RequestFinalizeBlock;
|
|
1437
|
+
toProto(message: RequestFinalizeBlock): Uint8Array;
|
|
1438
|
+
toProtoMsg(message: RequestFinalizeBlock): RequestFinalizeBlockProtoMsg;
|
|
1439
|
+
registerTypeUrl(): void;
|
|
1440
|
+
};
|
|
1441
|
+
export declare const Response: {
|
|
1442
|
+
typeUrl: string;
|
|
1443
|
+
is(o: any): o is Response;
|
|
1444
|
+
isAmino(o: any): o is ResponseAmino;
|
|
1445
|
+
encode(message: Response, writer?: BinaryWriter): BinaryWriter;
|
|
1446
|
+
decode(input: BinaryReader | Uint8Array, length?: number): Response;
|
|
1447
|
+
fromPartial(object: DeepPartial<Response>): Response;
|
|
1448
|
+
fromAmino(object: ResponseAmino): Response;
|
|
1449
|
+
toAmino(message: Response): ResponseAmino;
|
|
1450
|
+
fromAminoMsg(object: ResponseAminoMsg): Response;
|
|
1451
|
+
fromProtoMsg(message: ResponseProtoMsg): Response;
|
|
1452
|
+
toProto(message: Response): Uint8Array;
|
|
1453
|
+
toProtoMsg(message: Response): ResponseProtoMsg;
|
|
1454
|
+
registerTypeUrl(): void;
|
|
1455
|
+
};
|
|
1456
|
+
export declare const ResponseException: {
|
|
1457
|
+
typeUrl: string;
|
|
1458
|
+
is(o: any): o is ResponseException;
|
|
1459
|
+
isAmino(o: any): o is ResponseExceptionAmino;
|
|
1460
|
+
encode(message: ResponseException, writer?: BinaryWriter): BinaryWriter;
|
|
1461
|
+
decode(input: BinaryReader | Uint8Array, length?: number): ResponseException;
|
|
1462
|
+
fromPartial(object: DeepPartial<ResponseException>): ResponseException;
|
|
1463
|
+
fromAmino(object: ResponseExceptionAmino): ResponseException;
|
|
1464
|
+
toAmino(message: ResponseException): ResponseExceptionAmino;
|
|
1465
|
+
fromAminoMsg(object: ResponseExceptionAminoMsg): ResponseException;
|
|
1466
|
+
fromProtoMsg(message: ResponseExceptionProtoMsg): ResponseException;
|
|
1467
|
+
toProto(message: ResponseException): Uint8Array;
|
|
1468
|
+
toProtoMsg(message: ResponseException): ResponseExceptionProtoMsg;
|
|
1469
|
+
registerTypeUrl(): void;
|
|
1470
|
+
};
|
|
1471
|
+
export declare const ResponseEcho: {
|
|
1472
|
+
typeUrl: string;
|
|
1473
|
+
is(o: any): o is ResponseEcho;
|
|
1474
|
+
isAmino(o: any): o is ResponseEchoAmino;
|
|
1475
|
+
encode(message: ResponseEcho, writer?: BinaryWriter): BinaryWriter;
|
|
1476
|
+
decode(input: BinaryReader | Uint8Array, length?: number): ResponseEcho;
|
|
1477
|
+
fromPartial(object: DeepPartial<ResponseEcho>): ResponseEcho;
|
|
1478
|
+
fromAmino(object: ResponseEchoAmino): ResponseEcho;
|
|
1479
|
+
toAmino(message: ResponseEcho): ResponseEchoAmino;
|
|
1480
|
+
fromAminoMsg(object: ResponseEchoAminoMsg): ResponseEcho;
|
|
1481
|
+
fromProtoMsg(message: ResponseEchoProtoMsg): ResponseEcho;
|
|
1482
|
+
toProto(message: ResponseEcho): Uint8Array;
|
|
1483
|
+
toProtoMsg(message: ResponseEcho): ResponseEchoProtoMsg;
|
|
1484
|
+
registerTypeUrl(): void;
|
|
1485
|
+
};
|
|
1486
|
+
export declare const ResponseFlush: {
|
|
1487
|
+
typeUrl: string;
|
|
1488
|
+
is(o: any): o is ResponseFlush;
|
|
1489
|
+
isAmino(o: any): o is ResponseFlushAmino;
|
|
1490
|
+
encode(_: ResponseFlush, writer?: BinaryWriter): BinaryWriter;
|
|
1491
|
+
decode(input: BinaryReader | Uint8Array, length?: number): ResponseFlush;
|
|
1492
|
+
fromPartial(_: DeepPartial<ResponseFlush>): ResponseFlush;
|
|
1493
|
+
fromAmino(_: ResponseFlushAmino): ResponseFlush;
|
|
1494
|
+
toAmino(_: ResponseFlush): ResponseFlushAmino;
|
|
1495
|
+
fromAminoMsg(object: ResponseFlushAminoMsg): ResponseFlush;
|
|
1496
|
+
fromProtoMsg(message: ResponseFlushProtoMsg): ResponseFlush;
|
|
1497
|
+
toProto(message: ResponseFlush): Uint8Array;
|
|
1498
|
+
toProtoMsg(message: ResponseFlush): ResponseFlushProtoMsg;
|
|
1499
|
+
registerTypeUrl(): void;
|
|
1500
|
+
};
|
|
1501
|
+
export declare const ResponseInfo: {
|
|
1502
|
+
typeUrl: string;
|
|
1503
|
+
is(o: any): o is ResponseInfo;
|
|
1504
|
+
isAmino(o: any): o is ResponseInfoAmino;
|
|
1505
|
+
encode(message: ResponseInfo, writer?: BinaryWriter): BinaryWriter;
|
|
1506
|
+
decode(input: BinaryReader | Uint8Array, length?: number): ResponseInfo;
|
|
1507
|
+
fromPartial(object: DeepPartial<ResponseInfo>): ResponseInfo;
|
|
1508
|
+
fromAmino(object: ResponseInfoAmino): ResponseInfo;
|
|
1509
|
+
toAmino(message: ResponseInfo): ResponseInfoAmino;
|
|
1510
|
+
fromAminoMsg(object: ResponseInfoAminoMsg): ResponseInfo;
|
|
1511
|
+
fromProtoMsg(message: ResponseInfoProtoMsg): ResponseInfo;
|
|
1512
|
+
toProto(message: ResponseInfo): Uint8Array;
|
|
1513
|
+
toProtoMsg(message: ResponseInfo): ResponseInfoProtoMsg;
|
|
1514
|
+
registerTypeUrl(): void;
|
|
1515
|
+
};
|
|
1516
|
+
export declare const ResponseInitChain: {
|
|
1517
|
+
typeUrl: string;
|
|
1518
|
+
is(o: any): o is ResponseInitChain;
|
|
1519
|
+
isAmino(o: any): o is ResponseInitChainAmino;
|
|
1520
|
+
encode(message: ResponseInitChain, writer?: BinaryWriter): BinaryWriter;
|
|
1521
|
+
decode(input: BinaryReader | Uint8Array, length?: number): ResponseInitChain;
|
|
1522
|
+
fromPartial(object: DeepPartial<ResponseInitChain>): ResponseInitChain;
|
|
1523
|
+
fromAmino(object: ResponseInitChainAmino): ResponseInitChain;
|
|
1524
|
+
toAmino(message: ResponseInitChain): ResponseInitChainAmino;
|
|
1525
|
+
fromAminoMsg(object: ResponseInitChainAminoMsg): ResponseInitChain;
|
|
1526
|
+
fromProtoMsg(message: ResponseInitChainProtoMsg): ResponseInitChain;
|
|
1527
|
+
toProto(message: ResponseInitChain): Uint8Array;
|
|
1528
|
+
toProtoMsg(message: ResponseInitChain): ResponseInitChainProtoMsg;
|
|
1529
|
+
registerTypeUrl(): void;
|
|
1530
|
+
};
|
|
1531
|
+
export declare const ResponseQuery: {
|
|
1532
|
+
typeUrl: string;
|
|
1533
|
+
is(o: any): o is ResponseQuery;
|
|
1534
|
+
isAmino(o: any): o is ResponseQueryAmino;
|
|
1535
|
+
encode(message: ResponseQuery, writer?: BinaryWriter): BinaryWriter;
|
|
1536
|
+
decode(input: BinaryReader | Uint8Array, length?: number): ResponseQuery;
|
|
1537
|
+
fromPartial(object: DeepPartial<ResponseQuery>): ResponseQuery;
|
|
1538
|
+
fromAmino(object: ResponseQueryAmino): ResponseQuery;
|
|
1539
|
+
toAmino(message: ResponseQuery): ResponseQueryAmino;
|
|
1540
|
+
fromAminoMsg(object: ResponseQueryAminoMsg): ResponseQuery;
|
|
1541
|
+
fromProtoMsg(message: ResponseQueryProtoMsg): ResponseQuery;
|
|
1542
|
+
toProto(message: ResponseQuery): Uint8Array;
|
|
1543
|
+
toProtoMsg(message: ResponseQuery): ResponseQueryProtoMsg;
|
|
1544
|
+
registerTypeUrl(): void;
|
|
1545
|
+
};
|
|
1546
|
+
export declare const ResponseCheckTx: {
|
|
1547
|
+
typeUrl: string;
|
|
1548
|
+
is(o: any): o is ResponseCheckTx;
|
|
1549
|
+
isAmino(o: any): o is ResponseCheckTxAmino;
|
|
1550
|
+
encode(message: ResponseCheckTx, writer?: BinaryWriter): BinaryWriter;
|
|
1551
|
+
decode(input: BinaryReader | Uint8Array, length?: number): ResponseCheckTx;
|
|
1552
|
+
fromPartial(object: DeepPartial<ResponseCheckTx>): ResponseCheckTx;
|
|
1553
|
+
fromAmino(object: ResponseCheckTxAmino): ResponseCheckTx;
|
|
1554
|
+
toAmino(message: ResponseCheckTx): ResponseCheckTxAmino;
|
|
1555
|
+
fromAminoMsg(object: ResponseCheckTxAminoMsg): ResponseCheckTx;
|
|
1556
|
+
fromProtoMsg(message: ResponseCheckTxProtoMsg): ResponseCheckTx;
|
|
1557
|
+
toProto(message: ResponseCheckTx): Uint8Array;
|
|
1558
|
+
toProtoMsg(message: ResponseCheckTx): ResponseCheckTxProtoMsg;
|
|
1559
|
+
registerTypeUrl(): void;
|
|
1560
|
+
};
|
|
1561
|
+
export declare const ResponseCommit: {
|
|
1562
|
+
typeUrl: string;
|
|
1563
|
+
is(o: any): o is ResponseCommit;
|
|
1564
|
+
isAmino(o: any): o is ResponseCommitAmino;
|
|
1565
|
+
encode(message: ResponseCommit, writer?: BinaryWriter): BinaryWriter;
|
|
1566
|
+
decode(input: BinaryReader | Uint8Array, length?: number): ResponseCommit;
|
|
1567
|
+
fromPartial(object: DeepPartial<ResponseCommit>): ResponseCommit;
|
|
1568
|
+
fromAmino(object: ResponseCommitAmino): ResponseCommit;
|
|
1569
|
+
toAmino(message: ResponseCommit): ResponseCommitAmino;
|
|
1570
|
+
fromAminoMsg(object: ResponseCommitAminoMsg): ResponseCommit;
|
|
1571
|
+
fromProtoMsg(message: ResponseCommitProtoMsg): ResponseCommit;
|
|
1572
|
+
toProto(message: ResponseCommit): Uint8Array;
|
|
1573
|
+
toProtoMsg(message: ResponseCommit): ResponseCommitProtoMsg;
|
|
1574
|
+
registerTypeUrl(): void;
|
|
1575
|
+
};
|
|
1576
|
+
export declare const ResponseListSnapshots: {
|
|
1577
|
+
typeUrl: string;
|
|
1578
|
+
is(o: any): o is ResponseListSnapshots;
|
|
1579
|
+
isAmino(o: any): o is ResponseListSnapshotsAmino;
|
|
1580
|
+
encode(message: ResponseListSnapshots, writer?: BinaryWriter): BinaryWriter;
|
|
1581
|
+
decode(input: BinaryReader | Uint8Array, length?: number): ResponseListSnapshots;
|
|
1582
|
+
fromPartial(object: DeepPartial<ResponseListSnapshots>): ResponseListSnapshots;
|
|
1583
|
+
fromAmino(object: ResponseListSnapshotsAmino): ResponseListSnapshots;
|
|
1584
|
+
toAmino(message: ResponseListSnapshots): ResponseListSnapshotsAmino;
|
|
1585
|
+
fromAminoMsg(object: ResponseListSnapshotsAminoMsg): ResponseListSnapshots;
|
|
1586
|
+
fromProtoMsg(message: ResponseListSnapshotsProtoMsg): ResponseListSnapshots;
|
|
1587
|
+
toProto(message: ResponseListSnapshots): Uint8Array;
|
|
1588
|
+
toProtoMsg(message: ResponseListSnapshots): ResponseListSnapshotsProtoMsg;
|
|
1589
|
+
registerTypeUrl(): void;
|
|
1590
|
+
};
|
|
1591
|
+
export declare const ResponseOfferSnapshot: {
|
|
1592
|
+
typeUrl: string;
|
|
1593
|
+
is(o: any): o is ResponseOfferSnapshot;
|
|
1594
|
+
isAmino(o: any): o is ResponseOfferSnapshotAmino;
|
|
1595
|
+
encode(message: ResponseOfferSnapshot, writer?: BinaryWriter): BinaryWriter;
|
|
1596
|
+
decode(input: BinaryReader | Uint8Array, length?: number): ResponseOfferSnapshot;
|
|
1597
|
+
fromPartial(object: DeepPartial<ResponseOfferSnapshot>): ResponseOfferSnapshot;
|
|
1598
|
+
fromAmino(object: ResponseOfferSnapshotAmino): ResponseOfferSnapshot;
|
|
1599
|
+
toAmino(message: ResponseOfferSnapshot): ResponseOfferSnapshotAmino;
|
|
1600
|
+
fromAminoMsg(object: ResponseOfferSnapshotAminoMsg): ResponseOfferSnapshot;
|
|
1601
|
+
fromProtoMsg(message: ResponseOfferSnapshotProtoMsg): ResponseOfferSnapshot;
|
|
1602
|
+
toProto(message: ResponseOfferSnapshot): Uint8Array;
|
|
1603
|
+
toProtoMsg(message: ResponseOfferSnapshot): ResponseOfferSnapshotProtoMsg;
|
|
1604
|
+
registerTypeUrl(): void;
|
|
1605
|
+
};
|
|
1606
|
+
export declare const ResponseLoadSnapshotChunk: {
|
|
1607
|
+
typeUrl: string;
|
|
1608
|
+
is(o: any): o is ResponseLoadSnapshotChunk;
|
|
1609
|
+
isAmino(o: any): o is ResponseLoadSnapshotChunkAmino;
|
|
1610
|
+
encode(message: ResponseLoadSnapshotChunk, writer?: BinaryWriter): BinaryWriter;
|
|
1611
|
+
decode(input: BinaryReader | Uint8Array, length?: number): ResponseLoadSnapshotChunk;
|
|
1612
|
+
fromPartial(object: DeepPartial<ResponseLoadSnapshotChunk>): ResponseLoadSnapshotChunk;
|
|
1613
|
+
fromAmino(object: ResponseLoadSnapshotChunkAmino): ResponseLoadSnapshotChunk;
|
|
1614
|
+
toAmino(message: ResponseLoadSnapshotChunk): ResponseLoadSnapshotChunkAmino;
|
|
1615
|
+
fromAminoMsg(object: ResponseLoadSnapshotChunkAminoMsg): ResponseLoadSnapshotChunk;
|
|
1616
|
+
fromProtoMsg(message: ResponseLoadSnapshotChunkProtoMsg): ResponseLoadSnapshotChunk;
|
|
1617
|
+
toProto(message: ResponseLoadSnapshotChunk): Uint8Array;
|
|
1618
|
+
toProtoMsg(message: ResponseLoadSnapshotChunk): ResponseLoadSnapshotChunkProtoMsg;
|
|
1619
|
+
registerTypeUrl(): void;
|
|
1620
|
+
};
|
|
1621
|
+
export declare const ResponseApplySnapshotChunk: {
|
|
1622
|
+
typeUrl: string;
|
|
1623
|
+
is(o: any): o is ResponseApplySnapshotChunk;
|
|
1624
|
+
isAmino(o: any): o is ResponseApplySnapshotChunkAmino;
|
|
1625
|
+
encode(message: ResponseApplySnapshotChunk, writer?: BinaryWriter): BinaryWriter;
|
|
1626
|
+
decode(input: BinaryReader | Uint8Array, length?: number): ResponseApplySnapshotChunk;
|
|
1627
|
+
fromPartial(object: DeepPartial<ResponseApplySnapshotChunk>): ResponseApplySnapshotChunk;
|
|
1628
|
+
fromAmino(object: ResponseApplySnapshotChunkAmino): ResponseApplySnapshotChunk;
|
|
1629
|
+
toAmino(message: ResponseApplySnapshotChunk): ResponseApplySnapshotChunkAmino;
|
|
1630
|
+
fromAminoMsg(object: ResponseApplySnapshotChunkAminoMsg): ResponseApplySnapshotChunk;
|
|
1631
|
+
fromProtoMsg(message: ResponseApplySnapshotChunkProtoMsg): ResponseApplySnapshotChunk;
|
|
1632
|
+
toProto(message: ResponseApplySnapshotChunk): Uint8Array;
|
|
1633
|
+
toProtoMsg(message: ResponseApplySnapshotChunk): ResponseApplySnapshotChunkProtoMsg;
|
|
1634
|
+
registerTypeUrl(): void;
|
|
1635
|
+
};
|
|
1636
|
+
export declare const ResponsePrepareProposal: {
|
|
1637
|
+
typeUrl: string;
|
|
1638
|
+
is(o: any): o is ResponsePrepareProposal;
|
|
1639
|
+
isAmino(o: any): o is ResponsePrepareProposalAmino;
|
|
1640
|
+
encode(message: ResponsePrepareProposal, writer?: BinaryWriter): BinaryWriter;
|
|
1641
|
+
decode(input: BinaryReader | Uint8Array, length?: number): ResponsePrepareProposal;
|
|
1642
|
+
fromPartial(object: DeepPartial<ResponsePrepareProposal>): ResponsePrepareProposal;
|
|
1643
|
+
fromAmino(object: ResponsePrepareProposalAmino): ResponsePrepareProposal;
|
|
1644
|
+
toAmino(message: ResponsePrepareProposal): ResponsePrepareProposalAmino;
|
|
1645
|
+
fromAminoMsg(object: ResponsePrepareProposalAminoMsg): ResponsePrepareProposal;
|
|
1646
|
+
fromProtoMsg(message: ResponsePrepareProposalProtoMsg): ResponsePrepareProposal;
|
|
1647
|
+
toProto(message: ResponsePrepareProposal): Uint8Array;
|
|
1648
|
+
toProtoMsg(message: ResponsePrepareProposal): ResponsePrepareProposalProtoMsg;
|
|
1649
|
+
registerTypeUrl(): void;
|
|
1650
|
+
};
|
|
1651
|
+
export declare const ResponseProcessProposal: {
|
|
1652
|
+
typeUrl: string;
|
|
1653
|
+
is(o: any): o is ResponseProcessProposal;
|
|
1654
|
+
isAmino(o: any): o is ResponseProcessProposalAmino;
|
|
1655
|
+
encode(message: ResponseProcessProposal, writer?: BinaryWriter): BinaryWriter;
|
|
1656
|
+
decode(input: BinaryReader | Uint8Array, length?: number): ResponseProcessProposal;
|
|
1657
|
+
fromPartial(object: DeepPartial<ResponseProcessProposal>): ResponseProcessProposal;
|
|
1658
|
+
fromAmino(object: ResponseProcessProposalAmino): ResponseProcessProposal;
|
|
1659
|
+
toAmino(message: ResponseProcessProposal): ResponseProcessProposalAmino;
|
|
1660
|
+
fromAminoMsg(object: ResponseProcessProposalAminoMsg): ResponseProcessProposal;
|
|
1661
|
+
fromProtoMsg(message: ResponseProcessProposalProtoMsg): ResponseProcessProposal;
|
|
1662
|
+
toProto(message: ResponseProcessProposal): Uint8Array;
|
|
1663
|
+
toProtoMsg(message: ResponseProcessProposal): ResponseProcessProposalProtoMsg;
|
|
1664
|
+
registerTypeUrl(): void;
|
|
1665
|
+
};
|
|
1666
|
+
export declare const ResponseExtendVote: {
|
|
1667
|
+
typeUrl: string;
|
|
1668
|
+
is(o: any): o is ResponseExtendVote;
|
|
1669
|
+
isAmino(o: any): o is ResponseExtendVoteAmino;
|
|
1670
|
+
encode(message: ResponseExtendVote, writer?: BinaryWriter): BinaryWriter;
|
|
1671
|
+
decode(input: BinaryReader | Uint8Array, length?: number): ResponseExtendVote;
|
|
1672
|
+
fromPartial(object: DeepPartial<ResponseExtendVote>): ResponseExtendVote;
|
|
1673
|
+
fromAmino(object: ResponseExtendVoteAmino): ResponseExtendVote;
|
|
1674
|
+
toAmino(message: ResponseExtendVote): ResponseExtendVoteAmino;
|
|
1675
|
+
fromAminoMsg(object: ResponseExtendVoteAminoMsg): ResponseExtendVote;
|
|
1676
|
+
fromProtoMsg(message: ResponseExtendVoteProtoMsg): ResponseExtendVote;
|
|
1677
|
+
toProto(message: ResponseExtendVote): Uint8Array;
|
|
1678
|
+
toProtoMsg(message: ResponseExtendVote): ResponseExtendVoteProtoMsg;
|
|
1679
|
+
registerTypeUrl(): void;
|
|
1680
|
+
};
|
|
1681
|
+
export declare const ResponseVerifyVoteExtension: {
|
|
1682
|
+
typeUrl: string;
|
|
1683
|
+
is(o: any): o is ResponseVerifyVoteExtension;
|
|
1684
|
+
isAmino(o: any): o is ResponseVerifyVoteExtensionAmino;
|
|
1685
|
+
encode(message: ResponseVerifyVoteExtension, writer?: BinaryWriter): BinaryWriter;
|
|
1686
|
+
decode(input: BinaryReader | Uint8Array, length?: number): ResponseVerifyVoteExtension;
|
|
1687
|
+
fromPartial(object: DeepPartial<ResponseVerifyVoteExtension>): ResponseVerifyVoteExtension;
|
|
1688
|
+
fromAmino(object: ResponseVerifyVoteExtensionAmino): ResponseVerifyVoteExtension;
|
|
1689
|
+
toAmino(message: ResponseVerifyVoteExtension): ResponseVerifyVoteExtensionAmino;
|
|
1690
|
+
fromAminoMsg(object: ResponseVerifyVoteExtensionAminoMsg): ResponseVerifyVoteExtension;
|
|
1691
|
+
fromProtoMsg(message: ResponseVerifyVoteExtensionProtoMsg): ResponseVerifyVoteExtension;
|
|
1692
|
+
toProto(message: ResponseVerifyVoteExtension): Uint8Array;
|
|
1693
|
+
toProtoMsg(message: ResponseVerifyVoteExtension): ResponseVerifyVoteExtensionProtoMsg;
|
|
1694
|
+
registerTypeUrl(): void;
|
|
1695
|
+
};
|
|
1696
|
+
export declare const ResponseFinalizeBlock: {
|
|
1697
|
+
typeUrl: string;
|
|
1698
|
+
is(o: any): o is ResponseFinalizeBlock;
|
|
1699
|
+
isAmino(o: any): o is ResponseFinalizeBlockAmino;
|
|
1700
|
+
encode(message: ResponseFinalizeBlock, writer?: BinaryWriter): BinaryWriter;
|
|
1701
|
+
decode(input: BinaryReader | Uint8Array, length?: number): ResponseFinalizeBlock;
|
|
1702
|
+
fromPartial(object: DeepPartial<ResponseFinalizeBlock>): ResponseFinalizeBlock;
|
|
1703
|
+
fromAmino(object: ResponseFinalizeBlockAmino): ResponseFinalizeBlock;
|
|
1704
|
+
toAmino(message: ResponseFinalizeBlock): ResponseFinalizeBlockAmino;
|
|
1705
|
+
fromAminoMsg(object: ResponseFinalizeBlockAminoMsg): ResponseFinalizeBlock;
|
|
1706
|
+
fromProtoMsg(message: ResponseFinalizeBlockProtoMsg): ResponseFinalizeBlock;
|
|
1707
|
+
toProto(message: ResponseFinalizeBlock): Uint8Array;
|
|
1708
|
+
toProtoMsg(message: ResponseFinalizeBlock): ResponseFinalizeBlockProtoMsg;
|
|
1709
|
+
registerTypeUrl(): void;
|
|
1710
|
+
};
|
|
1711
|
+
export declare const CommitInfo: {
|
|
1712
|
+
typeUrl: string;
|
|
1713
|
+
is(o: any): o is CommitInfo;
|
|
1714
|
+
isAmino(o: any): o is CommitInfoAmino;
|
|
1715
|
+
encode(message: CommitInfo, writer?: BinaryWriter): BinaryWriter;
|
|
1716
|
+
decode(input: BinaryReader | Uint8Array, length?: number): CommitInfo;
|
|
1717
|
+
fromPartial(object: DeepPartial<CommitInfo>): CommitInfo;
|
|
1718
|
+
fromAmino(object: CommitInfoAmino): CommitInfo;
|
|
1719
|
+
toAmino(message: CommitInfo): CommitInfoAmino;
|
|
1720
|
+
fromAminoMsg(object: CommitInfoAminoMsg): CommitInfo;
|
|
1721
|
+
fromProtoMsg(message: CommitInfoProtoMsg): CommitInfo;
|
|
1722
|
+
toProto(message: CommitInfo): Uint8Array;
|
|
1723
|
+
toProtoMsg(message: CommitInfo): CommitInfoProtoMsg;
|
|
1724
|
+
registerTypeUrl(): void;
|
|
1725
|
+
};
|
|
1726
|
+
export declare const ExtendedCommitInfo: {
|
|
1727
|
+
typeUrl: string;
|
|
1728
|
+
is(o: any): o is ExtendedCommitInfo;
|
|
1729
|
+
isAmino(o: any): o is ExtendedCommitInfoAmino;
|
|
1730
|
+
encode(message: ExtendedCommitInfo, writer?: BinaryWriter): BinaryWriter;
|
|
1731
|
+
decode(input: BinaryReader | Uint8Array, length?: number): ExtendedCommitInfo;
|
|
1732
|
+
fromPartial(object: DeepPartial<ExtendedCommitInfo>): ExtendedCommitInfo;
|
|
1733
|
+
fromAmino(object: ExtendedCommitInfoAmino): ExtendedCommitInfo;
|
|
1734
|
+
toAmino(message: ExtendedCommitInfo): ExtendedCommitInfoAmino;
|
|
1735
|
+
fromAminoMsg(object: ExtendedCommitInfoAminoMsg): ExtendedCommitInfo;
|
|
1736
|
+
fromProtoMsg(message: ExtendedCommitInfoProtoMsg): ExtendedCommitInfo;
|
|
1737
|
+
toProto(message: ExtendedCommitInfo): Uint8Array;
|
|
1738
|
+
toProtoMsg(message: ExtendedCommitInfo): ExtendedCommitInfoProtoMsg;
|
|
1739
|
+
registerTypeUrl(): void;
|
|
1740
|
+
};
|
|
1741
|
+
export declare const Event: {
|
|
1742
|
+
typeUrl: string;
|
|
1743
|
+
is(o: any): o is Event;
|
|
1744
|
+
isAmino(o: any): o is EventAmino;
|
|
1745
|
+
encode(message: Event, writer?: BinaryWriter): BinaryWriter;
|
|
1746
|
+
decode(input: BinaryReader | Uint8Array, length?: number): Event;
|
|
1747
|
+
fromPartial(object: DeepPartial<Event>): Event;
|
|
1748
|
+
fromAmino(object: EventAmino): Event;
|
|
1749
|
+
toAmino(message: Event): EventAmino;
|
|
1750
|
+
fromAminoMsg(object: EventAminoMsg): Event;
|
|
1751
|
+
fromProtoMsg(message: EventProtoMsg): Event;
|
|
1752
|
+
toProto(message: Event): Uint8Array;
|
|
1753
|
+
toProtoMsg(message: Event): EventProtoMsg;
|
|
1754
|
+
registerTypeUrl(): void;
|
|
1755
|
+
};
|
|
1756
|
+
export declare const EventAttribute: {
|
|
1757
|
+
typeUrl: string;
|
|
1758
|
+
is(o: any): o is EventAttribute;
|
|
1759
|
+
isAmino(o: any): o is EventAttributeAmino;
|
|
1760
|
+
encode(message: EventAttribute, writer?: BinaryWriter): BinaryWriter;
|
|
1761
|
+
decode(input: BinaryReader | Uint8Array, length?: number): EventAttribute;
|
|
1762
|
+
fromPartial(object: DeepPartial<EventAttribute>): EventAttribute;
|
|
1763
|
+
fromAmino(object: EventAttributeAmino): EventAttribute;
|
|
1764
|
+
toAmino(message: EventAttribute): EventAttributeAmino;
|
|
1765
|
+
fromAminoMsg(object: EventAttributeAminoMsg): EventAttribute;
|
|
1766
|
+
fromProtoMsg(message: EventAttributeProtoMsg): EventAttribute;
|
|
1767
|
+
toProto(message: EventAttribute): Uint8Array;
|
|
1768
|
+
toProtoMsg(message: EventAttribute): EventAttributeProtoMsg;
|
|
1769
|
+
registerTypeUrl(): void;
|
|
1770
|
+
};
|
|
1771
|
+
export declare const ExecTxResult: {
|
|
1772
|
+
typeUrl: string;
|
|
1773
|
+
is(o: any): o is ExecTxResult;
|
|
1774
|
+
isAmino(o: any): o is ExecTxResultAmino;
|
|
1775
|
+
encode(message: ExecTxResult, writer?: BinaryWriter): BinaryWriter;
|
|
1776
|
+
decode(input: BinaryReader | Uint8Array, length?: number): ExecTxResult;
|
|
1777
|
+
fromPartial(object: DeepPartial<ExecTxResult>): ExecTxResult;
|
|
1778
|
+
fromAmino(object: ExecTxResultAmino): ExecTxResult;
|
|
1779
|
+
toAmino(message: ExecTxResult): ExecTxResultAmino;
|
|
1780
|
+
fromAminoMsg(object: ExecTxResultAminoMsg): ExecTxResult;
|
|
1781
|
+
fromProtoMsg(message: ExecTxResultProtoMsg): ExecTxResult;
|
|
1782
|
+
toProto(message: ExecTxResult): Uint8Array;
|
|
1783
|
+
toProtoMsg(message: ExecTxResult): ExecTxResultProtoMsg;
|
|
1784
|
+
registerTypeUrl(): void;
|
|
1785
|
+
};
|
|
1786
|
+
export declare const TxResult: {
|
|
1787
|
+
typeUrl: string;
|
|
1788
|
+
is(o: any): o is TxResult;
|
|
1789
|
+
isAmino(o: any): o is TxResultAmino;
|
|
1790
|
+
encode(message: TxResult, writer?: BinaryWriter): BinaryWriter;
|
|
1791
|
+
decode(input: BinaryReader | Uint8Array, length?: number): TxResult;
|
|
1792
|
+
fromPartial(object: DeepPartial<TxResult>): TxResult;
|
|
1793
|
+
fromAmino(object: TxResultAmino): TxResult;
|
|
1794
|
+
toAmino(message: TxResult): TxResultAmino;
|
|
1795
|
+
fromAminoMsg(object: TxResultAminoMsg): TxResult;
|
|
1796
|
+
fromProtoMsg(message: TxResultProtoMsg): TxResult;
|
|
1797
|
+
toProto(message: TxResult): Uint8Array;
|
|
1798
|
+
toProtoMsg(message: TxResult): TxResultProtoMsg;
|
|
1799
|
+
registerTypeUrl(): void;
|
|
1800
|
+
};
|
|
1801
|
+
export declare const Validator: {
|
|
1802
|
+
typeUrl: string;
|
|
1803
|
+
is(o: any): o is Validator;
|
|
1804
|
+
isAmino(o: any): o is ValidatorAmino;
|
|
1805
|
+
encode(message: Validator, writer?: BinaryWriter): BinaryWriter;
|
|
1806
|
+
decode(input: BinaryReader | Uint8Array, length?: number): Validator;
|
|
1807
|
+
fromPartial(object: DeepPartial<Validator>): Validator;
|
|
1808
|
+
fromAmino(object: ValidatorAmino): Validator;
|
|
1809
|
+
toAmino(message: Validator): ValidatorAmino;
|
|
1810
|
+
fromAminoMsg(object: ValidatorAminoMsg): Validator;
|
|
1811
|
+
fromProtoMsg(message: ValidatorProtoMsg): Validator;
|
|
1812
|
+
toProto(message: Validator): Uint8Array;
|
|
1813
|
+
toProtoMsg(message: Validator): ValidatorProtoMsg;
|
|
1814
|
+
registerTypeUrl(): void;
|
|
1815
|
+
};
|
|
1816
|
+
export declare const ValidatorUpdate: {
|
|
1817
|
+
typeUrl: string;
|
|
1818
|
+
is(o: any): o is ValidatorUpdate;
|
|
1819
|
+
isAmino(o: any): o is ValidatorUpdateAmino;
|
|
1820
|
+
encode(message: ValidatorUpdate, writer?: BinaryWriter): BinaryWriter;
|
|
1821
|
+
decode(input: BinaryReader | Uint8Array, length?: number): ValidatorUpdate;
|
|
1822
|
+
fromPartial(object: DeepPartial<ValidatorUpdate>): ValidatorUpdate;
|
|
1823
|
+
fromAmino(object: ValidatorUpdateAmino): ValidatorUpdate;
|
|
1824
|
+
toAmino(message: ValidatorUpdate): ValidatorUpdateAmino;
|
|
1825
|
+
fromAminoMsg(object: ValidatorUpdateAminoMsg): ValidatorUpdate;
|
|
1826
|
+
fromProtoMsg(message: ValidatorUpdateProtoMsg): ValidatorUpdate;
|
|
1827
|
+
toProto(message: ValidatorUpdate): Uint8Array;
|
|
1828
|
+
toProtoMsg(message: ValidatorUpdate): ValidatorUpdateProtoMsg;
|
|
1829
|
+
registerTypeUrl(): void;
|
|
1830
|
+
};
|
|
1831
|
+
export declare const VoteInfo: {
|
|
1832
|
+
typeUrl: string;
|
|
1833
|
+
is(o: any): o is VoteInfo;
|
|
1834
|
+
isAmino(o: any): o is VoteInfoAmino;
|
|
1835
|
+
encode(message: VoteInfo, writer?: BinaryWriter): BinaryWriter;
|
|
1836
|
+
decode(input: BinaryReader | Uint8Array, length?: number): VoteInfo;
|
|
1837
|
+
fromPartial(object: DeepPartial<VoteInfo>): VoteInfo;
|
|
1838
|
+
fromAmino(object: VoteInfoAmino): VoteInfo;
|
|
1839
|
+
toAmino(message: VoteInfo): VoteInfoAmino;
|
|
1840
|
+
fromAminoMsg(object: VoteInfoAminoMsg): VoteInfo;
|
|
1841
|
+
fromProtoMsg(message: VoteInfoProtoMsg): VoteInfo;
|
|
1842
|
+
toProto(message: VoteInfo): Uint8Array;
|
|
1843
|
+
toProtoMsg(message: VoteInfo): VoteInfoProtoMsg;
|
|
1844
|
+
registerTypeUrl(): void;
|
|
1845
|
+
};
|
|
1846
|
+
export declare const ExtendedVoteInfo: {
|
|
1847
|
+
typeUrl: string;
|
|
1848
|
+
is(o: any): o is ExtendedVoteInfo;
|
|
1849
|
+
isAmino(o: any): o is ExtendedVoteInfoAmino;
|
|
1850
|
+
encode(message: ExtendedVoteInfo, writer?: BinaryWriter): BinaryWriter;
|
|
1851
|
+
decode(input: BinaryReader | Uint8Array, length?: number): ExtendedVoteInfo;
|
|
1852
|
+
fromPartial(object: DeepPartial<ExtendedVoteInfo>): ExtendedVoteInfo;
|
|
1853
|
+
fromAmino(object: ExtendedVoteInfoAmino): ExtendedVoteInfo;
|
|
1854
|
+
toAmino(message: ExtendedVoteInfo): ExtendedVoteInfoAmino;
|
|
1855
|
+
fromAminoMsg(object: ExtendedVoteInfoAminoMsg): ExtendedVoteInfo;
|
|
1856
|
+
fromProtoMsg(message: ExtendedVoteInfoProtoMsg): ExtendedVoteInfo;
|
|
1857
|
+
toProto(message: ExtendedVoteInfo): Uint8Array;
|
|
1858
|
+
toProtoMsg(message: ExtendedVoteInfo): ExtendedVoteInfoProtoMsg;
|
|
1859
|
+
registerTypeUrl(): void;
|
|
1860
|
+
};
|
|
1861
|
+
export declare const Misbehavior: {
|
|
1862
|
+
typeUrl: string;
|
|
1863
|
+
is(o: any): o is Misbehavior;
|
|
1864
|
+
isAmino(o: any): o is MisbehaviorAmino;
|
|
1865
|
+
encode(message: Misbehavior, writer?: BinaryWriter): BinaryWriter;
|
|
1866
|
+
decode(input: BinaryReader | Uint8Array, length?: number): Misbehavior;
|
|
1867
|
+
fromPartial(object: DeepPartial<Misbehavior>): Misbehavior;
|
|
1868
|
+
fromAmino(object: MisbehaviorAmino): Misbehavior;
|
|
1869
|
+
toAmino(message: Misbehavior): MisbehaviorAmino;
|
|
1870
|
+
fromAminoMsg(object: MisbehaviorAminoMsg): Misbehavior;
|
|
1871
|
+
fromProtoMsg(message: MisbehaviorProtoMsg): Misbehavior;
|
|
1872
|
+
toProto(message: Misbehavior): Uint8Array;
|
|
1873
|
+
toProtoMsg(message: Misbehavior): MisbehaviorProtoMsg;
|
|
1874
|
+
registerTypeUrl(): void;
|
|
1875
|
+
};
|
|
1876
|
+
export declare const Snapshot: {
|
|
1877
|
+
typeUrl: string;
|
|
1878
|
+
is(o: any): o is Snapshot;
|
|
1879
|
+
isAmino(o: any): o is SnapshotAmino;
|
|
1880
|
+
encode(message: Snapshot, writer?: BinaryWriter): BinaryWriter;
|
|
1881
|
+
decode(input: BinaryReader | Uint8Array, length?: number): Snapshot;
|
|
1882
|
+
fromPartial(object: DeepPartial<Snapshot>): Snapshot;
|
|
1883
|
+
fromAmino(object: SnapshotAmino): Snapshot;
|
|
1884
|
+
toAmino(message: Snapshot): SnapshotAmino;
|
|
1885
|
+
fromAminoMsg(object: SnapshotAminoMsg): Snapshot;
|
|
1886
|
+
fromProtoMsg(message: SnapshotProtoMsg): Snapshot;
|
|
1887
|
+
toProto(message: Snapshot): Uint8Array;
|
|
1888
|
+
toProtoMsg(message: Snapshot): SnapshotProtoMsg;
|
|
1889
|
+
registerTypeUrl(): void;
|
|
1890
|
+
};
|