Hello! I am a newbie to making crypto and i recently followed this tutorial: https://www.youtube.com/watch?v=K8JoqxOVSaY&t=540s
When I followed this tutorial I got the following code:
Code to reproduce
pragma solidity ^0.8.0;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol";
contract ECoin is ERC20 {
constructor(uint256 initialSupply) public ERC20 ("ECoin", "Dumb") {
_mint(msg.sender,initialSupply);
}
}
Now, whenever I got to https://bscscan.com (i am using the binance smart chain) it proceeds to say that it did not generate the bytecode or that it could not find the github link. When using remix it worked just fine, and I already made the token, i just want to verify it. I have been stumpted on this for days and help would be HEAVILY appreciated.