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) 311 B
import { Address, Hex } from "../models"; import { WebHdWallet } from "./webHd"; export declare class BtcHdWallet extends WebHdWallet { constructor(seed: string, configOptions?: any); hasAddressBeenUsed(publicKey: Hex): Promise<boolean>; formatAddress(address: Address): import("../models").Keys; }