diff options
author | Leonid <logvinov.leon@gmail.com> | 2017-05-26 18:41:51 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-26 18:41:51 +0800 |
commit | f338c68f126cba0f1b49c2928f276158b64d8ee7 (patch) | |
tree | 2d90199df90974be6a596eace3503281889c29f4 /src/ts/globals.d.ts | |
parent | f7b8378a6eb4b4c6c3461ff677723869c67a4753 (diff) | |
parent | 3195741ebcfc95f4622aebcdc23fc5b8630efe39 (diff) | |
download | dexon-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.ts | 5 |
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; +} |