interchainjs
Version:
InterchainJS is a JavaScript library for interacting with Cosmos SDK based blockchains.
48 lines (47 loc) • 1.57 kB
TypeScript
import { TelescopeGeneratedType } from "../../../types";
import { MsgGrantAllowance, MsgRevokeAllowance, MsgPruneAllowances } from "./tx";
export declare const registry: ReadonlyArray<[string, TelescopeGeneratedType<any, any, any>]>;
export declare const MessageComposer: {
encoded: {
grantAllowance(value: MsgGrantAllowance): {
typeUrl: string;
value: Uint8Array<ArrayBufferLike>;
};
revokeAllowance(value: MsgRevokeAllowance): {
typeUrl: string;
value: Uint8Array<ArrayBufferLike>;
};
pruneAllowances(value: MsgPruneAllowances): {
typeUrl: string;
value: Uint8Array<ArrayBufferLike>;
};
};
withTypeUrl: {
grantAllowance(value: MsgGrantAllowance): {
typeUrl: string;
value: MsgGrantAllowance;
};
revokeAllowance(value: MsgRevokeAllowance): {
typeUrl: string;
value: MsgRevokeAllowance;
};
pruneAllowances(value: MsgPruneAllowances): {
typeUrl: string;
value: MsgPruneAllowances;
};
};
fromPartial: {
grantAllowance(value: MsgGrantAllowance): {
typeUrl: string;
value: MsgGrantAllowance;
};
revokeAllowance(value: MsgRevokeAllowance): {
typeUrl: string;
value: MsgRevokeAllowance;
};
pruneAllowances(value: MsgPruneAllowances): {
typeUrl: string;
value: MsgPruneAllowances;
};
};
};