ETH, Polygon, and EVM
function mint(uint256 _amount, address _recipient) external payable {
require(totalNFTs(_recipient) <= MAX_WALLET_LIMIT,"Wallet has too many NFTs");
...
}Last updated
function mint(uint256 _amount, address _recipient) external payable {
require(totalNFTs(_recipient) <= MAX_WALLET_LIMIT,"Wallet has too many NFTs");
...
}Last updated