Verify ERC20 Smart Contract on BSCscan

Please help me verify this Smart contract

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

contract CheapUSDToken is ERC20 {

    constructor () ERC20("Cheap USD Token", "CUSDT") {
        _mint(msg.sender, 1000000 * (10 ** uint256(decimals())));
    }
}

Already tried flatten it on Remix but still cant verify it on Bscscan

Token Contract: 0x790647f5118dad9645090c827a347212779bc1c8

1 Like

Hey, I am not familiar with the BSC-Chain, maybe you can ask this in their forum: Home | Binance Chain Forum

And the doc about verifying on the BSC-Chain: Truffle Verify - Binance Chain Docs

Have verified! You can have a check: Contract Address 0x790647f5118dad9645090c827a347212779bc1c8 | BscScan

1 Like