Skip to content

Instantly share code, notes, and snippets.

@KBPsystem777
Last active November 23, 2021 13:04
Show Gist options
  • Save KBPsystem777/3ddc14c3568401a47c8e3d302c40c8e5 to your computer and use it in GitHub Desktop.
Save KBPsystem777/3ddc14c3568401a47c8e3d302c40c8e5 to your computer and use it in GitHub Desktop.
ERC20 Token Template for PH-Dog
// 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