@hdwallet/core
Version:
A complete Hierarchical Deterministic (HD) Wallet generator for 200+ cryptocurrencies, built with TypeScript.
16 lines • 873 B
TypeScript
import { BIP84Derivation } from '../derivations';
import { BIP44HD } from './bip44';
import { HDAddressOptionsInterface, HDOptionsInterface } from '../interfaces';
export declare class BIP84HD extends BIP44HD {
constructor(options?: HDOptionsInterface);
static getName(): string;
fromDerivation(derivation: BIP84Derivation): this;
updateDerivation(derivation: BIP84Derivation): this;
cleanDerivation(): 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=bip84.d.ts.map