infrastructure-upgrade/lib/v3-periphery/contracts/test/TestERC20.sol
T-Hax 735546619e
init
Signed-off-by: T-Hax <>
2023-04-08 18:46:18 +00:00

11 lines
301 B
Solidity

// SPDX-License-Identifier: UNLICENSED
pragma solidity =0.7.6;
import '@openzeppelin/contracts/drafts/ERC20Permit.sol';
contract TestERC20 is ERC20Permit {
constructor(uint256 amountToMint) ERC20('Test ERC20', 'TEST') ERC20Permit('Test ERC20') {
_mint(msg.sender, amountToMint);
}
}