aboutsummaryrefslogtreecommitdiffstats
path: root/packages/deployer/src/globals.d.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-01-17 03:12:42 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2018-01-18 21:18:51 +0800
commit4b9501318d8933f949fa0f87956e9cf5298d5726 (patch)
treec1aa7888406746bc3d8caad2eb03ffbd212cb6d4 /packages/deployer/src/globals.d.ts
parente5eec04f92b51319dc55c46c9be7b9d6fe5a1e48 (diff)
downloaddexon-0x-contracts-4b9501318d8933f949fa0f87956e9cf5298d5726.tar
dexon-0x-contracts-4b9501318d8933f949fa0f87956e9cf5298d5726.tar.gz
dexon-0x-contracts-4b9501318d8933f949fa0f87956e9cf5298d5726.tar.bz2
dexon-0x-contracts-4b9501318d8933f949fa0f87956e9cf5298d5726.tar.lz
dexon-0x-contracts-4b9501318d8933f949fa0f87956e9cf5298d5726.tar.xz
dexon-0x-contracts-4b9501318d8933f949fa0f87956e9cf5298d5726.tar.zst
dexon-0x-contracts-4b9501318d8933f949fa0f87956e9cf5298d5726.zip
Move deployer to a separate package
Diffstat (limited to 'packages/deployer/src/globals.d.ts')
-rw-r--r--packages/deployer/src/globals.d.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/deployer/src/globals.d.ts b/packages/deployer/src/globals.d.ts
new file mode 100644
index 000000000..0a35002da
--- /dev/null
+++ b/packages/deployer/src/globals.d.ts
@@ -0,0 +1,8 @@
+declare module 'solc' {
+ export function compile(sources: any, optimizerEnabled: number, findImports: (importPath: string) => any): any;
+ export function setupMethods(solcBin: any): any;
+}
+
+declare module 'web3-eth-abi' {
+ export function encodeParameters(typesArray: string[], parameters: any[]): string;
+}