Skip to content

Instantly share code, notes, and snippets.

@Turupawn
Created February 4, 2022 22:41
Show Gist options
  • Save Turupawn/88831d118087129f2dc0e642249a28c4 to your computer and use it in GitHub Desktop.
Save Turupawn/88831d118087129f2dc0e642249a28c4 to your computer and use it in GitHub Desktop.
// SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract MyToken is ERC20
{
constructor () ERC20("My Token", "TKN")
{
_mint(msg.sender, 1000 ether);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment