Skip to content

Instantly share code, notes, and snippets.

@chrisfranko
Created October 21, 2020 15:44
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 chrisfranko/cf633bd6b21bdd430e7fc10c9cef19ff to your computer and use it in GitHub Desktop.
Save chrisfranko/cf633bd6b21bdd430e7fc10c9cef19ff to your computer and use it in GitHub Desktop.
pragma solidity ^0.6.2;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol";
contract Token is ERC20 {
constructor () public ERC20("Token", "TKN") {
//_mint(msg.sender, 1000000 * (10 ** uint256(decimals())));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment