Comment on page
Does Bolide mint new tokens?
Bolide does not mint new tokens and we explain below why:
1. Token BLID was minted on Ethereum mainnet and function mint cant be called again according to the code: https://etherscan.io/address/0x8A7aDc1B690E81c758F1BD0F72DFe27Ae6eC56A5#code
--
function mint(address account, uint256 amount)
onlyOwner external
{
require(timestampCreated+1 days> block.timestamp,“Mint time was finished”);
_mint(account,amount);
}
--
Last modified 4mo ago