Skip to content

Instantly share code, notes, and snippets.

@aadorian
Created April 9, 2021 17:54
Show Gist options
  • Save aadorian/f8590756156789db2c8492fc2bbd0c51 to your computer and use it in GitHub Desktop.
Save aadorian/f8590756156789db2c8492fc2bbd0c51 to your computer and use it in GitHub Desktop.
pragma solidity ^0.6.6;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract MyERC is ERC20 {
constructor( string memory _name, string memory _denomination, uint256 _initialSupply, address _owner) public
ERC20(_name,_denomination) {
_mint(_owner, _initialSupply);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment