I've deployed a smart contract to the Avalanche blockchain using REMIX. It worked perfectly. I used the tool directly from Open Zeppelin to create it. The issue I'm having is trying to verify the contract on Snowtrace. I've tried everything I can, and it hasn't worked. I've used the flattener as well with no luck. Any help would be appreciated.
Here is the contract code:
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
contract ZLYX is ERC20, ERC20Burnable {
constructor() ERC20("ZLYX", "ZLYX") {
_mint(msg.sender, 1000000000 * 10 ** decimals());
}
}