diff options
author | Fabio Berger <me@fabioberger.com> | 2017-05-29 19:37:08 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-05-29 19:37:08 +0800 |
commit | eb90367fc4fc666786398ab9803b77bfb900c661 (patch) | |
tree | 711e4e92060828508e22d6cace759a4d47ad1ec4 /src/globals.d.ts | |
parent | 232e03195974403878f303a59f0ff8669b54f205 (diff) | |
download | dexon-sol-tools-eb90367fc4fc666786398ab9803b77bfb900c661.tar dexon-sol-tools-eb90367fc4fc666786398ab9803b77bfb900c661.tar.gz dexon-sol-tools-eb90367fc4fc666786398ab9803b77bfb900c661.tar.bz2 dexon-sol-tools-eb90367fc4fc666786398ab9803b77bfb900c661.tar.lz dexon-sol-tools-eb90367fc4fc666786398ab9803b77bfb900c661.tar.xz dexon-sol-tools-eb90367fc4fc666786398ab9803b77bfb900c661.tar.zst dexon-sol-tools-eb90367fc4fc666786398ab9803b77bfb900c661.zip |
Port over signOrderHashAsync
Diffstat (limited to 'src/globals.d.ts')
-rw-r--r-- | src/globals.d.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/globals.d.ts b/src/globals.d.ts index dee957f2f..78b768dd1 100644 --- a/src/globals.d.ts +++ b/src/globals.d.ts @@ -3,6 +3,8 @@ declare module 'bn.js'; declare module 'request-promise-native'; declare module 'web3-provider-engine'; declare module 'web3-provider-engine/subproviders/rpc'; +declare module 'find-versions'; +declare module 'compare-versions'; declare interface Schema { id: string; @@ -35,6 +37,7 @@ declare module 'ethereumjs-util' { const pubToAddress: (pubKey: string) => Buffer; const isValidAddress: (address: string) => boolean; const bufferToInt: (buffer: Buffer) => number; + const fromRpcSig: (signature: string) => {v: number, r: Buffer, s: Buffer}; } // truffle-contract declarations |