UNPKG

interchainjs

Version:

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

48 lines (47 loc) 1.56 kB
import { TelescopeGeneratedType } from "../../../../../types"; import { MsgRegisterInterchainAccount, MsgSendTx, MsgUpdateParams } from "./tx"; export declare const registry: ReadonlyArray<[string, TelescopeGeneratedType<any, any, any>]>; export declare const MessageComposer: { encoded: { registerInterchainAccount(value: MsgRegisterInterchainAccount): { typeUrl: string; value: Uint8Array<ArrayBufferLike>; }; sendTx(value: MsgSendTx): { typeUrl: string; value: Uint8Array<ArrayBufferLike>; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: Uint8Array<ArrayBufferLike>; }; }; withTypeUrl: { registerInterchainAccount(value: MsgRegisterInterchainAccount): { typeUrl: string; value: MsgRegisterInterchainAccount; }; sendTx(value: MsgSendTx): { typeUrl: string; value: MsgSendTx; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: MsgUpdateParams; }; }; fromPartial: { registerInterchainAccount(value: MsgRegisterInterchainAccount): { typeUrl: string; value: MsgRegisterInterchainAccount; }; sendTx(value: MsgSendTx): { typeUrl: string; value: MsgSendTx; }; updateParams(value: MsgUpdateParams): { typeUrl: string; value: MsgUpdateParams; }; }; };