735546619e
Signed-off-by: T-Hax <>
15 lines
365 B
Solidity
15 lines
365 B
Solidity
// SPDX-License-Identifier: UNLICENSED
|
|
pragma solidity =0.7.6;
|
|
|
|
import '@openzeppelin/contracts/drafts/ERC20Permit.sol';
|
|
|
|
contract TestERC20Metadata is ERC20Permit {
|
|
constructor(
|
|
uint256 amountToMint,
|
|
string memory name,
|
|
string memory symbol
|
|
) ERC20(name, symbol) ERC20Permit(name) {
|
|
_mint(msg.sender, amountToMint);
|
|
}
|
|
}
|