ERROR AS I TRY TO VERIFY and publish MY CONTRACT

Need help to have my BSC Smart contract verified

pragma solidity ^0.8.0;

import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol";

contract HyperPesa is ERC20 {
    constructor(uint256 initialSupply) public ERC20 ("HyperPesa", "HPESA"){
        _mint(msg.sender, initialSupply);
    }
}

    

Contract address :0x9427b655cc06d817c5874757b1fb59c1b2b34ae5
will really appreciate

Sorry, I am not familiar with the BSC-Chain, maybe you should ask for help in their forum: Home | Binance Chain Forum

And they have a documentation about how to verify contracts, maybe you can have a look at it:

I think you can have a look at this tutorial: Verify erc20 token on etherscan that was deployed through remix:step by step guide

And for next time, please search at first and then ask questions, thanks!