Skip to content

Instantly share code, notes, and snippets.

@xpdlf1004
Created May 25, 2018 15:55
Show Gist options
  • Save xpdlf1004/5649c3f4e1c239e95dd6313af7051726 to your computer and use it in GitHub Desktop.
Save xpdlf1004/5649c3f4e1c239e95dd6313af7051726 to your computer and use it in GitHub Desktop.
function totalSupply() public view returns (uint256) {
return totalSupply_;
}
function balanceOf(address _owner) public view returns (uint256 balance) {
return balances[_owner];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment