Skip to content

Instantly share code, notes, and snippets.

@fabianekc
Created April 17, 2023 13:48
Show Gist options
  • Save fabianekc/b1ea60e79715ad9f3d4e0ea8665c57ca to your computer and use it in GitHub Desktop.
Save fabianekc/b1ea60e79715ad9f3d4e0ea8665c57ca to your computer and use it in GitHub Desktop.
// 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