TestERC20Mock.sol 243 Bytes
Newer Older
John Doe's avatar
John Doe committed
1 2 3 4 5 6 7 8 9 10 11
// SPDX-License-Identifier: MIT

pragma solidity =0.8.4;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract TestERC20Mock is ERC20 {
  constructor(uint256 amount) ERC20("Test Token", "TT") {
    _mint(msg.sender, amount);
  }
}