UNPKG

tnb-hd-wallet

Version:

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

8 lines (7 loc) 277 B
import { BaseHdWallet } from "./baseHd"; import { WebHdWallet } from "./webHd"; interface HdWalletCollection { [crypto: string]: (mnemonicOrSeed: string, ...otherOptions: any[]) => BaseHdWallet | WebHdWallet; } export declare const HdWallet: HdWalletCollection; export {};