aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/globals.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/contracts/globals.d.ts')
-rw-r--r--packages/contracts/globals.d.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/contracts/globals.d.ts b/packages/contracts/globals.d.ts
index a2d5176f8..05c08bd98 100644
--- a/packages/contracts/globals.d.ts
+++ b/packages/contracts/globals.d.ts
@@ -1,5 +1,4 @@
declare module 'bn.js';
-declare module 'ethereumjs-abi';
declare module 'chai-bignumber';
declare module 'dirty-chai';
@@ -30,6 +29,10 @@ declare module 'web3-eth-abi' {
export function encodeParameters(typesArray: string[], parameters: any[]): string;
}
+declare module 'ethereumjs-abi' {
+ const soliditySHA3: (argTypes: string[], args: any[]) => Buffer;
+}
+
// Truffle injects the following into the global scope
declare var artifacts: any;
declare var contract: any;