@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
|
@@ -1,1638 +0,0 @@
|
|
|
1
|
-
import { Description, DescriptionAmino, CommissionRates, CommissionRatesAmino, Params, ParamsAmino } from "./staking";
|
|
2
|
-
import { Any, AnyProtoMsg, AnyAmino } from "../../../google/protobuf/any";
|
|
3
|
-
import { Coin, CoinAmino } from "../../base/v1beta1/coin";
|
|
4
|
-
import { Timestamp } from "../../../google/protobuf/timestamp";
|
|
5
|
-
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
6
|
-
import { DeepPartial, toTimestamp, fromTimestamp } from "../../../helpers";
|
|
7
|
-
import { encodePubkey, decodePubkey } from "@cosmjs/proto-signing";
|
|
8
|
-
import { GlobalDecoderRegistry } from "../../../registry";
|
|
9
|
-
/** MsgCreateValidator defines a SDK message for creating a new validator. */
|
|
10
|
-
export interface MsgCreateValidator {
|
|
11
|
-
description: Description;
|
|
12
|
-
commission: CommissionRates;
|
|
13
|
-
minSelfDelegation: string;
|
|
14
|
-
/**
|
|
15
|
-
* Deprecated: Use of Delegator Address in MsgCreateValidator is deprecated.
|
|
16
|
-
* The validator address bytes and delegator address bytes refer to the same account while creating validator (defer
|
|
17
|
-
* only in bech32 notation).
|
|
18
|
-
*/
|
|
19
|
-
/** @deprecated */
|
|
20
|
-
delegatorAddress: string;
|
|
21
|
-
validatorAddress: string;
|
|
22
|
-
pubkey?: Any | undefined;
|
|
23
|
-
value: Coin;
|
|
24
|
-
}
|
|
25
|
-
export interface MsgCreateValidatorProtoMsg {
|
|
26
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgCreateValidator";
|
|
27
|
-
value: Uint8Array;
|
|
28
|
-
}
|
|
29
|
-
export type MsgCreateValidatorEncoded = Omit<MsgCreateValidator, "pubkey"> & {
|
|
30
|
-
pubkey?: AnyProtoMsg | undefined;
|
|
31
|
-
};
|
|
32
|
-
/** MsgCreateValidator defines a SDK message for creating a new validator. */
|
|
33
|
-
export interface MsgCreateValidatorAmino {
|
|
34
|
-
description: DescriptionAmino;
|
|
35
|
-
commission: CommissionRatesAmino;
|
|
36
|
-
min_self_delegation: string;
|
|
37
|
-
/**
|
|
38
|
-
* Deprecated: Use of Delegator Address in MsgCreateValidator is deprecated.
|
|
39
|
-
* The validator address bytes and delegator address bytes refer to the same account while creating validator (defer
|
|
40
|
-
* only in bech32 notation).
|
|
41
|
-
*/
|
|
42
|
-
/** @deprecated */
|
|
43
|
-
delegator_address: string;
|
|
44
|
-
validator_address: string;
|
|
45
|
-
pubkey?: AnyAmino;
|
|
46
|
-
value: CoinAmino;
|
|
47
|
-
}
|
|
48
|
-
export interface MsgCreateValidatorAminoMsg {
|
|
49
|
-
type: "cosmos-sdk/MsgCreateValidator";
|
|
50
|
-
value: MsgCreateValidatorAmino;
|
|
51
|
-
}
|
|
52
|
-
/** MsgCreateValidatorResponse defines the Msg/CreateValidator response type. */
|
|
53
|
-
export interface MsgCreateValidatorResponse {}
|
|
54
|
-
export interface MsgCreateValidatorResponseProtoMsg {
|
|
55
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgCreateValidatorResponse";
|
|
56
|
-
value: Uint8Array;
|
|
57
|
-
}
|
|
58
|
-
/** MsgCreateValidatorResponse defines the Msg/CreateValidator response type. */
|
|
59
|
-
export interface MsgCreateValidatorResponseAmino {}
|
|
60
|
-
export interface MsgCreateValidatorResponseAminoMsg {
|
|
61
|
-
type: "cosmos-sdk/MsgCreateValidatorResponse";
|
|
62
|
-
value: MsgCreateValidatorResponseAmino;
|
|
63
|
-
}
|
|
64
|
-
/** MsgEditValidator defines a SDK message for editing an existing validator. */
|
|
65
|
-
export interface MsgEditValidator {
|
|
66
|
-
description: Description;
|
|
67
|
-
validatorAddress: string;
|
|
68
|
-
/**
|
|
69
|
-
* We pass a reference to the new commission rate and min self delegation as
|
|
70
|
-
* it's not mandatory to update. If not updated, the deserialized rate will be
|
|
71
|
-
* zero with no way to distinguish if an update was intended.
|
|
72
|
-
* REF: #2373
|
|
73
|
-
*/
|
|
74
|
-
commissionRate: string;
|
|
75
|
-
minSelfDelegation: string;
|
|
76
|
-
}
|
|
77
|
-
export interface MsgEditValidatorProtoMsg {
|
|
78
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgEditValidator";
|
|
79
|
-
value: Uint8Array;
|
|
80
|
-
}
|
|
81
|
-
/** MsgEditValidator defines a SDK message for editing an existing validator. */
|
|
82
|
-
export interface MsgEditValidatorAmino {
|
|
83
|
-
description: DescriptionAmino;
|
|
84
|
-
validator_address: string;
|
|
85
|
-
/**
|
|
86
|
-
* We pass a reference to the new commission rate and min self delegation as
|
|
87
|
-
* it's not mandatory to update. If not updated, the deserialized rate will be
|
|
88
|
-
* zero with no way to distinguish if an update was intended.
|
|
89
|
-
* REF: #2373
|
|
90
|
-
*/
|
|
91
|
-
commission_rate: string;
|
|
92
|
-
min_self_delegation: string;
|
|
93
|
-
}
|
|
94
|
-
export interface MsgEditValidatorAminoMsg {
|
|
95
|
-
type: "cosmos-sdk/MsgEditValidator";
|
|
96
|
-
value: MsgEditValidatorAmino;
|
|
97
|
-
}
|
|
98
|
-
/** MsgEditValidatorResponse defines the Msg/EditValidator response type. */
|
|
99
|
-
export interface MsgEditValidatorResponse {}
|
|
100
|
-
export interface MsgEditValidatorResponseProtoMsg {
|
|
101
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgEditValidatorResponse";
|
|
102
|
-
value: Uint8Array;
|
|
103
|
-
}
|
|
104
|
-
/** MsgEditValidatorResponse defines the Msg/EditValidator response type. */
|
|
105
|
-
export interface MsgEditValidatorResponseAmino {}
|
|
106
|
-
export interface MsgEditValidatorResponseAminoMsg {
|
|
107
|
-
type: "cosmos-sdk/MsgEditValidatorResponse";
|
|
108
|
-
value: MsgEditValidatorResponseAmino;
|
|
109
|
-
}
|
|
110
|
-
/**
|
|
111
|
-
* MsgDelegate defines a SDK message for performing a delegation of coins
|
|
112
|
-
* from a delegator to a validator.
|
|
113
|
-
*/
|
|
114
|
-
export interface MsgDelegate {
|
|
115
|
-
delegatorAddress: string;
|
|
116
|
-
validatorAddress: string;
|
|
117
|
-
amount: Coin;
|
|
118
|
-
}
|
|
119
|
-
export interface MsgDelegateProtoMsg {
|
|
120
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgDelegate";
|
|
121
|
-
value: Uint8Array;
|
|
122
|
-
}
|
|
123
|
-
/**
|
|
124
|
-
* MsgDelegate defines a SDK message for performing a delegation of coins
|
|
125
|
-
* from a delegator to a validator.
|
|
126
|
-
*/
|
|
127
|
-
export interface MsgDelegateAmino {
|
|
128
|
-
delegator_address: string;
|
|
129
|
-
validator_address: string;
|
|
130
|
-
amount: CoinAmino;
|
|
131
|
-
}
|
|
132
|
-
export interface MsgDelegateAminoMsg {
|
|
133
|
-
type: "cosmos-sdk/MsgDelegate";
|
|
134
|
-
value: MsgDelegateAmino;
|
|
135
|
-
}
|
|
136
|
-
/** MsgDelegateResponse defines the Msg/Delegate response type. */
|
|
137
|
-
export interface MsgDelegateResponse {}
|
|
138
|
-
export interface MsgDelegateResponseProtoMsg {
|
|
139
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgDelegateResponse";
|
|
140
|
-
value: Uint8Array;
|
|
141
|
-
}
|
|
142
|
-
/** MsgDelegateResponse defines the Msg/Delegate response type. */
|
|
143
|
-
export interface MsgDelegateResponseAmino {}
|
|
144
|
-
export interface MsgDelegateResponseAminoMsg {
|
|
145
|
-
type: "cosmos-sdk/MsgDelegateResponse";
|
|
146
|
-
value: MsgDelegateResponseAmino;
|
|
147
|
-
}
|
|
148
|
-
/**
|
|
149
|
-
* MsgBeginRedelegate defines a SDK message for performing a redelegation
|
|
150
|
-
* of coins from a delegator and source validator to a destination validator.
|
|
151
|
-
*/
|
|
152
|
-
export interface MsgBeginRedelegate {
|
|
153
|
-
delegatorAddress: string;
|
|
154
|
-
validatorSrcAddress: string;
|
|
155
|
-
validatorDstAddress: string;
|
|
156
|
-
amount: Coin;
|
|
157
|
-
}
|
|
158
|
-
export interface MsgBeginRedelegateProtoMsg {
|
|
159
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgBeginRedelegate";
|
|
160
|
-
value: Uint8Array;
|
|
161
|
-
}
|
|
162
|
-
/**
|
|
163
|
-
* MsgBeginRedelegate defines a SDK message for performing a redelegation
|
|
164
|
-
* of coins from a delegator and source validator to a destination validator.
|
|
165
|
-
*/
|
|
166
|
-
export interface MsgBeginRedelegateAmino {
|
|
167
|
-
delegator_address: string;
|
|
168
|
-
validator_src_address: string;
|
|
169
|
-
validator_dst_address: string;
|
|
170
|
-
amount: CoinAmino;
|
|
171
|
-
}
|
|
172
|
-
export interface MsgBeginRedelegateAminoMsg {
|
|
173
|
-
type: "cosmos-sdk/MsgBeginRedelegate";
|
|
174
|
-
value: MsgBeginRedelegateAmino;
|
|
175
|
-
}
|
|
176
|
-
/** MsgBeginRedelegateResponse defines the Msg/BeginRedelegate response type. */
|
|
177
|
-
export interface MsgBeginRedelegateResponse {
|
|
178
|
-
completionTime: Date;
|
|
179
|
-
}
|
|
180
|
-
export interface MsgBeginRedelegateResponseProtoMsg {
|
|
181
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgBeginRedelegateResponse";
|
|
182
|
-
value: Uint8Array;
|
|
183
|
-
}
|
|
184
|
-
/** MsgBeginRedelegateResponse defines the Msg/BeginRedelegate response type. */
|
|
185
|
-
export interface MsgBeginRedelegateResponseAmino {
|
|
186
|
-
completion_time: string;
|
|
187
|
-
}
|
|
188
|
-
export interface MsgBeginRedelegateResponseAminoMsg {
|
|
189
|
-
type: "cosmos-sdk/MsgBeginRedelegateResponse";
|
|
190
|
-
value: MsgBeginRedelegateResponseAmino;
|
|
191
|
-
}
|
|
192
|
-
/**
|
|
193
|
-
* MsgUndelegate defines a SDK message for performing an undelegation from a
|
|
194
|
-
* delegate and a validator.
|
|
195
|
-
*/
|
|
196
|
-
export interface MsgUndelegate {
|
|
197
|
-
delegatorAddress: string;
|
|
198
|
-
validatorAddress: string;
|
|
199
|
-
amount: Coin;
|
|
200
|
-
}
|
|
201
|
-
export interface MsgUndelegateProtoMsg {
|
|
202
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgUndelegate";
|
|
203
|
-
value: Uint8Array;
|
|
204
|
-
}
|
|
205
|
-
/**
|
|
206
|
-
* MsgUndelegate defines a SDK message for performing an undelegation from a
|
|
207
|
-
* delegate and a validator.
|
|
208
|
-
*/
|
|
209
|
-
export interface MsgUndelegateAmino {
|
|
210
|
-
delegator_address: string;
|
|
211
|
-
validator_address: string;
|
|
212
|
-
amount: CoinAmino;
|
|
213
|
-
}
|
|
214
|
-
export interface MsgUndelegateAminoMsg {
|
|
215
|
-
type: "cosmos-sdk/MsgUndelegate";
|
|
216
|
-
value: MsgUndelegateAmino;
|
|
217
|
-
}
|
|
218
|
-
/** MsgUndelegateResponse defines the Msg/Undelegate response type. */
|
|
219
|
-
export interface MsgUndelegateResponse {
|
|
220
|
-
completionTime: Date;
|
|
221
|
-
/**
|
|
222
|
-
* amount returns the amount of undelegated coins
|
|
223
|
-
*
|
|
224
|
-
* Since: cosmos-sdk 0.50
|
|
225
|
-
*/
|
|
226
|
-
amount: Coin;
|
|
227
|
-
}
|
|
228
|
-
export interface MsgUndelegateResponseProtoMsg {
|
|
229
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgUndelegateResponse";
|
|
230
|
-
value: Uint8Array;
|
|
231
|
-
}
|
|
232
|
-
/** MsgUndelegateResponse defines the Msg/Undelegate response type. */
|
|
233
|
-
export interface MsgUndelegateResponseAmino {
|
|
234
|
-
completion_time: string;
|
|
235
|
-
/**
|
|
236
|
-
* amount returns the amount of undelegated coins
|
|
237
|
-
*
|
|
238
|
-
* Since: cosmos-sdk 0.50
|
|
239
|
-
*/
|
|
240
|
-
amount: CoinAmino;
|
|
241
|
-
}
|
|
242
|
-
export interface MsgUndelegateResponseAminoMsg {
|
|
243
|
-
type: "cosmos-sdk/MsgUndelegateResponse";
|
|
244
|
-
value: MsgUndelegateResponseAmino;
|
|
245
|
-
}
|
|
246
|
-
/**
|
|
247
|
-
* MsgCancelUnbondingDelegation defines the SDK message for performing a cancel unbonding delegation for delegator
|
|
248
|
-
*
|
|
249
|
-
* Since: cosmos-sdk 0.46
|
|
250
|
-
*/
|
|
251
|
-
export interface MsgCancelUnbondingDelegation {
|
|
252
|
-
delegatorAddress: string;
|
|
253
|
-
validatorAddress: string;
|
|
254
|
-
/** amount is always less than or equal to unbonding delegation entry balance */
|
|
255
|
-
amount: Coin;
|
|
256
|
-
/** creation_height is the height which the unbonding took place. */
|
|
257
|
-
creationHeight: bigint;
|
|
258
|
-
}
|
|
259
|
-
export interface MsgCancelUnbondingDelegationProtoMsg {
|
|
260
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgCancelUnbondingDelegation";
|
|
261
|
-
value: Uint8Array;
|
|
262
|
-
}
|
|
263
|
-
/**
|
|
264
|
-
* MsgCancelUnbondingDelegation defines the SDK message for performing a cancel unbonding delegation for delegator
|
|
265
|
-
*
|
|
266
|
-
* Since: cosmos-sdk 0.46
|
|
267
|
-
*/
|
|
268
|
-
export interface MsgCancelUnbondingDelegationAmino {
|
|
269
|
-
delegator_address: string;
|
|
270
|
-
validator_address: string;
|
|
271
|
-
/** amount is always less than or equal to unbonding delegation entry balance */
|
|
272
|
-
amount: CoinAmino;
|
|
273
|
-
/** creation_height is the height which the unbonding took place. */
|
|
274
|
-
creation_height: string;
|
|
275
|
-
}
|
|
276
|
-
export interface MsgCancelUnbondingDelegationAminoMsg {
|
|
277
|
-
type: "cosmos-sdk/MsgCancelUnbondingDelegation";
|
|
278
|
-
value: MsgCancelUnbondingDelegationAmino;
|
|
279
|
-
}
|
|
280
|
-
/**
|
|
281
|
-
* MsgCancelUnbondingDelegationResponse
|
|
282
|
-
*
|
|
283
|
-
* Since: cosmos-sdk 0.46
|
|
284
|
-
*/
|
|
285
|
-
export interface MsgCancelUnbondingDelegationResponse {}
|
|
286
|
-
export interface MsgCancelUnbondingDelegationResponseProtoMsg {
|
|
287
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgCancelUnbondingDelegationResponse";
|
|
288
|
-
value: Uint8Array;
|
|
289
|
-
}
|
|
290
|
-
/**
|
|
291
|
-
* MsgCancelUnbondingDelegationResponse
|
|
292
|
-
*
|
|
293
|
-
* Since: cosmos-sdk 0.46
|
|
294
|
-
*/
|
|
295
|
-
export interface MsgCancelUnbondingDelegationResponseAmino {}
|
|
296
|
-
export interface MsgCancelUnbondingDelegationResponseAminoMsg {
|
|
297
|
-
type: "cosmos-sdk/MsgCancelUnbondingDelegationResponse";
|
|
298
|
-
value: MsgCancelUnbondingDelegationResponseAmino;
|
|
299
|
-
}
|
|
300
|
-
/**
|
|
301
|
-
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
302
|
-
*
|
|
303
|
-
* Since: cosmos-sdk 0.47
|
|
304
|
-
*/
|
|
305
|
-
export interface MsgUpdateParams {
|
|
306
|
-
/** authority is the address that controls the module (defaults to x/gov unless overwritten). */
|
|
307
|
-
authority: string;
|
|
308
|
-
/**
|
|
309
|
-
* params defines the x/staking parameters to update.
|
|
310
|
-
*
|
|
311
|
-
* NOTE: All parameters must be supplied.
|
|
312
|
-
*/
|
|
313
|
-
params: Params;
|
|
314
|
-
}
|
|
315
|
-
export interface MsgUpdateParamsProtoMsg {
|
|
316
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgUpdateParams";
|
|
317
|
-
value: Uint8Array;
|
|
318
|
-
}
|
|
319
|
-
/**
|
|
320
|
-
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
321
|
-
*
|
|
322
|
-
* Since: cosmos-sdk 0.47
|
|
323
|
-
*/
|
|
324
|
-
export interface MsgUpdateParamsAmino {
|
|
325
|
-
/** authority is the address that controls the module (defaults to x/gov unless overwritten). */
|
|
326
|
-
authority: string;
|
|
327
|
-
/**
|
|
328
|
-
* params defines the x/staking parameters to update.
|
|
329
|
-
*
|
|
330
|
-
* NOTE: All parameters must be supplied.
|
|
331
|
-
*/
|
|
332
|
-
params: ParamsAmino;
|
|
333
|
-
}
|
|
334
|
-
export interface MsgUpdateParamsAminoMsg {
|
|
335
|
-
type: "cosmos-sdk/x/staking/MsgUpdateParams";
|
|
336
|
-
value: MsgUpdateParamsAmino;
|
|
337
|
-
}
|
|
338
|
-
/**
|
|
339
|
-
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
340
|
-
* MsgUpdateParams message.
|
|
341
|
-
*
|
|
342
|
-
* Since: cosmos-sdk 0.47
|
|
343
|
-
*/
|
|
344
|
-
export interface MsgUpdateParamsResponse {}
|
|
345
|
-
export interface MsgUpdateParamsResponseProtoMsg {
|
|
346
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgUpdateParamsResponse";
|
|
347
|
-
value: Uint8Array;
|
|
348
|
-
}
|
|
349
|
-
/**
|
|
350
|
-
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
351
|
-
* MsgUpdateParams message.
|
|
352
|
-
*
|
|
353
|
-
* Since: cosmos-sdk 0.47
|
|
354
|
-
*/
|
|
355
|
-
export interface MsgUpdateParamsResponseAmino {}
|
|
356
|
-
export interface MsgUpdateParamsResponseAminoMsg {
|
|
357
|
-
type: "cosmos-sdk/MsgUpdateParamsResponse";
|
|
358
|
-
value: MsgUpdateParamsResponseAmino;
|
|
359
|
-
}
|
|
360
|
-
function createBaseMsgCreateValidator(): MsgCreateValidator {
|
|
361
|
-
return {
|
|
362
|
-
description: Description.fromPartial({}),
|
|
363
|
-
commission: CommissionRates.fromPartial({}),
|
|
364
|
-
minSelfDelegation: "",
|
|
365
|
-
delegatorAddress: "",
|
|
366
|
-
validatorAddress: "",
|
|
367
|
-
pubkey: undefined,
|
|
368
|
-
value: Coin.fromPartial({})
|
|
369
|
-
};
|
|
370
|
-
}
|
|
371
|
-
export const MsgCreateValidator = {
|
|
372
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgCreateValidator",
|
|
373
|
-
aminoType: "cosmos-sdk/MsgCreateValidator",
|
|
374
|
-
is(o: any): o is MsgCreateValidator {
|
|
375
|
-
return o && (o.$typeUrl === MsgCreateValidator.typeUrl || Description.is(o.description) && CommissionRates.is(o.commission) && typeof o.minSelfDelegation === "string" && typeof o.delegatorAddress === "string" && typeof o.validatorAddress === "string" && Coin.is(o.value));
|
|
376
|
-
},
|
|
377
|
-
isAmino(o: any): o is MsgCreateValidatorAmino {
|
|
378
|
-
return o && (o.$typeUrl === MsgCreateValidator.typeUrl || Description.isAmino(o.description) && CommissionRates.isAmino(o.commission) && typeof o.min_self_delegation === "string" && typeof o.delegator_address === "string" && typeof o.validator_address === "string" && Coin.isAmino(o.value));
|
|
379
|
-
},
|
|
380
|
-
encode(message: MsgCreateValidator, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
381
|
-
if (message.description !== undefined) {
|
|
382
|
-
Description.encode(message.description, writer.uint32(10).fork()).ldelim();
|
|
383
|
-
}
|
|
384
|
-
if (message.commission !== undefined) {
|
|
385
|
-
CommissionRates.encode(message.commission, writer.uint32(18).fork()).ldelim();
|
|
386
|
-
}
|
|
387
|
-
if (message.minSelfDelegation !== "") {
|
|
388
|
-
writer.uint32(26).string(message.minSelfDelegation);
|
|
389
|
-
}
|
|
390
|
-
if (message.delegatorAddress !== "") {
|
|
391
|
-
writer.uint32(34).string(message.delegatorAddress);
|
|
392
|
-
}
|
|
393
|
-
if (message.validatorAddress !== "") {
|
|
394
|
-
writer.uint32(42).string(message.validatorAddress);
|
|
395
|
-
}
|
|
396
|
-
if (message.pubkey !== undefined) {
|
|
397
|
-
Any.encode(GlobalDecoderRegistry.wrapAny(message.pubkey), writer.uint32(50).fork()).ldelim();
|
|
398
|
-
}
|
|
399
|
-
if (message.value !== undefined) {
|
|
400
|
-
Coin.encode(message.value, writer.uint32(58).fork()).ldelim();
|
|
401
|
-
}
|
|
402
|
-
return writer;
|
|
403
|
-
},
|
|
404
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateValidator {
|
|
405
|
-
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
406
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
407
|
-
const message = createBaseMsgCreateValidator();
|
|
408
|
-
while (reader.pos < end) {
|
|
409
|
-
const tag = reader.uint32();
|
|
410
|
-
switch (tag >>> 3) {
|
|
411
|
-
case 1:
|
|
412
|
-
message.description = Description.decode(reader, reader.uint32());
|
|
413
|
-
break;
|
|
414
|
-
case 2:
|
|
415
|
-
message.commission = CommissionRates.decode(reader, reader.uint32());
|
|
416
|
-
break;
|
|
417
|
-
case 3:
|
|
418
|
-
message.minSelfDelegation = reader.string();
|
|
419
|
-
break;
|
|
420
|
-
case 4:
|
|
421
|
-
message.delegatorAddress = reader.string();
|
|
422
|
-
break;
|
|
423
|
-
case 5:
|
|
424
|
-
message.validatorAddress = reader.string();
|
|
425
|
-
break;
|
|
426
|
-
case 6:
|
|
427
|
-
message.pubkey = GlobalDecoderRegistry.unwrapAny(reader);
|
|
428
|
-
break;
|
|
429
|
-
case 7:
|
|
430
|
-
message.value = Coin.decode(reader, reader.uint32());
|
|
431
|
-
break;
|
|
432
|
-
default:
|
|
433
|
-
reader.skipType(tag & 7);
|
|
434
|
-
break;
|
|
435
|
-
}
|
|
436
|
-
}
|
|
437
|
-
return message;
|
|
438
|
-
},
|
|
439
|
-
fromPartial(object: DeepPartial<MsgCreateValidator>): MsgCreateValidator {
|
|
440
|
-
const message = createBaseMsgCreateValidator();
|
|
441
|
-
message.description = object.description !== undefined && object.description !== null ? Description.fromPartial(object.description) : undefined;
|
|
442
|
-
message.commission = object.commission !== undefined && object.commission !== null ? CommissionRates.fromPartial(object.commission) : undefined;
|
|
443
|
-
message.minSelfDelegation = object.minSelfDelegation ?? "";
|
|
444
|
-
message.delegatorAddress = object.delegatorAddress ?? "";
|
|
445
|
-
message.validatorAddress = object.validatorAddress ?? "";
|
|
446
|
-
message.pubkey = object.pubkey !== undefined && object.pubkey !== null ? GlobalDecoderRegistry.fromPartial(object.pubkey) : undefined;
|
|
447
|
-
message.value = object.value !== undefined && object.value !== null ? Coin.fromPartial(object.value) : undefined;
|
|
448
|
-
return message;
|
|
449
|
-
},
|
|
450
|
-
fromAmino(object: MsgCreateValidatorAmino): MsgCreateValidator {
|
|
451
|
-
const message = createBaseMsgCreateValidator();
|
|
452
|
-
if (object.description !== undefined && object.description !== null) {
|
|
453
|
-
message.description = Description.fromAmino(object.description);
|
|
454
|
-
}
|
|
455
|
-
if (object.commission !== undefined && object.commission !== null) {
|
|
456
|
-
message.commission = CommissionRates.fromAmino(object.commission);
|
|
457
|
-
}
|
|
458
|
-
if (object.min_self_delegation !== undefined && object.min_self_delegation !== null) {
|
|
459
|
-
message.minSelfDelegation = object.min_self_delegation;
|
|
460
|
-
}
|
|
461
|
-
if (object.delegator_address !== undefined && object.delegator_address !== null) {
|
|
462
|
-
message.delegatorAddress = object.delegator_address;
|
|
463
|
-
}
|
|
464
|
-
if (object.validator_address !== undefined && object.validator_address !== null) {
|
|
465
|
-
message.validatorAddress = object.validator_address;
|
|
466
|
-
}
|
|
467
|
-
if (object.pubkey !== undefined && object.pubkey !== null) {
|
|
468
|
-
message.pubkey = encodePubkey(object.pubkey);
|
|
469
|
-
}
|
|
470
|
-
if (object.value !== undefined && object.value !== null) {
|
|
471
|
-
message.value = Coin.fromAmino(object.value);
|
|
472
|
-
}
|
|
473
|
-
return message;
|
|
474
|
-
},
|
|
475
|
-
toAmino(message: MsgCreateValidator): MsgCreateValidatorAmino {
|
|
476
|
-
const obj: any = {};
|
|
477
|
-
obj.description = message.description ? Description.toAmino(message.description) : Description.toAmino(Description.fromPartial({}));
|
|
478
|
-
obj.commission = message.commission ? CommissionRates.toAmino(message.commission) : CommissionRates.toAmino(CommissionRates.fromPartial({}));
|
|
479
|
-
obj.min_self_delegation = message.minSelfDelegation ?? "";
|
|
480
|
-
obj.delegator_address = message.delegatorAddress === "" ? undefined : message.delegatorAddress;
|
|
481
|
-
obj.validator_address = message.validatorAddress === "" ? undefined : message.validatorAddress;
|
|
482
|
-
obj.pubkey = message.pubkey ? decodePubkey(message.pubkey) : undefined;
|
|
483
|
-
obj.value = message.value ? Coin.toAmino(message.value) : Coin.toAmino(Coin.fromPartial({}));
|
|
484
|
-
return obj;
|
|
485
|
-
},
|
|
486
|
-
fromAminoMsg(object: MsgCreateValidatorAminoMsg): MsgCreateValidator {
|
|
487
|
-
return MsgCreateValidator.fromAmino(object.value);
|
|
488
|
-
},
|
|
489
|
-
toAminoMsg(message: MsgCreateValidator): MsgCreateValidatorAminoMsg {
|
|
490
|
-
return {
|
|
491
|
-
type: "cosmos-sdk/MsgCreateValidator",
|
|
492
|
-
value: MsgCreateValidator.toAmino(message)
|
|
493
|
-
};
|
|
494
|
-
},
|
|
495
|
-
fromProtoMsg(message: MsgCreateValidatorProtoMsg): MsgCreateValidator {
|
|
496
|
-
return MsgCreateValidator.decode(message.value);
|
|
497
|
-
},
|
|
498
|
-
toProto(message: MsgCreateValidator): Uint8Array {
|
|
499
|
-
return MsgCreateValidator.encode(message).finish();
|
|
500
|
-
},
|
|
501
|
-
toProtoMsg(message: MsgCreateValidator): MsgCreateValidatorProtoMsg {
|
|
502
|
-
return {
|
|
503
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgCreateValidator",
|
|
504
|
-
value: MsgCreateValidator.encode(message).finish()
|
|
505
|
-
};
|
|
506
|
-
}
|
|
507
|
-
};
|
|
508
|
-
GlobalDecoderRegistry.register(MsgCreateValidator.typeUrl, MsgCreateValidator);
|
|
509
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(MsgCreateValidator.aminoType, MsgCreateValidator.typeUrl);
|
|
510
|
-
function createBaseMsgCreateValidatorResponse(): MsgCreateValidatorResponse {
|
|
511
|
-
return {};
|
|
512
|
-
}
|
|
513
|
-
export const MsgCreateValidatorResponse = {
|
|
514
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgCreateValidatorResponse",
|
|
515
|
-
aminoType: "cosmos-sdk/MsgCreateValidatorResponse",
|
|
516
|
-
is(o: any): o is MsgCreateValidatorResponse {
|
|
517
|
-
return o && o.$typeUrl === MsgCreateValidatorResponse.typeUrl;
|
|
518
|
-
},
|
|
519
|
-
isAmino(o: any): o is MsgCreateValidatorResponseAmino {
|
|
520
|
-
return o && o.$typeUrl === MsgCreateValidatorResponse.typeUrl;
|
|
521
|
-
},
|
|
522
|
-
encode(_: MsgCreateValidatorResponse, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
523
|
-
return writer;
|
|
524
|
-
},
|
|
525
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateValidatorResponse {
|
|
526
|
-
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
527
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
528
|
-
const message = createBaseMsgCreateValidatorResponse();
|
|
529
|
-
while (reader.pos < end) {
|
|
530
|
-
const tag = reader.uint32();
|
|
531
|
-
switch (tag >>> 3) {
|
|
532
|
-
default:
|
|
533
|
-
reader.skipType(tag & 7);
|
|
534
|
-
break;
|
|
535
|
-
}
|
|
536
|
-
}
|
|
537
|
-
return message;
|
|
538
|
-
},
|
|
539
|
-
fromPartial(_: DeepPartial<MsgCreateValidatorResponse>): MsgCreateValidatorResponse {
|
|
540
|
-
const message = createBaseMsgCreateValidatorResponse();
|
|
541
|
-
return message;
|
|
542
|
-
},
|
|
543
|
-
fromAmino(_: MsgCreateValidatorResponseAmino): MsgCreateValidatorResponse {
|
|
544
|
-
const message = createBaseMsgCreateValidatorResponse();
|
|
545
|
-
return message;
|
|
546
|
-
},
|
|
547
|
-
toAmino(_: MsgCreateValidatorResponse): MsgCreateValidatorResponseAmino {
|
|
548
|
-
const obj: any = {};
|
|
549
|
-
return obj;
|
|
550
|
-
},
|
|
551
|
-
fromAminoMsg(object: MsgCreateValidatorResponseAminoMsg): MsgCreateValidatorResponse {
|
|
552
|
-
return MsgCreateValidatorResponse.fromAmino(object.value);
|
|
553
|
-
},
|
|
554
|
-
toAminoMsg(message: MsgCreateValidatorResponse): MsgCreateValidatorResponseAminoMsg {
|
|
555
|
-
return {
|
|
556
|
-
type: "cosmos-sdk/MsgCreateValidatorResponse",
|
|
557
|
-
value: MsgCreateValidatorResponse.toAmino(message)
|
|
558
|
-
};
|
|
559
|
-
},
|
|
560
|
-
fromProtoMsg(message: MsgCreateValidatorResponseProtoMsg): MsgCreateValidatorResponse {
|
|
561
|
-
return MsgCreateValidatorResponse.decode(message.value);
|
|
562
|
-
},
|
|
563
|
-
toProto(message: MsgCreateValidatorResponse): Uint8Array {
|
|
564
|
-
return MsgCreateValidatorResponse.encode(message).finish();
|
|
565
|
-
},
|
|
566
|
-
toProtoMsg(message: MsgCreateValidatorResponse): MsgCreateValidatorResponseProtoMsg {
|
|
567
|
-
return {
|
|
568
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgCreateValidatorResponse",
|
|
569
|
-
value: MsgCreateValidatorResponse.encode(message).finish()
|
|
570
|
-
};
|
|
571
|
-
}
|
|
572
|
-
};
|
|
573
|
-
GlobalDecoderRegistry.register(MsgCreateValidatorResponse.typeUrl, MsgCreateValidatorResponse);
|
|
574
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(MsgCreateValidatorResponse.aminoType, MsgCreateValidatorResponse.typeUrl);
|
|
575
|
-
function createBaseMsgEditValidator(): MsgEditValidator {
|
|
576
|
-
return {
|
|
577
|
-
description: Description.fromPartial({}),
|
|
578
|
-
validatorAddress: "",
|
|
579
|
-
commissionRate: "",
|
|
580
|
-
minSelfDelegation: ""
|
|
581
|
-
};
|
|
582
|
-
}
|
|
583
|
-
export const MsgEditValidator = {
|
|
584
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgEditValidator",
|
|
585
|
-
aminoType: "cosmos-sdk/MsgEditValidator",
|
|
586
|
-
is(o: any): o is MsgEditValidator {
|
|
587
|
-
return o && (o.$typeUrl === MsgEditValidator.typeUrl || Description.is(o.description) && typeof o.validatorAddress === "string" && typeof o.commissionRate === "string" && typeof o.minSelfDelegation === "string");
|
|
588
|
-
},
|
|
589
|
-
isAmino(o: any): o is MsgEditValidatorAmino {
|
|
590
|
-
return o && (o.$typeUrl === MsgEditValidator.typeUrl || Description.isAmino(o.description) && typeof o.validator_address === "string" && typeof o.commission_rate === "string" && typeof o.min_self_delegation === "string");
|
|
591
|
-
},
|
|
592
|
-
encode(message: MsgEditValidator, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
593
|
-
if (message.description !== undefined) {
|
|
594
|
-
Description.encode(message.description, writer.uint32(10).fork()).ldelim();
|
|
595
|
-
}
|
|
596
|
-
if (message.validatorAddress !== "") {
|
|
597
|
-
writer.uint32(18).string(message.validatorAddress);
|
|
598
|
-
}
|
|
599
|
-
if (message.commissionRate !== "") {
|
|
600
|
-
writer.uint32(26).string(message.commissionRate);
|
|
601
|
-
}
|
|
602
|
-
if (message.minSelfDelegation !== "") {
|
|
603
|
-
writer.uint32(34).string(message.minSelfDelegation);
|
|
604
|
-
}
|
|
605
|
-
return writer;
|
|
606
|
-
},
|
|
607
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgEditValidator {
|
|
608
|
-
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
609
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
610
|
-
const message = createBaseMsgEditValidator();
|
|
611
|
-
while (reader.pos < end) {
|
|
612
|
-
const tag = reader.uint32();
|
|
613
|
-
switch (tag >>> 3) {
|
|
614
|
-
case 1:
|
|
615
|
-
message.description = Description.decode(reader, reader.uint32());
|
|
616
|
-
break;
|
|
617
|
-
case 2:
|
|
618
|
-
message.validatorAddress = reader.string();
|
|
619
|
-
break;
|
|
620
|
-
case 3:
|
|
621
|
-
message.commissionRate = reader.string();
|
|
622
|
-
break;
|
|
623
|
-
case 4:
|
|
624
|
-
message.minSelfDelegation = reader.string();
|
|
625
|
-
break;
|
|
626
|
-
default:
|
|
627
|
-
reader.skipType(tag & 7);
|
|
628
|
-
break;
|
|
629
|
-
}
|
|
630
|
-
}
|
|
631
|
-
return message;
|
|
632
|
-
},
|
|
633
|
-
fromPartial(object: DeepPartial<MsgEditValidator>): MsgEditValidator {
|
|
634
|
-
const message = createBaseMsgEditValidator();
|
|
635
|
-
message.description = object.description !== undefined && object.description !== null ? Description.fromPartial(object.description) : undefined;
|
|
636
|
-
message.validatorAddress = object.validatorAddress ?? "";
|
|
637
|
-
message.commissionRate = object.commissionRate ?? "";
|
|
638
|
-
message.minSelfDelegation = object.minSelfDelegation ?? "";
|
|
639
|
-
return message;
|
|
640
|
-
},
|
|
641
|
-
fromAmino(object: MsgEditValidatorAmino): MsgEditValidator {
|
|
642
|
-
const message = createBaseMsgEditValidator();
|
|
643
|
-
if (object.description !== undefined && object.description !== null) {
|
|
644
|
-
message.description = Description.fromAmino(object.description);
|
|
645
|
-
}
|
|
646
|
-
if (object.validator_address !== undefined && object.validator_address !== null) {
|
|
647
|
-
message.validatorAddress = object.validator_address;
|
|
648
|
-
}
|
|
649
|
-
if (object.commission_rate !== undefined && object.commission_rate !== null) {
|
|
650
|
-
message.commissionRate = object.commission_rate;
|
|
651
|
-
}
|
|
652
|
-
if (object.min_self_delegation !== undefined && object.min_self_delegation !== null) {
|
|
653
|
-
message.minSelfDelegation = object.min_self_delegation;
|
|
654
|
-
}
|
|
655
|
-
return message;
|
|
656
|
-
},
|
|
657
|
-
toAmino(message: MsgEditValidator): MsgEditValidatorAmino {
|
|
658
|
-
const obj: any = {};
|
|
659
|
-
obj.description = message.description ? Description.toAmino(message.description) : Description.toAmino(Description.fromPartial({}));
|
|
660
|
-
obj.validator_address = message.validatorAddress === "" ? undefined : message.validatorAddress;
|
|
661
|
-
obj.commission_rate = message.commissionRate === "" ? undefined : message.commissionRate;
|
|
662
|
-
obj.min_self_delegation = message.minSelfDelegation === "" ? undefined : message.minSelfDelegation;
|
|
663
|
-
return obj;
|
|
664
|
-
},
|
|
665
|
-
fromAminoMsg(object: MsgEditValidatorAminoMsg): MsgEditValidator {
|
|
666
|
-
return MsgEditValidator.fromAmino(object.value);
|
|
667
|
-
},
|
|
668
|
-
toAminoMsg(message: MsgEditValidator): MsgEditValidatorAminoMsg {
|
|
669
|
-
return {
|
|
670
|
-
type: "cosmos-sdk/MsgEditValidator",
|
|
671
|
-
value: MsgEditValidator.toAmino(message)
|
|
672
|
-
};
|
|
673
|
-
},
|
|
674
|
-
fromProtoMsg(message: MsgEditValidatorProtoMsg): MsgEditValidator {
|
|
675
|
-
return MsgEditValidator.decode(message.value);
|
|
676
|
-
},
|
|
677
|
-
toProto(message: MsgEditValidator): Uint8Array {
|
|
678
|
-
return MsgEditValidator.encode(message).finish();
|
|
679
|
-
},
|
|
680
|
-
toProtoMsg(message: MsgEditValidator): MsgEditValidatorProtoMsg {
|
|
681
|
-
return {
|
|
682
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgEditValidator",
|
|
683
|
-
value: MsgEditValidator.encode(message).finish()
|
|
684
|
-
};
|
|
685
|
-
}
|
|
686
|
-
};
|
|
687
|
-
GlobalDecoderRegistry.register(MsgEditValidator.typeUrl, MsgEditValidator);
|
|
688
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(MsgEditValidator.aminoType, MsgEditValidator.typeUrl);
|
|
689
|
-
function createBaseMsgEditValidatorResponse(): MsgEditValidatorResponse {
|
|
690
|
-
return {};
|
|
691
|
-
}
|
|
692
|
-
export const MsgEditValidatorResponse = {
|
|
693
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgEditValidatorResponse",
|
|
694
|
-
aminoType: "cosmos-sdk/MsgEditValidatorResponse",
|
|
695
|
-
is(o: any): o is MsgEditValidatorResponse {
|
|
696
|
-
return o && o.$typeUrl === MsgEditValidatorResponse.typeUrl;
|
|
697
|
-
},
|
|
698
|
-
isAmino(o: any): o is MsgEditValidatorResponseAmino {
|
|
699
|
-
return o && o.$typeUrl === MsgEditValidatorResponse.typeUrl;
|
|
700
|
-
},
|
|
701
|
-
encode(_: MsgEditValidatorResponse, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
702
|
-
return writer;
|
|
703
|
-
},
|
|
704
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgEditValidatorResponse {
|
|
705
|
-
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
706
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
707
|
-
const message = createBaseMsgEditValidatorResponse();
|
|
708
|
-
while (reader.pos < end) {
|
|
709
|
-
const tag = reader.uint32();
|
|
710
|
-
switch (tag >>> 3) {
|
|
711
|
-
default:
|
|
712
|
-
reader.skipType(tag & 7);
|
|
713
|
-
break;
|
|
714
|
-
}
|
|
715
|
-
}
|
|
716
|
-
return message;
|
|
717
|
-
},
|
|
718
|
-
fromPartial(_: DeepPartial<MsgEditValidatorResponse>): MsgEditValidatorResponse {
|
|
719
|
-
const message = createBaseMsgEditValidatorResponse();
|
|
720
|
-
return message;
|
|
721
|
-
},
|
|
722
|
-
fromAmino(_: MsgEditValidatorResponseAmino): MsgEditValidatorResponse {
|
|
723
|
-
const message = createBaseMsgEditValidatorResponse();
|
|
724
|
-
return message;
|
|
725
|
-
},
|
|
726
|
-
toAmino(_: MsgEditValidatorResponse): MsgEditValidatorResponseAmino {
|
|
727
|
-
const obj: any = {};
|
|
728
|
-
return obj;
|
|
729
|
-
},
|
|
730
|
-
fromAminoMsg(object: MsgEditValidatorResponseAminoMsg): MsgEditValidatorResponse {
|
|
731
|
-
return MsgEditValidatorResponse.fromAmino(object.value);
|
|
732
|
-
},
|
|
733
|
-
toAminoMsg(message: MsgEditValidatorResponse): MsgEditValidatorResponseAminoMsg {
|
|
734
|
-
return {
|
|
735
|
-
type: "cosmos-sdk/MsgEditValidatorResponse",
|
|
736
|
-
value: MsgEditValidatorResponse.toAmino(message)
|
|
737
|
-
};
|
|
738
|
-
},
|
|
739
|
-
fromProtoMsg(message: MsgEditValidatorResponseProtoMsg): MsgEditValidatorResponse {
|
|
740
|
-
return MsgEditValidatorResponse.decode(message.value);
|
|
741
|
-
},
|
|
742
|
-
toProto(message: MsgEditValidatorResponse): Uint8Array {
|
|
743
|
-
return MsgEditValidatorResponse.encode(message).finish();
|
|
744
|
-
},
|
|
745
|
-
toProtoMsg(message: MsgEditValidatorResponse): MsgEditValidatorResponseProtoMsg {
|
|
746
|
-
return {
|
|
747
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgEditValidatorResponse",
|
|
748
|
-
value: MsgEditValidatorResponse.encode(message).finish()
|
|
749
|
-
};
|
|
750
|
-
}
|
|
751
|
-
};
|
|
752
|
-
GlobalDecoderRegistry.register(MsgEditValidatorResponse.typeUrl, MsgEditValidatorResponse);
|
|
753
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(MsgEditValidatorResponse.aminoType, MsgEditValidatorResponse.typeUrl);
|
|
754
|
-
function createBaseMsgDelegate(): MsgDelegate {
|
|
755
|
-
return {
|
|
756
|
-
delegatorAddress: "",
|
|
757
|
-
validatorAddress: "",
|
|
758
|
-
amount: Coin.fromPartial({})
|
|
759
|
-
};
|
|
760
|
-
}
|
|
761
|
-
export const MsgDelegate = {
|
|
762
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgDelegate",
|
|
763
|
-
aminoType: "cosmos-sdk/MsgDelegate",
|
|
764
|
-
is(o: any): o is MsgDelegate {
|
|
765
|
-
return o && (o.$typeUrl === MsgDelegate.typeUrl || typeof o.delegatorAddress === "string" && typeof o.validatorAddress === "string" && Coin.is(o.amount));
|
|
766
|
-
},
|
|
767
|
-
isAmino(o: any): o is MsgDelegateAmino {
|
|
768
|
-
return o && (o.$typeUrl === MsgDelegate.typeUrl || typeof o.delegator_address === "string" && typeof o.validator_address === "string" && Coin.isAmino(o.amount));
|
|
769
|
-
},
|
|
770
|
-
encode(message: MsgDelegate, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
771
|
-
if (message.delegatorAddress !== "") {
|
|
772
|
-
writer.uint32(10).string(message.delegatorAddress);
|
|
773
|
-
}
|
|
774
|
-
if (message.validatorAddress !== "") {
|
|
775
|
-
writer.uint32(18).string(message.validatorAddress);
|
|
776
|
-
}
|
|
777
|
-
if (message.amount !== undefined) {
|
|
778
|
-
Coin.encode(message.amount, writer.uint32(26).fork()).ldelim();
|
|
779
|
-
}
|
|
780
|
-
return writer;
|
|
781
|
-
},
|
|
782
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgDelegate {
|
|
783
|
-
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
784
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
785
|
-
const message = createBaseMsgDelegate();
|
|
786
|
-
while (reader.pos < end) {
|
|
787
|
-
const tag = reader.uint32();
|
|
788
|
-
switch (tag >>> 3) {
|
|
789
|
-
case 1:
|
|
790
|
-
message.delegatorAddress = reader.string();
|
|
791
|
-
break;
|
|
792
|
-
case 2:
|
|
793
|
-
message.validatorAddress = reader.string();
|
|
794
|
-
break;
|
|
795
|
-
case 3:
|
|
796
|
-
message.amount = Coin.decode(reader, reader.uint32());
|
|
797
|
-
break;
|
|
798
|
-
default:
|
|
799
|
-
reader.skipType(tag & 7);
|
|
800
|
-
break;
|
|
801
|
-
}
|
|
802
|
-
}
|
|
803
|
-
return message;
|
|
804
|
-
},
|
|
805
|
-
fromPartial(object: DeepPartial<MsgDelegate>): MsgDelegate {
|
|
806
|
-
const message = createBaseMsgDelegate();
|
|
807
|
-
message.delegatorAddress = object.delegatorAddress ?? "";
|
|
808
|
-
message.validatorAddress = object.validatorAddress ?? "";
|
|
809
|
-
message.amount = object.amount !== undefined && object.amount !== null ? Coin.fromPartial(object.amount) : undefined;
|
|
810
|
-
return message;
|
|
811
|
-
},
|
|
812
|
-
fromAmino(object: MsgDelegateAmino): MsgDelegate {
|
|
813
|
-
const message = createBaseMsgDelegate();
|
|
814
|
-
if (object.delegator_address !== undefined && object.delegator_address !== null) {
|
|
815
|
-
message.delegatorAddress = object.delegator_address;
|
|
816
|
-
}
|
|
817
|
-
if (object.validator_address !== undefined && object.validator_address !== null) {
|
|
818
|
-
message.validatorAddress = object.validator_address;
|
|
819
|
-
}
|
|
820
|
-
if (object.amount !== undefined && object.amount !== null) {
|
|
821
|
-
message.amount = Coin.fromAmino(object.amount);
|
|
822
|
-
}
|
|
823
|
-
return message;
|
|
824
|
-
},
|
|
825
|
-
toAmino(message: MsgDelegate): MsgDelegateAmino {
|
|
826
|
-
const obj: any = {};
|
|
827
|
-
obj.delegator_address = message.delegatorAddress === "" ? undefined : message.delegatorAddress;
|
|
828
|
-
obj.validator_address = message.validatorAddress === "" ? undefined : message.validatorAddress;
|
|
829
|
-
obj.amount = message.amount ? Coin.toAmino(message.amount) : Coin.toAmino(Coin.fromPartial({}));
|
|
830
|
-
return obj;
|
|
831
|
-
},
|
|
832
|
-
fromAminoMsg(object: MsgDelegateAminoMsg): MsgDelegate {
|
|
833
|
-
return MsgDelegate.fromAmino(object.value);
|
|
834
|
-
},
|
|
835
|
-
toAminoMsg(message: MsgDelegate): MsgDelegateAminoMsg {
|
|
836
|
-
return {
|
|
837
|
-
type: "cosmos-sdk/MsgDelegate",
|
|
838
|
-
value: MsgDelegate.toAmino(message)
|
|
839
|
-
};
|
|
840
|
-
},
|
|
841
|
-
fromProtoMsg(message: MsgDelegateProtoMsg): MsgDelegate {
|
|
842
|
-
return MsgDelegate.decode(message.value);
|
|
843
|
-
},
|
|
844
|
-
toProto(message: MsgDelegate): Uint8Array {
|
|
845
|
-
return MsgDelegate.encode(message).finish();
|
|
846
|
-
},
|
|
847
|
-
toProtoMsg(message: MsgDelegate): MsgDelegateProtoMsg {
|
|
848
|
-
return {
|
|
849
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgDelegate",
|
|
850
|
-
value: MsgDelegate.encode(message).finish()
|
|
851
|
-
};
|
|
852
|
-
}
|
|
853
|
-
};
|
|
854
|
-
GlobalDecoderRegistry.register(MsgDelegate.typeUrl, MsgDelegate);
|
|
855
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(MsgDelegate.aminoType, MsgDelegate.typeUrl);
|
|
856
|
-
function createBaseMsgDelegateResponse(): MsgDelegateResponse {
|
|
857
|
-
return {};
|
|
858
|
-
}
|
|
859
|
-
export const MsgDelegateResponse = {
|
|
860
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgDelegateResponse",
|
|
861
|
-
aminoType: "cosmos-sdk/MsgDelegateResponse",
|
|
862
|
-
is(o: any): o is MsgDelegateResponse {
|
|
863
|
-
return o && o.$typeUrl === MsgDelegateResponse.typeUrl;
|
|
864
|
-
},
|
|
865
|
-
isAmino(o: any): o is MsgDelegateResponseAmino {
|
|
866
|
-
return o && o.$typeUrl === MsgDelegateResponse.typeUrl;
|
|
867
|
-
},
|
|
868
|
-
encode(_: MsgDelegateResponse, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
869
|
-
return writer;
|
|
870
|
-
},
|
|
871
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgDelegateResponse {
|
|
872
|
-
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
873
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
874
|
-
const message = createBaseMsgDelegateResponse();
|
|
875
|
-
while (reader.pos < end) {
|
|
876
|
-
const tag = reader.uint32();
|
|
877
|
-
switch (tag >>> 3) {
|
|
878
|
-
default:
|
|
879
|
-
reader.skipType(tag & 7);
|
|
880
|
-
break;
|
|
881
|
-
}
|
|
882
|
-
}
|
|
883
|
-
return message;
|
|
884
|
-
},
|
|
885
|
-
fromPartial(_: DeepPartial<MsgDelegateResponse>): MsgDelegateResponse {
|
|
886
|
-
const message = createBaseMsgDelegateResponse();
|
|
887
|
-
return message;
|
|
888
|
-
},
|
|
889
|
-
fromAmino(_: MsgDelegateResponseAmino): MsgDelegateResponse {
|
|
890
|
-
const message = createBaseMsgDelegateResponse();
|
|
891
|
-
return message;
|
|
892
|
-
},
|
|
893
|
-
toAmino(_: MsgDelegateResponse): MsgDelegateResponseAmino {
|
|
894
|
-
const obj: any = {};
|
|
895
|
-
return obj;
|
|
896
|
-
},
|
|
897
|
-
fromAminoMsg(object: MsgDelegateResponseAminoMsg): MsgDelegateResponse {
|
|
898
|
-
return MsgDelegateResponse.fromAmino(object.value);
|
|
899
|
-
},
|
|
900
|
-
toAminoMsg(message: MsgDelegateResponse): MsgDelegateResponseAminoMsg {
|
|
901
|
-
return {
|
|
902
|
-
type: "cosmos-sdk/MsgDelegateResponse",
|
|
903
|
-
value: MsgDelegateResponse.toAmino(message)
|
|
904
|
-
};
|
|
905
|
-
},
|
|
906
|
-
fromProtoMsg(message: MsgDelegateResponseProtoMsg): MsgDelegateResponse {
|
|
907
|
-
return MsgDelegateResponse.decode(message.value);
|
|
908
|
-
},
|
|
909
|
-
toProto(message: MsgDelegateResponse): Uint8Array {
|
|
910
|
-
return MsgDelegateResponse.encode(message).finish();
|
|
911
|
-
},
|
|
912
|
-
toProtoMsg(message: MsgDelegateResponse): MsgDelegateResponseProtoMsg {
|
|
913
|
-
return {
|
|
914
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgDelegateResponse",
|
|
915
|
-
value: MsgDelegateResponse.encode(message).finish()
|
|
916
|
-
};
|
|
917
|
-
}
|
|
918
|
-
};
|
|
919
|
-
GlobalDecoderRegistry.register(MsgDelegateResponse.typeUrl, MsgDelegateResponse);
|
|
920
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(MsgDelegateResponse.aminoType, MsgDelegateResponse.typeUrl);
|
|
921
|
-
function createBaseMsgBeginRedelegate(): MsgBeginRedelegate {
|
|
922
|
-
return {
|
|
923
|
-
delegatorAddress: "",
|
|
924
|
-
validatorSrcAddress: "",
|
|
925
|
-
validatorDstAddress: "",
|
|
926
|
-
amount: Coin.fromPartial({})
|
|
927
|
-
};
|
|
928
|
-
}
|
|
929
|
-
export const MsgBeginRedelegate = {
|
|
930
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgBeginRedelegate",
|
|
931
|
-
aminoType: "cosmos-sdk/MsgBeginRedelegate",
|
|
932
|
-
is(o: any): o is MsgBeginRedelegate {
|
|
933
|
-
return o && (o.$typeUrl === MsgBeginRedelegate.typeUrl || typeof o.delegatorAddress === "string" && typeof o.validatorSrcAddress === "string" && typeof o.validatorDstAddress === "string" && Coin.is(o.amount));
|
|
934
|
-
},
|
|
935
|
-
isAmino(o: any): o is MsgBeginRedelegateAmino {
|
|
936
|
-
return o && (o.$typeUrl === MsgBeginRedelegate.typeUrl || typeof o.delegator_address === "string" && typeof o.validator_src_address === "string" && typeof o.validator_dst_address === "string" && Coin.isAmino(o.amount));
|
|
937
|
-
},
|
|
938
|
-
encode(message: MsgBeginRedelegate, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
939
|
-
if (message.delegatorAddress !== "") {
|
|
940
|
-
writer.uint32(10).string(message.delegatorAddress);
|
|
941
|
-
}
|
|
942
|
-
if (message.validatorSrcAddress !== "") {
|
|
943
|
-
writer.uint32(18).string(message.validatorSrcAddress);
|
|
944
|
-
}
|
|
945
|
-
if (message.validatorDstAddress !== "") {
|
|
946
|
-
writer.uint32(26).string(message.validatorDstAddress);
|
|
947
|
-
}
|
|
948
|
-
if (message.amount !== undefined) {
|
|
949
|
-
Coin.encode(message.amount, writer.uint32(34).fork()).ldelim();
|
|
950
|
-
}
|
|
951
|
-
return writer;
|
|
952
|
-
},
|
|
953
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgBeginRedelegate {
|
|
954
|
-
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
955
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
956
|
-
const message = createBaseMsgBeginRedelegate();
|
|
957
|
-
while (reader.pos < end) {
|
|
958
|
-
const tag = reader.uint32();
|
|
959
|
-
switch (tag >>> 3) {
|
|
960
|
-
case 1:
|
|
961
|
-
message.delegatorAddress = reader.string();
|
|
962
|
-
break;
|
|
963
|
-
case 2:
|
|
964
|
-
message.validatorSrcAddress = reader.string();
|
|
965
|
-
break;
|
|
966
|
-
case 3:
|
|
967
|
-
message.validatorDstAddress = reader.string();
|
|
968
|
-
break;
|
|
969
|
-
case 4:
|
|
970
|
-
message.amount = Coin.decode(reader, reader.uint32());
|
|
971
|
-
break;
|
|
972
|
-
default:
|
|
973
|
-
reader.skipType(tag & 7);
|
|
974
|
-
break;
|
|
975
|
-
}
|
|
976
|
-
}
|
|
977
|
-
return message;
|
|
978
|
-
},
|
|
979
|
-
fromPartial(object: DeepPartial<MsgBeginRedelegate>): MsgBeginRedelegate {
|
|
980
|
-
const message = createBaseMsgBeginRedelegate();
|
|
981
|
-
message.delegatorAddress = object.delegatorAddress ?? "";
|
|
982
|
-
message.validatorSrcAddress = object.validatorSrcAddress ?? "";
|
|
983
|
-
message.validatorDstAddress = object.validatorDstAddress ?? "";
|
|
984
|
-
message.amount = object.amount !== undefined && object.amount !== null ? Coin.fromPartial(object.amount) : undefined;
|
|
985
|
-
return message;
|
|
986
|
-
},
|
|
987
|
-
fromAmino(object: MsgBeginRedelegateAmino): MsgBeginRedelegate {
|
|
988
|
-
const message = createBaseMsgBeginRedelegate();
|
|
989
|
-
if (object.delegator_address !== undefined && object.delegator_address !== null) {
|
|
990
|
-
message.delegatorAddress = object.delegator_address;
|
|
991
|
-
}
|
|
992
|
-
if (object.validator_src_address !== undefined && object.validator_src_address !== null) {
|
|
993
|
-
message.validatorSrcAddress = object.validator_src_address;
|
|
994
|
-
}
|
|
995
|
-
if (object.validator_dst_address !== undefined && object.validator_dst_address !== null) {
|
|
996
|
-
message.validatorDstAddress = object.validator_dst_address;
|
|
997
|
-
}
|
|
998
|
-
if (object.amount !== undefined && object.amount !== null) {
|
|
999
|
-
message.amount = Coin.fromAmino(object.amount);
|
|
1000
|
-
}
|
|
1001
|
-
return message;
|
|
1002
|
-
},
|
|
1003
|
-
toAmino(message: MsgBeginRedelegate): MsgBeginRedelegateAmino {
|
|
1004
|
-
const obj: any = {};
|
|
1005
|
-
obj.delegator_address = message.delegatorAddress === "" ? undefined : message.delegatorAddress;
|
|
1006
|
-
obj.validator_src_address = message.validatorSrcAddress === "" ? undefined : message.validatorSrcAddress;
|
|
1007
|
-
obj.validator_dst_address = message.validatorDstAddress === "" ? undefined : message.validatorDstAddress;
|
|
1008
|
-
obj.amount = message.amount ? Coin.toAmino(message.amount) : Coin.toAmino(Coin.fromPartial({}));
|
|
1009
|
-
return obj;
|
|
1010
|
-
},
|
|
1011
|
-
fromAminoMsg(object: MsgBeginRedelegateAminoMsg): MsgBeginRedelegate {
|
|
1012
|
-
return MsgBeginRedelegate.fromAmino(object.value);
|
|
1013
|
-
},
|
|
1014
|
-
toAminoMsg(message: MsgBeginRedelegate): MsgBeginRedelegateAminoMsg {
|
|
1015
|
-
return {
|
|
1016
|
-
type: "cosmos-sdk/MsgBeginRedelegate",
|
|
1017
|
-
value: MsgBeginRedelegate.toAmino(message)
|
|
1018
|
-
};
|
|
1019
|
-
},
|
|
1020
|
-
fromProtoMsg(message: MsgBeginRedelegateProtoMsg): MsgBeginRedelegate {
|
|
1021
|
-
return MsgBeginRedelegate.decode(message.value);
|
|
1022
|
-
},
|
|
1023
|
-
toProto(message: MsgBeginRedelegate): Uint8Array {
|
|
1024
|
-
return MsgBeginRedelegate.encode(message).finish();
|
|
1025
|
-
},
|
|
1026
|
-
toProtoMsg(message: MsgBeginRedelegate): MsgBeginRedelegateProtoMsg {
|
|
1027
|
-
return {
|
|
1028
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgBeginRedelegate",
|
|
1029
|
-
value: MsgBeginRedelegate.encode(message).finish()
|
|
1030
|
-
};
|
|
1031
|
-
}
|
|
1032
|
-
};
|
|
1033
|
-
GlobalDecoderRegistry.register(MsgBeginRedelegate.typeUrl, MsgBeginRedelegate);
|
|
1034
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(MsgBeginRedelegate.aminoType, MsgBeginRedelegate.typeUrl);
|
|
1035
|
-
function createBaseMsgBeginRedelegateResponse(): MsgBeginRedelegateResponse {
|
|
1036
|
-
return {
|
|
1037
|
-
completionTime: new Date()
|
|
1038
|
-
};
|
|
1039
|
-
}
|
|
1040
|
-
export const MsgBeginRedelegateResponse = {
|
|
1041
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgBeginRedelegateResponse",
|
|
1042
|
-
aminoType: "cosmos-sdk/MsgBeginRedelegateResponse",
|
|
1043
|
-
is(o: any): o is MsgBeginRedelegateResponse {
|
|
1044
|
-
return o && (o.$typeUrl === MsgBeginRedelegateResponse.typeUrl || Timestamp.is(o.completionTime));
|
|
1045
|
-
},
|
|
1046
|
-
isAmino(o: any): o is MsgBeginRedelegateResponseAmino {
|
|
1047
|
-
return o && (o.$typeUrl === MsgBeginRedelegateResponse.typeUrl || Timestamp.isAmino(o.completion_time));
|
|
1048
|
-
},
|
|
1049
|
-
encode(message: MsgBeginRedelegateResponse, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
1050
|
-
if (message.completionTime !== undefined) {
|
|
1051
|
-
Timestamp.encode(toTimestamp(message.completionTime), writer.uint32(10).fork()).ldelim();
|
|
1052
|
-
}
|
|
1053
|
-
return writer;
|
|
1054
|
-
},
|
|
1055
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgBeginRedelegateResponse {
|
|
1056
|
-
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
1057
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
1058
|
-
const message = createBaseMsgBeginRedelegateResponse();
|
|
1059
|
-
while (reader.pos < end) {
|
|
1060
|
-
const tag = reader.uint32();
|
|
1061
|
-
switch (tag >>> 3) {
|
|
1062
|
-
case 1:
|
|
1063
|
-
message.completionTime = fromTimestamp(Timestamp.decode(reader, reader.uint32()));
|
|
1064
|
-
break;
|
|
1065
|
-
default:
|
|
1066
|
-
reader.skipType(tag & 7);
|
|
1067
|
-
break;
|
|
1068
|
-
}
|
|
1069
|
-
}
|
|
1070
|
-
return message;
|
|
1071
|
-
},
|
|
1072
|
-
fromPartial(object: DeepPartial<MsgBeginRedelegateResponse>): MsgBeginRedelegateResponse {
|
|
1073
|
-
const message = createBaseMsgBeginRedelegateResponse();
|
|
1074
|
-
message.completionTime = object.completionTime ?? undefined;
|
|
1075
|
-
return message;
|
|
1076
|
-
},
|
|
1077
|
-
fromAmino(object: MsgBeginRedelegateResponseAmino): MsgBeginRedelegateResponse {
|
|
1078
|
-
const message = createBaseMsgBeginRedelegateResponse();
|
|
1079
|
-
if (object.completion_time !== undefined && object.completion_time !== null) {
|
|
1080
|
-
message.completionTime = fromTimestamp(Timestamp.fromAmino(object.completion_time));
|
|
1081
|
-
}
|
|
1082
|
-
return message;
|
|
1083
|
-
},
|
|
1084
|
-
toAmino(message: MsgBeginRedelegateResponse): MsgBeginRedelegateResponseAmino {
|
|
1085
|
-
const obj: any = {};
|
|
1086
|
-
obj.completion_time = message.completionTime ? Timestamp.toAmino(toTimestamp(message.completionTime)) : new Date();
|
|
1087
|
-
return obj;
|
|
1088
|
-
},
|
|
1089
|
-
fromAminoMsg(object: MsgBeginRedelegateResponseAminoMsg): MsgBeginRedelegateResponse {
|
|
1090
|
-
return MsgBeginRedelegateResponse.fromAmino(object.value);
|
|
1091
|
-
},
|
|
1092
|
-
toAminoMsg(message: MsgBeginRedelegateResponse): MsgBeginRedelegateResponseAminoMsg {
|
|
1093
|
-
return {
|
|
1094
|
-
type: "cosmos-sdk/MsgBeginRedelegateResponse",
|
|
1095
|
-
value: MsgBeginRedelegateResponse.toAmino(message)
|
|
1096
|
-
};
|
|
1097
|
-
},
|
|
1098
|
-
fromProtoMsg(message: MsgBeginRedelegateResponseProtoMsg): MsgBeginRedelegateResponse {
|
|
1099
|
-
return MsgBeginRedelegateResponse.decode(message.value);
|
|
1100
|
-
},
|
|
1101
|
-
toProto(message: MsgBeginRedelegateResponse): Uint8Array {
|
|
1102
|
-
return MsgBeginRedelegateResponse.encode(message).finish();
|
|
1103
|
-
},
|
|
1104
|
-
toProtoMsg(message: MsgBeginRedelegateResponse): MsgBeginRedelegateResponseProtoMsg {
|
|
1105
|
-
return {
|
|
1106
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgBeginRedelegateResponse",
|
|
1107
|
-
value: MsgBeginRedelegateResponse.encode(message).finish()
|
|
1108
|
-
};
|
|
1109
|
-
}
|
|
1110
|
-
};
|
|
1111
|
-
GlobalDecoderRegistry.register(MsgBeginRedelegateResponse.typeUrl, MsgBeginRedelegateResponse);
|
|
1112
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(MsgBeginRedelegateResponse.aminoType, MsgBeginRedelegateResponse.typeUrl);
|
|
1113
|
-
function createBaseMsgUndelegate(): MsgUndelegate {
|
|
1114
|
-
return {
|
|
1115
|
-
delegatorAddress: "",
|
|
1116
|
-
validatorAddress: "",
|
|
1117
|
-
amount: Coin.fromPartial({})
|
|
1118
|
-
};
|
|
1119
|
-
}
|
|
1120
|
-
export const MsgUndelegate = {
|
|
1121
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgUndelegate",
|
|
1122
|
-
aminoType: "cosmos-sdk/MsgUndelegate",
|
|
1123
|
-
is(o: any): o is MsgUndelegate {
|
|
1124
|
-
return o && (o.$typeUrl === MsgUndelegate.typeUrl || typeof o.delegatorAddress === "string" && typeof o.validatorAddress === "string" && Coin.is(o.amount));
|
|
1125
|
-
},
|
|
1126
|
-
isAmino(o: any): o is MsgUndelegateAmino {
|
|
1127
|
-
return o && (o.$typeUrl === MsgUndelegate.typeUrl || typeof o.delegator_address === "string" && typeof o.validator_address === "string" && Coin.isAmino(o.amount));
|
|
1128
|
-
},
|
|
1129
|
-
encode(message: MsgUndelegate, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
1130
|
-
if (message.delegatorAddress !== "") {
|
|
1131
|
-
writer.uint32(10).string(message.delegatorAddress);
|
|
1132
|
-
}
|
|
1133
|
-
if (message.validatorAddress !== "") {
|
|
1134
|
-
writer.uint32(18).string(message.validatorAddress);
|
|
1135
|
-
}
|
|
1136
|
-
if (message.amount !== undefined) {
|
|
1137
|
-
Coin.encode(message.amount, writer.uint32(26).fork()).ldelim();
|
|
1138
|
-
}
|
|
1139
|
-
return writer;
|
|
1140
|
-
},
|
|
1141
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgUndelegate {
|
|
1142
|
-
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
1143
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
1144
|
-
const message = createBaseMsgUndelegate();
|
|
1145
|
-
while (reader.pos < end) {
|
|
1146
|
-
const tag = reader.uint32();
|
|
1147
|
-
switch (tag >>> 3) {
|
|
1148
|
-
case 1:
|
|
1149
|
-
message.delegatorAddress = reader.string();
|
|
1150
|
-
break;
|
|
1151
|
-
case 2:
|
|
1152
|
-
message.validatorAddress = reader.string();
|
|
1153
|
-
break;
|
|
1154
|
-
case 3:
|
|
1155
|
-
message.amount = Coin.decode(reader, reader.uint32());
|
|
1156
|
-
break;
|
|
1157
|
-
default:
|
|
1158
|
-
reader.skipType(tag & 7);
|
|
1159
|
-
break;
|
|
1160
|
-
}
|
|
1161
|
-
}
|
|
1162
|
-
return message;
|
|
1163
|
-
},
|
|
1164
|
-
fromPartial(object: DeepPartial<MsgUndelegate>): MsgUndelegate {
|
|
1165
|
-
const message = createBaseMsgUndelegate();
|
|
1166
|
-
message.delegatorAddress = object.delegatorAddress ?? "";
|
|
1167
|
-
message.validatorAddress = object.validatorAddress ?? "";
|
|
1168
|
-
message.amount = object.amount !== undefined && object.amount !== null ? Coin.fromPartial(object.amount) : undefined;
|
|
1169
|
-
return message;
|
|
1170
|
-
},
|
|
1171
|
-
fromAmino(object: MsgUndelegateAmino): MsgUndelegate {
|
|
1172
|
-
const message = createBaseMsgUndelegate();
|
|
1173
|
-
if (object.delegator_address !== undefined && object.delegator_address !== null) {
|
|
1174
|
-
message.delegatorAddress = object.delegator_address;
|
|
1175
|
-
}
|
|
1176
|
-
if (object.validator_address !== undefined && object.validator_address !== null) {
|
|
1177
|
-
message.validatorAddress = object.validator_address;
|
|
1178
|
-
}
|
|
1179
|
-
if (object.amount !== undefined && object.amount !== null) {
|
|
1180
|
-
message.amount = Coin.fromAmino(object.amount);
|
|
1181
|
-
}
|
|
1182
|
-
return message;
|
|
1183
|
-
},
|
|
1184
|
-
toAmino(message: MsgUndelegate): MsgUndelegateAmino {
|
|
1185
|
-
const obj: any = {};
|
|
1186
|
-
obj.delegator_address = message.delegatorAddress === "" ? undefined : message.delegatorAddress;
|
|
1187
|
-
obj.validator_address = message.validatorAddress === "" ? undefined : message.validatorAddress;
|
|
1188
|
-
obj.amount = message.amount ? Coin.toAmino(message.amount) : Coin.toAmino(Coin.fromPartial({}));
|
|
1189
|
-
return obj;
|
|
1190
|
-
},
|
|
1191
|
-
fromAminoMsg(object: MsgUndelegateAminoMsg): MsgUndelegate {
|
|
1192
|
-
return MsgUndelegate.fromAmino(object.value);
|
|
1193
|
-
},
|
|
1194
|
-
toAminoMsg(message: MsgUndelegate): MsgUndelegateAminoMsg {
|
|
1195
|
-
return {
|
|
1196
|
-
type: "cosmos-sdk/MsgUndelegate",
|
|
1197
|
-
value: MsgUndelegate.toAmino(message)
|
|
1198
|
-
};
|
|
1199
|
-
},
|
|
1200
|
-
fromProtoMsg(message: MsgUndelegateProtoMsg): MsgUndelegate {
|
|
1201
|
-
return MsgUndelegate.decode(message.value);
|
|
1202
|
-
},
|
|
1203
|
-
toProto(message: MsgUndelegate): Uint8Array {
|
|
1204
|
-
return MsgUndelegate.encode(message).finish();
|
|
1205
|
-
},
|
|
1206
|
-
toProtoMsg(message: MsgUndelegate): MsgUndelegateProtoMsg {
|
|
1207
|
-
return {
|
|
1208
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgUndelegate",
|
|
1209
|
-
value: MsgUndelegate.encode(message).finish()
|
|
1210
|
-
};
|
|
1211
|
-
}
|
|
1212
|
-
};
|
|
1213
|
-
GlobalDecoderRegistry.register(MsgUndelegate.typeUrl, MsgUndelegate);
|
|
1214
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(MsgUndelegate.aminoType, MsgUndelegate.typeUrl);
|
|
1215
|
-
function createBaseMsgUndelegateResponse(): MsgUndelegateResponse {
|
|
1216
|
-
return {
|
|
1217
|
-
completionTime: new Date(),
|
|
1218
|
-
amount: Coin.fromPartial({})
|
|
1219
|
-
};
|
|
1220
|
-
}
|
|
1221
|
-
export const MsgUndelegateResponse = {
|
|
1222
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgUndelegateResponse",
|
|
1223
|
-
aminoType: "cosmos-sdk/MsgUndelegateResponse",
|
|
1224
|
-
is(o: any): o is MsgUndelegateResponse {
|
|
1225
|
-
return o && (o.$typeUrl === MsgUndelegateResponse.typeUrl || Timestamp.is(o.completionTime) && Coin.is(o.amount));
|
|
1226
|
-
},
|
|
1227
|
-
isAmino(o: any): o is MsgUndelegateResponseAmino {
|
|
1228
|
-
return o && (o.$typeUrl === MsgUndelegateResponse.typeUrl || Timestamp.isAmino(o.completion_time) && Coin.isAmino(o.amount));
|
|
1229
|
-
},
|
|
1230
|
-
encode(message: MsgUndelegateResponse, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
1231
|
-
if (message.completionTime !== undefined) {
|
|
1232
|
-
Timestamp.encode(toTimestamp(message.completionTime), writer.uint32(10).fork()).ldelim();
|
|
1233
|
-
}
|
|
1234
|
-
if (message.amount !== undefined) {
|
|
1235
|
-
Coin.encode(message.amount, writer.uint32(18).fork()).ldelim();
|
|
1236
|
-
}
|
|
1237
|
-
return writer;
|
|
1238
|
-
},
|
|
1239
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgUndelegateResponse {
|
|
1240
|
-
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
1241
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
1242
|
-
const message = createBaseMsgUndelegateResponse();
|
|
1243
|
-
while (reader.pos < end) {
|
|
1244
|
-
const tag = reader.uint32();
|
|
1245
|
-
switch (tag >>> 3) {
|
|
1246
|
-
case 1:
|
|
1247
|
-
message.completionTime = fromTimestamp(Timestamp.decode(reader, reader.uint32()));
|
|
1248
|
-
break;
|
|
1249
|
-
case 2:
|
|
1250
|
-
message.amount = Coin.decode(reader, reader.uint32());
|
|
1251
|
-
break;
|
|
1252
|
-
default:
|
|
1253
|
-
reader.skipType(tag & 7);
|
|
1254
|
-
break;
|
|
1255
|
-
}
|
|
1256
|
-
}
|
|
1257
|
-
return message;
|
|
1258
|
-
},
|
|
1259
|
-
fromPartial(object: DeepPartial<MsgUndelegateResponse>): MsgUndelegateResponse {
|
|
1260
|
-
const message = createBaseMsgUndelegateResponse();
|
|
1261
|
-
message.completionTime = object.completionTime ?? undefined;
|
|
1262
|
-
message.amount = object.amount !== undefined && object.amount !== null ? Coin.fromPartial(object.amount) : undefined;
|
|
1263
|
-
return message;
|
|
1264
|
-
},
|
|
1265
|
-
fromAmino(object: MsgUndelegateResponseAmino): MsgUndelegateResponse {
|
|
1266
|
-
const message = createBaseMsgUndelegateResponse();
|
|
1267
|
-
if (object.completion_time !== undefined && object.completion_time !== null) {
|
|
1268
|
-
message.completionTime = fromTimestamp(Timestamp.fromAmino(object.completion_time));
|
|
1269
|
-
}
|
|
1270
|
-
if (object.amount !== undefined && object.amount !== null) {
|
|
1271
|
-
message.amount = Coin.fromAmino(object.amount);
|
|
1272
|
-
}
|
|
1273
|
-
return message;
|
|
1274
|
-
},
|
|
1275
|
-
toAmino(message: MsgUndelegateResponse): MsgUndelegateResponseAmino {
|
|
1276
|
-
const obj: any = {};
|
|
1277
|
-
obj.completion_time = message.completionTime ? Timestamp.toAmino(toTimestamp(message.completionTime)) : new Date();
|
|
1278
|
-
obj.amount = message.amount ? Coin.toAmino(message.amount) : Coin.toAmino(Coin.fromPartial({}));
|
|
1279
|
-
return obj;
|
|
1280
|
-
},
|
|
1281
|
-
fromAminoMsg(object: MsgUndelegateResponseAminoMsg): MsgUndelegateResponse {
|
|
1282
|
-
return MsgUndelegateResponse.fromAmino(object.value);
|
|
1283
|
-
},
|
|
1284
|
-
toAminoMsg(message: MsgUndelegateResponse): MsgUndelegateResponseAminoMsg {
|
|
1285
|
-
return {
|
|
1286
|
-
type: "cosmos-sdk/MsgUndelegateResponse",
|
|
1287
|
-
value: MsgUndelegateResponse.toAmino(message)
|
|
1288
|
-
};
|
|
1289
|
-
},
|
|
1290
|
-
fromProtoMsg(message: MsgUndelegateResponseProtoMsg): MsgUndelegateResponse {
|
|
1291
|
-
return MsgUndelegateResponse.decode(message.value);
|
|
1292
|
-
},
|
|
1293
|
-
toProto(message: MsgUndelegateResponse): Uint8Array {
|
|
1294
|
-
return MsgUndelegateResponse.encode(message).finish();
|
|
1295
|
-
},
|
|
1296
|
-
toProtoMsg(message: MsgUndelegateResponse): MsgUndelegateResponseProtoMsg {
|
|
1297
|
-
return {
|
|
1298
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgUndelegateResponse",
|
|
1299
|
-
value: MsgUndelegateResponse.encode(message).finish()
|
|
1300
|
-
};
|
|
1301
|
-
}
|
|
1302
|
-
};
|
|
1303
|
-
GlobalDecoderRegistry.register(MsgUndelegateResponse.typeUrl, MsgUndelegateResponse);
|
|
1304
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(MsgUndelegateResponse.aminoType, MsgUndelegateResponse.typeUrl);
|
|
1305
|
-
function createBaseMsgCancelUnbondingDelegation(): MsgCancelUnbondingDelegation {
|
|
1306
|
-
return {
|
|
1307
|
-
delegatorAddress: "",
|
|
1308
|
-
validatorAddress: "",
|
|
1309
|
-
amount: Coin.fromPartial({}),
|
|
1310
|
-
creationHeight: BigInt(0)
|
|
1311
|
-
};
|
|
1312
|
-
}
|
|
1313
|
-
export const MsgCancelUnbondingDelegation = {
|
|
1314
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgCancelUnbondingDelegation",
|
|
1315
|
-
aminoType: "cosmos-sdk/MsgCancelUnbondingDelegation",
|
|
1316
|
-
is(o: any): o is MsgCancelUnbondingDelegation {
|
|
1317
|
-
return o && (o.$typeUrl === MsgCancelUnbondingDelegation.typeUrl || typeof o.delegatorAddress === "string" && typeof o.validatorAddress === "string" && Coin.is(o.amount) && typeof o.creationHeight === "bigint");
|
|
1318
|
-
},
|
|
1319
|
-
isAmino(o: any): o is MsgCancelUnbondingDelegationAmino {
|
|
1320
|
-
return o && (o.$typeUrl === MsgCancelUnbondingDelegation.typeUrl || typeof o.delegator_address === "string" && typeof o.validator_address === "string" && Coin.isAmino(o.amount) && typeof o.creation_height === "bigint");
|
|
1321
|
-
},
|
|
1322
|
-
encode(message: MsgCancelUnbondingDelegation, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
1323
|
-
if (message.delegatorAddress !== "") {
|
|
1324
|
-
writer.uint32(10).string(message.delegatorAddress);
|
|
1325
|
-
}
|
|
1326
|
-
if (message.validatorAddress !== "") {
|
|
1327
|
-
writer.uint32(18).string(message.validatorAddress);
|
|
1328
|
-
}
|
|
1329
|
-
if (message.amount !== undefined) {
|
|
1330
|
-
Coin.encode(message.amount, writer.uint32(26).fork()).ldelim();
|
|
1331
|
-
}
|
|
1332
|
-
if (message.creationHeight !== BigInt(0)) {
|
|
1333
|
-
writer.uint32(32).int64(message.creationHeight);
|
|
1334
|
-
}
|
|
1335
|
-
return writer;
|
|
1336
|
-
},
|
|
1337
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgCancelUnbondingDelegation {
|
|
1338
|
-
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
1339
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
1340
|
-
const message = createBaseMsgCancelUnbondingDelegation();
|
|
1341
|
-
while (reader.pos < end) {
|
|
1342
|
-
const tag = reader.uint32();
|
|
1343
|
-
switch (tag >>> 3) {
|
|
1344
|
-
case 1:
|
|
1345
|
-
message.delegatorAddress = reader.string();
|
|
1346
|
-
break;
|
|
1347
|
-
case 2:
|
|
1348
|
-
message.validatorAddress = reader.string();
|
|
1349
|
-
break;
|
|
1350
|
-
case 3:
|
|
1351
|
-
message.amount = Coin.decode(reader, reader.uint32());
|
|
1352
|
-
break;
|
|
1353
|
-
case 4:
|
|
1354
|
-
message.creationHeight = reader.int64();
|
|
1355
|
-
break;
|
|
1356
|
-
default:
|
|
1357
|
-
reader.skipType(tag & 7);
|
|
1358
|
-
break;
|
|
1359
|
-
}
|
|
1360
|
-
}
|
|
1361
|
-
return message;
|
|
1362
|
-
},
|
|
1363
|
-
fromPartial(object: DeepPartial<MsgCancelUnbondingDelegation>): MsgCancelUnbondingDelegation {
|
|
1364
|
-
const message = createBaseMsgCancelUnbondingDelegation();
|
|
1365
|
-
message.delegatorAddress = object.delegatorAddress ?? "";
|
|
1366
|
-
message.validatorAddress = object.validatorAddress ?? "";
|
|
1367
|
-
message.amount = object.amount !== undefined && object.amount !== null ? Coin.fromPartial(object.amount) : undefined;
|
|
1368
|
-
message.creationHeight = object.creationHeight !== undefined && object.creationHeight !== null ? BigInt(object.creationHeight.toString()) : BigInt(0);
|
|
1369
|
-
return message;
|
|
1370
|
-
},
|
|
1371
|
-
fromAmino(object: MsgCancelUnbondingDelegationAmino): MsgCancelUnbondingDelegation {
|
|
1372
|
-
const message = createBaseMsgCancelUnbondingDelegation();
|
|
1373
|
-
if (object.delegator_address !== undefined && object.delegator_address !== null) {
|
|
1374
|
-
message.delegatorAddress = object.delegator_address;
|
|
1375
|
-
}
|
|
1376
|
-
if (object.validator_address !== undefined && object.validator_address !== null) {
|
|
1377
|
-
message.validatorAddress = object.validator_address;
|
|
1378
|
-
}
|
|
1379
|
-
if (object.amount !== undefined && object.amount !== null) {
|
|
1380
|
-
message.amount = Coin.fromAmino(object.amount);
|
|
1381
|
-
}
|
|
1382
|
-
if (object.creation_height !== undefined && object.creation_height !== null) {
|
|
1383
|
-
message.creationHeight = BigInt(object.creation_height);
|
|
1384
|
-
}
|
|
1385
|
-
return message;
|
|
1386
|
-
},
|
|
1387
|
-
toAmino(message: MsgCancelUnbondingDelegation): MsgCancelUnbondingDelegationAmino {
|
|
1388
|
-
const obj: any = {};
|
|
1389
|
-
obj.delegator_address = message.delegatorAddress === "" ? undefined : message.delegatorAddress;
|
|
1390
|
-
obj.validator_address = message.validatorAddress === "" ? undefined : message.validatorAddress;
|
|
1391
|
-
obj.amount = message.amount ? Coin.toAmino(message.amount) : Coin.toAmino(Coin.fromPartial({}));
|
|
1392
|
-
obj.creation_height = message.creationHeight !== BigInt(0) ? message.creationHeight?.toString() : undefined;
|
|
1393
|
-
return obj;
|
|
1394
|
-
},
|
|
1395
|
-
fromAminoMsg(object: MsgCancelUnbondingDelegationAminoMsg): MsgCancelUnbondingDelegation {
|
|
1396
|
-
return MsgCancelUnbondingDelegation.fromAmino(object.value);
|
|
1397
|
-
},
|
|
1398
|
-
toAminoMsg(message: MsgCancelUnbondingDelegation): MsgCancelUnbondingDelegationAminoMsg {
|
|
1399
|
-
return {
|
|
1400
|
-
type: "cosmos-sdk/MsgCancelUnbondingDelegation",
|
|
1401
|
-
value: MsgCancelUnbondingDelegation.toAmino(message)
|
|
1402
|
-
};
|
|
1403
|
-
},
|
|
1404
|
-
fromProtoMsg(message: MsgCancelUnbondingDelegationProtoMsg): MsgCancelUnbondingDelegation {
|
|
1405
|
-
return MsgCancelUnbondingDelegation.decode(message.value);
|
|
1406
|
-
},
|
|
1407
|
-
toProto(message: MsgCancelUnbondingDelegation): Uint8Array {
|
|
1408
|
-
return MsgCancelUnbondingDelegation.encode(message).finish();
|
|
1409
|
-
},
|
|
1410
|
-
toProtoMsg(message: MsgCancelUnbondingDelegation): MsgCancelUnbondingDelegationProtoMsg {
|
|
1411
|
-
return {
|
|
1412
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgCancelUnbondingDelegation",
|
|
1413
|
-
value: MsgCancelUnbondingDelegation.encode(message).finish()
|
|
1414
|
-
};
|
|
1415
|
-
}
|
|
1416
|
-
};
|
|
1417
|
-
GlobalDecoderRegistry.register(MsgCancelUnbondingDelegation.typeUrl, MsgCancelUnbondingDelegation);
|
|
1418
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(MsgCancelUnbondingDelegation.aminoType, MsgCancelUnbondingDelegation.typeUrl);
|
|
1419
|
-
function createBaseMsgCancelUnbondingDelegationResponse(): MsgCancelUnbondingDelegationResponse {
|
|
1420
|
-
return {};
|
|
1421
|
-
}
|
|
1422
|
-
export const MsgCancelUnbondingDelegationResponse = {
|
|
1423
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgCancelUnbondingDelegationResponse",
|
|
1424
|
-
aminoType: "cosmos-sdk/MsgCancelUnbondingDelegationResponse",
|
|
1425
|
-
is(o: any): o is MsgCancelUnbondingDelegationResponse {
|
|
1426
|
-
return o && o.$typeUrl === MsgCancelUnbondingDelegationResponse.typeUrl;
|
|
1427
|
-
},
|
|
1428
|
-
isAmino(o: any): o is MsgCancelUnbondingDelegationResponseAmino {
|
|
1429
|
-
return o && o.$typeUrl === MsgCancelUnbondingDelegationResponse.typeUrl;
|
|
1430
|
-
},
|
|
1431
|
-
encode(_: MsgCancelUnbondingDelegationResponse, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
1432
|
-
return writer;
|
|
1433
|
-
},
|
|
1434
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgCancelUnbondingDelegationResponse {
|
|
1435
|
-
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
1436
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
1437
|
-
const message = createBaseMsgCancelUnbondingDelegationResponse();
|
|
1438
|
-
while (reader.pos < end) {
|
|
1439
|
-
const tag = reader.uint32();
|
|
1440
|
-
switch (tag >>> 3) {
|
|
1441
|
-
default:
|
|
1442
|
-
reader.skipType(tag & 7);
|
|
1443
|
-
break;
|
|
1444
|
-
}
|
|
1445
|
-
}
|
|
1446
|
-
return message;
|
|
1447
|
-
},
|
|
1448
|
-
fromPartial(_: DeepPartial<MsgCancelUnbondingDelegationResponse>): MsgCancelUnbondingDelegationResponse {
|
|
1449
|
-
const message = createBaseMsgCancelUnbondingDelegationResponse();
|
|
1450
|
-
return message;
|
|
1451
|
-
},
|
|
1452
|
-
fromAmino(_: MsgCancelUnbondingDelegationResponseAmino): MsgCancelUnbondingDelegationResponse {
|
|
1453
|
-
const message = createBaseMsgCancelUnbondingDelegationResponse();
|
|
1454
|
-
return message;
|
|
1455
|
-
},
|
|
1456
|
-
toAmino(_: MsgCancelUnbondingDelegationResponse): MsgCancelUnbondingDelegationResponseAmino {
|
|
1457
|
-
const obj: any = {};
|
|
1458
|
-
return obj;
|
|
1459
|
-
},
|
|
1460
|
-
fromAminoMsg(object: MsgCancelUnbondingDelegationResponseAminoMsg): MsgCancelUnbondingDelegationResponse {
|
|
1461
|
-
return MsgCancelUnbondingDelegationResponse.fromAmino(object.value);
|
|
1462
|
-
},
|
|
1463
|
-
toAminoMsg(message: MsgCancelUnbondingDelegationResponse): MsgCancelUnbondingDelegationResponseAminoMsg {
|
|
1464
|
-
return {
|
|
1465
|
-
type: "cosmos-sdk/MsgCancelUnbondingDelegationResponse",
|
|
1466
|
-
value: MsgCancelUnbondingDelegationResponse.toAmino(message)
|
|
1467
|
-
};
|
|
1468
|
-
},
|
|
1469
|
-
fromProtoMsg(message: MsgCancelUnbondingDelegationResponseProtoMsg): MsgCancelUnbondingDelegationResponse {
|
|
1470
|
-
return MsgCancelUnbondingDelegationResponse.decode(message.value);
|
|
1471
|
-
},
|
|
1472
|
-
toProto(message: MsgCancelUnbondingDelegationResponse): Uint8Array {
|
|
1473
|
-
return MsgCancelUnbondingDelegationResponse.encode(message).finish();
|
|
1474
|
-
},
|
|
1475
|
-
toProtoMsg(message: MsgCancelUnbondingDelegationResponse): MsgCancelUnbondingDelegationResponseProtoMsg {
|
|
1476
|
-
return {
|
|
1477
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgCancelUnbondingDelegationResponse",
|
|
1478
|
-
value: MsgCancelUnbondingDelegationResponse.encode(message).finish()
|
|
1479
|
-
};
|
|
1480
|
-
}
|
|
1481
|
-
};
|
|
1482
|
-
GlobalDecoderRegistry.register(MsgCancelUnbondingDelegationResponse.typeUrl, MsgCancelUnbondingDelegationResponse);
|
|
1483
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(MsgCancelUnbondingDelegationResponse.aminoType, MsgCancelUnbondingDelegationResponse.typeUrl);
|
|
1484
|
-
function createBaseMsgUpdateParams(): MsgUpdateParams {
|
|
1485
|
-
return {
|
|
1486
|
-
authority: "",
|
|
1487
|
-
params: Params.fromPartial({})
|
|
1488
|
-
};
|
|
1489
|
-
}
|
|
1490
|
-
export const MsgUpdateParams = {
|
|
1491
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgUpdateParams",
|
|
1492
|
-
aminoType: "cosmos-sdk/x/staking/MsgUpdateParams",
|
|
1493
|
-
is(o: any): o is MsgUpdateParams {
|
|
1494
|
-
return o && (o.$typeUrl === MsgUpdateParams.typeUrl || typeof o.authority === "string" && Params.is(o.params));
|
|
1495
|
-
},
|
|
1496
|
-
isAmino(o: any): o is MsgUpdateParamsAmino {
|
|
1497
|
-
return o && (o.$typeUrl === MsgUpdateParams.typeUrl || typeof o.authority === "string" && Params.isAmino(o.params));
|
|
1498
|
-
},
|
|
1499
|
-
encode(message: MsgUpdateParams, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
1500
|
-
if (message.authority !== "") {
|
|
1501
|
-
writer.uint32(10).string(message.authority);
|
|
1502
|
-
}
|
|
1503
|
-
if (message.params !== undefined) {
|
|
1504
|
-
Params.encode(message.params, writer.uint32(18).fork()).ldelim();
|
|
1505
|
-
}
|
|
1506
|
-
return writer;
|
|
1507
|
-
},
|
|
1508
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateParams {
|
|
1509
|
-
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
1510
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
1511
|
-
const message = createBaseMsgUpdateParams();
|
|
1512
|
-
while (reader.pos < end) {
|
|
1513
|
-
const tag = reader.uint32();
|
|
1514
|
-
switch (tag >>> 3) {
|
|
1515
|
-
case 1:
|
|
1516
|
-
message.authority = reader.string();
|
|
1517
|
-
break;
|
|
1518
|
-
case 2:
|
|
1519
|
-
message.params = Params.decode(reader, reader.uint32());
|
|
1520
|
-
break;
|
|
1521
|
-
default:
|
|
1522
|
-
reader.skipType(tag & 7);
|
|
1523
|
-
break;
|
|
1524
|
-
}
|
|
1525
|
-
}
|
|
1526
|
-
return message;
|
|
1527
|
-
},
|
|
1528
|
-
fromPartial(object: DeepPartial<MsgUpdateParams>): MsgUpdateParams {
|
|
1529
|
-
const message = createBaseMsgUpdateParams();
|
|
1530
|
-
message.authority = object.authority ?? "";
|
|
1531
|
-
message.params = object.params !== undefined && object.params !== null ? Params.fromPartial(object.params) : undefined;
|
|
1532
|
-
return message;
|
|
1533
|
-
},
|
|
1534
|
-
fromAmino(object: MsgUpdateParamsAmino): MsgUpdateParams {
|
|
1535
|
-
const message = createBaseMsgUpdateParams();
|
|
1536
|
-
if (object.authority !== undefined && object.authority !== null) {
|
|
1537
|
-
message.authority = object.authority;
|
|
1538
|
-
}
|
|
1539
|
-
if (object.params !== undefined && object.params !== null) {
|
|
1540
|
-
message.params = Params.fromAmino(object.params);
|
|
1541
|
-
}
|
|
1542
|
-
return message;
|
|
1543
|
-
},
|
|
1544
|
-
toAmino(message: MsgUpdateParams): MsgUpdateParamsAmino {
|
|
1545
|
-
const obj: any = {};
|
|
1546
|
-
obj.authority = message.authority === "" ? undefined : message.authority;
|
|
1547
|
-
obj.params = message.params ? Params.toAmino(message.params) : Params.toAmino(Params.fromPartial({}));
|
|
1548
|
-
return obj;
|
|
1549
|
-
},
|
|
1550
|
-
fromAminoMsg(object: MsgUpdateParamsAminoMsg): MsgUpdateParams {
|
|
1551
|
-
return MsgUpdateParams.fromAmino(object.value);
|
|
1552
|
-
},
|
|
1553
|
-
toAminoMsg(message: MsgUpdateParams): MsgUpdateParamsAminoMsg {
|
|
1554
|
-
return {
|
|
1555
|
-
type: "cosmos-sdk/x/staking/MsgUpdateParams",
|
|
1556
|
-
value: MsgUpdateParams.toAmino(message)
|
|
1557
|
-
};
|
|
1558
|
-
},
|
|
1559
|
-
fromProtoMsg(message: MsgUpdateParamsProtoMsg): MsgUpdateParams {
|
|
1560
|
-
return MsgUpdateParams.decode(message.value);
|
|
1561
|
-
},
|
|
1562
|
-
toProto(message: MsgUpdateParams): Uint8Array {
|
|
1563
|
-
return MsgUpdateParams.encode(message).finish();
|
|
1564
|
-
},
|
|
1565
|
-
toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg {
|
|
1566
|
-
return {
|
|
1567
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgUpdateParams",
|
|
1568
|
-
value: MsgUpdateParams.encode(message).finish()
|
|
1569
|
-
};
|
|
1570
|
-
}
|
|
1571
|
-
};
|
|
1572
|
-
GlobalDecoderRegistry.register(MsgUpdateParams.typeUrl, MsgUpdateParams);
|
|
1573
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(MsgUpdateParams.aminoType, MsgUpdateParams.typeUrl);
|
|
1574
|
-
function createBaseMsgUpdateParamsResponse(): MsgUpdateParamsResponse {
|
|
1575
|
-
return {};
|
|
1576
|
-
}
|
|
1577
|
-
export const MsgUpdateParamsResponse = {
|
|
1578
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgUpdateParamsResponse",
|
|
1579
|
-
aminoType: "cosmos-sdk/MsgUpdateParamsResponse",
|
|
1580
|
-
is(o: any): o is MsgUpdateParamsResponse {
|
|
1581
|
-
return o && o.$typeUrl === MsgUpdateParamsResponse.typeUrl;
|
|
1582
|
-
},
|
|
1583
|
-
isAmino(o: any): o is MsgUpdateParamsResponseAmino {
|
|
1584
|
-
return o && o.$typeUrl === MsgUpdateParamsResponse.typeUrl;
|
|
1585
|
-
},
|
|
1586
|
-
encode(_: MsgUpdateParamsResponse, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
1587
|
-
return writer;
|
|
1588
|
-
},
|
|
1589
|
-
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateParamsResponse {
|
|
1590
|
-
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
1591
|
-
let end = length === undefined ? reader.len : reader.pos + length;
|
|
1592
|
-
const message = createBaseMsgUpdateParamsResponse();
|
|
1593
|
-
while (reader.pos < end) {
|
|
1594
|
-
const tag = reader.uint32();
|
|
1595
|
-
switch (tag >>> 3) {
|
|
1596
|
-
default:
|
|
1597
|
-
reader.skipType(tag & 7);
|
|
1598
|
-
break;
|
|
1599
|
-
}
|
|
1600
|
-
}
|
|
1601
|
-
return message;
|
|
1602
|
-
},
|
|
1603
|
-
fromPartial(_: DeepPartial<MsgUpdateParamsResponse>): MsgUpdateParamsResponse {
|
|
1604
|
-
const message = createBaseMsgUpdateParamsResponse();
|
|
1605
|
-
return message;
|
|
1606
|
-
},
|
|
1607
|
-
fromAmino(_: MsgUpdateParamsResponseAmino): MsgUpdateParamsResponse {
|
|
1608
|
-
const message = createBaseMsgUpdateParamsResponse();
|
|
1609
|
-
return message;
|
|
1610
|
-
},
|
|
1611
|
-
toAmino(_: MsgUpdateParamsResponse): MsgUpdateParamsResponseAmino {
|
|
1612
|
-
const obj: any = {};
|
|
1613
|
-
return obj;
|
|
1614
|
-
},
|
|
1615
|
-
fromAminoMsg(object: MsgUpdateParamsResponseAminoMsg): MsgUpdateParamsResponse {
|
|
1616
|
-
return MsgUpdateParamsResponse.fromAmino(object.value);
|
|
1617
|
-
},
|
|
1618
|
-
toAminoMsg(message: MsgUpdateParamsResponse): MsgUpdateParamsResponseAminoMsg {
|
|
1619
|
-
return {
|
|
1620
|
-
type: "cosmos-sdk/MsgUpdateParamsResponse",
|
|
1621
|
-
value: MsgUpdateParamsResponse.toAmino(message)
|
|
1622
|
-
};
|
|
1623
|
-
},
|
|
1624
|
-
fromProtoMsg(message: MsgUpdateParamsResponseProtoMsg): MsgUpdateParamsResponse {
|
|
1625
|
-
return MsgUpdateParamsResponse.decode(message.value);
|
|
1626
|
-
},
|
|
1627
|
-
toProto(message: MsgUpdateParamsResponse): Uint8Array {
|
|
1628
|
-
return MsgUpdateParamsResponse.encode(message).finish();
|
|
1629
|
-
},
|
|
1630
|
-
toProtoMsg(message: MsgUpdateParamsResponse): MsgUpdateParamsResponseProtoMsg {
|
|
1631
|
-
return {
|
|
1632
|
-
typeUrl: "/cosmos.staking.v1beta1.MsgUpdateParamsResponse",
|
|
1633
|
-
value: MsgUpdateParamsResponse.encode(message).finish()
|
|
1634
|
-
};
|
|
1635
|
-
}
|
|
1636
|
-
};
|
|
1637
|
-
GlobalDecoderRegistry.register(MsgUpdateParamsResponse.typeUrl, MsgUpdateParamsResponse);
|
|
1638
|
-
GlobalDecoderRegistry.registerAminoProtoMapping(MsgUpdateParamsResponse.aminoType, MsgUpdateParamsResponse.typeUrl);
|