aboutsummaryrefslogtreecommitdiffstats
path: root/packages/typescript-typings/types/eth-lightwallet/index.d.ts
blob: b871fb28944c789213f01585c4a6937d453f6062 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// eth-lightwallet declarations
declare module 'eth-lightwallet' {
    import { ECSignatureBuffer } from '@0xproject/types';

    interface signing {
        signTx(
            keystore: keystore,
            pwDerivedKey: Uint8Array,
            rawTx: string,
            signingAddress: string,
        ): string;
        signMsg(
            keystore: keystore,
            pwDerivedKey: Uint8Array,
            rawMsg: string,
            signingAddress: string,
        ): ECSignatureBuffer;
        signMsgHash(
            keystore: keystore,
            pwDerivedKey: Uint8Array,
            msgHash: string,
            signingAddress: string,
        ): ECSignatureBuffer;
        concatSig(signature: any): string;
    }
    export const signing: signing;

    interface VaultOptions {
        password: string;
        seedPhrase: string;
        salt?: string;
        hdPathString: string;
    }

    export class keystore {
        public static createVault(
            options: VaultOptions,
            callback?: (error: Error, keystore: keystore) => void,
        ): keystore;
        public static generateRandomSeed(): string;
        public static isSeedValid(seed: string): boolean;
        public static deserialize(keystore: string): keystore;
        public serialize(): string;
        public keyFromPassword(
            password: string,
            callback?: (error: Error, pwDerivedKey: Uint8Array) => void,
        ): Uint8Array;
        public isDerivedKeyCorrect(pwDerivedKey: Uint8Array): boolean;
        public generateNewAddress(pwDerivedKey: Uint8Array, numberOfAddresses: number): void;
        public getSeed(pwDerivedKey: Uint8Array): string;
        public exportPrivateKey(address: string, pwDerivedKey: Uint8Array): string;
        public getAddresses(): string[];
    }
}