all files / contracts/ GenericERC20.sol

0% Statements 0/1
100% Branches 0/0
0% Functions 0/1
0% Lines 0/1
1 2 3 4 5 6 7 8 9 10                   
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
 
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
 
contract GenericERC20 is ERC20 {
    constructor() ERC20("GenericERC20", "GERC20") {
        _mint(msg.sender, 1000000000 * 10 ** decimals());
    }
}