TestERC20.sol 291 Bytes
Newer Older
1
// SPDX-License-Identifier: MIT
2
pragma solidity ^0.8.0;
3

4
import { ERC20 } from "@rari-capital/solmate/src/tokens/ERC20.sol";
5 6

contract TestERC20 is ERC20 {
7
    constructor() ERC20("TEST", "TST", 18) {}
8 9 10 11 12

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