Remove timestamps and fix typings

This commit is contained in:
Cavan
2018-06-06 00:01:19 -06:00
committed by Fabio Berger
parent bb4c748bf1
commit 76f4d67f33
3 changed files with 27 additions and 3 deletions

View File

@@ -3,7 +3,12 @@ declare module 'eth-lightwallet' {
import { ECSignatureBuffer } from '@0xproject/types';
interface signing {
signTx(keystore: keystore, pwDerivedKey: Uint8Array, rawTx: string, signingAddress: string): string;
signTx(
keystore: keystore,
pwDerivedKey: Uint8Array,
rawTx: string,
signingAddress: string,
): string;
signMsg(
keystore: keystore,
pwDerivedKey: Uint8Array,
@@ -26,6 +31,7 @@ declare module 'eth-lightwallet' {
salt?: string;
hdPathString: string;
}
export class keystore {
public static createVault(
options: VaultOptions,