Dorian 0d073fa89e Add comprehensive installation and setup documentation
- Add GETTING_STARTED.md with quick start guide and development modes
- Add INSTALL.sh automated installation script
- Add INSTALLATION_CHECKLIST.md, INSTALLATION_SUCCESS.md, and INSTALLATION_SUMMARY.md
- Add QUICK_REFERENCE.md for common commands
- Add SETUP_GUIDE.md with detailed setup instructions
- Update README.md with improved project overview
- Add did-wallet app dependencies and node_modules
2026-01-27 17:18:21 +00:00

31 lines
988 B
TypeScript

export declare const MASTER_SECRET: Uint8Array;
export declare const HARDENED_OFFSET: number;
type Hex = Uint8Array | string;
interface HDKeyOpt {
depth?: number;
index?: number;
parentFingerprint?: number;
chainCode: Uint8Array;
privateKey: Uint8Array;
}
export declare class HDKey {
get publicKeyRaw(): Uint8Array;
get publicKey(): Uint8Array;
get pubHash(): Uint8Array;
get fingerprint(): number;
get fingerprintHex(): string;
get parentFingerprintHex(): string;
static fromMasterSeed(seed: Hex): HDKey;
readonly depth: number;
readonly index: number;
readonly chainCode: Uint8Array;
readonly parentFingerprint: number;
readonly privateKey: Uint8Array;
constructor(opt: HDKeyOpt);
derive(path: string, forceHardened?: boolean): HDKey;
deriveChild(index: number): HDKey;
sign(message: Hex): Uint8Array;
verify(message: Hex, signature: Hex): boolean;
}
export {};
//# sourceMappingURL=hdkey.d.ts.map