Skip to content

Instantly share code, notes, and snippets.

@gustavoguimaraes
Last active October 25, 2018 05:54
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 gustavoguimaraes/0810284f77d27c58331ba35e4ee8fb48 to your computer and use it in GitHub Desktop.
Save gustavoguimaraes/0810284f77d27c58331ba35e4ee8fb48 to your computer and use it in GitHub Desktop.
pragma solidity 0.4.24;
import 'openzeppelin-solidity/contracts/token/ERC20/ERC20Mintable.sol';
contract GustavoCoin is ERC20Mintable {
string public name = "GUSTAVO COIN";
string public symbol = "GUS";
uint8 public decimals = 18;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment