UNPKG

@hdwallet/core

Version:

A complete Hierarchical Deterministic (HD) Wallet generator for 200+ cryptocurrencies, built with TypeScript.

14 lines 787 B
import { BIP49Derivation } from '../derivations'; import { BIP44HD } from './bip44'; import { HDAddressOptionsInterface, HDOptionsInterface } from '../interfaces'; export declare class BIP49HD extends BIP44HD { constructor(options?: HDOptionsInterface); static getName(): string; fromDerivation(derivation: BIP49Derivation): this; getRootXPrivateKey(version?: Uint8Array | number, encoded?: boolean): string | null; getRootXPublicKey(version?: Uint8Array | number, encoded?: boolean): string | null; getXPrivateKey(version?: Uint8Array | number, encoded?: boolean): string | null; getXPublicKey(version?: Uint8Array | number, encoded?: boolean): string | null; getAddress(options?: HDAddressOptionsInterface): string; } //# sourceMappingURL=bip49.d.ts.map