UNPKG

interchainjs

Version:

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

48 lines (47 loc) 1.85 kB
import { TelescopeGeneratedType } from "../../../types"; import { MsgCreateVestingAccount, MsgCreatePermanentLockedAccount, MsgCreatePeriodicVestingAccount } from "./tx"; export declare const registry: ReadonlyArray<[string, TelescopeGeneratedType<any, any, any>]>; export declare const MessageComposer: { encoded: { createVestingAccount(value: MsgCreateVestingAccount): { typeUrl: string; value: Uint8Array<ArrayBufferLike>; }; createPermanentLockedAccount(value: MsgCreatePermanentLockedAccount): { typeUrl: string; value: Uint8Array<ArrayBufferLike>; }; createPeriodicVestingAccount(value: MsgCreatePeriodicVestingAccount): { typeUrl: string; value: Uint8Array<ArrayBufferLike>; }; }; withTypeUrl: { createVestingAccount(value: MsgCreateVestingAccount): { typeUrl: string; value: MsgCreateVestingAccount; }; createPermanentLockedAccount(value: MsgCreatePermanentLockedAccount): { typeUrl: string; value: MsgCreatePermanentLockedAccount; }; createPeriodicVestingAccount(value: MsgCreatePeriodicVestingAccount): { typeUrl: string; value: MsgCreatePeriodicVestingAccount; }; }; fromPartial: { createVestingAccount(value: MsgCreateVestingAccount): { typeUrl: string; value: MsgCreateVestingAccount; }; createPermanentLockedAccount(value: MsgCreatePermanentLockedAccount): { typeUrl: string; value: MsgCreatePermanentLockedAccount; }; createPeriodicVestingAccount(value: MsgCreatePeriodicVestingAccount): { typeUrl: string; value: MsgCreatePeriodicVestingAccount; }; }; };