Skip to content

Instantly share code, notes, and snippets.

@vasa-develop
Created November 29, 2019 18:28
Show Gist options
  • Save vasa-develop/47ce176334803452866d700296bb2d7f to your computer and use it in GitHub Desktop.
Save vasa-develop/47ce176334803452866d700296bb2d7f to your computer and use it in GitHub Desktop.
pragma solidity ^0.5.11;
contract Greeter {
event Thanks(address sender, uint256 value);
function thanks() public payable {
emit Thanks(msg.sender, msg.value);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment