2021-10-21 12:06:30 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
|
|
|
|
|
|
|
|
contract TestToken is ERC20 {
|
2022-02-09 13:37:55 +00:00
|
|
|
// solhint-disable-next-line no-empty-blocks
|
2021-11-16 13:25:42 +00:00
|
|
|
constructor() ERC20("TestToken", "TST") {}
|
|
|
|
|
2022-02-09 13:17:23 +00:00
|
|
|
function mint(address holder, uint256 amount) public {
|
2021-11-23 13:34:27 +00:00
|
|
|
_mint(holder, amount);
|
2021-10-21 12:06:30 +00:00
|
|
|
}
|
|
|
|
}
|