-
Notifications
You must be signed in to change notification settings - Fork 0
testINT #48
Copy link
Copy link
Open
Labels
reviewReview is used by var/core contributor in order to finalise it before even deploytestnet functionReview is used by var/core contributor in order to finalise it before even deploytestnet function
Metadata
Metadata
Assignees
Labels
reviewReview is used by var/core contributor in order to finalise it before even deploytestnet functionReview is used by var/core contributor in order to finalise it before even deploytestnet function
// SPDX-License-Identifier: MIT
pragma solidity ^0.8;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract TestINT is ERC20 {
constructor(uint256 initialSupply) ERC20("TestINT", "TINT") {
_mint(msg.sender, initialSupply * (10 ** uint256(decimals())));
}
}