Merge pull request #507 from 0xProject/feature/subproviders/mnemonic-wallet-subprovider

Mnemonic wallet subprovider and multiple accounts in ledger
This commit is contained in:
Jacob Evans
2018-04-12 17:35:32 +10:00
committed by GitHub
21 changed files with 704 additions and 130 deletions

View File

@@ -5,6 +5,10 @@
{
"note": "Add types for more packages",
"pr": 501
},
{
"note": "Add types for HDKey",
"pr": 507
}
],
"timestamp": 1523462196

View File

@@ -0,0 +1,11 @@
declare module 'hdkey' {
class HDNode {
public static fromMasterSeed(seed: Buffer): HDNode;
public publicKey: Buffer;
public privateKey: Buffer;
public chainCode: Buffer;
public constructor();
public derive(path: string): HDNode;
}
export = HDNode;
}