Skip to content

Instantly share code, notes, and snippets.

@dariuskasperavicius
Created July 30, 2020 16:32
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 dariuskasperavicius/34a573dd12ab4092299d2e2d0b745cc2 to your computer and use it in GitHub Desktop.
Save dariuskasperavicius/34a573dd12ab4092299d2e2d0b745cc2 to your computer and use it in GitHub Desktop.
pragma solidity ^0.5.0;
import "openzeppelin-solidity/contracts/token/ERC20/ERC20.sol";
contract TutorialToken is ERC20 {
string public name = "TutorialToken";
string public symbol = "TT";
uint8 public decimals = 2;
uint public INITIAL_SUPPLY = 12000;
constructor() public {
_mint(msg.sender, INITIAL_SUPPLY);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment