Please help me to resolve this error…
Email [email protected]
Contract address: 0xD2388894081306eD60a00227937108A1d27e602F
Source code:
// contracts/PakDOT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import “@openzeppelin/contracts/token/ERC20/ERC20.sol”;
contract name is ERC20 {
constructor(uint256 initialSupply) ERC20(“PakDOT”, “PDOT”) {
_mint(msg.sender, initialSupply);
}
}