aboutsummaryrefslogtreecommitdiffstats
path: root/packages/typescript-typings/types/hdkey/index.d.ts
blob: 84b751bd7f0d3398abc884e905f5029b1db26b47 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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;
}