Hello I am trying to verify my contract but got this error I use multi-part

Hi, welcome! :wave:

I think you can have a look at this tutorial:

And for the next time, please search at the forum at first, and then ask questions, thanks!
How do I ask a good question? - General / Meta - OpenZeppelin Community

Hi Skyge, sorry to harras you but i cant seem to verify my newly deployed contract on BSCscan. I cant seem any info to help me do so. this is before i learnt about fattening the contract. Can you please help me? I keep getting a parselError.

0x790eda33871e14a95c33b760014ee36c5ecf6cdc

// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.0;

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

contract Muresk is ERC20 {

constructor(uint256 initialSupply) public ERC20("Muresk", "MUSK") {

    _mint(msg.sender, initialSupply);

}

}

@bb27 Follow the links and read everything. There is definitely info to help you.