Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikec/42e52338348b988ec6d1cabca8e844fc to your computer and use it in GitHub Desktop.
Save mikec/42e52338348b988ec6d1cabca8e844fc to your computer and use it in GitHub Desktop.
contract Thing is Proxy {
uint256 num;
string name = "Thing";
}
contract ThingDelegate {
uint256 n;
function incrementNum() public {
n = n + 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment