mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-09 10:41:56 +00:00
c340246ca0
* Progress commit * Update more types * Fix more types * Fix abi function types * Fix lib types * Fix rest of types * Address wbobeirne changes * Change origin and destination check
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;
|
|
}
|
|
}
|