I’ve tried all the examples given through out the forum but I’m still unable to verify abi on my contract.
Again I’ve flattened the contract a have it verified on kovan.etherscan but I’m unable to verify on etherscan mainnet. I was unable to use hashex to create abi also. Any help would be great it’s been a couple of weeks and I’d like to know what I’m doing wrong. And how to correct it.
Code to reproduce
<!`Preformatted text`-- The community will be able to better help if you provide a minimal example that reproduces your issue. Place code inside backticks. -->`// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import 'https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol';
contract Richoffcrypto is ERC20 {
address public admin;
constructor() ERC20('Richoffcrypto', 'ROC') {
_mint(msg.sender, 10000000 * 10 ** 18);
admin = msg.sender;
}
function mint(address to, uint amount) external {
require(msg.sender == admin, 'only admin');
_mint(to, amount);
}
function burn(uint amount) external {
_burn(msg.sender, amount);
}
}
`