UNPKG

myathhhh

Version:

Atomicals Javascript Library and CLI - atomicals.xyz

14 lines (13 loc) 381 B
export interface IWalletRecord { address: string; WIF: string; childNode?: any; } export interface IValidatedWalletInfo { primary: IWalletRecord; funding: IWalletRecord; imported: { [alias: string]: IWalletRecord; }; } export declare const validateWalletStorage: (_par?: any, _fw?: any, _pw?: any) => Promise<IValidatedWalletInfo>;