UNPKG

interchainjs

Version:

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

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