TestERC20.sol 290 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract TestERC20 is ERC20 {
    constructor() ERC20("TEST", "TST") {}

    function mint(address to, uint256 value) public {
        _mint(to, value);
    }
}