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
| { | |
| "SimpleStorage.sol": { | |
| "__sources__": { | |
| "SimpleStorage.sol": { | |
| "content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\ncontract SimpleStorage {\n uint256 public favoriteNumber;\n\n // Function to update the number\n function store(uint256 _number) public {\n favoriteNumber = _number;\n }\n}\n", | |
| "file": "SimpleStorage.sol" | |
| } | |
| } | |
| } | |
| } |