Hi abcoathup,
when I compile locally it worked fine and deployed. it throws error during verification of contract in BSC (File import callback not supported)
code:
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract CMATICToken is ERC20 {
constructor(uint256 initialSupply) public ERC20("Classic MATIC", "cMATIC") {
_mint(msg.sender, initialSupply);
}
}
Contract:0x7dca8e88485cfb0d00fc860e2c9f8e27dd1a1cde
your help is much appreciated.