aboutsummaryrefslogtreecommitdiffstats
path: root/src/ts/globals.d.ts
diff options
context:
space:
mode:
authorLeonid <logvinov.leon@gmail.com>2017-05-26 18:41:51 +0800
committerGitHub <noreply@github.com>2017-05-26 18:41:51 +0800
commitf338c68f126cba0f1b49c2928f276158b64d8ee7 (patch)
tree2d90199df90974be6a596eace3503281889c29f4 /src/ts/globals.d.ts
parentf7b8378a6eb4b4c6c3461ff677723869c67a4753 (diff)
parent3195741ebcfc95f4622aebcdc23fc5b8630efe39 (diff)
downloaddexon-sol-tools-f338c68f126cba0f1b49c2928f276158b64d8ee7.tar
dexon-sol-tools-f338c68f126cba0f1b49c2928f276158b64d8ee7.tar.gz
dexon-sol-tools-f338c68f126cba0f1b49c2928f276158b64d8ee7.tar.bz2
dexon-sol-tools-f338c68f126cba0f1b49c2928f276158b64d8ee7.tar.lz
dexon-sol-tools-f338c68f126cba0f1b49c2928f276158b64d8ee7.tar.xz
dexon-sol-tools-f338c68f126cba0f1b49c2928f276158b64d8ee7.tar.zst
dexon-sol-tools-f338c68f126cba0f1b49c2928f276158b64d8ee7.zip
Merge pull request #13 from 0xProject/getOrderHash
Port getOrderHash and write tests for it
Diffstat (limited to 'src/ts/globals.d.ts')
-rw-r--r--src/ts/globals.d.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ts/globals.d.ts b/src/ts/globals.d.ts
index 796812c87..99baf593f 100644
--- a/src/ts/globals.d.ts
+++ b/src/ts/globals.d.ts
@@ -1,4 +1,5 @@
declare module 'chai-bignumber';
+declare module 'bn.js';
declare interface Schema {
id: string;
@@ -23,3 +24,7 @@ declare module 'ethereumjs-util' {
const pubToAddress: (pubKey: string) => Buffer;
const isValidAddress: (address: string) => boolean;
}
+
+declare module 'ethereumjs-abi' {
+ const soliditySHA3: (argTypes: string[], args: any[]) => Buffer;
+}