UNPKG

interchainjs

Version:

InterchainJS is a JavaScript library for interacting with Cosmos SDK based blockchains.

96 lines (95 loc) 3.06 kB
import { TelescopeGeneratedType } from "../../../types"; import { MsgSubmitProposal, MsgExecLegacyContent, MsgVote, MsgVoteWeighted, MsgDeposit, MsgUpdateParams, MsgCancelProposal } from "./tx"; export declare const registry: ReadonlyArray<[string, TelescopeGeneratedType<any, any, any>]>; export declare const MessageComposer: { encoded: { submitProposal(value: MsgSubmitProposal): { typeUrl: string; value: Uint8Array<ArrayBufferLike>; }; execLegacyContent(value: MsgExecLegacyContent): { typeUrl: string; value: Uint8Array<ArrayBufferLike>; }; vote(value: MsgVote): { typeUrl: string; value: Uint8Array<ArrayBufferLike>; }; voteWeighted(value: MsgVoteWeighted): { typeUrl: string; value: Uint8Array<ArrayBufferLike>; }; deposit(value: MsgDeposit): { typeUrl: string; value: Uint8Array<ArrayBufferLike>; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: Uint8Array<ArrayBufferLike>; }; cancelProposal(value: MsgCancelProposal): { typeUrl: string; value: Uint8Array<ArrayBufferLike>; }; }; withTypeUrl: { submitProposal(value: MsgSubmitProposal): { typeUrl: string; value: MsgSubmitProposal; }; execLegacyContent(value: MsgExecLegacyContent): { typeUrl: string; value: MsgExecLegacyContent; }; vote(value: MsgVote): { typeUrl: string; value: MsgVote; }; voteWeighted(value: MsgVoteWeighted): { typeUrl: string; value: MsgVoteWeighted; }; deposit(value: MsgDeposit): { typeUrl: string; value: MsgDeposit; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: MsgUpdateParams; }; cancelProposal(value: MsgCancelProposal): { typeUrl: string; value: MsgCancelProposal; }; }; fromPartial: { submitProposal(value: MsgSubmitProposal): { typeUrl: string; value: MsgSubmitProposal; }; execLegacyContent(value: MsgExecLegacyContent): { typeUrl: string; value: MsgExecLegacyContent; }; vote(value: MsgVote): { typeUrl: string; value: MsgVote; }; voteWeighted(value: MsgVoteWeighted): { typeUrl: string; value: MsgVoteWeighted; }; deposit(value: MsgDeposit): { typeUrl: string; value: MsgDeposit; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: MsgUpdateParams; }; cancelProposal(value: MsgCancelProposal): { typeUrl: string; value: MsgCancelProposal; }; }; };