Richard Ramos f91269a1b0
fix: lint
2024-09-06 19:32:03 -04:00

13 lines
307 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity >=0.8.19 <0.9.0;
import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract TestToken is ERC20 {
constructor() ERC20("TestToken", "TTT") { }
function mint(address to, uint256 amount) public {
_mint(to, amount);
}
}