aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-09-04 21:04:42 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2018-09-04 22:36:18 +0800
commit3ea137a78f949f09cb8159e6ef59b8ec0ab3c2a5 (patch)
treecc4c61ef2309c64d9f46b3b309cd04003d4e88c7 /packages
parentb525ccc825b80dfc02d7cd1ccf479aa5b5c93992 (diff)
downloaddexon-sol-tools-3ea137a78f949f09cb8159e6ef59b8ec0ab3c2a5.tar
dexon-sol-tools-3ea137a78f949f09cb8159e6ef59b8ec0ab3c2a5.tar.gz
dexon-sol-tools-3ea137a78f949f09cb8159e6ef59b8ec0ab3c2a5.tar.bz2
dexon-sol-tools-3ea137a78f949f09cb8159e6ef59b8ec0ab3c2a5.tar.lz
dexon-sol-tools-3ea137a78f949f09cb8159e6ef59b8ec0ab3c2a5.tar.xz
dexon-sol-tools-3ea137a78f949f09cb8159e6ef59b8ec0ab3c2a5.tar.zst
dexon-sol-tools-3ea137a78f949f09cb8159e6ef59b8ec0ab3c2a5.zip
Remove types for eth-lightwallet from typescript-typings
Diffstat (limited to 'packages')
-rw-r--r--packages/monorepo-scripts/src/doc_gen_configs.ts2
-rw-r--r--packages/subproviders/package.json1
-rw-r--r--packages/typescript-typings/types/eth-lightwallet/index.d.ts54
3 files changed, 2 insertions, 55 deletions
diff --git a/packages/monorepo-scripts/src/doc_gen_configs.ts b/packages/monorepo-scripts/src/doc_gen_configs.ts
index b682f3f7b..951e4fd45 100644
--- a/packages/monorepo-scripts/src/doc_gen_configs.ts
+++ b/packages/monorepo-scripts/src/doc_gen_configs.ts
@@ -19,7 +19,7 @@ export const docGenConfigs: DocGenConfigs = {
'Ganache.GanacheOpts':
'https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/ganache-core/index.d.ts#L8',
'lightwallet.keystore':
- 'https://github.com/0xProject/0x-monorepo/blob/ddf85112d7e4eb1581e0d82ce6eedad429641106/packages/typescript-typings/types/eth-lightwallet/index.d.ts#L32',
+ 'https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/eth-lightwallet/index.d.ts#L36',
},
// If a 0x package re-exports an external package, we should add a link to it's exported items here
EXTERNAL_EXPORT_TO_LINK: {
diff --git a/packages/subproviders/package.json b/packages/subproviders/package.json
index afeb10d88..803893f7f 100644
--- a/packages/subproviders/package.json
+++ b/packages/subproviders/package.json
@@ -52,6 +52,7 @@
"devDependencies": {
"@0xproject/tslint-config": "^1.0.6",
"@types/bip39": "^2.4.0",
+ "@types/eth-lightwallet": "^3.0.0",
"@types/bn.js": "^4.11.0",
"@types/ethereumjs-tx": "^1.0.0",
"@types/hdkey": "^0.7.0",
diff --git a/packages/typescript-typings/types/eth-lightwallet/index.d.ts b/packages/typescript-typings/types/eth-lightwallet/index.d.ts
deleted file mode 100644
index 93daa5041..000000000
--- a/packages/typescript-typings/types/eth-lightwallet/index.d.ts
+++ /dev/null
@@ -1,54 +0,0 @@
-// eth-lightwallet declarations
-
-interface ECSignatureBuffer {
- v: number;
- r: Buffer;
- s: Buffer;
-}
-declare module 'eth-lightwallet' {
- // tslint:disable-next-line:class-name
- 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;
- }
- // tslint:disable-next-line:class-name
- 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[];
- }
- interface VaultOptions {
- password: string;
- seedPhrase: string;
- salt?: string;
- hdPathString: string;
- }
-}