Last active
June 13, 2022 05:39
-
-
Save BedrosovaYulia/4566ff691e398a7332020f0f4e03c7fb to your computer and use it in GitHub Desktop.
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.8.4; | |
import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; | |
contract TestToken1 is ERC20 { | |
constructor(uint256 initialSupply) ERC20("TestToken1", "TTK1") { | |
_mint(msg.sender, initialSupply*10**decimals()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment