TestToken.sol
1 // SPDX-License-Identifier: MIT
2 pragma solidity ^0.8.20;
3
4 import "solmate/tokens/ERC20.sol";
5
6 /**
7 * @title TestToken
8 */
9 contract TestToken is ERC20 {
10 constructor() ERC20("TestToken", "TST", 6) {
11 _mint(msg.sender, 100_000e6);
12 }
13 }