interchainjs
Version:
InterchainJS is a JavaScript library for interacting with Cosmos SDK based blockchains.
48 lines (47 loc) • 1.31 kB
TypeScript
import { TelescopeGeneratedType } from "../../../types";
import { MsgGrant, MsgExec, MsgRevoke } from "./tx";
export declare const registry: ReadonlyArray<[string, TelescopeGeneratedType<any, any, any>]>;
export declare const MessageComposer: {
encoded: {
grant(value: MsgGrant): {
typeUrl: string;
value: Uint8Array<ArrayBufferLike>;
};
exec(value: MsgExec): {
typeUrl: string;
value: Uint8Array<ArrayBufferLike>;
};
revoke(value: MsgRevoke): {
typeUrl: string;
value: Uint8Array<ArrayBufferLike>;
};
};
withTypeUrl: {
grant(value: MsgGrant): {
typeUrl: string;
value: MsgGrant;
};
exec(value: MsgExec): {
typeUrl: string;
value: MsgExec;
};
revoke(value: MsgRevoke): {
typeUrl: string;
value: MsgRevoke;
};
};
fromPartial: {
grant(value: MsgGrant): {
typeUrl: string;
value: MsgGrant;
};
exec(value: MsgExec): {
typeUrl: string;
value: MsgExec;
};
revoke(value: MsgRevoke): {
typeUrl: string;
value: MsgRevoke;
};
};
};