Am trying to create a project and new to solidity. I added a max limit to prevent whale wallets. The limit is 150m tokens and i would like to burn a higher amount, how can i exclude the burn adress 0x0000000000000000000000000000000000000000 from this function.
Codes:
@ function _transfer(
uint256 contractBalanceRecepient = balanceOf(to);
require(contractBalanceRecepient + amount <= _maxWalletToken, "Exceeds maximum wallet token amount (150,000,000)");
kind regards Kevin!