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/ec3d4e5c305b229881d6722979daa139 to your computer and use it in GitHub Desktop.
Save mikec/ec3d4e5c305b229881d6722979daa139 to your computer and use it in GitHub Desktop.
pragma solidity ^0.4.18;
import "./StorageStateful.sol";
contract TokenDelegate is StorageStateful {
function totalSupply() public view returns (uint256) {
return _storage.getUint("totalSupply");
}
// ... other functions truncated
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment