solidity/test/cmdlineTests/standard_optimizer_generatedSources/input.json

22 lines
490 B
JSON
Raw Normal View History

2020-05-28 12:01:07 +00:00
{
"language": "Solidity",
"sources": {
"a.sol": {
2020-12-01 13:53:08 +00:00
"content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.0;\npragma abicoder v2; contract A { function f(uint[] memory) public view returns (uint256) { } }"
2020-05-28 12:01:07 +00:00
}
},
"settings": {
"evmVersion": "petersburg",
"optimizer": { "enabled": true },
"outputSelection": {
"*": {
"A": [
"evm.bytecode.object",
"evm.deployedBytecode.generatedSources",
"evm.bytecode.generatedSources"
]
}
}
}
}