Skip to content

Commit 9acea6e

Browse files
committed
.
1 parent 48690a5 commit 9acea6e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,11 @@ Add in support to store arrays and mappings into `SimpleStorage.huff` to win a 0
2828

2929
```solidity
3030
interface ISimpleStorage {
31+
function setString(string memory) external;
32+
function getString(string memory) external;
33+
3134
function setArray(uint256[] memory) external;
32-
function getArray(uint256 i) external returns (uint256);
35+
function getArray() external returns (uint256[] memory);
3336
3437
function setMap(bytes32 key, bytes32 value) external;
3538
function getMap(bytes32 key) external returns (bytes32);

0 commit comments

Comments
 (0)