interchainjs
Version:
InterchainJS is a JavaScript library for interacting with Cosmos SDK based blockchains.
36 lines (35 loc) • 1.22 kB
TypeScript
import { TelescopeGeneratedType } from "../../../../types";
import { MsgRegisterCounterparty, MsgUpdateClientConfig } from "./tx";
export declare const registry: ReadonlyArray<[string, TelescopeGeneratedType<any, any, any>]>;
export declare const MessageComposer: {
encoded: {
registerCounterparty(value: MsgRegisterCounterparty): {
typeUrl: string;
value: Uint8Array<ArrayBufferLike>;
};
updateClientConfig(value: MsgUpdateClientConfig): {
typeUrl: string;
value: Uint8Array<ArrayBufferLike>;
};
};
withTypeUrl: {
registerCounterparty(value: MsgRegisterCounterparty): {
typeUrl: string;
value: MsgRegisterCounterparty;
};
updateClientConfig(value: MsgUpdateClientConfig): {
typeUrl: string;
value: MsgUpdateClientConfig;
};
};
fromPartial: {
registerCounterparty(value: MsgRegisterCounterparty): {
typeUrl: string;
value: MsgRegisterCounterparty;
};
updateClientConfig(value: MsgUpdateClientConfig): {
typeUrl: string;
value: MsgUpdateClientConfig;
};
};
};