UNPKG

bitverse-atomicals-js

Version:

Atomicals Javascript Library and CLI - atomicals.xyz

14 lines (13 loc) 336 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: () => Promise<IValidatedWalletInfo>;