@bandprotocol/bandchain.js
Version:
TypeScript library for Cosmos SDK and BandChain
49 lines (48 loc) • 1.85 kB
TypeScript
import { GeneratedType, Registry } from "@cosmjs/proto-signing";
import { MsgCreateVestingAccount, MsgCreatePermanentLockedAccount, MsgCreatePeriodicVestingAccount } from "./tx";
export declare const registry: ReadonlyArray<[string, GeneratedType]>;
export declare const load: (protoRegistry: Registry) => void;
export declare const MessageComposer: {
encoded: {
createVestingAccount(value: MsgCreateVestingAccount): {
typeUrl: string;
value: Uint8Array;
};
createPermanentLockedAccount(value: MsgCreatePermanentLockedAccount): {
typeUrl: string;
value: Uint8Array;
};
createPeriodicVestingAccount(value: MsgCreatePeriodicVestingAccount): {
typeUrl: string;
value: Uint8Array;
};
};
withTypeUrl: {
createVestingAccount(value: MsgCreateVestingAccount): {
typeUrl: string;
value: MsgCreateVestingAccount;
};
createPermanentLockedAccount(value: MsgCreatePermanentLockedAccount): {
typeUrl: string;
value: MsgCreatePermanentLockedAccount;
};
createPeriodicVestingAccount(value: MsgCreatePeriodicVestingAccount): {
typeUrl: string;
value: MsgCreatePeriodicVestingAccount;
};
};
fromPartial: {
createVestingAccount(value: MsgCreateVestingAccount): {
typeUrl: string;
value: MsgCreateVestingAccount;
};
createPermanentLockedAccount(value: MsgCreatePermanentLockedAccount): {
typeUrl: string;
value: MsgCreatePermanentLockedAccount;
};
createPeriodicVestingAccount(value: MsgCreatePeriodicVestingAccount): {
typeUrl: string;
value: MsgCreatePeriodicVestingAccount;
};
};
};