aboutsummaryrefslogtreecommitdiffstats
path: root/src/ts/globals.d.ts
diff options
context:
space:
mode:
authorLeonid <logvinov.leon@gmail.com>2017-05-25 01:25:24 +0800
committerGitHub <noreply@github.com>2017-05-25 01:25:24 +0800
commit140a160ba0627f80f998555438df1d797c75380e (patch)
tree47a03c741fb5a8eeeb224610c6982fab8f69a868 /src/ts/globals.d.ts
parentb5bd772b240e656ed95150e0d1b6bd77f754aa5c (diff)
parent945a583e895dfd9488aecdfab1bec22449bf7878 (diff)
downloaddexon-sol-tools-140a160ba0627f80f998555438df1d797c75380e.tar
dexon-sol-tools-140a160ba0627f80f998555438df1d797c75380e.tar.gz
dexon-sol-tools-140a160ba0627f80f998555438df1d797c75380e.tar.bz2
dexon-sol-tools-140a160ba0627f80f998555438df1d797c75380e.tar.lz
dexon-sol-tools-140a160ba0627f80f998555438df1d797c75380e.tar.xz
dexon-sol-tools-140a160ba0627f80f998555438df1d797c75380e.tar.zst
dexon-sol-tools-140a160ba0627f80f998555438df1d797c75380e.zip
Merge pull request #8 from 0xProject/isSignatureValid
Add isSignatureValid method and tests for it
Diffstat (limited to 'src/ts/globals.d.ts')
-rw-r--r--src/ts/globals.d.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/ts/globals.d.ts b/src/ts/globals.d.ts
new file mode 100644
index 000000000..0f7391b39
--- /dev/null
+++ b/src/ts/globals.d.ts
@@ -0,0 +1,11 @@
+declare type ETHPublicKey = string;
+declare type ETHAddressHex = string;
+declare type ETHAddressBuff = Buffer;
+
+declare module 'ethereumjs-util' {
+ const toBuffer: (data: string) => Buffer;
+ const hashPersonalMessage: (msg: Buffer) => Buffer;
+ const bufferToHex: (buff: Buffer) => string;
+ const ecrecover: (msgHashBuff: Buffer, v: number, r: Buffer, s: Buffer) => ETHPublicKey;
+ const pubToAddress: (pubKey: ETHPublicKey) => ETHAddressBuff;
+}