mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-22 20:48:01 +00:00
20 lines
486 B
JSON
20 lines
486 B
JSON
{
|
|
"language": "Solidity",
|
|
"sources": {
|
|
"fixtures/storage.sol": {
|
|
"content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity ^0.8.0;\nimport \"nonexistent/console.sol\";\ncontract MyContract { function greet() public pure returns (string memory) { return \"Hello\" // Missing semicolon }}"
|
|
}
|
|
},
|
|
"settings": {
|
|
"optimizer": {
|
|
"enabled": true,
|
|
"runs": 200
|
|
},
|
|
"outputSelection": {
|
|
"*": {
|
|
"*": ["abi"]
|
|
}
|
|
}
|
|
}
|
|
}
|