Hi guys,
i want to verify my token on BSC. I did my BEP-20 Token with here:
I deployed my token with remix:
https://remix.ethereum.org/
This is my SourceCode which is just a test for a real token to verify....
But i already spend a lot of BNB to make new Tokens to try to verify but everytime i try to make a token with Contract Wizard i cant verify this token on BSCScan....
This is my source code:
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts@4.6.0/token/ERC20/ERC20.sol";
contract Florian is ERC20 {
constructor() ERC20("Florian", "FLO") {
_mint(msg.sender, 1000 * 10 ** decimals());
}
}
What do i do wrong? Why cant i verify my SourceCode on BSCScan with the code above?