// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract Zazzle is ERC20 {
constructor(uint256 supply) ERC20("Zazzle", "ZAZL") {
_mint(msg.sender, supply * (10 ** decimals()));
}
}
https://gyazo.com/1dc3076f8e66192f03adca890b8580b8 I’m getting this warning. I hate seeing it keep popping up. Can anyone help or know the problem?