infrastructure-upgrade/lib/v3-periphery/contracts/test/TestERC20.sol

11 lines
301 B
Solidity
Raw Normal View History

2023-04-08 21:46:18 +03:00
// 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);
}
}