Last active
November 23, 2021 13:04
-
-
Save KBPsystem777/3ddc14c3568401a47c8e3d302c40c8e5 to your computer and use it in GitHub Desktop.
ERC20 Token Template for PH-Dog
This file contains hidden or 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
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.6.2; | |
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.1.0/contracts/token/ERC20/ERC20.sol"; | |
contract Token is ERC20 { | |
constructor () public ERC20("Aspin Dog", "PHDOG") { | |
_mint(msg.sender, 100000000 * (10 ** uint256(decimals()))); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment