@xpla/xpla-react 1.7.0-beta.0
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/CHANGELOG.md +8 -0
- package/package.json +47 -0
- package/src/amino/amino.ts +1 -0
- package/src/binary.ts +534 -0
- package/src/cosmos/app/runtime/v1alpha1/module.ts +423 -0
- package/src/cosmos/app/runtime/v2/module.ts +589 -0
- package/src/cosmos/app/v1alpha1/config.ts +422 -0
- package/src/cosmos/app/v1alpha1/module.ts +461 -0
- package/src/cosmos/app/v1alpha1/query.rpc.func.ts +14 -0
- package/src/cosmos/app/v1alpha1/query.ts +177 -0
- package/src/cosmos/auth/module/v1/module.ts +253 -0
- package/src/cosmos/auth/v1beta1/accounts.ts +226 -0
- package/src/cosmos/auth/v1beta1/auth.ts +550 -0
- package/src/cosmos/auth/v1beta1/genesis.ts +119 -0
- package/src/cosmos/auth/v1beta1/query.rpc.func.ts +113 -0
- package/src/cosmos/auth/v1beta1/query.ts +2034 -0
- package/src/cosmos/auth/v1beta1/tx.registry.ts +29 -0
- package/src/cosmos/auth/v1beta1/tx.rpc.func.ts +13 -0
- package/src/cosmos/auth/v1beta1/tx.ts +219 -0
- package/src/cosmos/authz/module/v1/module.ts +80 -0
- package/src/cosmos/authz/v1beta1/authz.ts +481 -0
- package/src/cosmos/authz/v1beta1/event.ts +259 -0
- package/src/cosmos/authz/v1beta1/genesis.ts +100 -0
- package/src/cosmos/authz/v1beta1/query.rpc.func.ts +36 -0
- package/src/cosmos/authz/v1beta1/query.ts +707 -0
- package/src/cosmos/authz/v1beta1/tx.registry.ts +65 -0
- package/src/cosmos/authz/v1beta1/tx.rpc.func.ts +31 -0
- package/src/cosmos/authz/v1beta1/tx.ts +647 -0
- package/src/cosmos/autocli/v1/options.ts +1145 -0
- package/src/cosmos/autocli/v1/query.rpc.func.ts +14 -0
- package/src/cosmos/autocli/v1/query.ts +288 -0
- package/src/cosmos/bank/module/v1/module.ts +153 -0
- package/src/cosmos/bank/v1beta1/authz.ts +138 -0
- package/src/cosmos/bank/v1beta1/bank.ts +974 -0
- package/src/cosmos/bank/v1beta1/genesis.ts +307 -0
- package/src/cosmos/bank/v1beta1/query.rpc.func.ts +146 -0
- package/src/cosmos/bank/v1beta1/query.ts +3027 -0
- package/src/cosmos/bank/v1beta1/tx.registry.ts +83 -0
- package/src/cosmos/bank/v1beta1/tx.rpc.func.ts +40 -0
- package/src/cosmos/bank/v1beta1/tx.ts +861 -0
- package/src/cosmos/base/abci/v1beta1/abci.ts +1698 -0
- package/src/cosmos/base/grpc/v2/service.rpc.func.ts +25 -0
- package/src/cosmos/base/grpc/v2/service.ts +473 -0
- package/src/cosmos/base/node/v1beta1/query.rpc.func.ts +25 -0
- package/src/cosmos/base/node/v1beta1/query.ts +454 -0
- package/src/cosmos/base/query/v1beta1/pagination.ts +361 -0
- package/src/cosmos/base/reflection/v1beta1/reflection.rpc.func.ts +25 -0
- package/src/cosmos/base/reflection/v1beta1/reflection.ts +382 -0
- package/src/cosmos/base/reflection/v2alpha1/reflection.rpc.func.ts +69 -0
- package/src/cosmos/base/reflection/v2alpha1/reflection.ts +2727 -0
- package/src/cosmos/base/tendermint/v1beta1/query.rpc.func.ts +80 -0
- package/src/cosmos/base/tendermint/v1beta1/query.ts +2302 -0
- package/src/cosmos/base/tendermint/v1beta1/types.ts +455 -0
- package/src/cosmos/base/v1beta1/coin.ts +439 -0
- package/src/cosmos/circuit/module/v1/module.ts +99 -0
- package/src/cosmos/circuit/v1/query.rpc.func.ts +36 -0
- package/src/cosmos/circuit/v1/query.ts +574 -0
- package/src/cosmos/circuit/v1/tx.registry.ts +65 -0
- package/src/cosmos/circuit/v1/tx.rpc.func.ts +31 -0
- package/src/cosmos/circuit/v1/tx.ts +676 -0
- package/src/cosmos/circuit/v1/types.ts +413 -0
- package/src/cosmos/consensus/module/v1/module.ts +99 -0
- package/src/cosmos/consensus/v1/query.rpc.func.ts +14 -0
- package/src/cosmos/consensus/v1/query.ts +185 -0
- package/src/cosmos/consensus/v1/tx.registry.ts +29 -0
- package/src/cosmos/consensus/v1/tx.rpc.func.ts +13 -0
- package/src/cosmos/consensus/v1/tx.ts +255 -0
- package/src/cosmos/crisis/module/v1/module.ts +115 -0
- package/src/cosmos/crisis/v1beta1/genesis.ts +106 -0
- package/src/cosmos/crisis/v1beta1/tx.registry.ts +47 -0
- package/src/cosmos/crisis/v1beta1/tx.rpc.func.ts +22 -0
- package/src/cosmos/crisis/v1beta1/tx.ts +416 -0
- package/src/cosmos/crypto/ed25519/keys.ts +209 -0
- package/src/cosmos/crypto/hd/v1/hd.ts +169 -0
- package/src/cosmos/crypto/keyring/v1/record.ts +529 -0
- package/src/cosmos/crypto/multisig/keys.ts +122 -0
- package/src/cosmos/crypto/multisig/v1beta1/multisig.ts +225 -0
- package/src/cosmos/crypto/secp256k1/keys.ts +203 -0
- package/src/cosmos/crypto/secp256r1/keys.ts +201 -0
- package/src/cosmos/distribution/module/v1/module.ts +113 -0
- package/src/cosmos/distribution/v1beta1/distribution.ts +1494 -0
- package/src/cosmos/distribution/v1beta1/genesis.ts +1129 -0
- package/src/cosmos/distribution/v1beta1/query.rpc.func.ts +113 -0
- package/src/cosmos/distribution/v1beta1/query.ts +2126 -0
- package/src/cosmos/distribution/v1beta1/tx.registry.ts +137 -0
- package/src/cosmos/distribution/v1beta1/tx.rpc.func.ts +67 -0
- package/src/cosmos/distribution/v1beta1/tx.ts +1478 -0
- package/src/cosmos/evidence/module/v1/module.ts +80 -0
- package/src/cosmos/evidence/v1beta1/evidence.ts +154 -0
- package/src/cosmos/evidence/v1beta1/genesis.ts +102 -0
- package/src/cosmos/evidence/v1beta1/query.rpc.func.ts +25 -0
- package/src/cosmos/evidence/v1beta1/query.ts +451 -0
- package/src/cosmos/evidence/v1beta1/tx.registry.ts +29 -0
- package/src/cosmos/evidence/v1beta1/tx.rpc.func.ts +13 -0
- package/src/cosmos/evidence/v1beta1/tx.ts +221 -0
- package/src/cosmos/feegrant/module/v1/module.ts +80 -0
- package/src/cosmos/feegrant/v1beta1/feegrant.ts +573 -0
- package/src/cosmos/feegrant/v1beta1/genesis.ts +100 -0
- package/src/cosmos/feegrant/v1beta1/query.rpc.func.ts +36 -0
- package/src/cosmos/feegrant/v1beta1/query.ts +677 -0
- package/src/cosmos/feegrant/v1beta1/tx.registry.ts +65 -0
- package/src/cosmos/feegrant/v1beta1/tx.rpc.func.ts +31 -0
- package/src/cosmos/feegrant/v1beta1/tx.ts +597 -0
- package/src/cosmos/genutil/module/v1/module.ts +80 -0
- package/src/cosmos/genutil/v1beta1/genesis.ts +101 -0
- package/src/cosmos/gov/module/v1/module.ts +121 -0
- package/src/cosmos/gov/v1/genesis.ts +280 -0
- package/src/cosmos/gov/v1/gov.ts +1843 -0
- package/src/cosmos/gov/v1/query.rpc.func.ts +102 -0
- package/src/cosmos/gov/v1/query.ts +1970 -0
- package/src/cosmos/gov/v1/tx.registry.ts +137 -0
- package/src/cosmos/gov/v1/tx.rpc.func.ts +67 -0
- package/src/cosmos/gov/v1/tx.ts +1657 -0
- package/src/cosmos/gov/v1beta1/genesis.ts +202 -0
- package/src/cosmos/gov/v1beta1/gov.ts +1425 -0
- package/src/cosmos/gov/v1beta1/query.rpc.func.ts +91 -0
- package/src/cosmos/gov/v1beta1/query.ts +1749 -0
- package/src/cosmos/gov/v1beta1/tx.registry.ts +83 -0
- package/src/cosmos/gov/v1beta1/tx.rpc.func.ts +40 -0
- package/src/cosmos/gov/v1beta1/tx.ts +881 -0
- package/src/cosmos/group/module/v1/module.ts +128 -0
- package/src/cosmos/group/v1/events.ts +1044 -0
- package/src/cosmos/group/v1/genesis.ts +240 -0
- package/src/cosmos/group/v1/query.rpc.func.ts +157 -0
- package/src/cosmos/group/v1/query.ts +3015 -0
- package/src/cosmos/group/v1/tx.registry.ts +263 -0
- package/src/cosmos/group/v1/tx.rpc.func.ts +130 -0
- package/src/cosmos/group/v1/tx.ts +3207 -0
- package/src/cosmos/group/v1/types.ts +2081 -0
- package/src/cosmos/ics23/v1/proofs.ts +2060 -0
- package/src/cosmos/mint/module/v1/module.ts +113 -0
- package/src/cosmos/mint/v1beta1/genesis.ts +116 -0
- package/src/cosmos/mint/v1beta1/mint.ts +291 -0
- package/src/cosmos/mint/v1beta1/query.rpc.func.ts +36 -0
- package/src/cosmos/mint/v1beta1/query.ts +541 -0
- package/src/cosmos/mint/v1beta1/tx.registry.ts +29 -0
- package/src/cosmos/mint/v1beta1/tx.rpc.func.ts +13 -0
- package/src/cosmos/mint/v1beta1/tx.ts +219 -0
- package/src/cosmos/msg/textual/v1/textual.ts +1 -0
- package/src/cosmos/msg/v1/msg.ts +1 -0
- package/src/cosmos/nft/module/v1/module.ts +80 -0
- package/src/cosmos/nft/v1beta1/event.ts +403 -0
- package/src/cosmos/nft/v1beta1/genesis.ts +234 -0
- package/src/cosmos/nft/v1beta1/nft.ts +356 -0
- package/src/cosmos/nft/v1beta1/query.rpc.func.ts +80 -0
- package/src/cosmos/nft/v1beta1/query.ts +1465 -0
- package/src/cosmos/nft/v1beta1/tx.registry.ts +29 -0
- package/src/cosmos/nft/v1beta1/tx.rpc.func.ts +13 -0
- package/src/cosmos/nft/v1beta1/tx.ts +224 -0
- package/src/cosmos/orm/module/v1alpha1/module.ts +88 -0
- package/src/cosmos/orm/query/v1alpha1/query.rpc.func.ts +25 -0
- package/src/cosmos/orm/query/v1alpha1/query.ts +993 -0
- package/src/cosmos/orm/v1/orm.ts +589 -0
- package/src/cosmos/orm/v1alpha1/schema.ts +325 -0
- package/src/cosmos/params/module/v1/module.ts +80 -0
- package/src/cosmos/params/v1beta1/params.ts +255 -0
- package/src/cosmos/params/v1beta1/query.rpc.func.ts +25 -0
- package/src/cosmos/params/v1beta1/query.ts +525 -0
- package/src/cosmos/query/v1/query.ts +1 -0
- package/src/cosmos/reflection/v1/reflection.rpc.func.ts +14 -0
- package/src/cosmos/reflection/v1/reflection.ts +179 -0
- package/src/cosmos/slashing/module/v1/module.ts +99 -0
- package/src/cosmos/slashing/v1beta1/genesis.ts +492 -0
- package/src/cosmos/slashing/v1beta1/query.rpc.func.ts +36 -0
- package/src/cosmos/slashing/v1beta1/query.ts +598 -0
- package/src/cosmos/slashing/v1beta1/slashing.ts +357 -0
- package/src/cosmos/slashing/v1beta1/tx.registry.ts +47 -0
- package/src/cosmos/slashing/v1beta1/tx.rpc.func.ts +22 -0
- package/src/cosmos/slashing/v1beta1/tx.ts +390 -0
- package/src/cosmos/staking/module/v1/module.ts +157 -0
- package/src/cosmos/staking/v1beta1/authz.ts +323 -0
- package/src/cosmos/staking/v1beta1/genesis.ts +346 -0
- package/src/cosmos/staking/v1beta1/query.rpc.func.ts +157 -0
- package/src/cosmos/staking/v1beta1/query.ts +3073 -0
- package/src/cosmos/staking/v1beta1/staking.ts +3005 -0
- package/src/cosmos/staking/v1beta1/tx.registry.ts +137 -0
- package/src/cosmos/staking/v1beta1/tx.rpc.func.ts +67 -0
- package/src/cosmos/staking/v1beta1/tx.ts +1638 -0
- package/src/cosmos/store/internal/kv/v1beta1/kv.ts +207 -0
- package/src/cosmos/store/snapshots/v1/snapshot.ts +863 -0
- package/src/cosmos/store/snapshots/v2/snapshot.ts +823 -0
- package/src/cosmos/store/streaming/abci/grpc.ts +393 -0
- package/src/cosmos/store/v1beta1/commit_info.ts +362 -0
- package/src/cosmos/store/v1beta1/listening.ts +286 -0
- package/src/cosmos/streaming/v1/grpc.ts +985 -0
- package/src/cosmos/tx/config/v1/config.ts +127 -0
- package/src/cosmos/tx/signing/v1beta1/signing.ts +688 -0
- package/src/cosmos/tx/v1beta1/service.rpc.func.ts +102 -0
- package/src/cosmos/tx/v1beta1/service.ts +2294 -0
- package/src/cosmos/tx/v1beta1/tx.ts +2029 -0
- package/src/cosmos/upgrade/module/v1/module.ts +99 -0
- package/src/cosmos/upgrade/v1beta1/query.rpc.func.ts +58 -0
- package/src/cosmos/upgrade/v1beta1/query.ts +1016 -0
- package/src/cosmos/upgrade/v1beta1/tx.registry.ts +47 -0
- package/src/cosmos/upgrade/v1beta1/tx.rpc.func.ts +22 -0
- package/src/cosmos/upgrade/v1beta1/tx.ts +398 -0
- package/src/cosmos/upgrade/v1beta1/upgrade.ts +591 -0
- package/src/cosmos/validate/module/v1/module.ts +80 -0
- package/src/cosmos/vesting/module/v1/module.ts +80 -0
- package/src/cosmos/vesting/v1beta1/tx.registry.ts +65 -0
- package/src/cosmos/vesting/v1beta1/tx.rpc.func.ts +31 -0
- package/src/cosmos/vesting/v1beta1/tx.ts +698 -0
- package/src/cosmos/vesting/v1beta1/vesting.ts +735 -0
- package/src/cosmos_proto/cosmos.ts +341 -0
- package/src/cosmwasm/wasm/v1/authz.ts +1231 -0
- package/src/cosmwasm/wasm/v1/genesis.ts +532 -0
- package/src/cosmwasm/wasm/v1/ibc.ts +355 -0
- package/src/cosmwasm/wasm/v1/proposal_legacy.ts +2432 -0
- package/src/cosmwasm/wasm/v1/query.rpc.func.ts +124 -0
- package/src/cosmwasm/wasm/v1/query.ts +2560 -0
- package/src/cosmwasm/wasm/v1/tx.registry.ts +317 -0
- package/src/cosmwasm/wasm/v1/tx.rpc.func.ts +157 -0
- package/src/cosmwasm/wasm/v1/tx.ts +4191 -0
- package/src/cosmwasm/wasm/v1/types.ts +1120 -0
- package/src/ethermint/crypto/v1/ethsecp256k1/keys.ts +193 -0
- package/src/ethermint/evm/v1/events.ts +485 -0
- package/src/ethermint/evm/v1/evm.ts +1590 -0
- package/src/ethermint/evm/v1/genesis.ts +240 -0
- package/src/ethermint/evm/v1/query.rpc.func.ts +136 -0
- package/src/ethermint/evm/v1/query.ts +2535 -0
- package/src/ethermint/evm/v1/tx.registry.ts +47 -0
- package/src/ethermint/evm/v1/tx.rpc.func.ts +22 -0
- package/src/ethermint/evm/v1/tx.ts +1333 -0
- package/src/ethermint/feemarket/v1/events.ts +195 -0
- package/src/ethermint/feemarket/v1/feemarket.ts +213 -0
- package/src/ethermint/feemarket/v1/genesis.ts +114 -0
- package/src/ethermint/feemarket/v1/query.rpc.func.ts +36 -0
- package/src/ethermint/feemarket/v1/query.ts +487 -0
- package/src/ethermint/feemarket/v1/tx.registry.ts +29 -0
- package/src/ethermint/feemarket/v1/tx.rpc.func.ts +13 -0
- package/src/ethermint/feemarket/v1/tx.ts +197 -0
- package/src/ethermint/types/v1/account.ts +114 -0
- package/src/ethermint/types/v1/dynamic_fee.ts +91 -0
- package/src/ethermint/types/v1/indexer.ts +205 -0
- package/src/ethermint/types/v1/web3.ts +147 -0
- package/src/extern.ts +38 -0
- package/src/gogoproto/gogo.ts +1 -0
- package/src/google/api/annotations.ts +1 -0
- package/src/google/api/http.ts +1069 -0
- package/src/google/protobuf/any.ts +331 -0
- package/src/google/protobuf/descriptor.ts +7177 -0
- package/src/google/protobuf/duration.ts +225 -0
- package/src/google/protobuf/timestamp.ts +281 -0
- package/src/helper-func-types.ts +191 -0
- package/src/helpers.ts +259 -0
- package/src/ibc/applications/fee/v1/ack.ts +131 -0
- package/src/ibc/applications/fee/v1/fee.ts +481 -0
- package/src/ibc/applications/fee/v1/genesis.ts +661 -0
- package/src/ibc/applications/fee/v1/metadata.ts +121 -0
- package/src/ibc/applications/fee/v1/query.rpc.func.ts +113 -0
- package/src/ibc/applications/fee/v1/query.ts +2134 -0
- package/src/ibc/applications/fee/v1/tx.registry.ts +83 -0
- package/src/ibc/applications/fee/v1/tx.rpc.func.ts +40 -0
- package/src/ibc/applications/fee/v1/tx.ts +889 -0
- package/src/ibc/applications/interchain_accounts/controller/v1/controller.ts +105 -0
- package/src/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.ts +25 -0
- package/src/ibc/applications/interchain_accounts/controller/v1/query.ts +379 -0
- package/src/ibc/applications/interchain_accounts/controller/v1/tx.registry.ts +65 -0
- package/src/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.ts +31 -0
- package/src/ibc/applications/interchain_accounts/controller/v1/tx.ts +685 -0
- package/src/ibc/applications/interchain_accounts/genesis/v1/genesis.ts +661 -0
- package/src/ibc/applications/interchain_accounts/host/v1/host.ts +253 -0
- package/src/ibc/applications/interchain_accounts/host/v1/query.rpc.func.ts +14 -0
- package/src/ibc/applications/interchain_accounts/host/v1/query.ts +177 -0
- package/src/ibc/applications/interchain_accounts/host/v1/tx.registry.ts +47 -0
- package/src/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.ts +22 -0
- package/src/ibc/applications/interchain_accounts/host/v1/tx.ts +429 -0
- package/src/ibc/applications/interchain_accounts/v1/account.ts +112 -0
- package/src/ibc/applications/interchain_accounts/v1/metadata.ts +191 -0
- package/src/ibc/applications/interchain_accounts/v1/packet.ts +259 -0
- package/src/ibc/applications/transfer/v1/authz.ts +280 -0
- package/src/ibc/applications/transfer/v1/genesis.ts +153 -0
- package/src/ibc/applications/transfer/v1/query.rpc.func.ts +69 -0
- package/src/ibc/applications/transfer/v1/query.ts +1205 -0
- package/src/ibc/applications/transfer/v1/transfer.ts +261 -0
- package/src/ibc/applications/transfer/v1/tx.registry.ts +47 -0
- package/src/ibc/applications/transfer/v1/tx.rpc.func.ts +22 -0
- package/src/ibc/applications/transfer/v1/tx.ts +532 -0
- package/src/ibc/applications/transfer/v2/packet.ts +171 -0
- package/src/ibc/core/channel/v1/channel.ts +1510 -0
- package/src/ibc/core/channel/v1/genesis.ts +354 -0
- package/src/ibc/core/channel/v1/query.rpc.func.ts +190 -0
- package/src/ibc/core/channel/v1/query.ts +4354 -0
- package/src/ibc/core/channel/v1/tx.registry.ts +353 -0
- package/src/ibc/core/channel/v1/tx.rpc.func.ts +175 -0
- package/src/ibc/core/channel/v1/tx.ts +4866 -0
- package/src/ibc/core/channel/v1/upgrade.ts +388 -0
- package/src/ibc/core/client/v1/client.ts +927 -0
- package/src/ibc/core/client/v1/genesis.ts +426 -0
- package/src/ibc/core/client/v1/query.rpc.func.ts +113 -0
- package/src/ibc/core/client/v1/query.ts +2280 -0
- package/src/ibc/core/client/v1/tx.registry.ts +137 -0
- package/src/ibc/core/client/v1/tx.rpc.func.ts +67 -0
- package/src/ibc/core/client/v1/tx.ts +1543 -0
- package/src/ibc/core/commitment/v1/commitment.ts +418 -0
- package/src/ibc/core/connection/v1/connection.ts +1010 -0
- package/src/ibc/core/connection/v1/genesis.ts +146 -0
- package/src/ibc/core/connection/v1/query.rpc.func.ts +69 -0
- package/src/ibc/core/connection/v1/query.ts +1408 -0
- package/src/ibc/core/connection/v1/tx.registry.ts +101 -0
- package/src/ibc/core/connection/v1/tx.rpc.func.ts +49 -0
- package/src/ibc/core/connection/v1/tx.ts +1365 -0
- package/src/ibc/core/types/v1/genesis.ts +137 -0
- package/src/ibc/lightclients/localhost/v2/localhost.ts +100 -0
- package/src/ibc/lightclients/solomachine/v2/solomachine.ts +2103 -0
- package/src/ibc/lightclients/solomachine/v3/solomachine.ts +1070 -0
- package/src/ibc/lightclients/tendermint/v1/tendermint.ts +838 -0
- package/src/ibc/lightclients/wasm/v1/genesis.ts +197 -0
- package/src/ibc/lightclients/wasm/v1/query.rpc.func.ts +25 -0
- package/src/ibc/lightclients/wasm/v1/query.ts +404 -0
- package/src/ibc/lightclients/wasm/v1/tx.registry.ts +65 -0
- package/src/ibc/lightclients/wasm/v1/tx.rpc.func.ts +31 -0
- package/src/ibc/lightclients/wasm/v1/tx.ts +621 -0
- package/src/ibc/lightclients/wasm/v1/wasm.ts +438 -0
- package/src/react-query.ts +185 -0
- package/src/registry.ts +218 -0
- package/src/tendermint/abci/types.ts +6283 -0
- package/src/tendermint/crypto/keys.ts +103 -0
- package/src/tendermint/crypto/proof.ts +555 -0
- package/src/tendermint/p2p/types.ts +507 -0
- package/src/tendermint/types/block.ts +131 -0
- package/src/tendermint/types/evidence.ts +476 -0
- package/src/tendermint/types/params.ts +814 -0
- package/src/tendermint/types/types.ts +2157 -0
- package/src/tendermint/types/validator.ts +389 -0
- package/src/tendermint/version/types.ts +219 -0
- package/src/types.ts +155 -0
- package/src/utf8.ts +148 -0
- package/src/varint.ts +488 -0
- package/src/xpla/reward/v1beta1/genesis.ts +92 -0
- package/src/xpla/reward/v1beta1/query.rpc.func.ts +25 -0
- package/src/xpla/reward/v1beta1/query.ts +333 -0
- package/src/xpla/reward/v1beta1/reward.ts +153 -0
- package/src/xpla/reward/v1beta1/tx.registry.ts +47 -0
- package/src/xpla/reward/v1beta1/tx.rpc.func.ts +22 -0
- package/src/xpla/reward/v1beta1/tx.ts +391 -0
- package/src/xpla/volunteer/v1beta1/genesis.ts +92 -0
- package/src/xpla/volunteer/v1beta1/proposal.ts +649 -0
- package/src/xpla/volunteer/v1beta1/query.rpc.func.ts +14 -0
- package/src/xpla/volunteer/v1beta1/query.ts +160 -0
- package/src/xpla/volunteer/v1beta1/tx.registry.ts +47 -0
- package/src/xpla/volunteer/v1beta1/tx.rpc.func.ts +22 -0
- package/src/xpla/volunteer/v1beta1/tx.ts +448 -0
- package/src/xpla/volunteer/v1beta1/volunteervalidator.ts +107 -0
- package/tsconfig.esm.json +10 -0
- package/tsconfig.json +10 -0
|
@@ -0,0 +1,698 @@
|
|
|
1
|
+
import { Coin, CoinAmino } from "../../base/v1beta1/coin";
|
|
2
|
+
import { Period, PeriodAmino } from "./vesting";
|
|
3
|
+
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
4
|
+
import { DeepPartial } from "../../../helpers";
|
|
5
|
+
import { GlobalDecoderRegistry } from "../../../registry";
|
|
6
|
+
/**
|
|
7
|
+
* MsgCreateVestingAccount defines a message that enables creating a vesting
|
|
8
|
+
* account.
|
|
9
|
+
*/
|
|
10
|
+
export interface MsgCreateVestingAccount {
|
|
11
|
+
fromAddress: string;
|
|
12
|
+
toAddress: string;
|
|
13
|
+
amount: Coin[];
|
|
14
|
+
/** end of vesting as unix time (in seconds). */
|
|
15
|
+
endTime: bigint;
|
|
16
|
+
delayed: boolean;
|
|
17
|
+
}
|
|
18
|
+
export interface MsgCreateVestingAccountProtoMsg {
|
|
19
|
+
typeUrl: "/cosmos.vesting.v1beta1.MsgCreateVestingAccount";
|
|
20
|
+
value: Uint8Array;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* MsgCreateVestingAccount defines a message that enables creating a vesting
|
|
24
|
+
* account.
|
|
25
|
+
*/
|
|
26
|
+
export interface MsgCreateVestingAccountAmino {
|
|
27
|
+
from_address: string;
|
|
28
|
+
to_address: string;
|
|
29
|
+
amount: CoinAmino[];
|
|
30
|
+
/** end of vesting as unix time (in seconds). */
|
|
31
|
+
end_time: string;
|
|
32
|
+
delayed: boolean;
|
|
33
|
+
}
|
|
34
|
+
export interface MsgCreateVestingAccountAminoMsg {
|
|
35
|
+
type: "cosmos-sdk/MsgCreateVestingAccount";
|
|
36
|
+
value: MsgCreateVestingAccountAmino;
|
|
37
|
+
}
|
|
38
|
+
/** MsgCreateVestingAccountResponse defines the Msg/CreateVestingAccount response type. */
|
|
39
|
+
export interface MsgCreateVestingAccountResponse {}
|
|
40
|
+
export interface MsgCreateVestingAccountResponseProtoMsg {
|
|
41
|
+
typeUrl: "/cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse";
|
|
42
|
+
value: Uint8Array;
|
|
43
|
+
}
|
|
44
|
+
/** MsgCreateVestingAccountResponse defines the Msg/CreateVestingAccount response type. */
|
|
45
|
+
export interface MsgCreateVestingAccountResponseAmino {}
|
|
46
|
+
export interface MsgCreateVestingAccountResponseAminoMsg {
|
|
47
|
+
type: "cosmos-sdk/MsgCreateVestingAccountResponse";
|
|
48
|
+
value: MsgCreateVestingAccountResponseAmino;
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* MsgCreatePermanentLockedAccount defines a message that enables creating a permanent
|
|
52
|
+
* locked account.
|
|
53
|
+
*
|
|
54
|
+
* Since: cosmos-sdk 0.46
|
|
55
|
+
*/
|
|
56
|
+
export interface MsgCreatePermanentLockedAccount {
|
|
57
|
+
fromAddress: string;
|
|
58
|
+
toAddress: string;
|
|
59
|
+
amount: Coin[];
|
|
60
|
+
}
|
|
61
|
+
export interface MsgCreatePermanentLockedAccountProtoMsg {
|
|
62
|
+
typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccount";
|
|
63
|
+
value: Uint8Array;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* MsgCreatePermanentLockedAccount defines a message that enables creating a permanent
|
|
67
|
+
* locked account.
|
|
68
|
+
*
|
|
69
|
+
* Since: cosmos-sdk 0.46
|
|
70
|
+
*/
|
|
71
|
+
export interface MsgCreatePermanentLockedAccountAmino {
|
|
72
|
+
from_address: string;
|
|
73
|
+
to_address: string;
|
|
74
|
+
amount: CoinAmino[];
|
|
75
|
+
}
|
|
76
|
+
export interface MsgCreatePermanentLockedAccountAminoMsg {
|
|
77
|
+
type: "cosmos-sdk/MsgCreatePermLockedAccount";
|
|
78
|
+
value: MsgCreatePermanentLockedAccountAmino;
|
|
79
|
+
}
|
|
80
|
+
/**
|
|
81
|
+
* MsgCreatePermanentLockedAccountResponse defines the Msg/CreatePermanentLockedAccount response type.
|
|
82
|
+
*
|
|
83
|
+
* Since: cosmos-sdk 0.46
|
|
84
|
+
*/
|
|
85
|
+
export interface MsgCreatePermanentLockedAccountResponse {}
|
|
86
|
+
export interface MsgCreatePermanentLockedAccountResponseProtoMsg {
|
|
87
|
+
typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccountResponse";
|
|
88
|
+
value: Uint8Array;
|
|
89
|
+
}
|
|
90
|
+
/**
|
|
91
|
+
* MsgCreatePermanentLockedAccountResponse defines the Msg/CreatePermanentLockedAccount response type.
|
|
92
|
+
*
|
|
93
|
+
* Since: cosmos-sdk 0.46
|
|
94
|
+
*/
|
|
95
|
+
export interface MsgCreatePermanentLockedAccountResponseAmino {}
|
|
96
|
+
export interface MsgCreatePermanentLockedAccountResponseAminoMsg {
|
|
97
|
+
type: "cosmos-sdk/MsgCreatePermanentLockedAccountResponse";
|
|
98
|
+
value: MsgCreatePermanentLockedAccountResponseAmino;
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* MsgCreateVestingAccount defines a message that enables creating a vesting
|
|
102
|
+
* account.
|
|
103
|
+
*
|
|
104
|
+
* Since: cosmos-sdk 0.46
|
|
105
|
+
*/
|
|
106
|
+
export interface MsgCreatePeriodicVestingAccount {
|
|
107
|
+
fromAddress: string;
|
|
108
|
+
toAddress: string;
|
|
109
|
+
/** start of vesting as unix time (in seconds). */
|
|
110
|
+
startTime: bigint;
|
|
111
|
+
vestingPeriods: Period[];
|
|
112
|
+
}
|
|
113
|
+
export interface MsgCreatePeriodicVestingAccountProtoMsg {
|
|
114
|
+
typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccount";
|
|
115
|
+
value: Uint8Array;
|
|
116
|
+
}
|
|
117
|
+
/**
|
|
118
|
+
* MsgCreateVestingAccount defines a message that enables creating a vesting
|
|
119
|
+
* account.
|
|
120
|
+
*
|
|
121
|
+
* Since: cosmos-sdk 0.46
|
|
122
|
+
*/
|
|
123
|
+
export interface MsgCreatePeriodicVestingAccountAmino {
|
|
124
|
+
from_address: string;
|
|
125
|
+
to_address: string;
|
|
126
|
+
/** start of vesting as unix time (in seconds). */
|
|
127
|
+
start_time: string;
|
|
128
|
+
vesting_periods: PeriodAmino[];
|
|
129
|
+
}
|
|
130
|
+
export interface MsgCreatePeriodicVestingAccountAminoMsg {
|
|
131
|
+
type: "cosmos-sdk/MsgCreatePeriodVestAccount";
|
|
132
|
+
value: MsgCreatePeriodicVestingAccountAmino;
|
|
133
|
+
}
|
|
134
|
+
/**
|
|
135
|
+
* MsgCreateVestingAccountResponse defines the Msg/CreatePeriodicVestingAccount
|
|
136
|
+
* response type.
|
|
137
|
+
*
|
|
138
|
+
* Since: cosmos-sdk 0.46
|
|
139
|
+
*/
|
|
140
|
+
export interface MsgCreatePeriodicVestingAccountResponse {}
|
|
141
|
+
export interface MsgCreatePeriodicVestingAccountResponseProtoMsg {
|
|
142
|
+
typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccountResponse";
|
|
143
|
+
value: Uint8Array;
|
|
144
|
+
}
|
|
145
|
+
/**
|
|
146
|
+
* MsgCreateVestingAccountResponse defines the Msg/CreatePeriodicVestingAccount
|
|
147
|
+
* response type.
|
|
148
|
+
*
|
|
149
|
+
* Since: cosmos-sdk 0.46
|
|
150
|
+
*/
|
|
151
|
+
export interface MsgCreatePeriodicVestingAccountResponseAmino {}
|
|
152
|
+
export interface MsgCreatePeriodicVestingAccountResponseAminoMsg {
|
|
153
|
+
type: "cosmos-sdk/MsgCreatePeriodicVestingAccountResponse";
|
|
154
|
+
value: MsgCreatePeriodicVestingAccountResponseAmino;
|
|
155
|
+
}
|
|
156
|
+
function createBaseMsgCreateVestingAccount(): MsgCreateVestingAccount {
|
|
157
|
+
return {
|
|
158
|
+
fromAddress: "",
|
|
159
|
+
toAddress: "",
|
|
160
|
+
amount: [],
|
|
161
|
+
endTime: BigInt(0),
|
|
162
|
+
delayed: false
|
|
163
|
+
};
|
|
164
|
+
}
|
|
165
|
+
export const MsgCreateVestingAccount = {
|
|
166
|
+
typeUrl: "/cosmos.vesting.v1beta1.MsgCreateVestingAccount",
|
|
167
|
+
aminoType: "cosmos-sdk/MsgCreateVestingAccount",
|
|
168
|
+
is(o: any): o is MsgCreateVestingAccount {
|
|
169
|
+
return o && (o.$typeUrl === MsgCreateVestingAccount.typeUrl || typeof o.fromAddress === "string" && typeof o.toAddress === "string" && Array.isArray(o.amount) && (!o.amount.length || Coin.is(o.amount[0])) && typeof o.endTime === "bigint" && typeof o.delayed === "boolean");
|
|
170
|
+
},
|
|
171
|
+
isAmino(o: any): o is MsgCreateVestingAccountAmino {
|
|
172
|
+
return o && (o.$typeUrl === MsgCreateVestingAccount.typeUrl || typeof o.from_address === "string" && typeof o.to_address === "string" && Array.isArray(o.amount) && (!o.amount.length || Coin.isAmino(o.amount[0])) && typeof o.end_time === "bigint" && typeof o.delayed === "boolean");
|
|
173
|
+
},
|
|
174
|
+
encode(message: MsgCreateVestingAccount, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
175
|
+
if (message.fromAddress !== "") {
|
|
176
|
+
writer.uint32(10).string(message.fromAddress);
|
|
177
|
+
}
|
|
178
|
+
if (message.toAddress !== "") {
|
|
179
|
+
writer.uint32(18).string(message.toAddress);
|
|
180
|
+
}
|
|
181
|
+
for (const v of message.amount) {
|
|
182
|
+
Coin.encode(v!, writer.uint32(26).fork()).ldelim();
|
|
183
|
+
}
|
|
184
|
+
if (message.endTime !== BigInt(0)) {
|
|
185
|
+
writer.uint32(32).int64(message.endTime);
|
|
186
|
+
}
|
|
187
|
+
if (message.delayed === true) {
|
|
188
|
+
writer.uint32(40).bool(message.delayed);
|
|
189
|
+
}
|
|
190
|
+
return writer;
|
|
191
|
+
},
|
|
192
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateVestingAccount {
|
|
193
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
194
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
195
|
+
const message = createBaseMsgCreateVestingAccount();
|
|
196
|
+
while (reader.pos < end) {
|
|
197
|
+
const tag = reader.uint32();
|
|
198
|
+
switch (tag >>> 3) {
|
|
199
|
+
case 1:
|
|
200
|
+
message.fromAddress = reader.string();
|
|
201
|
+
break;
|
|
202
|
+
case 2:
|
|
203
|
+
message.toAddress = reader.string();
|
|
204
|
+
break;
|
|
205
|
+
case 3:
|
|
206
|
+
message.amount.push(Coin.decode(reader, reader.uint32()));
|
|
207
|
+
break;
|
|
208
|
+
case 4:
|
|
209
|
+
message.endTime = reader.int64();
|
|
210
|
+
break;
|
|
211
|
+
case 5:
|
|
212
|
+
message.delayed = reader.bool();
|
|
213
|
+
break;
|
|
214
|
+
default:
|
|
215
|
+
reader.skipType(tag & 7);
|
|
216
|
+
break;
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
return message;
|
|
220
|
+
},
|
|
221
|
+
fromPartial(object: DeepPartial<MsgCreateVestingAccount>): MsgCreateVestingAccount {
|
|
222
|
+
const message = createBaseMsgCreateVestingAccount();
|
|
223
|
+
message.fromAddress = object.fromAddress ?? "";
|
|
224
|
+
message.toAddress = object.toAddress ?? "";
|
|
225
|
+
message.amount = object.amount?.map(e => Coin.fromPartial(e)) || [];
|
|
226
|
+
message.endTime = object.endTime !== undefined && object.endTime !== null ? BigInt(object.endTime.toString()) : BigInt(0);
|
|
227
|
+
message.delayed = object.delayed ?? false;
|
|
228
|
+
return message;
|
|
229
|
+
},
|
|
230
|
+
fromAmino(object: MsgCreateVestingAccountAmino): MsgCreateVestingAccount {
|
|
231
|
+
const message = createBaseMsgCreateVestingAccount();
|
|
232
|
+
if (object.from_address !== undefined && object.from_address !== null) {
|
|
233
|
+
message.fromAddress = object.from_address;
|
|
234
|
+
}
|
|
235
|
+
if (object.to_address !== undefined && object.to_address !== null) {
|
|
236
|
+
message.toAddress = object.to_address;
|
|
237
|
+
}
|
|
238
|
+
message.amount = object.amount?.map(e => Coin.fromAmino(e)) || [];
|
|
239
|
+
if (object.end_time !== undefined && object.end_time !== null) {
|
|
240
|
+
message.endTime = BigInt(object.end_time);
|
|
241
|
+
}
|
|
242
|
+
if (object.delayed !== undefined && object.delayed !== null) {
|
|
243
|
+
message.delayed = object.delayed;
|
|
244
|
+
}
|
|
245
|
+
return message;
|
|
246
|
+
},
|
|
247
|
+
toAmino(message: MsgCreateVestingAccount): MsgCreateVestingAccountAmino {
|
|
248
|
+
const obj: any = {};
|
|
249
|
+
obj.from_address = message.fromAddress === "" ? undefined : message.fromAddress;
|
|
250
|
+
obj.to_address = message.toAddress === "" ? undefined : message.toAddress;
|
|
251
|
+
if (message.amount) {
|
|
252
|
+
obj.amount = message.amount.map(e => e ? Coin.toAmino(e) : undefined);
|
|
253
|
+
} else {
|
|
254
|
+
obj.amount = message.amount;
|
|
255
|
+
}
|
|
256
|
+
obj.end_time = message.endTime !== BigInt(0) ? message.endTime?.toString() : undefined;
|
|
257
|
+
obj.delayed = message.delayed === false ? undefined : message.delayed;
|
|
258
|
+
return obj;
|
|
259
|
+
},
|
|
260
|
+
fromAminoMsg(object: MsgCreateVestingAccountAminoMsg): MsgCreateVestingAccount {
|
|
261
|
+
return MsgCreateVestingAccount.fromAmino(object.value);
|
|
262
|
+
},
|
|
263
|
+
toAminoMsg(message: MsgCreateVestingAccount): MsgCreateVestingAccountAminoMsg {
|
|
264
|
+
return {
|
|
265
|
+
type: "cosmos-sdk/MsgCreateVestingAccount",
|
|
266
|
+
value: MsgCreateVestingAccount.toAmino(message)
|
|
267
|
+
};
|
|
268
|
+
},
|
|
269
|
+
fromProtoMsg(message: MsgCreateVestingAccountProtoMsg): MsgCreateVestingAccount {
|
|
270
|
+
return MsgCreateVestingAccount.decode(message.value);
|
|
271
|
+
},
|
|
272
|
+
toProto(message: MsgCreateVestingAccount): Uint8Array {
|
|
273
|
+
return MsgCreateVestingAccount.encode(message).finish();
|
|
274
|
+
},
|
|
275
|
+
toProtoMsg(message: MsgCreateVestingAccount): MsgCreateVestingAccountProtoMsg {
|
|
276
|
+
return {
|
|
277
|
+
typeUrl: "/cosmos.vesting.v1beta1.MsgCreateVestingAccount",
|
|
278
|
+
value: MsgCreateVestingAccount.encode(message).finish()
|
|
279
|
+
};
|
|
280
|
+
}
|
|
281
|
+
};
|
|
282
|
+
GlobalDecoderRegistry.register(MsgCreateVestingAccount.typeUrl, MsgCreateVestingAccount);
|
|
283
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(MsgCreateVestingAccount.aminoType, MsgCreateVestingAccount.typeUrl);
|
|
284
|
+
function createBaseMsgCreateVestingAccountResponse(): MsgCreateVestingAccountResponse {
|
|
285
|
+
return {};
|
|
286
|
+
}
|
|
287
|
+
export const MsgCreateVestingAccountResponse = {
|
|
288
|
+
typeUrl: "/cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse",
|
|
289
|
+
aminoType: "cosmos-sdk/MsgCreateVestingAccountResponse",
|
|
290
|
+
is(o: any): o is MsgCreateVestingAccountResponse {
|
|
291
|
+
return o && o.$typeUrl === MsgCreateVestingAccountResponse.typeUrl;
|
|
292
|
+
},
|
|
293
|
+
isAmino(o: any): o is MsgCreateVestingAccountResponseAmino {
|
|
294
|
+
return o && o.$typeUrl === MsgCreateVestingAccountResponse.typeUrl;
|
|
295
|
+
},
|
|
296
|
+
encode(_: MsgCreateVestingAccountResponse, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
297
|
+
return writer;
|
|
298
|
+
},
|
|
299
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateVestingAccountResponse {
|
|
300
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
301
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
302
|
+
const message = createBaseMsgCreateVestingAccountResponse();
|
|
303
|
+
while (reader.pos < end) {
|
|
304
|
+
const tag = reader.uint32();
|
|
305
|
+
switch (tag >>> 3) {
|
|
306
|
+
default:
|
|
307
|
+
reader.skipType(tag & 7);
|
|
308
|
+
break;
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
return message;
|
|
312
|
+
},
|
|
313
|
+
fromPartial(_: DeepPartial<MsgCreateVestingAccountResponse>): MsgCreateVestingAccountResponse {
|
|
314
|
+
const message = createBaseMsgCreateVestingAccountResponse();
|
|
315
|
+
return message;
|
|
316
|
+
},
|
|
317
|
+
fromAmino(_: MsgCreateVestingAccountResponseAmino): MsgCreateVestingAccountResponse {
|
|
318
|
+
const message = createBaseMsgCreateVestingAccountResponse();
|
|
319
|
+
return message;
|
|
320
|
+
},
|
|
321
|
+
toAmino(_: MsgCreateVestingAccountResponse): MsgCreateVestingAccountResponseAmino {
|
|
322
|
+
const obj: any = {};
|
|
323
|
+
return obj;
|
|
324
|
+
},
|
|
325
|
+
fromAminoMsg(object: MsgCreateVestingAccountResponseAminoMsg): MsgCreateVestingAccountResponse {
|
|
326
|
+
return MsgCreateVestingAccountResponse.fromAmino(object.value);
|
|
327
|
+
},
|
|
328
|
+
toAminoMsg(message: MsgCreateVestingAccountResponse): MsgCreateVestingAccountResponseAminoMsg {
|
|
329
|
+
return {
|
|
330
|
+
type: "cosmos-sdk/MsgCreateVestingAccountResponse",
|
|
331
|
+
value: MsgCreateVestingAccountResponse.toAmino(message)
|
|
332
|
+
};
|
|
333
|
+
},
|
|
334
|
+
fromProtoMsg(message: MsgCreateVestingAccountResponseProtoMsg): MsgCreateVestingAccountResponse {
|
|
335
|
+
return MsgCreateVestingAccountResponse.decode(message.value);
|
|
336
|
+
},
|
|
337
|
+
toProto(message: MsgCreateVestingAccountResponse): Uint8Array {
|
|
338
|
+
return MsgCreateVestingAccountResponse.encode(message).finish();
|
|
339
|
+
},
|
|
340
|
+
toProtoMsg(message: MsgCreateVestingAccountResponse): MsgCreateVestingAccountResponseProtoMsg {
|
|
341
|
+
return {
|
|
342
|
+
typeUrl: "/cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse",
|
|
343
|
+
value: MsgCreateVestingAccountResponse.encode(message).finish()
|
|
344
|
+
};
|
|
345
|
+
}
|
|
346
|
+
};
|
|
347
|
+
GlobalDecoderRegistry.register(MsgCreateVestingAccountResponse.typeUrl, MsgCreateVestingAccountResponse);
|
|
348
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(MsgCreateVestingAccountResponse.aminoType, MsgCreateVestingAccountResponse.typeUrl);
|
|
349
|
+
function createBaseMsgCreatePermanentLockedAccount(): MsgCreatePermanentLockedAccount {
|
|
350
|
+
return {
|
|
351
|
+
fromAddress: "",
|
|
352
|
+
toAddress: "",
|
|
353
|
+
amount: []
|
|
354
|
+
};
|
|
355
|
+
}
|
|
356
|
+
export const MsgCreatePermanentLockedAccount = {
|
|
357
|
+
typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccount",
|
|
358
|
+
aminoType: "cosmos-sdk/MsgCreatePermLockedAccount",
|
|
359
|
+
is(o: any): o is MsgCreatePermanentLockedAccount {
|
|
360
|
+
return o && (o.$typeUrl === MsgCreatePermanentLockedAccount.typeUrl || typeof o.fromAddress === "string" && typeof o.toAddress === "string" && Array.isArray(o.amount) && (!o.amount.length || Coin.is(o.amount[0])));
|
|
361
|
+
},
|
|
362
|
+
isAmino(o: any): o is MsgCreatePermanentLockedAccountAmino {
|
|
363
|
+
return o && (o.$typeUrl === MsgCreatePermanentLockedAccount.typeUrl || typeof o.from_address === "string" && typeof o.to_address === "string" && Array.isArray(o.amount) && (!o.amount.length || Coin.isAmino(o.amount[0])));
|
|
364
|
+
},
|
|
365
|
+
encode(message: MsgCreatePermanentLockedAccount, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
366
|
+
if (message.fromAddress !== "") {
|
|
367
|
+
writer.uint32(10).string(message.fromAddress);
|
|
368
|
+
}
|
|
369
|
+
if (message.toAddress !== "") {
|
|
370
|
+
writer.uint32(18).string(message.toAddress);
|
|
371
|
+
}
|
|
372
|
+
for (const v of message.amount) {
|
|
373
|
+
Coin.encode(v!, writer.uint32(26).fork()).ldelim();
|
|
374
|
+
}
|
|
375
|
+
return writer;
|
|
376
|
+
},
|
|
377
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreatePermanentLockedAccount {
|
|
378
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
379
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
380
|
+
const message = createBaseMsgCreatePermanentLockedAccount();
|
|
381
|
+
while (reader.pos < end) {
|
|
382
|
+
const tag = reader.uint32();
|
|
383
|
+
switch (tag >>> 3) {
|
|
384
|
+
case 1:
|
|
385
|
+
message.fromAddress = reader.string();
|
|
386
|
+
break;
|
|
387
|
+
case 2:
|
|
388
|
+
message.toAddress = reader.string();
|
|
389
|
+
break;
|
|
390
|
+
case 3:
|
|
391
|
+
message.amount.push(Coin.decode(reader, reader.uint32()));
|
|
392
|
+
break;
|
|
393
|
+
default:
|
|
394
|
+
reader.skipType(tag & 7);
|
|
395
|
+
break;
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
return message;
|
|
399
|
+
},
|
|
400
|
+
fromPartial(object: DeepPartial<MsgCreatePermanentLockedAccount>): MsgCreatePermanentLockedAccount {
|
|
401
|
+
const message = createBaseMsgCreatePermanentLockedAccount();
|
|
402
|
+
message.fromAddress = object.fromAddress ?? "";
|
|
403
|
+
message.toAddress = object.toAddress ?? "";
|
|
404
|
+
message.amount = object.amount?.map(e => Coin.fromPartial(e)) || [];
|
|
405
|
+
return message;
|
|
406
|
+
},
|
|
407
|
+
fromAmino(object: MsgCreatePermanentLockedAccountAmino): MsgCreatePermanentLockedAccount {
|
|
408
|
+
const message = createBaseMsgCreatePermanentLockedAccount();
|
|
409
|
+
if (object.from_address !== undefined && object.from_address !== null) {
|
|
410
|
+
message.fromAddress = object.from_address;
|
|
411
|
+
}
|
|
412
|
+
if (object.to_address !== undefined && object.to_address !== null) {
|
|
413
|
+
message.toAddress = object.to_address;
|
|
414
|
+
}
|
|
415
|
+
message.amount = object.amount?.map(e => Coin.fromAmino(e)) || [];
|
|
416
|
+
return message;
|
|
417
|
+
},
|
|
418
|
+
toAmino(message: MsgCreatePermanentLockedAccount): MsgCreatePermanentLockedAccountAmino {
|
|
419
|
+
const obj: any = {};
|
|
420
|
+
obj.from_address = message.fromAddress === "" ? undefined : message.fromAddress;
|
|
421
|
+
obj.to_address = message.toAddress === "" ? undefined : message.toAddress;
|
|
422
|
+
if (message.amount) {
|
|
423
|
+
obj.amount = message.amount.map(e => e ? Coin.toAmino(e) : undefined);
|
|
424
|
+
} else {
|
|
425
|
+
obj.amount = message.amount;
|
|
426
|
+
}
|
|
427
|
+
return obj;
|
|
428
|
+
},
|
|
429
|
+
fromAminoMsg(object: MsgCreatePermanentLockedAccountAminoMsg): MsgCreatePermanentLockedAccount {
|
|
430
|
+
return MsgCreatePermanentLockedAccount.fromAmino(object.value);
|
|
431
|
+
},
|
|
432
|
+
toAminoMsg(message: MsgCreatePermanentLockedAccount): MsgCreatePermanentLockedAccountAminoMsg {
|
|
433
|
+
return {
|
|
434
|
+
type: "cosmos-sdk/MsgCreatePermLockedAccount",
|
|
435
|
+
value: MsgCreatePermanentLockedAccount.toAmino(message)
|
|
436
|
+
};
|
|
437
|
+
},
|
|
438
|
+
fromProtoMsg(message: MsgCreatePermanentLockedAccountProtoMsg): MsgCreatePermanentLockedAccount {
|
|
439
|
+
return MsgCreatePermanentLockedAccount.decode(message.value);
|
|
440
|
+
},
|
|
441
|
+
toProto(message: MsgCreatePermanentLockedAccount): Uint8Array {
|
|
442
|
+
return MsgCreatePermanentLockedAccount.encode(message).finish();
|
|
443
|
+
},
|
|
444
|
+
toProtoMsg(message: MsgCreatePermanentLockedAccount): MsgCreatePermanentLockedAccountProtoMsg {
|
|
445
|
+
return {
|
|
446
|
+
typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccount",
|
|
447
|
+
value: MsgCreatePermanentLockedAccount.encode(message).finish()
|
|
448
|
+
};
|
|
449
|
+
}
|
|
450
|
+
};
|
|
451
|
+
GlobalDecoderRegistry.register(MsgCreatePermanentLockedAccount.typeUrl, MsgCreatePermanentLockedAccount);
|
|
452
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(MsgCreatePermanentLockedAccount.aminoType, MsgCreatePermanentLockedAccount.typeUrl);
|
|
453
|
+
function createBaseMsgCreatePermanentLockedAccountResponse(): MsgCreatePermanentLockedAccountResponse {
|
|
454
|
+
return {};
|
|
455
|
+
}
|
|
456
|
+
export const MsgCreatePermanentLockedAccountResponse = {
|
|
457
|
+
typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccountResponse",
|
|
458
|
+
aminoType: "cosmos-sdk/MsgCreatePermanentLockedAccountResponse",
|
|
459
|
+
is(o: any): o is MsgCreatePermanentLockedAccountResponse {
|
|
460
|
+
return o && o.$typeUrl === MsgCreatePermanentLockedAccountResponse.typeUrl;
|
|
461
|
+
},
|
|
462
|
+
isAmino(o: any): o is MsgCreatePermanentLockedAccountResponseAmino {
|
|
463
|
+
return o && o.$typeUrl === MsgCreatePermanentLockedAccountResponse.typeUrl;
|
|
464
|
+
},
|
|
465
|
+
encode(_: MsgCreatePermanentLockedAccountResponse, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
466
|
+
return writer;
|
|
467
|
+
},
|
|
468
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreatePermanentLockedAccountResponse {
|
|
469
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
470
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
471
|
+
const message = createBaseMsgCreatePermanentLockedAccountResponse();
|
|
472
|
+
while (reader.pos < end) {
|
|
473
|
+
const tag = reader.uint32();
|
|
474
|
+
switch (tag >>> 3) {
|
|
475
|
+
default:
|
|
476
|
+
reader.skipType(tag & 7);
|
|
477
|
+
break;
|
|
478
|
+
}
|
|
479
|
+
}
|
|
480
|
+
return message;
|
|
481
|
+
},
|
|
482
|
+
fromPartial(_: DeepPartial<MsgCreatePermanentLockedAccountResponse>): MsgCreatePermanentLockedAccountResponse {
|
|
483
|
+
const message = createBaseMsgCreatePermanentLockedAccountResponse();
|
|
484
|
+
return message;
|
|
485
|
+
},
|
|
486
|
+
fromAmino(_: MsgCreatePermanentLockedAccountResponseAmino): MsgCreatePermanentLockedAccountResponse {
|
|
487
|
+
const message = createBaseMsgCreatePermanentLockedAccountResponse();
|
|
488
|
+
return message;
|
|
489
|
+
},
|
|
490
|
+
toAmino(_: MsgCreatePermanentLockedAccountResponse): MsgCreatePermanentLockedAccountResponseAmino {
|
|
491
|
+
const obj: any = {};
|
|
492
|
+
return obj;
|
|
493
|
+
},
|
|
494
|
+
fromAminoMsg(object: MsgCreatePermanentLockedAccountResponseAminoMsg): MsgCreatePermanentLockedAccountResponse {
|
|
495
|
+
return MsgCreatePermanentLockedAccountResponse.fromAmino(object.value);
|
|
496
|
+
},
|
|
497
|
+
toAminoMsg(message: MsgCreatePermanentLockedAccountResponse): MsgCreatePermanentLockedAccountResponseAminoMsg {
|
|
498
|
+
return {
|
|
499
|
+
type: "cosmos-sdk/MsgCreatePermanentLockedAccountResponse",
|
|
500
|
+
value: MsgCreatePermanentLockedAccountResponse.toAmino(message)
|
|
501
|
+
};
|
|
502
|
+
},
|
|
503
|
+
fromProtoMsg(message: MsgCreatePermanentLockedAccountResponseProtoMsg): MsgCreatePermanentLockedAccountResponse {
|
|
504
|
+
return MsgCreatePermanentLockedAccountResponse.decode(message.value);
|
|
505
|
+
},
|
|
506
|
+
toProto(message: MsgCreatePermanentLockedAccountResponse): Uint8Array {
|
|
507
|
+
return MsgCreatePermanentLockedAccountResponse.encode(message).finish();
|
|
508
|
+
},
|
|
509
|
+
toProtoMsg(message: MsgCreatePermanentLockedAccountResponse): MsgCreatePermanentLockedAccountResponseProtoMsg {
|
|
510
|
+
return {
|
|
511
|
+
typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccountResponse",
|
|
512
|
+
value: MsgCreatePermanentLockedAccountResponse.encode(message).finish()
|
|
513
|
+
};
|
|
514
|
+
}
|
|
515
|
+
};
|
|
516
|
+
GlobalDecoderRegistry.register(MsgCreatePermanentLockedAccountResponse.typeUrl, MsgCreatePermanentLockedAccountResponse);
|
|
517
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(MsgCreatePermanentLockedAccountResponse.aminoType, MsgCreatePermanentLockedAccountResponse.typeUrl);
|
|
518
|
+
function createBaseMsgCreatePeriodicVestingAccount(): MsgCreatePeriodicVestingAccount {
|
|
519
|
+
return {
|
|
520
|
+
fromAddress: "",
|
|
521
|
+
toAddress: "",
|
|
522
|
+
startTime: BigInt(0),
|
|
523
|
+
vestingPeriods: []
|
|
524
|
+
};
|
|
525
|
+
}
|
|
526
|
+
export const MsgCreatePeriodicVestingAccount = {
|
|
527
|
+
typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccount",
|
|
528
|
+
aminoType: "cosmos-sdk/MsgCreatePeriodVestAccount",
|
|
529
|
+
is(o: any): o is MsgCreatePeriodicVestingAccount {
|
|
530
|
+
return o && (o.$typeUrl === MsgCreatePeriodicVestingAccount.typeUrl || typeof o.fromAddress === "string" && typeof o.toAddress === "string" && typeof o.startTime === "bigint" && Array.isArray(o.vestingPeriods) && (!o.vestingPeriods.length || Period.is(o.vestingPeriods[0])));
|
|
531
|
+
},
|
|
532
|
+
isAmino(o: any): o is MsgCreatePeriodicVestingAccountAmino {
|
|
533
|
+
return o && (o.$typeUrl === MsgCreatePeriodicVestingAccount.typeUrl || typeof o.from_address === "string" && typeof o.to_address === "string" && typeof o.start_time === "bigint" && Array.isArray(o.vesting_periods) && (!o.vesting_periods.length || Period.isAmino(o.vesting_periods[0])));
|
|
534
|
+
},
|
|
535
|
+
encode(message: MsgCreatePeriodicVestingAccount, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
536
|
+
if (message.fromAddress !== "") {
|
|
537
|
+
writer.uint32(10).string(message.fromAddress);
|
|
538
|
+
}
|
|
539
|
+
if (message.toAddress !== "") {
|
|
540
|
+
writer.uint32(18).string(message.toAddress);
|
|
541
|
+
}
|
|
542
|
+
if (message.startTime !== BigInt(0)) {
|
|
543
|
+
writer.uint32(24).int64(message.startTime);
|
|
544
|
+
}
|
|
545
|
+
for (const v of message.vestingPeriods) {
|
|
546
|
+
Period.encode(v!, writer.uint32(34).fork()).ldelim();
|
|
547
|
+
}
|
|
548
|
+
return writer;
|
|
549
|
+
},
|
|
550
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreatePeriodicVestingAccount {
|
|
551
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
552
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
553
|
+
const message = createBaseMsgCreatePeriodicVestingAccount();
|
|
554
|
+
while (reader.pos < end) {
|
|
555
|
+
const tag = reader.uint32();
|
|
556
|
+
switch (tag >>> 3) {
|
|
557
|
+
case 1:
|
|
558
|
+
message.fromAddress = reader.string();
|
|
559
|
+
break;
|
|
560
|
+
case 2:
|
|
561
|
+
message.toAddress = reader.string();
|
|
562
|
+
break;
|
|
563
|
+
case 3:
|
|
564
|
+
message.startTime = reader.int64();
|
|
565
|
+
break;
|
|
566
|
+
case 4:
|
|
567
|
+
message.vestingPeriods.push(Period.decode(reader, reader.uint32()));
|
|
568
|
+
break;
|
|
569
|
+
default:
|
|
570
|
+
reader.skipType(tag & 7);
|
|
571
|
+
break;
|
|
572
|
+
}
|
|
573
|
+
}
|
|
574
|
+
return message;
|
|
575
|
+
},
|
|
576
|
+
fromPartial(object: DeepPartial<MsgCreatePeriodicVestingAccount>): MsgCreatePeriodicVestingAccount {
|
|
577
|
+
const message = createBaseMsgCreatePeriodicVestingAccount();
|
|
578
|
+
message.fromAddress = object.fromAddress ?? "";
|
|
579
|
+
message.toAddress = object.toAddress ?? "";
|
|
580
|
+
message.startTime = object.startTime !== undefined && object.startTime !== null ? BigInt(object.startTime.toString()) : BigInt(0);
|
|
581
|
+
message.vestingPeriods = object.vestingPeriods?.map(e => Period.fromPartial(e)) || [];
|
|
582
|
+
return message;
|
|
583
|
+
},
|
|
584
|
+
fromAmino(object: MsgCreatePeriodicVestingAccountAmino): MsgCreatePeriodicVestingAccount {
|
|
585
|
+
const message = createBaseMsgCreatePeriodicVestingAccount();
|
|
586
|
+
if (object.from_address !== undefined && object.from_address !== null) {
|
|
587
|
+
message.fromAddress = object.from_address;
|
|
588
|
+
}
|
|
589
|
+
if (object.to_address !== undefined && object.to_address !== null) {
|
|
590
|
+
message.toAddress = object.to_address;
|
|
591
|
+
}
|
|
592
|
+
if (object.start_time !== undefined && object.start_time !== null) {
|
|
593
|
+
message.startTime = BigInt(object.start_time);
|
|
594
|
+
}
|
|
595
|
+
message.vestingPeriods = object.vesting_periods?.map(e => Period.fromAmino(e)) || [];
|
|
596
|
+
return message;
|
|
597
|
+
},
|
|
598
|
+
toAmino(message: MsgCreatePeriodicVestingAccount): MsgCreatePeriodicVestingAccountAmino {
|
|
599
|
+
const obj: any = {};
|
|
600
|
+
obj.from_address = message.fromAddress === "" ? undefined : message.fromAddress;
|
|
601
|
+
obj.to_address = message.toAddress === "" ? undefined : message.toAddress;
|
|
602
|
+
obj.start_time = message.startTime !== BigInt(0) ? message.startTime?.toString() : undefined;
|
|
603
|
+
if (message.vestingPeriods) {
|
|
604
|
+
obj.vesting_periods = message.vestingPeriods.map(e => e ? Period.toAmino(e) : undefined);
|
|
605
|
+
} else {
|
|
606
|
+
obj.vesting_periods = message.vestingPeriods;
|
|
607
|
+
}
|
|
608
|
+
return obj;
|
|
609
|
+
},
|
|
610
|
+
fromAminoMsg(object: MsgCreatePeriodicVestingAccountAminoMsg): MsgCreatePeriodicVestingAccount {
|
|
611
|
+
return MsgCreatePeriodicVestingAccount.fromAmino(object.value);
|
|
612
|
+
},
|
|
613
|
+
toAminoMsg(message: MsgCreatePeriodicVestingAccount): MsgCreatePeriodicVestingAccountAminoMsg {
|
|
614
|
+
return {
|
|
615
|
+
type: "cosmos-sdk/MsgCreatePeriodVestAccount",
|
|
616
|
+
value: MsgCreatePeriodicVestingAccount.toAmino(message)
|
|
617
|
+
};
|
|
618
|
+
},
|
|
619
|
+
fromProtoMsg(message: MsgCreatePeriodicVestingAccountProtoMsg): MsgCreatePeriodicVestingAccount {
|
|
620
|
+
return MsgCreatePeriodicVestingAccount.decode(message.value);
|
|
621
|
+
},
|
|
622
|
+
toProto(message: MsgCreatePeriodicVestingAccount): Uint8Array {
|
|
623
|
+
return MsgCreatePeriodicVestingAccount.encode(message).finish();
|
|
624
|
+
},
|
|
625
|
+
toProtoMsg(message: MsgCreatePeriodicVestingAccount): MsgCreatePeriodicVestingAccountProtoMsg {
|
|
626
|
+
return {
|
|
627
|
+
typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccount",
|
|
628
|
+
value: MsgCreatePeriodicVestingAccount.encode(message).finish()
|
|
629
|
+
};
|
|
630
|
+
}
|
|
631
|
+
};
|
|
632
|
+
GlobalDecoderRegistry.register(MsgCreatePeriodicVestingAccount.typeUrl, MsgCreatePeriodicVestingAccount);
|
|
633
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(MsgCreatePeriodicVestingAccount.aminoType, MsgCreatePeriodicVestingAccount.typeUrl);
|
|
634
|
+
function createBaseMsgCreatePeriodicVestingAccountResponse(): MsgCreatePeriodicVestingAccountResponse {
|
|
635
|
+
return {};
|
|
636
|
+
}
|
|
637
|
+
export const MsgCreatePeriodicVestingAccountResponse = {
|
|
638
|
+
typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccountResponse",
|
|
639
|
+
aminoType: "cosmos-sdk/MsgCreatePeriodicVestingAccountResponse",
|
|
640
|
+
is(o: any): o is MsgCreatePeriodicVestingAccountResponse {
|
|
641
|
+
return o && o.$typeUrl === MsgCreatePeriodicVestingAccountResponse.typeUrl;
|
|
642
|
+
},
|
|
643
|
+
isAmino(o: any): o is MsgCreatePeriodicVestingAccountResponseAmino {
|
|
644
|
+
return o && o.$typeUrl === MsgCreatePeriodicVestingAccountResponse.typeUrl;
|
|
645
|
+
},
|
|
646
|
+
encode(_: MsgCreatePeriodicVestingAccountResponse, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
647
|
+
return writer;
|
|
648
|
+
},
|
|
649
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreatePeriodicVestingAccountResponse {
|
|
650
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
651
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
652
|
+
const message = createBaseMsgCreatePeriodicVestingAccountResponse();
|
|
653
|
+
while (reader.pos < end) {
|
|
654
|
+
const tag = reader.uint32();
|
|
655
|
+
switch (tag >>> 3) {
|
|
656
|
+
default:
|
|
657
|
+
reader.skipType(tag & 7);
|
|
658
|
+
break;
|
|
659
|
+
}
|
|
660
|
+
}
|
|
661
|
+
return message;
|
|
662
|
+
},
|
|
663
|
+
fromPartial(_: DeepPartial<MsgCreatePeriodicVestingAccountResponse>): MsgCreatePeriodicVestingAccountResponse {
|
|
664
|
+
const message = createBaseMsgCreatePeriodicVestingAccountResponse();
|
|
665
|
+
return message;
|
|
666
|
+
},
|
|
667
|
+
fromAmino(_: MsgCreatePeriodicVestingAccountResponseAmino): MsgCreatePeriodicVestingAccountResponse {
|
|
668
|
+
const message = createBaseMsgCreatePeriodicVestingAccountResponse();
|
|
669
|
+
return message;
|
|
670
|
+
},
|
|
671
|
+
toAmino(_: MsgCreatePeriodicVestingAccountResponse): MsgCreatePeriodicVestingAccountResponseAmino {
|
|
672
|
+
const obj: any = {};
|
|
673
|
+
return obj;
|
|
674
|
+
},
|
|
675
|
+
fromAminoMsg(object: MsgCreatePeriodicVestingAccountResponseAminoMsg): MsgCreatePeriodicVestingAccountResponse {
|
|
676
|
+
return MsgCreatePeriodicVestingAccountResponse.fromAmino(object.value);
|
|
677
|
+
},
|
|
678
|
+
toAminoMsg(message: MsgCreatePeriodicVestingAccountResponse): MsgCreatePeriodicVestingAccountResponseAminoMsg {
|
|
679
|
+
return {
|
|
680
|
+
type: "cosmos-sdk/MsgCreatePeriodicVestingAccountResponse",
|
|
681
|
+
value: MsgCreatePeriodicVestingAccountResponse.toAmino(message)
|
|
682
|
+
};
|
|
683
|
+
},
|
|
684
|
+
fromProtoMsg(message: MsgCreatePeriodicVestingAccountResponseProtoMsg): MsgCreatePeriodicVestingAccountResponse {
|
|
685
|
+
return MsgCreatePeriodicVestingAccountResponse.decode(message.value);
|
|
686
|
+
},
|
|
687
|
+
toProto(message: MsgCreatePeriodicVestingAccountResponse): Uint8Array {
|
|
688
|
+
return MsgCreatePeriodicVestingAccountResponse.encode(message).finish();
|
|
689
|
+
},
|
|
690
|
+
toProtoMsg(message: MsgCreatePeriodicVestingAccountResponse): MsgCreatePeriodicVestingAccountResponseProtoMsg {
|
|
691
|
+
return {
|
|
692
|
+
typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccountResponse",
|
|
693
|
+
value: MsgCreatePeriodicVestingAccountResponse.encode(message).finish()
|
|
694
|
+
};
|
|
695
|
+
}
|
|
696
|
+
};
|
|
697
|
+
GlobalDecoderRegistry.register(MsgCreatePeriodicVestingAccountResponse.typeUrl, MsgCreatePeriodicVestingAccountResponse);
|
|
698
|
+
GlobalDecoderRegistry.registerAminoProtoMapping(MsgCreatePeriodicVestingAccountResponse.aminoType, MsgCreatePeriodicVestingAccountResponse.typeUrl);
|