We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48690a5 commit 9acea6eCopy full SHA for 9acea6e
README.md
@@ -28,8 +28,11 @@ Add in support to store arrays and mappings into `SimpleStorage.huff` to win a 0
28
29
```solidity
30
interface ISimpleStorage {
31
+ function setString(string memory) external;
32
+ function getString(string memory) external;
33
+
34
function setArray(uint256[] memory) external;
- function getArray(uint256 i) external returns (uint256);
35
+ function getArray() external returns (uint256[] memory);
36
37
function setMap(bytes32 key, bytes32 value) external;
38
function getMap(bytes32 key) external returns (bytes32);
0 commit comments