UNPKG

ecash-lib

Version:

Library for eCash transaction building

31 lines 903 B
export declare class HdNode { private _ecc; private _seckey; private _pubkey; private _chainCode; private _depth; private _index; private _parentFingerprint; constructor(params: { seckey: Uint8Array | undefined; pubkey: Uint8Array; chainCode: Uint8Array; depth: number; index: number; parentFingerprint: number; }); seckey(): Uint8Array | undefined; pubkey(): Uint8Array; pkh(): Uint8Array; fingerprint(): Uint8Array; index(): number; depth(): number; parentFingerprint(): number; chainCode(): Uint8Array; derive(index: number): HdNode; deriveHardened(index: number): HdNode; derivePath(path: string): HdNode; static fromPrivateKey(seckey: Uint8Array, chainCode: Uint8Array): HdNode; static fromSeed(seed: Uint8Array): HdNode; } //# sourceMappingURL=hdwallet.d.ts.map