I'm trying to to verify and publish a contract on BSC Scan testnet. I'm using Open Zepellin and Remix - ETH IDE, however I'm getting the following error:
not found: File import callback not supported
I believe the same issue is true if I try verifying it on Etherscan.
what am I doing wrong?
This is the code I pasted on BSC Scan to verify and publish it.
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract Presidente is ERC20, Ownable {
constructor() ERC20("Presidente", "PRES") {
_mint(msg.sender, 1000000 * 10 ** decimals());
}
function mint(address to, uint256 amount) public onlyOwner {
_mint(to, amount);
}
}