@bandprotocol/bandchain.js
Version:
TypeScript library for Cosmos SDK and BandChain
25 lines (24 loc) • 686 B
TypeScript
import { GeneratedType, Registry } from "@cosmjs/proto-signing";
import { MsgTransfer } from "./tx";
export declare const registry: ReadonlyArray<[string, GeneratedType]>;
export declare const load: (protoRegistry: Registry) => void;
export declare const MessageComposer: {
encoded: {
transfer(value: MsgTransfer): {
typeUrl: string;
value: Uint8Array;
};
};
withTypeUrl: {
transfer(value: MsgTransfer): {
typeUrl: string;
value: MsgTransfer;
};
};
fromPartial: {
transfer(value: MsgTransfer): {
typeUrl: string;
value: MsgTransfer;
};
};
};