aboutsummaryrefslogtreecommitdiffstats
path: root/packages/typescript-typings
diff options
context:
space:
mode:
authorCavan <cavan@radarrelay.com>2018-06-05 06:04:25 +0800
committerFabio Berger <me@fabioberger.com>2018-06-26 01:08:16 +0800
commit1821f60fb5ddd4a36f34cce94acabba32b4236c6 (patch)
tree94850b582baf37ee53f145be5495247a8ab0768a /packages/typescript-typings
parent235d78565e4d809d3ec1b91174fd0a831c126202 (diff)
downloaddexon-0x-contracts-1821f60fb5ddd4a36f34cce94acabba32b4236c6.tar
dexon-0x-contracts-1821f60fb5ddd4a36f34cce94acabba32b4236c6.tar.gz
dexon-0x-contracts-1821f60fb5ddd4a36f34cce94acabba32b4236c6.tar.bz2
dexon-0x-contracts-1821f60fb5ddd4a36f34cce94acabba32b4236c6.tar.lz
dexon-0x-contracts-1821f60fb5ddd4a36f34cce94acabba32b4236c6.tar.xz
dexon-0x-contracts-1821f60fb5ddd4a36f34cce94acabba32b4236c6.tar.zst
dexon-0x-contracts-1821f60fb5ddd4a36f34cce94acabba32b4236c6.zip
Move eth-lightwallet declaration to typings
Diffstat (limited to 'packages/typescript-typings')
-rw-r--r--packages/typescript-typings/types/eth-lightwallet/index.d.ts58
1 files changed, 20 insertions, 38 deletions
diff --git a/packages/typescript-typings/types/eth-lightwallet/index.d.ts b/packages/typescript-typings/types/eth-lightwallet/index.d.ts
index a226d8049..76f910d9c 100644
--- a/packages/typescript-typings/types/eth-lightwallet/index.d.ts
+++ b/packages/typescript-typings/types/eth-lightwallet/index.d.ts
@@ -1,42 +1,24 @@
// eth-lightwallet declarations
declare module 'eth-lightwallet' {
- import { ECSignatureBuffer } from '@0xproject/types';
+ import { ECSignatureBuffer } from "@0xproject/types";
- export class signing {
- public static signTx(
- keystore: keystore,
- pwDerivedKey: Uint8Array,
- rawTx: string,
- signingAddress: string,
- ): string;
- public static signMsg(
- keystore: keystore,
- pwDerivedKey: Uint8Array,
- rawMsg: string,
- signingAddress: string,
- ): ECSignatureBuffer;
- public static signMsgHash(
- keystore: keystore,
- pwDerivedKey: Uint8Array,
- msgHash: string,
- signingAddress: string,
- ): ECSignatureBuffer;
- public static concatSig(signature: any): string;
- }
- export class keystore {
- public static createVault(options: any, 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[];
- }
+ export class signing {
+ public static signTx(keystore: keystore, pwDerivedKey: Uint8Array, rawTx: string, signingAddress: string): string;
+ public static signMsg(keystore: keystore, pwDerivedKey: Uint8Array, rawMsg: string, signingAddress: string): ECSignatureBuffer;
+ public static signMsgHash(keystore: keystore, pwDerivedKey: Uint8Array, msgHash: string, signingAddress: string): ECSignatureBuffer;
+ public static concatSig(signature: any): string;
+ }
+ export class keystore {
+ public static createVault(options: any, 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[];
+ }
}