Update dependencies and update solc types

This commit is contained in:
Amir Bandeali 2019-03-05 14:28:55 -08:00
parent 9e03e1c742
commit e7bb524362
3 changed files with 11 additions and 2 deletions

View File

@ -80,7 +80,7 @@
"async-child-process": "^1.1.1",
"bundlewatch": "^0.2.1",
"coveralls": "^3.0.0",
"ganache-cli": "6.1.8",
"ganache-cli": "6.4.1",
"lcov-result-merger": "^3.0.0",
"lerna": "^3.0.0-beta.25",
"npm-run-all": "^4.1.2",

View File

@ -86,7 +86,7 @@
"pluralize": "^7.0.0",
"require-from-string": "^2.0.1",
"semver": "5.5.0",
"solc": "^0.5.2",
"solc": "^0.5.5",
"source-map-support": "^0.5.0",
"web3-eth-abi": "^1.0.0-beta.24",
"yargs": "^10.0.3"

View File

@ -66,6 +66,15 @@ declare module 'solc' {
optimizer?: {
enabled: boolean;
runs?: number;
details?: {
peephole?: boolean;
jumpdestRemover?: boolean;
orderLiterals?: boolean;
deduplicate?: boolean;
cse?: boolean;
constantOptimizer?: boolean;
yul?: boolean;
};
};
evmVersion?: 'homestead' | 'tangerineWhistle' | 'spuriousDragon' | 'byzantium' | 'constantinople';
metadata?: {