Created
April 17, 2023 13:48
-
-
Save fabianekc/b1ea60e79715ad9f3d4e0ea8665c57ca to your computer and use it in GitHub Desktop.
This file contains 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
// SPDX-License-Identifier: MIT | |
pragma solidity >=0.8.0 <0.9.0; | |
contract LogStorage { | |
event DataStored( | |
string _data | |
); | |
function StoreInLogs(string calldata _data) public { | |
emit DataStored(_data); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment