* Exhibit bug in getSimulatedOrderTransferResults * Fix getSimulatedOrderTransferResults * dev-utils/package.json: add quantify_bytecode cmd * Fix typo in log message * Reduce compiler optimization runs In order to reduce the EVM bytecode object length of the DevUtils contract to be under the EIP-170 limit of 24 KB.
27 lines
769 B
JSON
27 lines
769 B
JSON
{
|
|
"artifactsDir": "./generated-artifacts",
|
|
"contractsDir": "./contracts",
|
|
"useDockerisedSolc": false,
|
|
"isOfflineMode": false,
|
|
"compilerSettings": {
|
|
"evmVersion": "constantinople",
|
|
"optimizer": {
|
|
"enabled": true,
|
|
"runs": 10000,
|
|
"details": { "yul": true, "deduplicate": true, "cse": true, "constantOptimizer": true }
|
|
},
|
|
"outputSelection": {
|
|
"*": {
|
|
"*": [
|
|
"abi",
|
|
"devdoc",
|
|
"evm.bytecode.object",
|
|
"evm.bytecode.sourceMap",
|
|
"evm.deployedBytecode.object",
|
|
"evm.deployedBytecode.sourceMap"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|