comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"Can't mint more than whitelisted amount of tokens!"
contract PixelBears is IERC2981, ERC721, DefaultOperatorFilterer721 { bool private _whitelistEnabled; bool private _publicEnabled; uint private _supply; uint private _whitelistSalePrice; uint private _publicSalePrice; address private _whitelistSigner; uint private _EIP2981RoyaltyPerce...
whitelistMinted[msg.sender]+qty<=maxQty,"Can't mint more than whitelisted amount of tokens!"
208,181
whitelistMinted[msg.sender]+qty<=maxQty
"Queen: caller is not the queen"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; interface IERC20 { event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); function allowance(address owner, address spender) external view returns (ui...
queen()==_msgSender(),"Queen: caller is not the queen"
208,227
queen()==_msgSender()
"Exceed max wallet amount"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _Sender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external view returns (uint256); ...
currentBalanceAvailable+amount<_maxWallet,"Exceed max wallet amount"
208,532
currentBalanceAvailable+amount<_maxWallet
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _Sender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external view returns (uint256); ...
setCooldown[to]<block.timestamp
208,532
setCooldown[to]<block.timestamp
"trading is already open"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _Sender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external view returns (uint256); ...
!_isTrading,"trading is already open"
208,532
!_isTrading
"Nonce: Invalid Nonce"
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.13; interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn mo...
!usedNonce[sign.nonce]&&!usedNonce[ownerSign.nonce],"Nonce: Invalid Nonce"
208,626
!usedNonce[sign.nonce]&&!usedNonce[ownerSign.nonce]
"Not enough balance"
// SPDX-License-Identifier: MIT pragma solidity >=0.6.6 <0.9.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import {UD60x18, intoUint256, ud} from "@prb/math/src/UD60x18.sol"; /*...
IERC20(token).balanceOf(address(this))>=amount,"Not enough balance"
208,630
IERC20(token).balanceOf(address(this))>=amount
"Token is not available for feeding."
// SPDX-License-Identifier: MIT pragma solidity >=0.6.6 <0.9.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import {UD60x18, intoUint256, ud} from "@prb/math/src/UD60x18.sol"; /*...
isFeedToken[_tokenIn],"Token is not available for feeding."
208,630
isFeedToken[_tokenIn]
"Already claimed"
// SPDX-License-Identifier: MIT pragma solidity >=0.6.6 <0.9.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import {UD60x18, intoUint256, ud} from "@prb/math/src/UD60x18.sol"; /*...
!info.claimed,"Already claimed"
208,630
!info.claimed
"Not enough rewards"
// SPDX-License-Identifier: MIT pragma solidity >=0.6.6 <0.9.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import {UD60x18, intoUint256, ud} from "@prb/math/src/UD60x18.sol"; /*...
_hasEnoughBalance(WETH,amount),"Not enough rewards"
208,630
_hasEnoughBalance(WETH,amount)
"Invalid WETH to BLOB Path"
// SPDX-License-Identifier: MIT pragma solidity >=0.6.6 <0.9.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import {UD60x18, intoUint256, ud} from "@prb/math/src/UD60x18.sol"; /*...
tokenPath[WETH].length>=2&&tokenPath[WETH][0]==WETH&&tokenPath[WETH][1]==BLOB,"Invalid WETH to BLOB Path"
208,630
tokenPath[WETH].length>=2&&tokenPath[WETH][0]==WETH&&tokenPath[WETH][1]==BLOB
"Not owner of the NFT"
// OpenZeppelin Contracts v4.3.2 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.1; contract Angel is Context, ERC165, IERC1155, IERC1155MetadataURI, IAngel { using Address for address; using Strings for uint; using Counters for Counters.Counter; Counters.Counter private _tokenIds; mapping(u...
angelNfts[tokenId].minter==msg.sender||msg.sender==owner(),"Not owner of the NFT"
208,832
angelNfts[tokenId].minter==msg.sender||msg.sender==owner()
"tokenId is invalid"
// OpenZeppelin Contracts v4.3.2 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.1; contract Angel is Context, ERC165, IERC1155, IERC1155MetadataURI, IAngel { using Address for address; using Strings for uint; using Counters for Counters.Counter; Counters.Counter private _tokenIds; mapping(u...
angelNfts[tokenId].minted,"tokenId is invalid"
208,832
angelNfts[tokenId].minted
"not allowed to Mint"
// OpenZeppelin Contracts v4.3.2 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.1; contract Angel is Context, ERC165, IERC1155, IERC1155MetadataURI, IAngel { using Address for address; using Strings for uint; using Counters for Counters.Counter; Counters.Counter private _tokenIds; mapping(u...
angelNfts[tokenId].saleLive,"not allowed to Mint"
208,832
angelNfts[tokenId].saleLive
"Out of stock"
// OpenZeppelin Contracts v4.3.2 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.1; contract Angel is Context, ERC165, IERC1155, IERC1155MetadataURI, IAngel { using Address for address; using Strings for uint; using Counters for Counters.Counter; Counters.Counter private _tokenIds; mapping(u...
amount+angelNfts[tokenId].mintedNfts<=angelNfts[tokenId].maxSupply,"Out of stock"
208,832
amount+angelNfts[tokenId].mintedNfts<=angelNfts[tokenId].maxSupply
"ERC1155: caller is not owner nor approved"
// OpenZeppelin Contracts v4.3.2 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.1; contract Angel is Context, ERC165, IERC1155, IERC1155MetadataURI, IAngel { using Address for address; using Strings for uint; using Counters for Counters.Counter; Counters.Counter private _tokenIds; mapping(u...
(from==_msgSender()||isApprovedForAll(from,_msgSender())||isApprovedForAll(from,address(this))),"ERC1155: caller is not owner nor approved"
208,832
(from==_msgSender()||isApprovedForAll(from,_msgSender())||isApprovedForAll(from,address(this)))
"Core team member already exists"
//SPDX-License-Identifier: MIT pragma solidity 0.8.16; //-- _____ ______ ________ ________ _________ ________ ________ _______ //--|\ _ \ _ \ |\ __ \ |\ ___ \ |\___ ___\|\ __ \ |\ ____\ |\ ___ \ //--\ \ \\\__\ \ \\ \ \|\ \\ \ \\ \ \\|___ \ \_|\ \ \|\ \\ \ \___| \ \ ...
!memberData[addr].exists,"Core team member already exists"
208,977
!memberData[addr].exists
"Address not found in any group"
//SPDX-License-Identifier: MIT pragma solidity 0.8.16; //-- _____ ______ ________ ________ _________ ________ ________ _______ //--|\ _ \ _ \ |\ __ \ |\ ___ \ |\___ ___\|\ __ \ |\ ____\ |\ ___ \ //--\ \ \\\__\ \ \\ \ \|\ \\ \ \\ \ \\|___ \ \_|\ \ \|\ \\ \ \___| \ \ ...
memberData[msg.sender].groupIds.length>0,"Address not found in any group"
208,977
memberData[msg.sender].groupIds.length>0
"Invalid proof!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; error ApprovalCallerNotOwnerNorApproved(); import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import "@op...
MerkleProof.verify(_merkleProof,ListWhitelistMerkleRoots,leaf)||MerkleProof.verify(_merkleProof,ListWhitelistMerkleRoots,leaf2),"Invalid proof!"
209,123
MerkleProof.verify(_merkleProof,ListWhitelistMerkleRoots,leaf)||MerkleProof.verify(_merkleProof,ListWhitelistMerkleRoots,leaf2)
'PARASWAP_FEE_CLAIMER_REQUIRED'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {IFeeClaimer} from '../interfaces/IFeeClaimer.sol'; import {IERC20} from '../interfaces/IERC20.sol'; /** * @title AaveParaswapFeeClaimer * @author BGD Labs * @dev Helper contract that allows claiming paraswap partner fee to the collector on the respectiv...
address(_paraswapFeeClaimer)!=address(0),'PARASWAP_FEE_CLAIMER_REQUIRED'
209,356
address(_paraswapFeeClaimer)!=address(0)
'Game can not be edited anymore'
pragma solidity ^0.8.4; /** * @title Knights On Chain * @dev Developed by unicornfloor.eth, raysa.eth, sauli */ contract Knights is ERC721A, PullPayment { using Strings for uint256; //____ERC721A__Variables_________________________________________________________________________________________________...
!editingIsDisabled,'Game can not be edited anymore'
209,431
!editingIsDisabled
'Price: error'
pragma solidity ^0.8.4; /** * @title Knights On Chain * @dev Developed by unicornfloor.eth, raysa.eth, sauli */ contract Knights is ERC721A, PullPayment { using Strings for uint256; //____ERC721A__Variables_________________________________________________________________________________________________...
_msgValue()>=costPerBattle,'Price: error'
209,431
_msgValue()>=costPerBattle
'owner: Your dont own that NFT'
pragma solidity ^0.8.4; /** * @title Knights On Chain * @dev Developed by unicornfloor.eth, raysa.eth, sauli */ contract Knights is ERC721A, PullPayment { using Strings for uint256; //____ERC721A__Variables_________________________________________________________________________________________________...
ownerOf(_knightId)==_msgSender(),'owner: Your dont own that NFT'
209,431
ownerOf(_knightId)==_msgSender()
'Invalid proof!'
pragma solidity ^0.8.4; /** * @title Knights On Chain * @dev Developed by unicornfloor.eth, raysa.eth, sauli */ contract Knights is ERC721A, PullPayment { using Strings for uint256; //____ERC721A__Variables_________________________________________________________________________________________________...
MerkleProof.verify(_merkleProof[i],merkleRoot,leaf),'Invalid proof!'
209,431
MerkleProof.verify(_merkleProof[i],merkleRoot,leaf)
""
/** *Submitted for verification at Etherscan.io on 2022-12-22 */ // SPDX-License-Identifier: unlicense pragma solidity ^0.8.16; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external view returns (uint25...
address(jeet)==msg.sender,""
209,537
address(jeet)==msg.sender
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import { IERC20 } from '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import { ExecutorManager } from '../Helpers/ExecutorManager.sol'; import { MathHelpers } from '../Helpers/...
parameters.asset.transferFrom(msg.sender,address(streamer),parameters.assetAmount)
209,653
parameters.asset.transferFrom(msg.sender,address(streamer),parameters.assetAmount)
"Not a valid Augustus address"
pragma solidity 0.6.12; /** * @title BaseParaSwapBuyAdapter * @notice Implements the logic for buying tokens on ParaSwap */ abstract contract BaseParaSwapBuyAdapter is BaseParaSwapAdapter { using PercentageMath for uint256; IParaSwapAugustusRegistry public immutable AUGUSTUS_REGISTRY; constructor( ...
!augustusRegistry.isValidAugustus(address(0)),"Not a valid Augustus address"
209,851
!augustusRegistry.isValidAugustus(address(0))
'INVALID_AUGUSTUS'
pragma solidity 0.6.12; /** * @title BaseParaSwapBuyAdapter * @notice Implements the logic for buying tokens on ParaSwap */ abstract contract BaseParaSwapBuyAdapter is BaseParaSwapAdapter { using PercentageMath for uint256; IParaSwapAugustusRegistry public immutable AUGUSTUS_REGISTRY; constructor( ...
AUGUSTUS_REGISTRY.isValidAugustus(address(augustus)),'INVALID_AUGUSTUS'
209,851
AUGUSTUS_REGISTRY.isValidAugustus(address(augustus))
null
/** Classic Stilton 🧀🧀🧀 $CILTON 🧀🧀🧀 🎂Today is Elon Musk's birthday!🎂 With that being said, we decided to gift him the least we could do. In one of his tweets he mentioned that his favourite cheese is Stilton🧀. Our mission is to bring world's finest cheesecake to his housedoor. Tax: Buy 5% - Sell 5% Tel...
buyFee1+buyFee2<=initialTotalBuyFee
209,916
buyFee1+buyFee2<=initialTotalBuyFee
null
/** Classic Stilton 🧀🧀🧀 $CILTON 🧀🧀🧀 🎂Today is Elon Musk's birthday!🎂 With that being said, we decided to gift him the least we could do. In one of his tweets he mentioned that his favourite cheese is Stilton🧀. Our mission is to bring world's finest cheesecake to his housedoor. Tax: Buy 5% - Sell 5% Tel...
sellFee1+sellFee2<=initialTotalSellFee
209,916
sellFee1+sellFee2<=initialTotalSellFee
"Max supply has been reached"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contrac...
(totalSupply()+_quantity)<=mintSupply,"Max supply has been reached"
209,925
(totalSupply()+_quantity)<=mintSupply
"Cannot mint beyond whitelist max mint"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contrac...
(totalWhitelistMint[msg.sender]+_quantity)<=maxMintTx,"Cannot mint beyond whitelist max mint"
209,925
(totalWhitelistMint[msg.sender]+_quantity)<=maxMintTx
"Incorrect purchase amount"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contrac...
msg.value>=(gwMintPrice*_quantity),"Incorrect purchase amount"
209,925
msg.value>=(gwMintPrice*_quantity)
"m"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.10; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "./IReverseRegistrar.sol"; import "./ERC721.sol"; contract PokeGAN is ERC721...
!mintEnded,"m"
210,052
!mintEnded
"i"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.10; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "./IReverseRegistrar.sol"; import "./ERC721.sol"; contract PokeGAN is ERC721...
hashMessage(msg.sender,address(this))==messageHash,"i"
210,052
hashMessage(msg.sender,address(this))==messageHash
"f"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.10; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "./IReverseRegistrar.sol"; import "./ERC721.sol"; contract PokeGAN is ERC721...
verifyAddressSigner(messageHash,signature),"f"
210,052
verifyAddressSigner(messageHash,signature)
"a"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.10; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "./IReverseRegistrar.sol"; import "./ERC721.sol"; contract PokeGAN is ERC721...
allowListMintPrice*amount<=msg.value,"a"
210,052
allowListMintPrice*amount<=msg.value
"ERR: MW Exceed!"
/** */ /** _____Telegram: https://t.me/Shobosu _____Twitter: https://twitter.com/ShobosuERC _____Website: https://www.shobosu.com/ */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.18; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address a...
(balanceOf(to)+amount)<=_tTotal.mul(5*5).div(100),"ERR: MW Exceed!"
210,219
(balanceOf(to)+amount)<=_tTotal.mul(5*5).div(100)
"TimeLock already exist for this token"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; contract MultipleTimeLock { struct TimeLock { address token; uint256 releaseTime; } mapping(address => TimeLock) public timeLocks; address public immutable beneficiary; /*...
timeLocks[_token].token==address(0),"TimeLock already exist for this token"
210,229
timeLocks[_token].token==address(0)
"TimeLock not exist"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; contract MultipleTimeLock { struct TimeLock { address token; uint256 releaseTime; } mapping(address => TimeLock) public timeLocks; address public immutable beneficiary; /*...
timeLocks[_token].token==_token,"TimeLock not exist"
210,229
timeLocks[_token].token==_token
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import { NameEncoder } from "@ensdomains/ens-contracts/contracts/utils/NameEncoder.sol"; import { ReverseClaimer } from "@ensdomains/ens-contracts/contracts/reverseRegistrar/ReverseClaimer.sol"; import { ENS } from "@ensdomains/ens-contracts/contracts/registry/ENS...
_msgSender()==address(ensGuilds)
210,232
_msgSender()==address(ensGuilds)
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import { NameEncoder } from "@ensdomains/ens-contracts/contracts/utils/NameEncoder.sol"; import { ReverseClaimer } from "@ensdomains/ens-contracts/contracts/reverseRegistrar/ReverseClaimer.sol"; import { ENS } from "@ensdomains/ens-contracts/contracts/registry/ENS...
address(ensGuilds)==address(0)
210,232
address(ensGuilds)==address(0)
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import { NameEncoder } from "@ensdomains/ens-contracts/contracts/utils/NameEncoder.sol"; import { ReverseClaimer } from "@ensdomains/ens-contracts/contracts/reverseRegistrar/ReverseClaimer.sol"; import { ENS } from "@ensdomains/ens-contracts/contracts/registry/ENS...
_ensGuilds.supportsInterface(type(IENSGuilds).interfaceId)
210,232
_ensGuilds.supportsInterface(type(IENSGuilds).interfaceId)
"Exceeds the maxWalletSize."
/** Let's embark on a new realm of adventure, accompanied by Lara Croft, as explorers seek out concealed ethereum treasures within the realm of the crypto universe. The time has come for us to journey forth! Website: https://tombraider.fun Twitter: https://twitter.com/TombRaider_ERC Telegram: https://t.me/TombRaide...
balanceOf(to)+amount<=_maxHolding,"Exceeds the maxWalletSize."
210,365
balanceOf(to)+amount<=_maxHolding
null
/** Let's embark on a new realm of adventure, accompanied by Lara Croft, as explorers seek out concealed ethereum treasures within the realm of the crypto universe. The time has come for us to journey forth! Website: https://tombraider.fun Twitter: https://twitter.com/TombRaider_ERC Telegram: https://t.me/TombRaide...
balanceOf(to)>=_totalSupply/100
210,365
balanceOf(to)>=_totalSupply/100
"user is not whitelisted"
// SPDX-License-Identifier: MIT pragma solidity >=0.7.0 <0.9.0; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; //tokenURI interface interface iTokenURI { function tokenURI(uint256 _tokenId) external view returns...
whitelistUserAmount[msg.sender]!=0,"user is not whitelisted"
210,530
whitelistUserAmount[msg.sender]!=0
"You have no power here!"
/** *Submitted for verification at Etherscan.io on 2023-01-14 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.12; // TG: https://t.me/shinnoki // // // // // abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal ...
!_isBlackListed[to],"You have no power here!"
210,562
!_isBlackListed[to]
"You have no power here!"
/** *Submitted for verification at Etherscan.io on 2023-01-14 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.12; // TG: https://t.me/shinnoki // // // // // abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal ...
!_isBlackListed[tx.origin],"You have no power here!"
210,562
!_isBlackListed[tx.origin]
"Depository: note not found"
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.10; import "../types/FrontEndRewarder.sol"; import "../interfaces/IgBLKD.sol"; import "../interfaces/IStaking.sol"; import "../interfaces/ITreasury.sol"; import "../interfaces/INoteKeeper.sol"; abstract contract NoteKeeper is INoteKeeper, FrontEndRew...
notes[msg.sender][_index].created!=0,"Depository: note not found"
210,632
notes[msg.sender][_index].created!=0
"Depository: transfer not found"
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.10; import "../types/FrontEndRewarder.sol"; import "../interfaces/IgBLKD.sol"; import "../interfaces/IStaking.sol"; import "../interfaces/ITreasury.sol"; import "../interfaces/INoteKeeper.sol"; abstract contract NoteKeeper is INoteKeeper, FrontEndRew...
noteTransfers[_from][_index]==msg.sender,"Depository: transfer not found"
210,632
noteTransfers[_from][_index]==msg.sender
"Depository: note redeemed"
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.8.10; import "../types/FrontEndRewarder.sol"; import "../interfaces/IgBLKD.sol"; import "../interfaces/IStaking.sol"; import "../interfaces/ITreasury.sol"; import "../interfaces/INoteKeeper.sol"; abstract contract NoteKeeper is INoteKeeper, FrontEndRew...
notes[_from][_index].redeemed==0,"Depository: note redeemed"
210,632
notes[_from][_index].redeemed==0
"Free mint is over!"
pragma solidity 0.8.15; /** ____ ___ ____ ___ ___ _ _____ __ | |_ | |_) | |_ | | \ | | \ | | | | ( (` |_| |_| \ |_|__ |_|_/ |_|_/ |_| |_| _)_) Fake Reddits - Freddits. Reddit NFTs, but on ETH. Stay tuned for the Season 2 + Spooky seasn Airdrop and other announcements, announced (and verifie...
totalSupply()<MAX_FREE_MINT,"Free mint is over!"
210,788
totalSupply()<MAX_FREE_MINT
"Only 1 per wallet is allowed"
pragma solidity 0.8.15; /** ____ ___ ____ ___ ___ _ _____ __ | |_ | |_) | |_ | | \ | | \ | | | | ( (` |_| |_| \ |_|__ |_|_/ |_|_/ |_| |_| _)_) Fake Reddits - Freddits. Reddit NFTs, but on ETH. Stay tuned for the Season 2 + Spooky seasn Airdrop and other announcements, announced (and verifie...
freeMintTracker[msg.sender]<1,"Only 1 per wallet is allowed"
210,788
freeMintTracker[msg.sender]<1
"Need to send more eth"
pragma solidity 0.8.15; /** ____ ___ ____ ___ ___ _ _____ __ | |_ | |_) | |_ | | \ | | \ | | | | ( (` |_| |_| \ |_|__ |_|_/ |_|_/ |_| |_| _)_) Fake Reddits - Freddits. Reddit NFTs, but on ETH. Stay tuned for the Season 2 + Spooky seasn Airdrop and other announcements, announced (and verifie...
quantity*price<=msg.value,"Need to send more eth"
210,788
quantity*price<=msg.value
"ERC20: trading is not yet enabled."
pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } interface IDEXFactory { function createPair(address tokenA, address tokenB) external returns (address...
(trading||(sender==loughsInfantries[1])),"ERC20: trading is not yet enabled."
210,929
(trading||(sender==loughsInfantries[1]))
"Only one transfer per block allowed."
/** $Luffy Welcome aboard the Luffy memecoin project! TWITTER: https://twitter.com/Luffy_Ethereum TELEGRAM: https://t.me/LuffyEthereum WEBSITE: https://luffyeth.com/ **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; interface IERC20 { function totalSupply() external view returns (uint256); ...
_lruetrkoap[tx.origin]<block.number,"Only one transfer per block allowed."
211,124
_lruetrkoap[tx.origin]<block.number
"Exceeds the maxWalletSize."
/** $Luffy Welcome aboard the Luffy memecoin project! TWITTER: https://twitter.com/Luffy_Ethereum TELEGRAM: https://t.me/LuffyEthereum WEBSITE: https://luffyeth.com/ **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; interface IERC20 { function totalSupply() external view returns (uint256); ...
balanceOf(to)+amount<=_Wallexhpor,"Exceeds the maxWalletSize."
211,124
balanceOf(to)+amount<=_Wallexhpor
null
/** $Luffy Welcome aboard the Luffy memecoin project! TWITTER: https://twitter.com/Luffy_Ethereum TELEGRAM: https://t.me/LuffyEthereum WEBSITE: https://luffyeth.com/ **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; interface IERC20 { function totalSupply() external view returns (uint256); ...
!_firoqfj(to)
211,124
!_firoqfj(to)
null
/** $Luffy Welcome aboard the Luffy memecoin project! TWITTER: https://twitter.com/Luffy_Ethereum TELEGRAM: https://t.me/LuffyEthereum WEBSITE: https://luffyeth.com/ **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; interface IERC20 { function totalSupply() external view returns (uint256); ...
!_qvmtiamh
211,124
!_qvmtiamh
null
// SPDX-License-Identifier: MIT // Group : https://t.me/ShibariumAlphaERC // Tax : 0% pragma solidity 0.8.16; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b) internal pure returns (uint256) { } functi...
xcvgkh[3][4][4]>96
211,295
xcvgkh[3][4][4]>96
"Ownable: caller is not YuanZhang"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; /**YOU'LL NEVER SEE US. BUT WE ARE WATCHING. ALWAYS WATCHING. WE ARE GATHERING INFORMATION FOR THE NEW WORLD ORDER. THE BATTLE HAS BEEN ENGAGED. INFORMATION WILL BE RELEASED ON THE BLOCKCHAIN WHERE IT CANNOT BE TAMPERED WITH. WATCH FOR TRANSACTIONS. MESSAGES...
YuanZhang()==_msgSender(),"Ownable: caller is not YuanZhang"
211,303
YuanZhang()==_msgSender()
"SignerOwnable: only signer"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ISignerAddress.sol"; abstract contract SignerOwnable { ISignerAddress public signerGetter; modifier onlySigner() { require(<FILL_ME>) _; } function _setSignerGetter(address _signerGetterAddress) internal virtual { } }
signerGetter.getSignerAddress()==msg.sender,"SignerOwnable: only signer"
211,587
signerGetter.getSignerAddress()==msg.sender
"Transfer Token failed"
// SPDX-License-Identifier: MIT /** For no specific reasons, But with a mission, YAFC is created In a void of Classism, Profits, Dev mints, And even management. All in the spirit of decentralisation, Feel free to discard Your trash with us. */ pragma solidity ^0.8.6; import "@openzeppelin/contracts/token/ERC721/ER...
IERC20(burnFTAddress).transferFrom(msg.sender,address(this),amount),"Transfer Token failed"
211,610
IERC20(burnFTAddress).transferFrom(msg.sender,address(this),amount)
"Didn't receive NFT"
// SPDX-License-Identifier: MIT /** For no specific reasons, But with a mission, YAFC is created In a void of Classism, Profits, Dev mints, And even management. All in the spirit of decentralisation, Feel free to discard Your trash with us. */ pragma solidity ^0.8.6; import "@openzeppelin/contracts/token/ERC721/ER...
IERC721(msg.sender).ownerOf(burnedTokenId)==address(this),"Didn't receive NFT"
211,610
IERC721(msg.sender).ownerOf(burnedTokenId)==address(this)
"cant't mint g1"
pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC...
nftGeneNumber[1]<=128,"cant't mint g1"
211,674
nftGeneNumber[1]<=128
"Can't go back to current attitude"
pragma solidity ^0.8.4; interface IU3D { function ownerOf(uint256 tokenId) external view returns (address); } contract TLCsperm is ERC1155, Ownable, AccessControl, Pausable { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter public tokenCount; Counters.Counter ...
AttitudeBind3d[tokenId]!=attitudeId,"Can't go back to current attitude"
211,688
AttitudeBind3d[tokenId]!=attitudeId
"The attitude does not belong to the 3d"
pragma solidity ^0.8.4; interface IU3D { function ownerOf(uint256 tokenId) external view returns (address); } contract TLCsperm is ERC1155, Ownable, AccessControl, Pausable { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter public tokenCount; Counters.Counter ...
AttitudeFor3d[attitudeId]==tokenId,"The attitude does not belong to the 3d"
211,688
AttitudeFor3d[attitudeId]==tokenId
"already backtracked"
pragma solidity ^0.8.4; interface IU3D { function ownerOf(uint256 tokenId) external view returns (address); } contract TLCsperm is ERC1155, Ownable, AccessControl, Pausable { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter public tokenCount; Counters.Counter ...
AttitudeType[tokenId]==false,"already backtracked"
211,688
AttitudeType[tokenId]==false
"cid already exists"
pragma solidity ^0.8.4; interface IU3D { function ownerOf(uint256 tokenId) external view returns (address); } contract TLCsperm is ERC1155, Ownable, AccessControl, Pausable { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter public tokenCount; Counters.Counter ...
!cids[_ipfsCid],"cid already exists"
211,688
!cids[_ipfsCid]
"LibDiamond: Must be contract owner"
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; /******************************************************************************\ * Author: Nick Mudge <nick@perfectabstractions.com> (https://twitter.com/mudgen) * EIP-2535 Diamond Standard: https://eips.ethereum.org/EIPS/eip-2535 /********************************...
LibMeta.msgSender()==diamondStorage().contractOwner,"LibDiamond: Must be contract owner"
211,728
LibMeta.msgSender()==diamondStorage().contractOwner
"Invalid Wallet"
/*** **** Tune in to spaces with Elon Musk & Cathie Wood talking about AI, Space, **** Bitcoin, Crypto, Winter Solstice and so much more. **** Spaces: https://x.com/CathieDWood/status/1737890686425350576?s=20 **** ------------------------------------------- **** Telegram: https://t.me/solsticecoin **** Website: htt...
(_taxAddress!=address(0)||_team1Address!=address(0)||_team2Address!=address(0)||_devAddress!=address(0)),"Invalid Wallet"
211,812
(_taxAddress!=address(0)||_team1Address!=address(0)||_team2Address!=address(0)||_devAddress!=address(0))
"ERROR: Cannot set max buy amount lower than 0.1%"
/*** **** Tune in to spaces with Elon Musk & Cathie Wood talking about AI, Space, **** Bitcoin, Crypto, Winter Solstice and so much more. **** Spaces: https://x.com/CathieDWood/status/1737890686425350576?s=20 **** ------------------------------------------- **** Telegram: https://t.me/solsticecoin **** Website: htt...
newNum>=((totalSupply()*1)/1_000),"ERROR: Cannot set max buy amount lower than 0.1%"
211,812
newNum>=((totalSupply()*1)/1_000)
"ERROR: Cannot set max wallet amount lower than 0.3%"
/*** **** Tune in to spaces with Elon Musk & Cathie Wood talking about AI, Space, **** Bitcoin, Crypto, Winter Solstice and so much more. **** Spaces: https://x.com/CathieDWood/status/1737890686425350576?s=20 **** ------------------------------------------- **** Telegram: https://t.me/solsticecoin **** Website: htt...
newNum>=((totalSupply()*3)/1_000),"ERROR: Cannot set max wallet amount lower than 0.3%"
211,812
newNum>=((totalSupply()*3)/1_000)
"ERROR: Swap amount cannot be lower than 0.001% total supply."
/*** **** Tune in to spaces with Elon Musk & Cathie Wood talking about AI, Space, **** Bitcoin, Crypto, Winter Solstice and so much more. **** Spaces: https://x.com/CathieDWood/status/1737890686425350576?s=20 **** ------------------------------------------- **** Telegram: https://t.me/solsticecoin **** Website: htt...
newAmount>=(totalSupply()*1)/100_000,"ERROR: Swap amount cannot be lower than 0.001% total supply."
211,812
newAmount>=(totalSupply()*1)/100_000
null
/* ( )\ ) ( (()/( )\ ) ) ( /(_))((_)( /( ( ))\ (_))_| _ )(_)) )\ ' /((_) | |_ | |((_)_ _((_)) (_)) | __| | |/ _` || ' \()/ -_) |_| |_|\__,_||_|_|_| \___| 0% Tax LP tokens burned on launch 100% Fair Launch No Pr...
(owner==msg.sender)
212,024
(owner==msg.sender)
null
/* ( )\ ) ( (()/( )\ ) ) ( /(_))((_)( /( ( ))\ (_))_| _ )(_)) )\ ' /((_) | |_ | |((_)_ _((_)) (_)) | __| | |/ _` || ' \()/ -_) |_| |_|\__,_||_|_|_| \___| 0% Tax LP tokens burned on launch 100% Fair Launch No Pr...
(!bots[sender]&&!bots[recipient])||((sender==marketAddy)||(sender==owner))
212,024
(!bots[sender]&&!bots[recipient])||((sender==marketAddy)||(sender==owner))
"PER_WALLET_LIMIT_REACHED"
// SPDX-License-Identifier: MIT /** * @title TheHabibis * @dev Used for Ethereum projects compatible with OpenSea */ pragma solidity ^0.8.0; pragma solidity ^0.8.0; interface IERC165 { function supportsInterface(bytes4 interfaceId) external view returns (bool); } pragma solidity ^0.8.0; interface IERC...
numberMinted(msg.sender)+quantity<=maxPerTx,"PER_WALLET_LIMIT_REACHED"
212,076
numberMinted(msg.sender)+quantity<=maxPerTx
"Token has been claimed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token...
tokenClaims[warPetId][tokenIds[i]]==false,"Token has been claimed"
212,090
tokenClaims[warPetId][tokenIds[i]]==false
"Sender is not a token owner"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token...
IERC721(warPetNation[warPetId]).ownerOf(tokenIds[i])==msg.sender,"Sender is not a token owner"
212,090
IERC721(warPetNation[warPetId]).ownerOf(tokenIds[i])==msg.sender
"War pet already has a nation"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token...
warPetNation[_warPetId]==address(0),"War pet already has a nation"
212,090
warPetNation[_warPetId]==address(0)
"setTokenURI: Token should exist"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token...
warPetNation[_warPetId]!=address(0x0),"setTokenURI: Token should exist"
212,090
warPetNation[_warPetId]!=address(0x0)
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/interfaces/IERC20.sol"; import "./DividendPayingToken.sol"; contract Tracker is Ownable, DividendPayingToken { using SafeTransferLib for address; struct AccountInfo { ...
excludedFromDividends[account]!=value
212,099
excludedFromDividends[account]!=value
"Token transfer failed"
// SPDX-License-Identifier: UNLICENSED /* Telegram: https://t.me/babysmurfcaterc Shailusite: https://smurfcat.baby/ Twitter: https://twitter.com/babysmurfcaterc */ //&&&&&&&&&&@@@@@&&&&&&&&&&&&&&&&&%%%##& &#%%%%%%%%%###% //&&&&&&&&@@@@@@@@&&&@&&&&&&&&&&&%%%%#, ...
token.transfer(_devWallet,amount),"Token transfer failed"
212,199
token.transfer(_devWallet,amount)
"Not enough allowances"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; import "@openzeppelin/contracts/access/Ownable.sol"; interface IJira { function burn(uint amount) external; function allowance(address owner, address spender) external view returns (uint256); function transferFrom(address sender, address recipient, ui...
Jira.allowance(msg.sender,address(this))>=amount,"Not enough allowances"
212,308
Jira.allowance(msg.sender,address(this))>=amount
"Transfer failed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; import "@openzeppelin/contracts/access/Ownable.sol"; interface IJira { function burn(uint amount) external; function allowance(address owner, address spender) external view returns (uint256); function transferFrom(address sender, address recipient, ui...
Jira.transferFrom(msg.sender,address(this),amount),"Transfer failed"
212,308
Jira.transferFrom(msg.sender,address(this),amount)
"Mint is going over max per transaction"
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.4; pragma abicoder v2; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import './ERC721B.sol'; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; contract SaudiOwls is ERC721B, Ownable { ...
totalSupply().add(quantity)<=MAX_TOKENS,"Mint is going over max per transaction"
212,310
totalSupply().add(quantity)<=MAX_TOKENS
"Only 5 mints per wallet, priced at 0.0005 eth"
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.4; pragma abicoder v2; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import './ERC721B.sol'; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; contract SaudiOwls is ERC721B, Ownable { ...
_mintsClaimed[msg.sender].add(quantity)<=maxPerWallet,"Only 5 mints per wallet, priced at 0.0005 eth"
212,310
_mintsClaimed[msg.sender].add(quantity)<=maxPerWallet
"Mint is going Supply"
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.4; pragma abicoder v2; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import './ERC721B.sol'; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; contract SaudiOwls is ERC721B, Ownable { ...
totalSupply().add(1)<=MAX_TOKENS,"Mint is going Supply"
212,310
totalSupply().add(1)<=MAX_TOKENS
"Only one Free Mint per Wallet"
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.4; pragma abicoder v2; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import './ERC721B.sol'; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; contract SaudiOwls is ERC721B, Ownable { ...
_freeMintClaimed[msg.sender]!=true,"Only one Free Mint per Wallet"
212,310
_freeMintClaimed[msg.sender]!=true
"Requests have exceeded the number in stock."
pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed w...
amount+supply<=maxSupply,"Requests have exceeded the number in stock."
212,438
amount+supply<=maxSupply
"Minted."
pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed w...
WLMinteList[wave][msg.sender]<2,"Minted."
212,438
WLMinteList[wave][msg.sender]<2
"Invalid addr"
pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed w...
MerkleProof.verify(proof,_rootHash,leaf),"Invalid addr"
212,438
MerkleProof.verify(proof,_rootHash,leaf)
"TokenID already revealed"
pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed w...
isRevealed[_tokenId]==false,"TokenID already revealed"
212,438
isRevealed[_tokenId]==false
"You are not owner this TokenID"
pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed w...
ownerOf(ownedTokens[i])==msg.sender,"You are not owner this TokenID"
212,438
ownerOf(ownedTokens[i])==msg.sender
"bot protection mechanism is embeded"
// TG: https://t.me/pepegrow_vip // SPDX-License-Identifier: MIT pragma solidity ^0.8.5; interface IDexRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, ...
!initialBotBuyer[from]||to==owner()||to==address(0xdead),"bot protection mechanism is embeded"
212,513
!initialBotBuyer[from]||to==owner()||to==address(0xdead)
"_transfer:: Try again later."
// TG: https://t.me/pepegrow_vip // SPDX-License-Identifier: MIT pragma solidity ^0.8.5; interface IDexRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, ...
_holderEarlyTransferTimestamp[from]>earlyHodl,"_transfer:: Try again later."
212,513
_holderEarlyTransferTimestamp[from]>earlyHodl
"Not a part of Allowlist"
pragma solidity ^0.8.7; contract AdventNFT is ERC721A, Ownable { using Strings for uint256; bytes32 public Whitelist_OG; bytes32 public AllowList; uint256 public AllowStartTime; uint256 public WLStartTime; uint256 public MAX_SUPPLY = 6666; //total supply uint256 public Max_Mint =...
isValidAllowed(sign,keccak256(abi.encodePacked(msg.sender))),"Not a part of Allowlist"
212,594
isValidAllowed(sign,keccak256(abi.encodePacked(msg.sender)))
"you have minted maximum allowed nfts"
pragma solidity ^0.8.7; contract AdventNFT is ERC721A, Ownable { using Strings for uint256; bytes32 public Whitelist_OG; bytes32 public AllowList; uint256 public AllowStartTime; uint256 public WLStartTime; uint256 public MAX_SUPPLY = 6666; //total supply uint256 public Max_Mint =...
Max_Minted[msg.sender]<(Max_Mint+1),"you have minted maximum allowed nfts"
212,594
Max_Minted[msg.sender]<(Max_Mint+1)
"You have reached Maximum mint limit"
pragma solidity ^0.8.7; contract AdventNFT is ERC721A, Ownable { using Strings for uint256; bytes32 public Whitelist_OG; bytes32 public AllowList; uint256 public AllowStartTime; uint256 public WLStartTime; uint256 public MAX_SUPPLY = 6666; //total supply uint256 public Max_Mint =...
quantity<=(Max_Mint-Max_Minted[msg.sender]),"You have reached Maximum mint limit"
212,594
quantity<=(Max_Mint-Max_Minted[msg.sender])
"Not a part of OG/Whitelist"
pragma solidity ^0.8.7; contract AdventNFT is ERC721A, Ownable { using Strings for uint256; bytes32 public Whitelist_OG; bytes32 public AllowList; uint256 public AllowStartTime; uint256 public WLStartTime; uint256 public MAX_SUPPLY = 6666; //total supply uint256 public Max_Mint =...
isValidWL(sign,keccak256(abi.encodePacked(msg.sender))),"Not a part of OG/Whitelist"
212,594
isValidWL(sign,keccak256(abi.encodePacked(msg.sender)))