@bandprotocol/bandchain.js
Version:
TypeScript library for Cosmos SDK and BandChain
37 lines (36 loc) • 1.15 kB
TypeScript
import { GeneratedType, Registry } from "@cosmjs/proto-signing";
import { MsgGrantAllowance, MsgRevokeAllowance } from "./tx";
export declare const registry: ReadonlyArray<[string, GeneratedType]>;
export declare const load: (protoRegistry: Registry) => void;
export declare const MessageComposer: {
encoded: {
grantAllowance(value: MsgGrantAllowance): {
typeUrl: string;
value: Uint8Array;
};
revokeAllowance(value: MsgRevokeAllowance): {
typeUrl: string;
value: Uint8Array;
};
};
withTypeUrl: {
grantAllowance(value: MsgGrantAllowance): {
typeUrl: string;
value: MsgGrantAllowance;
};
revokeAllowance(value: MsgRevokeAllowance): {
typeUrl: string;
value: MsgRevokeAllowance;
};
};
fromPartial: {
grantAllowance(value: MsgGrantAllowance): {
typeUrl: string;
value: MsgGrantAllowance;
};
revokeAllowance(value: MsgRevokeAllowance): {
typeUrl: string;
value: MsgRevokeAllowance;
};
};
};