{ | |
"language": "Solidity", | |
"sources": { | |
"ga.sol": { | |
"content": "// SPDX-License-Identifier: MIT\r\n\r\npragma solidity ^0.8.0;\r\n\r\ncontract test {\r\n\r\n bool enabled = false;\r\n \r\n function init() public {\r\n enabled = !enabled;\r\n } \r\n\r\n function pseudo_mint() public payable {\r\n require(enabled, \"Mint is not live\");\r\n }\r\n\r\n}" | |
} | |
}, | |
"settings": { | |
"optimizer": { | |
"enabled": false, | |
"runs": 200 | |
}, | |
"outputSelection": { | |
"*": { | |
"*": [ | |
"evm.bytecode", | |
"evm.deployedBytecode", | |
"devdoc", | |
"userdoc", | |
"metadata", | |
"abi" | |
] | |
} | |
} | |
} | |
} |