Skip to content

Instantly share code, notes, and snippets.

@marceljay
Created March 14, 2019 12:47
Show Gist options
  • Save marceljay/e5aab6f5606f0d1b0bebc7b5af58a93c to your computer and use it in GitHub Desktop.
Save marceljay/e5aab6f5606f0d1b0bebc7b5af58a93c to your computer and use it in GitHub Desktop.
Contract Verification Etherscan
pragma solidity ^0.5;
contract Store {
uint public storedData;
function set(uint x) public {
storedData = x;
}
function get() public view returns (uint) {
return storedData;
}
}
@marceljay
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment