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

Message for Contract creation:
0x608060405234801561001057600080fd5b50610124806100206000396000f3fe6080604052600436106053576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680632a1afcd914605857806360fe47b11460805780636d4ce63c1460b7575b600080fd5b348015606357600080fd5b50606a60df565b6040518082815260200191505060405180910390f35b348015608b57600080fd5b5060b56004803603602081101560a057600080fd5b810190808035906020019092919050505060e5565b005b34801560c257600080fd5b5060c960ef565b6040518082815260200191505060405180910390f35b60005481565b8060008190555050565b6000805490509056fea165627a7a72305820ecfe912e2828783ae6e0664b0341f8d3182d15422ac6592502c2bbab452e29da0029

@marceljay
Copy link
Author

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