This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "contracts/simple_storage.sol": { | |
| "__sources__": { | |
| "contracts/simple_storage.sol": { | |
| "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity >=0.8.2 <0.9.0;\n\ncontract SimpleStorage {\n uint256 value = 10;\n\n function updateValue(uint256 _newVal) public {\n value = _newVal;\n }\n\n function retrieve() public view returns (uint256){\n return value;\n }\n \n}", | |
| "file": "contracts/simple_storage.sol" | |
| } | |
| } | |
| }, | |
| "contracts/MemberRegister.sol": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "contracts/simple_storage.sol": { | |
| "__sources__": { | |
| "contracts/simple_storage.sol": { | |
| "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity >=0.8.2 <0.9.0;\n\ncontract SimpleStorage {\n uint256 value = 10;\n\n function updateValue(uint256 _newVal) public {\n value = _newVal;\n }\n\n function retrieve() public view returns (uint256){\n return value;\n }\n \n}", | |
| "file": "contracts/simple_storage.sol" | |
| } | |
| } | |
| }, | |
| "contracts/MemberRegister.sol": { |