Skip to content

Instantly share code, notes, and snippets.

@BedrosovaYulia
Last active June 13, 2022 05:39
Show Gist options
  • Save BedrosovaYulia/4566ff691e398a7332020f0f4e03c7fb to your computer and use it in GitHub Desktop.
Save BedrosovaYulia/4566ff691e398a7332020f0f4e03c7fb to your computer and use it in GitHub Desktop.
// 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