import { ICryptoBytes } from './auth'; /** * BaseWalletAccount is a base class for wallet account */ export interface BaseWalletAccount { algo: string; publicKey: ICryptoBytes; } /** * properties for deriving address */ export interface AddrDerivation { readonly hdPath: string; readonly prefix: string; }