mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-22 20:48:01 +00:00
20 lines
546 B
JSON
20 lines
546 B
JSON
{
|
|
"language": "Solidity",
|
|
"sources": {
|
|
"fixtures/instantiate.sol": {
|
|
"content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.8.2 <0.9.0;\ncontract ChildContract {\n constructor() {\n }\n}\ncontract MainContract {\n constructor() {\n ChildContract newContract = new ChildContract();\n }\n}"
|
|
}
|
|
},
|
|
"settings": {
|
|
"optimizer": {
|
|
"enabled": true,
|
|
"runs": 200
|
|
},
|
|
"outputSelection": {
|
|
"*": {
|
|
"*": ["abi"]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|