UNPKG

interchainjs

Version:

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

24 lines (23 loc) 621 B
import { TelescopeGeneratedType } from "../../../types"; import { MsgSend } from "./tx"; export declare const registry: ReadonlyArray<[string, TelescopeGeneratedType<any, any, any>]>; export declare const MessageComposer: { encoded: { send(value: MsgSend): { typeUrl: string; value: Uint8Array<ArrayBufferLike>; }; }; withTypeUrl: { send(value: MsgSend): { typeUrl: string; value: MsgSend; }; }; fromPartial: { send(value: MsgSend): { typeUrl: string; value: MsgSend; }; }; };