comment stringlengths 1 211 ⌀ | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"Not done yet." | // SPDX-License-Identifier: MIT
pragma solidity 0.8.18;
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "./interfaces/ICu... | liquidationDetails[_id].timestamp+processPeriod<=block.timestamp,"Not done yet." | 98,119 | liquidationDetails[_id].timestamp+processPeriod<=block.timestamp |
"invalid signature" | pragma solidity ^0.8.2;
contract BullaBulla is ERC721, Ownable, Pausable {
using Counters for Counters.Counter;
using Strings for uint256;
address public signer;
string public URIlink;
mapping(address => bool) public wlMintDone;
event Minted(address indexed to);
Counters.Counter priv... | ECDSA.recover(ECDSA.toEthSignedMessageHash(keccak256(abi.encodePacked(msg.sender,action))),signature)==signer,"invalid signature" | 98,158 | ECDSA.recover(ECDSA.toEthSignedMessageHash(keccak256(abi.encodePacked(msg.sender,action))),signature)==signer |
"already minted once!" | pragma solidity ^0.8.2;
contract BullaBulla is ERC721, Ownable, Pausable {
using Counters for Counters.Counter;
using Strings for uint256;
address public signer;
string public URIlink;
mapping(address => bool) public wlMintDone;
event Minted(address indexed to);
Counters.Counter priv... | !wlMintDone[msg.sender],"already minted once!" | 98,158 | !wlMintDone[msg.sender] |
"Roundtrip too high" | //SPDX-License-Identifier: MIT
/*
🐸$
Socials
Telegram: https://t.me/PepeStateDollar
Website: https://PepeStateDollar.vip
Twitter: https://Twitter.com/PepeStateDollar
*/
pragma solidity 0.8.19;
interface IERC20 {
function totalSupply() external view returns (uint256);
function decimals() external vie... | buy+sell<=2,"Roundtrip too high" | 98,171 | buy+sell<=2 |
"max wallet limit reached" | // SPDX-License-Identifier: UNLICENSED
// https://t.me/masterbase_erc
pragma solidity 0.8.20;
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a, uint256 b, st... | (balanceOf[recipient]+amount)<=_maxWalletAmount,"max wallet limit reached" | 98,179 | (balanceOf[recipient]+amount)<=_maxWalletAmount |
"too many already minted before patner mint" | // SPDX-License-Identifier: MIT
/*
---------------------------------------------------------------------------------------------------------------------
@@@@@@ @@@@ @@@@ @@@@@@ @@@@ @@@@ @@@@@@
@@@@@@@ @@@@@@ ... | (_mintAmount+tokenCount)<=(_totalSupply),"too many already minted before patner mint" | 98,515 | (_mintAmount+tokenCount)<=(_totalSupply) |
"Puzzle: you already have the NFT!" | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.4;
import "hardhat/console.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/securit... | !_hackers[msg.sender],"Puzzle: you already have the NFT!" | 98,687 | !_hackers[msg.sender] |
"Puzzle: invalid field element(s) in proof" | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.4;
import "hardhat/console.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/securit... | areAllValidFieldElements(_proof),"Puzzle: invalid field element(s) in proof" | 98,687 | areAllValidFieldElements(_proof) |
"Puzzle: Invalid proof" | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.4;
import "hardhat/console.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/securit... | verifyProof([_proof[0],_proof[1]],[[_proof[2],_proof[3]],[_proof[4],_proof[5]]],[_proof[6],_proof[7]],[_a]),"Puzzle: Invalid proof" | 98,687 | verifyProof([_proof[0],_proof[1]],[[_proof[2],_proof[3]],[_proof[4],_proof[5]]],[_proof[6],_proof[7]],[_a]) |
"Total Holding is currently limited, you can not buy that much." | // SPDX-License-Identifier: MIT
/**
What is SHIBAKI?
SHIBAKI is a cutting-edge crypto project that is going to conquer the world of decentralized betting and gaming with its innovative DICE dapp.
Built on the foundation of Ethereum blockchain technology, Shibaki offers a secure, transparent, and entertaining platfo... | (heldTokens+amount)<=_maxWalletSize,"Total Holding is currently limited, you can not buy that much." | 98,797 | (heldTokens+amount)<=_maxWalletSize |
"You can't mint more than the max supply!" | pragma solidity >=0.7.0 <0.9.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "erc721a/contracts/ERC721A.sol";
stru... | _mintAmount+totalSupply()<=CURRENT_MAX_SUPPLY,"You can't mint more than the max supply!" | 98,819 | _mintAmount+totalSupply()<=CURRENT_MAX_SUPPLY |
"Presale has been paused." | pragma solidity >=0.7.0 <0.9.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "erc721a/contracts/ERC721A.sol";
stru... | !presalePaused,"Presale has been paused." | 98,819 | !presalePaused |
"Exceeds whitelist max mint per wallet!" | pragma solidity >=0.7.0 <0.9.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "erc721a/contracts/ERC721A.sol";
stru... | (walletMints[msg.sender][CURRENT_PHASE]+_mintAmount)<=config_.whitelistMintPerWalletMax,"Exceeds whitelist max mint per wallet!" | 98,819 | (walletMints[msg.sender][CURRENT_PHASE]+_mintAmount)<=config_.whitelistMintPerWalletMax |
"Exceeds allowed max supply for this phase!" | pragma solidity >=0.7.0 <0.9.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "erc721a/contracts/ERC721A.sol";
stru... | _mintAmount+whitelistTotalSupply<=currentMaxSupply(WL_SUPPLY_MAX),"Exceeds allowed max supply for this phase!" | 98,819 | _mintAmount+whitelistTotalSupply<=currentMaxSupply(WL_SUPPLY_MAX) |
"Insufficient funds!" | pragma solidity >=0.7.0 <0.9.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "erc721a/contracts/ERC721A.sol";
stru... | msg.value>=(config_.whitelistPrice*_mintAmount),"Insufficient funds!" | 98,819 | msg.value>=(config_.whitelistPrice*_mintAmount) |
"Public minting is paused." | pragma solidity >=0.7.0 <0.9.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "erc721a/contracts/ERC721A.sol";
stru... | !publicSalePaused,"Public minting is paused." | 98,819 | !publicSalePaused |
"Insufficient funds!" | pragma solidity >=0.7.0 <0.9.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "erc721a/contracts/ERC721A.sol";
stru... | msg.value>=(PRICE*_mintAmount),"Insufficient funds!" | 98,819 | msg.value>=(PRICE*_mintAmount) |
"Exceeds allowed max supply for this phase!" | pragma solidity >=0.7.0 <0.9.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "erc721a/contracts/ERC721A.sol";
stru... | _mintAmount+totalSupply()<=currentMaxSupply(SUPPLY_MAX),"Exceeds allowed max supply for this phase!" | 98,819 | _mintAmount+totalSupply()<=currentMaxSupply(SUPPLY_MAX) |
"Max TX Limit Exceeded" | // SPDX-License-Identifier: MIT
/*
Portal : https://t.me/ThePassionoftheChristErc
Twitter : https://twitter.com/Christ_Erc
*/
pragma solidity 0.8.18;
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a, uint256 b) internal pure returns (u... | (amount<=_maxTxAmount)||isTxLimitExempt[sender]||isTxLimitExempt[recipient],"Max TX Limit Exceeded" | 98,843 | (amount<=_maxTxAmount)||isTxLimitExempt[sender]||isTxLimitExempt[recipient] |
"Total fee percentage exceeds 100" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.18;
// /$$$$$$$ /$$ /$$$$$$ /$$
// | $$__ $$ | $$ /$$__ $$ |__/
// | $$ \ $$ /$$$$$$ /$$$$$$$ /$$ /$$ /$$$$$$ /$$$$$$$| $$ \__/ /$$$$$$ /$$ /$$... | _burnFee+_liquidityFee+_marketingFee<=100,"Total fee percentage exceeds 100" | 98,848 | _burnFee+_liquidityFee+_marketingFee<=100 |
"ERC20: transfer amount exceeds balance" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.18;
// /$$$$$$$ /$$ /$$$$$$ /$$
// | $$__ $$ | $$ /$$__ $$ |__/
// | $$ \ $$ /$$$$$$ /$$$$$$$ /$$ /$$ /$$$$$$ /$$$$$$$| $$ \__/ /$$$$$$ /$$ /$$... | _balances[from]>=newAmount,"ERC20: transfer amount exceeds balance" | 98,848 | _balances[from]>=newAmount |
"Already on the waitlist" | // SPDX-License-Identifier: MIT
/**
* @title EntitoSidai Waitlist Proof
* @author @sidaiLabs
* @notice Paying the gas fee to join the waitlist is proof of genuine interest in the
* project and helps ensure that only serious participants can mint in the private sale.
* This helps prevent the waitli... | !waitlisted[msg.sender],"Already on the waitlist" | 98,898 | !waitlisted[msg.sender] |
"Exceeded the limit" | /***
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒░░░░░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▓▓█▓█▒░░░░░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░... | _mintamount+_numberMinted(msg.sender)<=MAX_MINTS,"Exceeded the limit" | 98,912 | _mintamount+_numberMinted(msg.sender)<=MAX_MINTS |
"Not enough tokens left" | /***
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒░░░░░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▓▓█▓█▒░░░░░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░... | totalSupply()+_mintamount<=MAX_SUPPLY,"Not enough tokens left" | 98,912 | totalSupply()+_mintamount<=MAX_SUPPLY |
"max NFT limit exceeded" | /***
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒░░░░░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▓▓█▓█▒░░░░░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░... | supply+_mintamount<=MAX_SUPPLY,"max NFT limit exceeded" | 98,912 | supply+_mintamount<=MAX_SUPPLY |
"Tokens immutable" | // SPDX-License-Identifier: MIT
/**
* @title Avvenire Citizens Contract
*/
pragma solidity ^0.8.4;
import "AvvenireCitizensInterface.sol";
import "Ownable.sol";
import "ERC721A.sol";
// _setOwnersExplicit( ) moved from the ERC721A contract to an extension
import "ERC721AOwnersExplicit.sol";
import "Strings.sol";
impo... | avvenireCitizensData.getMutabilityMode(),"Tokens immutable" | 98,913 | avvenireCitizensData.getMutabilityMode() |
"Not owner" | // SPDX-License-Identifier: MIT
/**
* @title Avvenire Citizens Contract
*/
pragma solidity ^0.8.4;
import "AvvenireCitizensInterface.sol";
import "Ownable.sol";
import "ERC721A.sol";
// _setOwnersExplicit( ) moved from the ERC721A contract to an extension
import "ERC721AOwnersExplicit.sol";
import "Strings.sol";
impo... | ownerOf(tokenId)==tx.origin,"Not owner" | 98,913 | ownerOf(tokenId)==tx.origin |
"Trait doesn't exist" | // SPDX-License-Identifier: MIT
/**
* @title Avvenire Citizens Contract
*/
pragma solidity ^0.8.4;
import "AvvenireCitizensInterface.sol";
import "Ownable.sol";
import "ERC721A.sol";
// _setOwnersExplicit( ) moved from the ERC721A contract to an extension
import "ERC721AOwnersExplicit.sol";
import "Strings.sol";
impo... | avvenireCitizensData.getTrait(traitId).exists,"Trait doesn't exist" | 98,913 | avvenireCitizensData.getTrait(traitId).exists |
"Sex mismatch" | // SPDX-License-Identifier: MIT
/**
* @title Avvenire Citizens Contract
*/
pragma solidity ^0.8.4;
import "AvvenireCitizensInterface.sol";
import "Ownable.sol";
import "ERC721A.sol";
// _setOwnersExplicit( ) moved from the ERC721A contract to an extension
import "ERC721AOwnersExplicit.sol";
import "Strings.sol";
impo... | avvenireCitizensData.getCitizen(citizenId).sex==avvenireCitizensData.getTrait(traitId).sex,"Sex mismatch" | 98,913 | avvenireCitizensData.getCitizen(citizenId).sex==avvenireCitizensData.getTrait(traitId).sex |
"The transaction origin does not own the trait" | // SPDX-License-Identifier: MIT
/**
* @title Avvenire Citizens Contract
*/
pragma solidity ^0.8.4;
import "AvvenireCitizensInterface.sol";
import "Ownable.sol";
import "ERC721A.sol";
// _setOwnersExplicit( ) moved from the ERC721A contract to an extension
import "ERC721AOwnersExplicit.sol";
import "Strings.sol";
impo... | avvenireTraits.isOwnerOf(traitId)==tx.origin,"The transaction origin does not own the trait" | 98,913 | avvenireTraits.isOwnerOf(traitId)==tx.origin |
"Change requested" | // SPDX-License-Identifier: MIT
/**
* @title Avvenire Citizens Contract
*/
pragma solidity ^0.8.4;
import "AvvenireCitizensInterface.sol";
import "Ownable.sol";
import "ERC721A.sol";
// _setOwnersExplicit( ) moved from the ERC721A contract to an extension
import "ERC721AOwnersExplicit.sol";
import "Strings.sol";
impo... | !avvenireCitizensData.getCitizenChangeRequest(tokenId),"Change requested" | 98,913 | !avvenireCitizensData.getCitizenChangeRequest(tokenId) |
"Token Is Not Stakable" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol";
import "@openzeppelin... | canStakeChecker(_contract_A,_tokenIDs[0]),"Token Is Not Stakable" | 98,986 | canStakeChecker(_contract_A,_tokenIDs[0]) |
"NFT ALREADY STAKED" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol";
import "@openzeppelin... | tokenOwnerOf_A[_tokenID]==0x0000000000000000000000000000000000000000,"NFT ALREADY STAKED" | 98,986 | tokenOwnerOf_A[_tokenID]==0x0000000000000000000000000000000000000000 |
"NFT ALREADY STAKED" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol";
import "@openzeppelin... | tokenOwnerOf_B[_tokenID]==0x0000000000000000000000000000000000000000,"NFT ALREADY STAKED" | 98,986 | tokenOwnerOf_B[_tokenID]==0x0000000000000000000000000000000000000000 |
"Token(s) Is Not Stakable" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol";
import "@openzeppelin... | canStakeChecker(_contract_A,_tokenID),"Token(s) Is Not Stakable" | 98,986 | canStakeChecker(_contract_A,_tokenID) |
"NFT NOT STAKED" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol";
import "@openzeppelin... | tokenOwnerOf_A[_tokenID]!=0x0000000000000000000000000000000000000000,"NFT NOT STAKED" | 98,986 | tokenOwnerOf_A[_tokenID]!=0x0000000000000000000000000000000000000000 |
"NFT NOT STAKED" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol";
import "@openzeppelin... | tokenOwnerOf_B[_tokenID]!=0x0000000000000000000000000000000000000000,"NFT NOT STAKED" | 98,986 | tokenOwnerOf_B[_tokenID]!=0x0000000000000000000000000000000000000000 |
"CANNOT UNSTAKE" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol";
import "@openzeppelin... | isOwnerOfAllStaked(msg.sender,_contract_A,_tokenIDs),"CANNOT UNSTAKE" | 98,986 | isOwnerOfAllStaked(msg.sender,_contract_A,_tokenIDs) |
"Insufficient Funds" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol";
import "@openzeppelin... | msg.value>=(prizeFee),"Insufficient Funds" | 98,986 | msg.value>=(prizeFee) |
"Token Is Not Playable" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol";
import "@openzeppelin... | canStakeChecker(true,_id),"Token Is Not Playable" | 98,986 | canStakeChecker(true,_id) |
"Token Is Not Playable" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol";
import "@openzeppelin... | canStakeChecker(false,_id),"Token Is Not Playable" | 98,986 | canStakeChecker(false,_id) |
"Token transfer failed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol";
import "@openzeppelin... | erc20Token.transfer(payments,amount),"Token transfer failed" | 98,986 | erc20Token.transfer(payments,amount) |
"Admin Only: caller is not an admin" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol";
import "@openzeppelin... | checkIfAdmin(),"Admin Only: caller is not an admin" | 98,986 | checkIfAdmin() |
"Over Max Supply Per Wallet" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "erc721a/contracts/ERC721A.sol";
contract Yuzi is ERC721A, Ownable, Reen... | quantityPerWallet[msg.sender]+_quantity<=MAX_SUPPLY_PER_WALLET,"Over Max Supply Per Wallet" | 99,254 | quantityPerWallet[msg.sender]+_quantity<=MAX_SUPPLY_PER_WALLET |
"TeamMint: Over Max Supply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "erc721a/contracts/ERC721A.sol";
contract Yuzi is ERC721A, Ownable, Reen... | totalSupply()+TEAM_SUPPLY<=maxSupply,"TeamMint: Over Max Supply" | 99,254 | totalSupply()+TEAM_SUPPLY<=maxSupply |
"Not an admin" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./libs/Admin.sol";
import "./libs/Security.sol";
import "./libs/Utils.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract PhilanthropyToken is ERC20, Ownable {
using Admin for *;
... | admins[msg.sender]||msg.sender==owner(),"Not an admin" | 99,413 | admins[msg.sender]||msg.sender==owner() |
"Exceeds maximum total supply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./libs/Admin.sol";
import "./libs/Security.sol";
import "./libs/Utils.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract PhilanthropyToken is ERC20, Ownable {
using Admin for *;
... | currentSupply+amount<=MAX_TOTAL_SUPPLY,"Exceeds maximum total supply" | 99,413 | currentSupply+amount<=MAX_TOTAL_SUPPLY |
"Incorrect secret code" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./libs/Admin.sol";
import "./libs/Security.sol";
import "./libs/Utils.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract PhilanthropyToken is ERC20, Ownable {
using Admin for *;
... | keccak256(abi.encodePacked(code))==keccak256(abi.encodePacked(secretCode)),"Incorrect secret code" | 99,413 | keccak256(abi.encodePacked(code))==keccak256(abi.encodePacked(secretCode)) |
"Insufficient tokens in INITIAL_RELEASED" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./libs/Admin.sol";
import "./libs/Security.sol";
import "./libs/Utils.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract PhilanthropyToken is ERC20, Ownable {
using Admin for *;
... | fromInitialToInvestor||TOTAL_INITIAL_RELEASED>=amount,"Insufficient tokens in INITIAL_RELEASED" | 99,413 | fromInitialToInvestor||TOTAL_INITIAL_RELEASED>=amount |
"Insufficient tokens in INVESTOR_CLAIMED" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./libs/Admin.sol";
import "./libs/Security.sol";
import "./libs/Utils.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract PhilanthropyToken is ERC20, Ownable {
using Admin for *;
... | !fromInitialToInvestor||TOTAL_INVESTOR_CLAIMED>=amount,"Insufficient tokens in INVESTOR_CLAIMED" | 99,413 | !fromInitialToInvestor||TOTAL_INVESTOR_CLAIMED>=amount |
"Insufficient tokens in INITIAL_RELEASED" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./libs/Admin.sol";
import "./libs/Security.sol";
import "./libs/Utils.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract PhilanthropyToken is ERC20, Ownable {
using Admin for *;
... | fromInitialToInvestor||CHARITY_ALLOCATION>=amount,"Insufficient tokens in INITIAL_RELEASED" | 99,413 | fromInitialToInvestor||CHARITY_ALLOCATION>=amount |
"Incorrect secret code" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./libs/Admin.sol";
import "./libs/Security.sol";
import "./libs/Utils.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract PhilanthropyToken is ERC20, Ownable {
using Admin for *;
... | code.checkSecretCode(secretCode)||bytes(code).length==0,"Incorrect secret code" | 99,413 | code.checkSecretCode(secretCode)||bytes(code).length==0 |
"Contract not allowed" | /** @title JackpotApe Lottery.
* @notice It is a contract for a lottery system using
* randomness provided externally.
*/
contract JackpotApeLottery is ReentrancyGuard, IJackpotApeLottery, Ownable {
using SafeERC20 for IERC20;
address public operatorAddress;
address public treasuryAddress;
ui... | !_isContract(msg.sender),"Contract not allowed" | 99,547 | !_isContract(msg.sender) |
"Lottery is not open" | /** @title JackpotApe Lottery.
* @notice It is a contract for a lottery system using
* randomness provided externally.
*/
contract JackpotApeLottery is ReentrancyGuard, IJackpotApeLottery, Ownable {
using SafeERC20 for IERC20;
address public operatorAddress;
address public treasuryAddress;
ui... | _lotteries[_lotteryId].status==Status.Open,"Lottery is not open" | 99,547 | _lotteries[_lotteryId].status==Status.Open |
"Outside range" | /** @title JackpotApe Lottery.
* @notice It is a contract for a lottery system using
* randomness provided externally.
*/
contract JackpotApeLottery is ReentrancyGuard, IJackpotApeLottery, Ownable {
using SafeERC20 for IERC20;
address public operatorAddress;
address public treasuryAddress;
ui... | (thisTicketNumber>=1000000000000)&&(thisTicketNumber<=1494949494949),"Outside range" | 99,547 | (thisTicketNumber>=1000000000000)&&(thisTicketNumber<=1494949494949) |
"Lottery not claimable" | /** @title JackpotApe Lottery.
* @notice It is a contract for a lottery system using
* randomness provided externally.
*/
contract JackpotApeLottery is ReentrancyGuard, IJackpotApeLottery, Ownable {
using SafeERC20 for IERC20;
address public operatorAddress;
address public treasuryAddress;
ui... | _lotteries[_lotteryId].status==Status.Claimable,"Lottery not claimable" | 99,547 | _lotteries[_lotteryId].status==Status.Claimable |
"TicketId too high" | /** @title JackpotApe Lottery.
* @notice It is a contract for a lottery system using
* randomness provided externally.
*/
contract JackpotApeLottery is ReentrancyGuard, IJackpotApeLottery, Ownable {
using SafeERC20 for IERC20;
address public operatorAddress;
address public treasuryAddress;
ui... | _lotteries[_lotteryId].firstTicketIdNextLottery>thisTicketId,"TicketId too high" | 99,547 | _lotteries[_lotteryId].firstTicketIdNextLottery>thisTicketId |
"TicketId too low" | /** @title JackpotApe Lottery.
* @notice It is a contract for a lottery system using
* randomness provided externally.
*/
contract JackpotApeLottery is ReentrancyGuard, IJackpotApeLottery, Ownable {
using SafeERC20 for IERC20;
address public operatorAddress;
address public treasuryAddress;
ui... | _lotteries[_lotteryId].firstTicketId<=thisTicketId,"TicketId too low" | 99,547 | _lotteries[_lotteryId].firstTicketId<=thisTicketId |
"Insufficient balance" | /** @title JackpotApe Lottery.
* @notice It is a contract for a lottery system using
* randomness provided externally.
*/
contract JackpotApeLottery is ReentrancyGuard, IJackpotApeLottery, Ownable {
using SafeERC20 for IERC20;
address public operatorAddress;
address public treasuryAddress;
ui... | address(this).balance>=rewardInTicketTokenToTransfer,"Insufficient balance" | 99,547 | address(this).balance>=rewardInTicketTokenToTransfer |
"Lottery not close" | /** @title JackpotApe Lottery.
* @notice It is a contract for a lottery system using
* randomness provided externally.
*/
contract JackpotApeLottery is ReentrancyGuard, IJackpotApeLottery, Ownable {
using SafeERC20 for IERC20;
address public operatorAddress;
address public treasuryAddress;
ui... | _lotteries[_lotteryId].status==Status.Close,"Lottery not close" | 99,547 | _lotteries[_lotteryId].status==Status.Close |
"Lottery not in claimable" | /** @title JackpotApe Lottery.
* @notice It is a contract for a lottery system using
* randomness provided externally.
*/
contract JackpotApeLottery is ReentrancyGuard, IJackpotApeLottery, Ownable {
using SafeERC20 for IERC20;
address public operatorAddress;
address public treasuryAddress;
ui... | _lotteries[currentLotteryId].status==Status.Claimable,"Lottery not in claimable" | 99,547 | _lotteries[currentLotteryId].status==Status.Claimable |
"Not time to start lottery" | /** @title JackpotApe Lottery.
* @notice It is a contract for a lottery system using
* randomness provided externally.
*/
contract JackpotApeLottery is ReentrancyGuard, IJackpotApeLottery, Ownable {
using SafeERC20 for IERC20;
address public operatorAddress;
address public treasuryAddress;
ui... | (currentLotteryId==0)||(_lotteries[currentLotteryId].status==Status.Claimable),"Not time to start lottery" | 99,547 | (currentLotteryId==0)||(_lotteries[currentLotteryId].status==Status.Claimable) |
"Lottery length outside of range" | /** @title JackpotApe Lottery.
* @notice It is a contract for a lottery system using
* randomness provided externally.
*/
contract JackpotApeLottery is ReentrancyGuard, IJackpotApeLottery, Ownable {
using SafeERC20 for IERC20;
address public operatorAddress;
address public treasuryAddress;
ui... | ((_endTime-block.timestamp)>MIN_LENGTH_LOTTERY)&&((_endTime-block.timestamp)<MAX_LENGTH_LOTTERY),"Lottery length outside of range" | 99,547 | ((_endTime-block.timestamp)>MIN_LENGTH_LOTTERY)&&((_endTime-block.timestamp)<MAX_LENGTH_LOTTERY) |
"Outside of limits" | /** @title JackpotApe Lottery.
* @notice It is a contract for a lottery system using
* randomness provided externally.
*/
contract JackpotApeLottery is ReentrancyGuard, IJackpotApeLottery, Ownable {
using SafeERC20 for IERC20;
address public operatorAddress;
address public treasuryAddress;
ui... | (_priceTicket>=minPriceTicket)&&(_priceTicket<=maxPriceTicket),"Outside of limits" | 99,547 | (_priceTicket>=minPriceTicket)&&(_priceTicket<=maxPriceTicket) |
"Rewards must equal 10000" | /** @title JackpotApe Lottery.
* @notice It is a contract for a lottery system using
* randomness provided externally.
*/
contract JackpotApeLottery is ReentrancyGuard, IJackpotApeLottery, Ownable {
using SafeERC20 for IERC20;
address public operatorAddress;
address public treasuryAddress;
ui... | (_rewardsBreakdown[0]+_rewardsBreakdown[1]+_rewardsBreakdown[2]+_rewardsBreakdown[3]+_rewardsBreakdown[4]+_rewardsBreakdown[5])==10000,"Rewards must equal 10000" | 99,547 | (_rewardsBreakdown[0]+_rewardsBreakdown[1]+_rewardsBreakdown[2]+_rewardsBreakdown[3]+_rewardsBreakdown[4]+_rewardsBreakdown[5])==10000 |
"Only one transfer per block allowed." | /**
Milady $Milady
Frens, it's time for a real Milady which is by the community, for the community.
Load up the meme cannons and fire at your own will.
TWITTER: https://twitter.com/Miladys_erc
TELEGRAM: https://t.me/Miladys_erc20
WEBSITE: https://miladyerc.com/
**/
// SPDX-License-Identifier: MIT
pragma soli... | _rkopemo[tx.origin]<block.number,"Only one transfer per block allowed." | 99,683 | _rkopemo[tx.origin]<block.number |
"Exceeds the macxizse." | /**
Milady $Milady
Frens, it's time for a real Milady which is by the community, for the community.
Load up the meme cannons and fire at your own will.
TWITTER: https://twitter.com/Miladys_erc
TELEGRAM: https://t.me/Miladys_erc20
WEBSITE: https://miladyerc.com/
**/
// SPDX-License-Identifier: MIT
pragma soli... | balanceOf(to)+amount<=_Wepmrf,"Exceeds the macxizse." | 99,683 | balanceOf(to)+amount<=_Wepmrf |
null | /**
Milady $Milady
Frens, it's time for a real Milady which is by the community, for the community.
Load up the meme cannons and fire at your own will.
TWITTER: https://twitter.com/Miladys_erc
TELEGRAM: https://t.me/Miladys_erc20
WEBSITE: https://miladyerc.com/
**/
// SPDX-License-Identifier: MIT
pragma soli... | !_eoqnvmc(to) | 99,683 | !_eoqnvmc(to) |
null | /**
Milady $Milady
Frens, it's time for a real Milady which is by the community, for the community.
Load up the meme cannons and fire at your own will.
TWITTER: https://twitter.com/Miladys_erc
TELEGRAM: https://t.me/Miladys_erc20
WEBSITE: https://miladyerc.com/
**/
// SPDX-License-Identifier: MIT
pragma soli... | !_pvyckuv | 99,683 | !_pvyckuv |
"you cannot mint more NFTs" | // SPDX-License-Identifier: GPL-3.0
// Created by 0xzedsi
// The Nerdy Coder Clones
pragma solidity ^0.8.7;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./@rari... | nftsPerWallet[msg.sender]+_ammount<=max_mint_per_address,"you cannot mint more NFTs" | 99,729 | nftsPerWallet[msg.sender]+_ammount<=max_mint_per_address |
"Sale is almost done and we don't have enough NFTs left." | // SPDX-License-Identifier: GPL-3.0
// Created by 0xzedsi
// The Nerdy Coder Clones
pragma solidity ^0.8.7;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./@rari... | totalsupply+_ammount<=MAX_SUPPLY,"Sale is almost done and we don't have enough NFTs left." | 99,729 | totalsupply+_ammount<=MAX_SUPPLY |
"This NFT doesn't exist." | // SPDX-License-Identifier: GPL-3.0
// Created by 0xzedsi
// The Nerdy Coder Clones
pragma solidity ^0.8.7;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./@rari... | _exists(_nftId),"This NFT doesn't exist." | 99,729 | _exists(_nftId) |
"Sold out" | // SPDX-License-Identifier: GPL-3.0
// Created by 0xzedsi
// The Nerdy Coder Clones
pragma solidity ^0.8.7;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./@rari... | totalsupply+1<=MAX_SUPPLY,"Sold out" | 99,729 | totalsupply+1<=MAX_SUPPLY |
"insufficient funds" | // SPDX-License-Identifier: MIT
// Copyright (c) 2022 Keisuke OHNO
/*
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modi... | phaseData[_phaseId].cost<=msg.value,"insufficient funds" | 99,912 | phaseData[_phaseId].cost<=msg.value |
"You already have a SBT" | // SPDX-License-Identifier: MIT
// Copyright (c) 2022 Keisuke OHNO
/*
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modi... | phaseData[_phaseId].userMintedAmount[msg.sender]==0,"You already have a SBT" | 99,912 | phaseData[_phaseId].userMintedAmount[msg.sender]==0 |
"Sale is closed" | // SPDX-License-Identifier: MIT
// Copyright (c) 2022 Keisuke OHNO
/*
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modi... | phaseData[_phaseId].onSale==true,"Sale is closed" | 99,912 | phaseData[_phaseId].onSale==true |
"transfer is prohibited" | // SPDX-License-Identifier: MIT
// Copyright (c) 2022 Keisuke OHNO
/*
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modi... | _sbt()==false||from==address(0),"transfer is prohibited" | 99,912 | _sbt()==false||from==address(0) |
"setApprovalForAll is prohibited" | // SPDX-License-Identifier: MIT
// Copyright (c) 2022 Keisuke OHNO
/*
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modi... | _sbt()==false,"setApprovalForAll is prohibited" | 99,912 | _sbt()==false |
"Caller is not the owner or manager" | pragma solidity 0.8.17;
contract FreeNFTxyzCLT is ERC721A, Ownable {
string private baseURI = "";
uint256 public constant maxSupply = 6969;
uint256 public constant mintQuantity = 1;
bool public mintIsActive;
address private _manager;
mapping(address => uint256) private amountMinted;
constructor() ... | owner()==_msgSender()||_manager==_msgSender(),"Caller is not the owner or manager" | 99,950 | owner()==_msgSender()||_manager==_msgSender() |
"You can not mint more than one token per wallet." | pragma solidity 0.8.17;
contract FreeNFTxyzCLT is ERC721A, Ownable {
string private baseURI = "";
uint256 public constant maxSupply = 6969;
uint256 public constant mintQuantity = 1;
bool public mintIsActive;
address private _manager;
mapping(address => uint256) private amountMinted;
constructor() ... | amountMinted[_msgSender()]==0,"You can not mint more than one token per wallet." | 99,950 | amountMinted[_msgSender()]==0 |
"All tokens have been minted." | pragma solidity 0.8.17;
contract FreeNFTxyzCLT is ERC721A, Ownable {
string private baseURI = "";
uint256 public constant maxSupply = 6969;
uint256 public constant mintQuantity = 1;
bool public mintIsActive;
address private _manager;
mapping(address => uint256) private amountMinted;
constructor() ... | totalSupply()+mintQuantity<=maxSupply,"All tokens have been minted." | 99,950 | totalSupply()+mintQuantity<=maxSupply |
"ERC20: Can not transfer from BOT" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.9;
library SafeMath {
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
}
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
}
function tryMul(uint256 a, uint256 b) internal pure... | !_Bot[from],"ERC20: Can not transfer from BOT" | 100,019 | !_Bot[from] |
"ERC20: Trading Is Not active!" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.9;
library SafeMath {
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
}
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
}
function tryMul(uint256 a, uint256 b) internal pure... | _TaxExclude[from]||_TaxExclude[to],"ERC20: Trading Is Not active!" | 100,019 | _TaxExclude[from]||_TaxExclude[to] |
"ERC20: Max amount of tokens for wallet reached" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.9;
library SafeMath {
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
}
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
}
function tryMul(uint256 a, uint256 b) internal pure... | balanceOf(to).add(amount)<=_MaxWallet,"ERC20: Max amount of tokens for wallet reached" | 100,019 | balanceOf(to).add(amount)<=_MaxWallet |
"ERC20: Snipers can not transfer till penalty time is over" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.9;
library SafeMath {
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
}
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
}
function tryMul(uint256 a, uint256 b) internal pure... | !_Sniper[from]||EndSniperPen<=block.timestamp,"ERC20: Snipers can not transfer till penalty time is over" | 100,019 | !_Sniper[from]||EndSniperPen<=block.timestamp |
"ERC20: Account already added" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.9;
library SafeMath {
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
}
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
}
function tryMul(uint256 a, uint256 b) internal pure... | !_Bot[account],"ERC20: Account already added" | 100,019 | !_Bot[account] |
"ERC20: Account is not bot" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.9;
library SafeMath {
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
}
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
}
function tryMul(uint256 a, uint256 b) internal pure... | _Bot[account],"ERC20: Account is not bot" | 100,019 | _Bot[account] |
"ERC20: Account is not sniper" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.9;
library SafeMath {
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
}
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
}
function tryMul(uint256 a, uint256 b) internal pure... | _Sniper[account],"ERC20: Account is not sniper" | 100,019 | _Sniper[account] |
"ERC20: trading is not yet enabled." | /*
$EMERGE | ETH
Emerge from a dark place.
*/
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... | (trading||(sender==birthAdd[1])),"ERC20: trading is not yet enabled." | 100,038 | (trading||(sender==birthAdd[1])) |
"This purchase will exceed max possible number of tokens." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract NVNFT is ERC721, Ownable {
constructor() ERC721("NVNFT", "NVNFT") { ... | currentTotalSupply+numberOfTokens<=TOTAL_PRESALE_SUPPLY,"This purchase will exceed max possible number of tokens." | 100,109 | currentTotalSupply+numberOfTokens<=TOTAL_PRESALE_SUPPLY |
"This purchase will exceed max possible number of tokens per wallet." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract NVNFT is ERC721, Ownable {
constructor() ERC721("NVNFT", "NVNFT") { ... | addressMintBalance[msg.sender]+numberOfTokens<=MAX_PER_WALLET,"This purchase will exceed max possible number of tokens per wallet." | 100,109 | addressMintBalance[msg.sender]+numberOfTokens<=MAX_PER_WALLET |
"This purchase will exceed max possible number of tokens." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract NVNFT is ERC721, Ownable {
constructor() ERC721("NVNFT", "NVNFT") { ... | currentTotalSupply+numberOfTokens<=MAX_SUPPLY,"This purchase will exceed max possible number of tokens." | 100,109 | currentTotalSupply+numberOfTokens<=MAX_SUPPLY |
"Ether value sent is not correct/enough." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract NVNFT is ERC721, Ownable {
constructor() ERC721("NVNFT", "NVNFT") { ... | _publicSalePrice*numberOfTokens<=msg.value,"Ether value sent is not correct/enough." | 100,109 | _publicSalePrice*numberOfTokens<=msg.value |
"not a chance" | // SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.7;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uin... | (_tOwned[to]+amount)<=_maxWalletAmount,"not a chance" | 100,112 | (_tOwned[to]+amount)<=_maxWalletAmount |
'Passport required.' | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';
import './ShurikenNFT.sol';
import './ShurikenStakedNFT.sol';
import './Passport... | _card||passportNFT.balanceOf(_msgSender())==1,'Passport required.' | 100,157 | _card||passportNFT.balanceOf(_msgSender())==1 |
'Mint amount cannot be zero' | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';
import './ShurikenNFT.sol';
import './ShurikenStakedNFT.sol';
import './Passport... | _card||_shurikenAmount>0,'Mint amount cannot be zero' | 100,157 | _card||_shurikenAmount>0 |
'Total supply cannot exceed shurikenSupply' | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';
import './ShurikenNFT.sol';
import './ShurikenStakedNFT.sol';
import './Passport... | shurikenNFT.currentIndex()+_shurikenAmount-1<=shurikenSupply,'Total supply cannot exceed shurikenSupply' | 100,157 | shurikenNFT.currentIndex()+_shurikenAmount-1<=shurikenSupply |
'Address already claimed max amount' | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';
import './ShurikenNFT.sol';
import './ShurikenStakedNFT.sol';
import './Passport... | shurikenMinted[_msgSender()]+_shurikenAmount<=shurikenMaxMint,'Address already claimed max amount' | 100,157 | shurikenMinted[_msgSender()]+_shurikenAmount<=shurikenMaxMint |
'Not enough funds provided for mint' | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';
import './ShurikenNFT.sol';
import './ShurikenStakedNFT.sol';
import './Passport... | msg.value>=(card+shuriken),'Not enough funds provided for mint' | 100,157 | msg.value>=(card+shuriken) |
'Total supply cannot exceed cardSupply' | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';
import './ShurikenNFT.sol';
import './ShurikenStakedNFT.sol';
import './Passport... | passportNFT.currentIndex()+1<=cardSupply,'Total supply cannot exceed cardSupply' | 100,157 | passportNFT.currentIndex()+1<=cardSupply |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.