UNPKG

interchainjs

Version:

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

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