Last active
September 8, 2022 22:58
-
-
Save envatic/f90b5d3ba5595489d8110aa54a59ea21 to your computer and use it in GitHub Desktop.
Medium Tutorial Token2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// contracts/GLDToken.sol | |
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; | |
contract FluffyShibaToken is ERC20 { | |
constructor(uint256 initialSupply) ERC20("FluffyShiba", "FSH") { | |
_mint(msg.sender, initialSupply); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment