Quite some time ago i've launched a token(ERC20 from openzeppelin), i thought i verified the smart contract, but it seems like i have not
It was a classical ERC20 from openzeppelin with fixed supply. I know the supply, i know the name and ticker and the address that launched the contract.
But i forgot the exact code that was used for launching the contract, contract name and the solidity version.
I've already attempted a several times but was unable to verify it.
Any suggestions? Much appreciated, thanks!
I think this is the code i used, or atleast a similar. If i try to compile the contract with Solidity 0.6.0, it says openzeppelin ERC20 requires atleast 0.8.0 ... How can i go back in time and get source for ERC20 with solidity 0.6.0?
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract ERC20FixedSupply is ERC20 {
constructor() public ERC20("Name", "Ticker") {
_mint(msg.sender, 100000000000);
}
}