UNPKG

tnb-hd-wallet

Version:

A hd wallet that derives public and private keys from a 12 word mnemonic phrase with support

10 lines (9 loc) 199 B
import { Hex, Path } from "./constants"; export interface Keys { accountIndex?: number; addressIndex?: number; path: Path; chainCode?: Hex; publicKey: Hex; privateKey: Hex; }