TestERC20.sol 291 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 // SPDX-License-Identifier: MIT pragma solidity 0.8.15; import { ERC20 } from "@rari-capital/solmate/src/tokens/ERC20.sol"; contract TestERC20 is ERC20 { constructor() ERC20("TEST", "TST", 18) {} function mint(address to, uint256 value) public { _mint(to, value); } }