@neo-one/server-plugin-wallet
Version:
NEO•ONE Server wallet plugin.
17 lines (16 loc) • 450 B
TypeScript
export declare const constants: {
PLUGIN: string;
WALLET_RESOURCE_TYPE: string;
DELIMITER_KEY: string;
MASTER_WALLET: string;
makeMasterWallet: (network: string) => string;
makeWallet: ({ network, name }: {
readonly network: string;
readonly name: string;
}) => string;
extractWallet: (name: string) => {
readonly network: string;
readonly name: string;
};
MAIN_URL: string;
};