Skip to content

Instantly share code, notes, and snippets.

@alexroan
Created April 3, 2020 11:53
Show Gist options
  • Save alexroan/7e08d126e99d320c85d46ee74a2be714 to your computer and use it in GitHub Desktop.
Save alexroan/7e08d126e99d320c85d46ee74a2be714 to your computer and use it in GitHub Desktop.
BasicERC20.sol
pragma solidity ^0.5.5;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20Detailed.sol";
contract MyERC20 is ERC20, ERC20Detailed {
constructor(string memory _name, string memory _symbol, uint8 _decimals) public ERC20Detailed(_name, _symbol, _decimals) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment