mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-11 11:34:26 +00:00
12 lines
353 B
TypeScript
12 lines
353 B
TypeScript
|
declare module 'hdkey' {
|
||
|
export default class HDKey {
|
||
|
privateKey: Buffer;
|
||
|
publicKey: Buffer;
|
||
|
chainCode: Buffer | string;
|
||
|
static fromMasterSeed(seedBuffer: Buffer, versions?: any[]): HDKey;
|
||
|
static fromExtendedKey(base58key: any, versions?: any[]): HDKey;
|
||
|
static fromJSON(obj: any): HDKey;
|
||
|
derive(path: string): HDKey;
|
||
|
}
|
||
|
}
|