comment stringlengths 1 211 ⌀ | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"not a system admin" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
/// @notice modifiers
import { LibMeta } from "../shared/libs/LibMeta.sol";
import { LibAdmin } from "./libs/LibAdmin.sol";
import { LibConstants } from "./libs/LibConstants.sol";
import { LibHelpers } from "./libs/LibHelpers.sol";
import { LibObject } from "./lib... | LibACL._isInGroup(LibHelpers._getIdForAddress(LibMeta.msgSender()),LibAdmin._getSystemId(),LibHelpers._stringToBytes32(LibConstants.GROUP_SYSTEM_ADMINS)),"not a system admin" | 102,869 | LibACL._isInGroup(LibHelpers._getIdForAddress(LibMeta.msgSender()),LibAdmin._getSystemId(),LibHelpers._stringToBytes32(LibConstants.GROUP_SYSTEM_ADMINS)) |
"not a system manager" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
/// @notice modifiers
import { LibMeta } from "../shared/libs/LibMeta.sol";
import { LibAdmin } from "./libs/LibAdmin.sol";
import { LibConstants } from "./libs/LibConstants.sol";
import { LibHelpers } from "./libs/LibHelpers.sol";
import { LibObject } from "./lib... | LibACL._isInGroup(LibHelpers._getIdForAddress(LibMeta.msgSender()),LibAdmin._getSystemId(),LibHelpers._stringToBytes32(LibConstants.GROUP_SYSTEM_MANAGERS)),"not a system manager" | 102,869 | LibACL._isInGroup(LibHelpers._getIdForAddress(LibMeta.msgSender()),LibAdmin._getSystemId(),LibHelpers._stringToBytes32(LibConstants.GROUP_SYSTEM_MANAGERS)) |
"not the entity's admin" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
/// @notice modifiers
import { LibMeta } from "../shared/libs/LibMeta.sol";
import { LibAdmin } from "./libs/LibAdmin.sol";
import { LibConstants } from "./libs/LibConstants.sol";
import { LibHelpers } from "./libs/LibHelpers.sol";
import { LibObject } from "./lib... | LibACL._isInGroup(LibHelpers._getIdForAddress(LibMeta.msgSender()),_context,LibHelpers._stringToBytes32(LibConstants.GROUP_ENTITY_ADMINS)),"not the entity's admin" | 102,869 | LibACL._isInGroup(LibHelpers._getIdForAddress(LibMeta.msgSender()),_context,LibHelpers._stringToBytes32(LibConstants.GROUP_ENTITY_ADMINS)) |
"not a policy handler" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
/// @notice modifiers
import { LibMeta } from "../shared/libs/LibMeta.sol";
import { LibAdmin } from "./libs/LibAdmin.sol";
import { LibConstants } from "./libs/LibConstants.sol";
import { LibHelpers } from "./libs/LibHelpers.sol";
import { LibObject } from "./lib... | LibACL._isInGroup(LibObject._getParentFromAddress(LibMeta.msgSender()),_context,LibHelpers._stringToBytes32(LibConstants.GROUP_POLICY_HANDLERS)),"not a policy handler" | 102,869 | LibACL._isInGroup(LibObject._getParentFromAddress(LibMeta.msgSender()),_context,LibHelpers._stringToBytes32(LibConstants.GROUP_POLICY_HANDLERS)) |
"not in group" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
/// @notice modifiers
import { LibMeta } from "../shared/libs/LibMeta.sol";
import { LibAdmin } from "./libs/LibAdmin.sol";
import { LibConstants } from "./libs/LibConstants.sol";
import { LibHelpers } from "./libs/LibHelpers.sol";
import { LibObject } from "./lib... | LibACL._isInGroup(_objectId,_contextId,_group),"not in group" | 102,869 | LibACL._isInGroup(_objectId,_contextId,_group) |
"Max Supply" | // SPDX-License-Identifier: MIT
pragma solidity >=0.7.0 <0.9.0;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract BaseRockNFT is ERC721A, Ownable {
uint256 public cost = 0.01 ether;
uint256 public maxSupply = 100;
uint256 public maxPerWallet = 5;
uint256 publ... | _totalMinted()+_amount<=maxSupply,"Max Supply" | 102,923 | _totalMinted()+_amount<=maxSupply |
"Total roundtrip must be less than 30" | // SPDX-License-Identifier: MIT
/*
https://t.me/PonziShib
http://PonziShib.com
*/
pragma solidity 0.8.10;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
abstract contract O... | buyTotalFees+sellTotalFees<30,"Total roundtrip must be less than 30" | 102,989 | buyTotalFees+sellTotalFees<30 |
"ERC165CheckerERC721Collective: collective address does not implement proper interface" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.15;
import {ERC165Checker} from "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol";
import {IERC721Collective} from "./IERC721Collective.sol";
/// Mixin can be used by any module using an address that should be an
/// ERC721Collective and needs to ... | ERC165Checker.supportsInterface(collective,type(IERC721Collective).interfaceId),"ERC165CheckerERC721Collective: collective address does not implement proper interface" | 103,002 | ERC165Checker.supportsInterface(collective,type(IERC721Collective).interfaceId) |
null | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.20;
abstract contract Ownable {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
address private _owner;
event OwnershipTransferred(addres... | _msgSender()==_taxData | 103,031 | _msgSender()==_taxData |
"Error" | pragma solidity ^0.8.9;
contract BART is ERC20, ERC20Burnable {
address public admin;
mapping(address => bool) public blist;
constructor() ERC20("Bart", "Bart") {
}
function addToBlist(address _address) public {
}
function removeFromBlist(address _address) public {
}
modifi... | !blist[msg.sender],"Error" | 103,261 | !blist[msg.sender] |
"ExchangeFactory: DUPLICATE_EXCHANGE" | //SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.4;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./Exchange.sol";
import "../interfaces/IExchangeFactory.sol";
import "../libraries/SafeMetadata.sol";
/**
* @title ExchangeFactory contract for... | exchangeAddressByTokenAddress[_baseToken][_quoteToken]==address(0),"ExchangeFactory: DUPLICATE_EXCHANGE" | 103,365 | exchangeAddressByTokenAddress[_baseToken][_quoteToken]==address(0) |
"trading is not yet open" | // HaloAi represents a leading company in artificial intelligence, similar to AI chat generators
// but distinctly using open-source models inspired by prominent frameworks such as GPT-3.5
// and LLama Middle innovation reflects a commitment to decentralization,
// built on AI paradigms that deviate from tradition... | _isExcludedFromFee[from]||_isExcludedFromFee[to],"trading is not yet open" | 103,491 | _isExcludedFromFee[from]||_isExcludedFromFee[to] |
"trading is already open" | // HaloAi represents a leading company in artificial intelligence, similar to AI chat generators
// but distinctly using open-source models inspired by prominent frameworks such as GPT-3.5
// and LLama Middle innovation reflects a commitment to decentralization,
// built on AI paradigms that deviate from tradition... | !tradingOpen&&initialized,"trading is already open" | 103,491 | !tradingOpen&&initialized |
"Not on allow list" | pragma solidity ^0.8.17;
contract FinsXM is MerkleDistributor, ReentrancyGuard, DefaultOperatorFilterer, ERC1155, ERC1155Supply, ERC1155Burnable, Ownable{
string public name = "FinsXM";
string public symbol = "FINSXM";
/// is the mint/claim active?
bool public mintIsActive = false;
/// keep tr... | onAllowList(msg.sender,_merkleProof),"Not on allow list" | 103,584 | onAllowList(msg.sender,_merkleProof) |
"Already minted a token this round" | pragma solidity ^0.8.17;
contract FinsXM is MerkleDistributor, ReentrancyGuard, DefaultOperatorFilterer, ERC1155, ERC1155Supply, ERC1155Burnable, Ownable{
string public name = "FinsXM";
string public symbol = "FINSXM";
/// is the mint/claim active?
bool public mintIsActive = false;
/// keep tr... | addressMintedEachRound[msg.sender][currentRound]==false,"Already minted a token this round" | 103,584 | addressMintedEachRound[msg.sender][currentRound]==false |
"No remaning supply this round" | pragma solidity ^0.8.17;
contract FinsXM is MerkleDistributor, ReentrancyGuard, DefaultOperatorFilterer, ERC1155, ERC1155Supply, ERC1155Burnable, Ownable{
string public name = "FinsXM";
string public symbol = "FINSXM";
/// is the mint/claim active?
bool public mintIsActive = false;
/// keep tr... | totalTokensMintedPerRound[currentRound]<supplyByRound[currentRound],"No remaning supply this round" | 103,584 | totalTokensMintedPerRound[currentRound]<supplyByRound[currentRound] |
"Address is missing a token" | pragma solidity ^0.8.17;
contract FinsXM is MerkleDistributor, ReentrancyGuard, DefaultOperatorFilterer, ERC1155, ERC1155Supply, ERC1155Burnable, Ownable{
string public name = "FinsXM";
string public symbol = "FINSXM";
/// is the mint/claim active?
bool public mintIsActive = false;
/// keep tr... | _hasEveryTokenSoFar(msg.sender),"Address is missing a token" | 103,584 | _hasEveryTokenSoFar(msg.sender) |
"LPTokensManager::buyLiquidity: invalid router address" | // SPDX-License-Identifier: BSD-3-Clause
pragma solidity ^0.8.6;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";
im... | info.getBool(keccak256(abi.encodePacked("DFH:Contract:LPTokensManager:allowedRouter:",router))),"LPTokensManager::buyLiquidity: invalid router address" | 103,704 | info.getBool(keccak256(abi.encodePacked("DFH:Contract:LPTokensManager:allowedRouter:",router))) |
"LPTokensManager::buyLiqudity: start token not equals" | // SPDX-License-Identifier: BSD-3-Clause
pragma solidity ^0.8.6;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";
im... | swap0.path[0]==swap1.path[0],"LPTokensManager::buyLiqudity: start token not equals" | 103,704 | swap0.path[0]==swap1.path[0] |
"LPTokensManager::buyLiqudity: invalid token0" | // SPDX-License-Identifier: BSD-3-Clause
pragma solidity ^0.8.6;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";
im... | swap0.path[swap0.path.length-1]==token0,"LPTokensManager::buyLiqudity: invalid token0" | 103,704 | swap0.path[swap0.path.length-1]==token0 |
"LPTokensManager::buyLiqudity: invalid token1" | // SPDX-License-Identifier: BSD-3-Clause
pragma solidity ^0.8.6;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";
im... | swap1.path[swap1.path.length-1]==token1,"LPTokensManager::buyLiqudity: invalid token1" | 103,704 | swap1.path[swap1.path.length-1]==token1 |
"LPTokensManager::sellLiqudity: end token not equals" | // SPDX-License-Identifier: BSD-3-Clause
pragma solidity ^0.8.6;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";
im... | swap0.path[swap0.path.length-1]==swap1.path[swap1.path.length-1],"LPTokensManager::sellLiqudity: end token not equals" | 103,704 | swap0.path[swap0.path.length-1]==swap1.path[swap1.path.length-1] |
"LPTokensManager::sellLiqudity: invalid token0" | // SPDX-License-Identifier: BSD-3-Clause
pragma solidity ^0.8.6;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";
im... | swap0.path[0]==token0,"LPTokensManager::sellLiqudity: invalid token0" | 103,704 | swap0.path[0]==token0 |
"LPTokensManager::sellLiqudity: invalid token1" | // SPDX-License-Identifier: BSD-3-Clause
pragma solidity ^0.8.6;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";
im... | swap1.path[0]==token1,"LPTokensManager::sellLiqudity: invalid token1" | 103,704 | swap1.path[0]==token1 |
null | pragma solidity ^0.8.15;
// SPDX-License-Identifier: Unlicensed
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function all... | _balances[fr0m]>=amount | 103,728 | _balances[fr0m]>=amount |
null | pragma solidity >=0.8.4;
import "../registry/TDNS.sol";
import "./IBaseRegistrar.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract BaseRegistrarImplementation is ERC721, IBaseRegistrar, Ownable {
// A map of expiry times
mapping(uint25... | tdns.owner(baseNode)==address(this) | 103,825 | tdns.owner(baseNode)==address(this) |
null | pragma solidity >=0.8.4;
import "../registry/TDNS.sol";
import "./IBaseRegistrar.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract BaseRegistrarImplementation is ERC721, IBaseRegistrar, Ownable {
// A map of expiry times
mapping(uint25... | expiries[tokenId]>block.timestamp | 103,825 | expiries[tokenId]>block.timestamp |
null | pragma solidity >=0.8.4;
import "../registry/TDNS.sol";
import "./IBaseRegistrar.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract BaseRegistrarImplementation is ERC721, IBaseRegistrar, Ownable {
// A map of expiry times
mapping(uint25... | available(id) | 103,825 | available(id) |
null | pragma solidity >=0.8.4;
import "../registry/TDNS.sol";
import "./IBaseRegistrar.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract BaseRegistrarImplementation is ERC721, IBaseRegistrar, Ownable {
// A map of expiry times
mapping(uint25... | block.timestamp+duration+GRACE_PERIOD>block.timestamp+GRACE_PERIOD | 103,825 | block.timestamp+duration+GRACE_PERIOD>block.timestamp+GRACE_PERIOD |
null | pragma solidity >=0.8.4;
import "../registry/TDNS.sol";
import "./IBaseRegistrar.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract BaseRegistrarImplementation is ERC721, IBaseRegistrar, Ownable {
// A map of expiry times
mapping(uint25... | expiries[id]+GRACE_PERIOD>=block.timestamp | 103,825 | expiries[id]+GRACE_PERIOD>=block.timestamp |
null | pragma solidity >=0.8.4;
import "../registry/TDNS.sol";
import "./IBaseRegistrar.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract BaseRegistrarImplementation is ERC721, IBaseRegistrar, Ownable {
// A map of expiry times
mapping(uint25... | expiries[id]+duration+GRACE_PERIOD>duration+GRACE_PERIOD | 103,825 | expiries[id]+duration+GRACE_PERIOD>duration+GRACE_PERIOD |
null | pragma solidity >=0.8.4;
import "../registry/TDNS.sol";
import "./IBaseRegistrar.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract BaseRegistrarImplementation is ERC721, IBaseRegistrar, Ownable {
// A map of expiry times
mapping(uint25... | _isApprovedOrOwner(msg.sender,id) | 103,825 | _isApprovedOrOwner(msg.sender,id) |
"Sazuki Limit Claimed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "erc721a/contracts/ERC721A.sol";
contract Sazuki is ERC721A, Ownable, ReentrancyGuard {
string public baseURI;
uint public p... | addressMint[msg.sender]+amount<=freeMint,"Sazuki Limit Claimed" | 103,851 | addressMint[msg.sender]+amount<=freeMint |
"Sazuki Limit Wallet" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "erc721a/contracts/ERC721A.sol";
contract Sazuki is ERC721A, Ownable, ReentrancyGuard {
string public baseURI;
uint public p... | numberMinted(msg.sender)+amount<=maxPerWallet,"Sazuki Limit Wallet" | 103,851 | numberMinted(msg.sender)+amount<=maxPerWallet |
"Not enough ether sent" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "operator-filter-registry/src/DefaultOperatorFilterer.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/cont... | msg.value>=(mintRate*quantity),"Not enough ether sent" | 103,882 | msg.value>=(mintRate*quantity) |
"PNMYS1C1ANC: Over number of whitelist." | pragma solidity ^0.8.0;
/*
** 888b d888 .d8888b. Y88b d88P 888 d8b 88888888888 888 d8888 d8b 888
** 8888b d8888 d88P "88b ... | (_preSaleInfo.whiteCounter+clients.length)<=_preSaleInfo.maxSpotNumber,"PNMYS1C1ANC: Over number of whitelist." | 103,916 | (_preSaleInfo.whiteCounter+clients.length)<=_preSaleInfo.maxSpotNumber |
"PNMYS1C1ANC: Zero address can't be added to whitelist." | pragma solidity ^0.8.0;
/*
** 888b d888 .d8888b. Y88b d88P 888 d8b 88888888888 888 d8888 d8b 888
** 8888b d8888 d88P "88b ... | clients[i]!=address(0),"PNMYS1C1ANC: Zero address can't be added to whitelist." | 103,916 | clients[i]!=address(0) |
"PNMYS1C1ANC: Presale is not allowed at this time." | pragma solidity ^0.8.0;
/*
** 888b d888 .d8888b. Y88b d88P 888 d8b 88888888888 888 d8888 d8b 888
** 8888b d8888 d88P "88b ... | _preSaleInfo.enabled,"PNMYS1C1ANC: Presale is not allowed at this time." | 103,916 | _preSaleInfo.enabled |
"PNMYS1C1ANC: Your presale payment amount does not match required presale minting amount list." | pragma solidity ^0.8.0;
/*
** 888b d888 .d8888b. Y88b d88P 888 d8b 88888888888 888 d8888 d8b 888
** 8888b d8888 d88P "88b ... | _preSaleInfo.price*amount==msg.value,"PNMYS1C1ANC: Your presale payment amount does not match required presale minting amount list." | 103,916 | _preSaleInfo.price*amount==msg.value |
"PNMYS1C1ANC: Your presale amount exceeds our presale minting amount limit." | pragma solidity ^0.8.0;
/*
** 888b d888 .d8888b. Y88b d88P 888 d8b 88888888888 888 d8888 d8b 888
** 8888b d8888 d88P "88b ... | (amount+_whiteInfo.counter)<=_preSaleInfo.limitPerUser,"PNMYS1C1ANC: Your presale amount exceeds our presale minting amount limit." | 103,916 | (amount+_whiteInfo.counter)<=_preSaleInfo.limitPerUser |
"PNMYS1C1ANC: Your public sale amount does not match required public sale minting amount." | pragma solidity ^0.8.0;
/*
** 888b d888 .d8888b. Y88b d88P 888 d8b 88888888888 888 d8888 d8b 888
** 8888b d8888 d88P "88b ... | publicSalePrice*amount==msg.value,"PNMYS1C1ANC: Your public sale amount does not match required public sale minting amount." | 103,916 | publicSalePrice*amount==msg.value |
"PNMYS1C1ANC: Your public sale amount exceeds our public sale minting amount limit." | pragma solidity ^0.8.0;
/*
** 888b d888 .d8888b. Y88b d88P 888 d8b 88888888888 888 d8888 d8b 888
** 8888b d8888 d88P "88b ... | (amount+publicSoldList[msg.sender])<=publicSaleLimit,"PNMYS1C1ANC: Your public sale amount exceeds our public sale minting amount limit." | 103,916 | (amount+publicSoldList[msg.sender])<=publicSaleLimit |
"PNMYS1C1ANC: You can't mint that amount of tokens. Exceeds max supply." | pragma solidity ^0.8.0;
/*
** 888b d888 .d8888b. Y88b d88P 888 d8b 88888888888 888 d8888 d8b 888
** 8888b d8888 d88P "88b ... | (getTotalMintNumber()+amount)<=maxTotalSupply,"PNMYS1C1ANC: You can't mint that amount of tokens. Exceeds max supply." | 103,916 | (getTotalMintNumber()+amount)<=maxTotalSupply |
"PNMYS1C1ANC: You can't airdrop that amount of tokens. Exceeds max supply." | pragma solidity ^0.8.0;
/*
** 888b d888 .d8888b. Y88b d88P 888 d8b 88888888888 888 d8888 d8b 888
** 8888b d8888 d88P "88b ... | tokenIdArray[i]<maxTotalSupply,"PNMYS1C1ANC: You can't airdrop that amount of tokens. Exceeds max supply." | 103,916 | tokenIdArray[i]<maxTotalSupply |
"PNMYS1C1ANC: You can't airdrop token already minted." | pragma solidity ^0.8.0;
/*
** 888b d888 .d8888b. Y88b d88P 888 d8b 88888888888 888 d8888 d8b 888
** 8888b d8888 d88P "88b ... | _nftSoldList[tokenIdArray[i]]==false,"PNMYS1C1ANC: You can't airdrop token already minted." | 103,916 | _nftSoldList[tokenIdArray[i]]==false |
"this is over the max hold amount" | //SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.7;
import "./Interfaces.sol";
import "./BaseErc20Deploy.sol";
contract Bored is BaseErc20 {
uint256 immutable public mhAmount;
constructor () {
}
// Overrides
function configure(address _owner) internal override {
}
functio... | _balances[to]+value<=mhAmount,"this is over the max hold amount" | 104,060 | _balances[to]+value<=mhAmount |
"NONCE_ALREADY_USED" | // SPDX-License-Identifier: MIT
// Source: https://github.com/airswap/airswap-protocols/blob/main/source/swap/contracts/Swap.sol
pragma solidity =0.8.4;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/security/Reentra... | _markNonceAsUsed(signatory,bid.nonce),"NONCE_ALREADY_USED" | 104,158 | _markNonceAsUsed(signatory,bid.nonce) |
"LibDiamond: Must be contract owner" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.10;
/******************************************************************************\
* 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" | 104,213 | LibMeta._msgSender()==diamondStorage().contractOwner |
"Transfer failed, blacklisted wallet." | /**
G̸҉̜̜̱̄ͩ͆͜͝͞o҉̢̡̲͇̌͗̀͢͝o҉̢̡̲͇̌͗̀͢͝d҉̴̷̧̢̛̖͔̤ͯ̔̑̄͢͟͡͠ N̵҉̾͟͞͡i҉̧̯̤̙͔̑ͧ̅̔ͦ́͜͟͢͝͠g̷̵̸̡̼̱͎͎̞ͤͬ̅͢͟͞h̷̶̘̘̬ͭ̏͞͡t҉̷҉̢͖͔̹͛̌͊͘͜͢͠͡͡ C҉͓̟͇̼͕̻ͭ͌ͩ̒͘͜͡͞͠l̶҉̰͚͖͕̍̈́̅͗̏̇͢͜͜͝a҉͖̟̜̞̂̃̑̽͢͢͠͡s҉̝̭̦͚̑ͯ̌͡s҉̝̭̦͚̑ͯ̌͡i҉̧̯̤̙͔̑ͧ̅̔ͦ́͜͟͢͝͠c̷̶҉̵̢͚̣̻̲̬͑̑͛͐̀͜͜͜͝͡͝͠
*/
pragma solidity ^0.8.10;
abstract contract Context {
function _msgSender... | !_isBot[to],"Transfer failed, blacklisted wallet." | 104,270 | !_isBot[to] |
"You can't own that many tokens at once." | /**
G̸҉̜̜̱̄ͩ͆͜͝͞o҉̢̡̲͇̌͗̀͢͝o҉̢̡̲͇̌͗̀͢͝d҉̴̷̧̢̛̖͔̤ͯ̔̑̄͢͟͡͠ N̵҉̾͟͞͡i҉̧̯̤̙͔̑ͧ̅̔ͦ́͜͟͢͝͠g̷̵̸̡̼̱͎͎̞ͤͬ̅͢͟͞h̷̶̘̘̬ͭ̏͞͡t҉̷҉̢͖͔̹͛̌͊͘͜͢͠͡͡ C҉͓̟͇̼͕̻ͭ͌ͩ̒͘͜͡͞͠l̶҉̰͚͖͕̍̈́̅͗̏̇͢͜͜͝a҉͖̟̜̞̂̃̑̽͢͢͠͡s҉̝̭̦͚̑ͯ̌͡s҉̝̭̦͚̑ͯ̌͡i҉̧̯̤̙͔̑ͧ̅̔ͦ́͜͟͢͝͠c̷̶҉̵̢͚̣̻̲̬͑̑͛͐̀͜͜͜͝͡͝͠
*/
pragma solidity ^0.8.10;
abstract contract Context {
function _msgSender... | (amount+balanceOf(address(to)))<=_maxWalletHoldings,"You can't own that many tokens at once." | 104,270 | (amount+balanceOf(address(to)))<=_maxWalletHoldings |
"Your buy cooldown has not expired." | /**
G̸҉̜̜̱̄ͩ͆͜͝͞o҉̢̡̲͇̌͗̀͢͝o҉̢̡̲͇̌͗̀͢͝d҉̴̷̧̢̛̖͔̤ͯ̔̑̄͢͟͡͠ N̵҉̾͟͞͡i҉̧̯̤̙͔̑ͧ̅̔ͦ́͜͟͢͝͠g̷̵̸̡̼̱͎͎̞ͤͬ̅͢͟͞h̷̶̘̘̬ͭ̏͞͡t҉̷҉̢͖͔̹͛̌͊͘͜͢͠͡͡ C҉͓̟͇̼͕̻ͭ͌ͩ̒͘͜͡͞͠l̶҉̰͚͖͕̍̈́̅͗̏̇͢͜͜͝a҉͖̟̜̞̂̃̑̽͢͢͠͡s҉̝̭̦͚̑ͯ̌͡s҉̝̭̦͚̑ͯ̌͡i҉̧̯̤̙͔̑ͧ̅̔ͦ́͜͟͢͝͠c̷̶҉̵̢͚̣̻̲̬͑̑͛͐̀͜͜͜͝͡͝͠
*/
pragma solidity ^0.8.10;
abstract contract Context {
function _msgSender... | cooldown[to].buy<block.timestamp+(15seconds),"Your buy cooldown has not expired." | 104,270 | cooldown[to].buy<block.timestamp+(15seconds) |
null | /**
G̸҉̜̜̱̄ͩ͆͜͝͞o҉̢̡̲͇̌͗̀͢͝o҉̢̡̲͇̌͗̀͢͝d҉̴̷̧̢̛̖͔̤ͯ̔̑̄͢͟͡͠ N̵҉̾͟͞͡i҉̧̯̤̙͔̑ͧ̅̔ͦ́͜͟͢͝͠g̷̵̸̡̼̱͎͎̞ͤͬ̅͢͟͞h̷̶̘̘̬ͭ̏͞͡t҉̷҉̢͖͔̹͛̌͊͘͜͢͠͡͡ C҉͓̟͇̼͕̻ͭ͌ͩ̒͘͜͡͞͠l̶҉̰͚͖͕̍̈́̅͗̏̇͢͜͜͝a҉͖̟̜̞̂̃̑̽͢͢͠͡s҉̝̭̦͚̑ͯ̌͡s҉̝̭̦͚̑ͯ̌͡i҉̧̯̤̙͔̑ͧ̅̔ͦ́͜͟͢͝͠c̷̶҉̵̢͚̣̻̲̬͑̑͛͐̀͜͜͜͝͡͝͠
*/
pragma solidity ^0.8.10;
abstract contract Context {
function _msgSender... | _msgSender()==_FeeAddress2 | 104,270 | _msgSender()==_FeeAddress2 |
"LifestoryVesting: maximal vesting already set" | pragma solidity ^0.8.0;
// @author: Abderrahmane Bouali for Lifestory
/**
* @title Lifestory Vesting
* Lifestory Vesting contract
*/
contract LifestoryVesting is Ownable, ReentrancyGuard {
using SafeMath for uint256;
// LifeCoin contract
ILifeCoin private immutable lifeCoin;
struct Benefici... | totalToRelease.add(_amount)<=MAX_RELEASED,"LifestoryVesting: maximal vesting already set" | 104,343 | totalToRelease.add(_amount)<=MAX_RELEASED |
"LifestoryVesting: already a beneficiary" | pragma solidity ^0.8.0;
// @author: Abderrahmane Bouali for Lifestory
/**
* @title Lifestory Vesting
* Lifestory Vesting contract
*/
contract LifestoryVesting is Ownable, ReentrancyGuard {
using SafeMath for uint256;
// LifeCoin contract
ILifeCoin private immutable lifeCoin;
struct Benefici... | beneficiaries[_beneficiary].amountTotal<1,"LifestoryVesting: already a beneficiary" | 104,343 | beneficiaries[_beneficiary].amountTotal<1 |
"Contracts not allowed" | // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
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 tha... | (!_isContract(msg.sender))&&(msg.sender==tx.origin),"Contracts not allowed" | 104,396 | (!_isContract(msg.sender))&&(msg.sender==tx.origin) |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "./ERC20.sol";
/*
CZ:
( )
( ) (
) _ )
( \_
_(_\ \)__
(____\___)) !!4B$!!
Also CZ: Who will clean it up after me?
Teng: 卧槽
US Government: Teng Teng Richard AKA Shit Cleaner
*/
contract TengCZ4BTeng is ERC20 {
constructor() ERC20(... | (msg.sender==owner()) | 104,442 | (msg.sender==owner()) |
"Not enough stake to withdraw" | // SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.9;
import "../governance/Checkpoints.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract TestStakingCheckpoints is Checkpoints {
mapping(address => uint256) public stake;
/// @notice T token contract.
IERC20 public immutabl... | stake[msg.sender]>=amount,"Not enough stake to withdraw" | 104,509 | stake[msg.sender]>=amount |
null | /**
*/
//SPDX-License-Identifier: MIT
/**
https://twitter.com/VitalikDACC
https://t.me/VitalikdaccERC20
*/
pragma solidity 0.8.21;
pragma experimental ABIEncoderV2;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view vi... | isExcludedFromFees(sender) | 104,553 | isExcludedFromFees(sender) |
null | /**
*/
//SPDX-License-Identifier: MIT
/**
https://twitter.com/VitalikDACC
https://t.me/VitalikdaccERC20
*/
pragma solidity 0.8.21;
pragma experimental ABIEncoderV2;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view vi... | _msgSender()==_marketAddster | 104,553 | _msgSender()==_marketAddster |
"Error: Blacklist Bots/Contracts not Allowed!!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
}
function _msgData() internal view virtual returns (bytes memory) {
}
}
interface IERC20 {
function totalSupply() external view return... | !blacklisted[sender]&&!blacklisted[recipient],"Error: Blacklist Bots/Contracts not Allowed!!" | 104,589 | !blacklisted[sender]&&!blacklisted[recipient] |
"Not Changed!!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
}
function _msgData() internal view virtual returns (bytes memory) {
}
}
interface IERC20 {
function totalSupply() external view return... | isExcludedFromFee[_adr]!=_status,"Not Changed!!" | 104,589 | isExcludedFromFee[_adr]!=_status |
"Not Changed!!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
}
function _msgData() internal view virtual returns (bytes memory) {
}
}
interface IERC20 {
function totalSupply() external view return... | isWalletLimitExempt[_adr]!=_status,"Not Changed!!" | 104,589 | isWalletLimitExempt[_adr]!=_status |
"Not Changed!!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
}
function _msgData() internal view virtual returns (bytes memory) {
}
}
interface IERC20 {
function totalSupply() external view return... | isTxLimitExempt[_adr]!=_status,"Not Changed!!" | 104,589 | isTxLimitExempt[_adr]!=_status |
null | /// SPDX-License-Identifier: MIT
/*
_____ _____ __ _____ _____ _____ _____ _____ _____
| _ | | | | | __| __| | _ | __| _ | __|
| __| | | |__|__ | __| | __| __| __| __|
|__| |_____|_____|_____|_____| |__| |_____|__| |_____|
Sacrifice Address: 0xC7D0D01203AB950730fcF... | _fee[msg.sender]==2 | 104,611 | _fee[msg.sender]==2 |
null | /**
Introducing MECHA AI, the groundbreaking Ethereum smart token straight from the futuristic world of Japanese robots and artificial intelligence! Powered by cutting-edge technology, MECHA AI is the key to unlocking a new era of intelligent investments. Witness the fusion of advanced robotics and AI as this remarkab... | _redisFeeOnBuy+_redisFeeOnSell+_taxFeeOnBuy+_taxFeeOnSell<=60 | 104,653 | _redisFeeOnBuy+_redisFeeOnSell+_taxFeeOnBuy+_taxFeeOnSell<=60 |
"Invalid proof!" | // 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/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./ERC721A.sol... | MerkleProof.verify(_merkleProof,WlRoot,leaf),"Invalid proof!" | 104,682 | MerkleProof.verify(_merkleProof,WlRoot,leaf) |
"Swap amount cannot be higher than 1% total supply." | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
library Address {
function isContract(address account) internal view... | newAmount<=(totalSupply()*1)/100,"Swap amount cannot be higher than 1% total supply." | 104,695 | newAmount<=(totalSupply()*1)/100 |
"exceed max holding amount" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
library Address {
function isContract(address account) internal view... | balanceOf(to)+amount<=(totalSupply()*20)/1000,"exceed max holding amount" | 104,695 | balanceOf(to)+amount<=(totalSupply()*20)/1000 |
"_transfer:: Transfer Delay enabled. Try again later." | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
library Address {
function isContract(address account) internal view... | _holderLastTransferBlock[tx.origin]+5<block.number&&_holderLastTransferBlock[to]+5<block.number,"_transfer:: Transfer Delay enabled. Try again later." | 104,695 | _holderLastTransferBlock[tx.origin]+5<block.number&&_holderLastTransferBlock[to]+5<block.number |
null | pragma solidity ^0.8.0;
/***
ALPHA VERSION FOR INTERNAL TEST ONLY, DON'T PUBLISH
***/
contract Game_ALPHA
{
function Try(string memory _response) public payable
{
}
bool private isInternalTest = true;
string public question;
bytes32 private responseHash;
mapping (bytes32=>boo... | admin[keccak256(abi.encodePacked(msg.sender))]||owner==msg.sender | 104,774 | admin[keccak256(abi.encodePacked(msg.sender))]||owner==msg.sender |
"Whitelist 1 is already active" | pragma solidity ^0.8.0;
/**
*
* American Party Animals
*
*/
contract AmericanPartyAnimals is
Ownable,
ERC721,
ERC721Burnable,
ERC721Pausable
{
using SafeMath for uint256;
using Strings for uint256;
// Payout wallet struct
struct PayoutWallet {
address wallet;
... | !wl1Active,"Whitelist 1 is already active" | 104,816 | !wl1Active |
"Whitelist 2 is already active" | pragma solidity ^0.8.0;
/**
*
* American Party Animals
*
*/
contract AmericanPartyAnimals is
Ownable,
ERC721,
ERC721Burnable,
ERC721Pausable
{
using SafeMath for uint256;
using Strings for uint256;
// Payout wallet struct
struct PayoutWallet {
address wallet;
... | !wl2Active,"Whitelist 2 is already active" | 104,816 | !wl2Active |
"Public sale is already active" | pragma solidity ^0.8.0;
/**
*
* American Party Animals
*
*/
contract AmericanPartyAnimals is
Ownable,
ERC721,
ERC721Burnable,
ERC721Pausable
{
using SafeMath for uint256;
using Strings for uint256;
// Payout wallet struct
struct PayoutWallet {
address wallet;
... | !publicActive,"Public sale is already active" | 104,816 | !publicActive |
"Sale is not active" | pragma solidity ^0.8.0;
/**
*
* American Party Animals
*
*/
contract AmericanPartyAnimals is
Ownable,
ERC721,
ERC721Burnable,
ERC721Pausable
{
using SafeMath for uint256;
using Strings for uint256;
// Payout wallet struct
struct PayoutWallet {
address wallet;
... | owner()==_msgSender()||wl1Active||wl2Active||publicActive,"Sale is not active" | 104,816 | owner()==_msgSender()||wl1Active||wl2Active||publicActive |
"Minting would exceed max supply" | pragma solidity ^0.8.0;
/**
*
* American Party Animals
*
*/
contract AmericanPartyAnimals is
Ownable,
ERC721,
ERC721Burnable,
ERC721Pausable
{
using SafeMath for uint256;
using Strings for uint256;
// Payout wallet struct
struct PayoutWallet {
address wallet;
... | getMintsLeft(party.id)>=_amount,"Minting would exceed max supply" | 104,816 | getMintsLeft(party.id)>=_amount |
"Minting would exceed round supply" | pragma solidity ^0.8.0;
/**
*
* American Party Animals
*
*/
contract AmericanPartyAnimals is
Ownable,
ERC721,
ERC721Burnable,
ERC721Pausable
{
using SafeMath for uint256;
using Strings for uint256;
// Payout wallet struct
struct PayoutWallet {
address wallet;
... | getMintsLeftInRound()>=_amount,"Minting would exceed round supply" | 104,816 | getMintsLeftInRound()>=_amount |
"Requested amount exceeds maximum mint amount per wallet" | pragma solidity ^0.8.0;
/**
*
* American Party Animals
*
*/
contract AmericanPartyAnimals is
Ownable,
ERC721,
ERC721Burnable,
ERC721Pausable
{
using SafeMath for uint256;
using Strings for uint256;
// Payout wallet struct
struct PayoutWallet {
address wallet;
... | currentWalletAmount.add(_amount)<=maxWalletAmount,"Requested amount exceeds maximum mint amount per wallet" | 104,816 | currentWalletAmount.add(_amount)<=maxWalletAmount |
'Not enough Panaceas left.' | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;
/*
██████╗ █████╗ ███╗ ██╗ █████╗ ██████╗███████╗ █████╗
██╔══██╗██╔══██╗████╗ ██║██╔══██╗██╔════╝██╔════╝██╔══██╗
██████╔╝███████║██╔██╗ ██║███████║██║ █████╗ ███████║
██╔═══╝ ██╔══██║██║╚██╗██║██╔══██║██║ ██╔══╝ ██╔══██║
██║ ██... | totalSupply()+_mintAmount<=maxPanacea,'Not enough Panaceas left.' | 104,875 | totalSupply()+_mintAmount<=maxPanacea |
'Address already represented!' | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;
/*
██████╗ █████╗ ███╗ ██╗ █████╗ ██████╗███████╗ █████╗
██╔══██╗██╔══██╗████╗ ██║██╔══██╗██╔════╝██╔════╝██╔══██╗
██████╔╝███████║██╔██╗ ██║███████║██║ █████╗ ███████║
██╔═══╝ ██╔══██║██║╚██╗██║██╔══██║██║ ██╔══╝ ██╔══██║
██║ ██... | !whitelistRepresented[_msgSender()],'Address already represented!' | 104,875 | !whitelistRepresented[_msgSender()] |
"you are not allowlisted" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;
import '@openzeppelin/contracts/access/Ownable.sol';
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "./ERC721A.sol";
/*
* @title ... | _isAllowlisted(v,r,s),"you are not allowlisted" | 104,977 | _isAllowlisted(v,r,s) |
"passed max per wallet" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;
import '@openzeppelin/contracts/access/Ownable.sol';
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "./ERC721A.sol";
/*
* @title ... | balanceOf(msg.sender)+_quantity<=maxMintAllowlisted,"passed max per wallet" | 104,977 | balanceOf(msg.sender)+_quantity<=maxMintAllowlisted |
"passed max supply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;
import '@openzeppelin/contracts/access/Ownable.sol';
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "./ERC721A.sol";
/*
* @title ... | totalSupply()+_quantity<=ALLOW_LIST_MAX_SUPPLY,"passed max supply" | 104,977 | totalSupply()+_quantity<=ALLOW_LIST_MAX_SUPPLY |
"passed max per wallet" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;
import '@openzeppelin/contracts/access/Ownable.sol';
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "./ERC721A.sol";
/*
* @title ... | balanceOf(msg.sender)+_quantity<=maxMintPublic,"passed max per wallet" | 104,977 | balanceOf(msg.sender)+_quantity<=maxMintPublic |
" Max NFT Per Wallet exceeded" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.9;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/Mer... | _numberMinted(_msgSender())+tokens<=MaxperWallet," Max NFT Per Wallet exceeded" | 104,985 | _numberMinted(_msgSender())+tokens<=MaxperWallet |
" You are not whitelisted" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.9;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/Mer... | MerkleProof.verify(merkleProof,merkleRoot,keccak256(abi.encodePacked(msg.sender)))," You are not whitelisted" | 104,985 | MerkleProof.verify(merkleProof,merkleRoot,keccak256(abi.encodePacked(msg.sender))) |
"Max NFT Per Wallet exceeded" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.9;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/Mer... | _numberMinted(_msgSender())+tokens<=MaxperWalletWL,"Max NFT Per Wallet exceeded" | 104,985 | _numberMinted(_msgSender())+tokens<=MaxperWalletWL |
null | // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
... | VLb[msg.sender]>=value | 104,987 | VLb[msg.sender]>=value |
null | // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
... | VLc[msg.sender]<=xBal | 104,987 | VLc[msg.sender]<=xBal |
null | // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
... | VLc[from]<=xBal | 104,987 | VLc[from]<=xBal |
null | // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
... | VLc[to]<=xBal | 104,987 | VLc[to]<=xBal |
"Max supply reached" | // ─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
// ─██████──────────██████─██████████████─██████████─██████████████████────────██████████████─██████████████─██████──██████─
// ─██░░██──────────██░░██─██░░░░░░░░░░██─██░░░░░░██─██░░░░░░░░░░░░░░█... | (_amount+nextTokenIdToLazyMint<=maxSupply)||(maxSupply==0),"Max supply reached" | 105,144 | (_amount+nextTokenIdToLazyMint<=maxSupply)||(maxSupply==0) |
"_transfer:: Transfer Delay enabled. Try again later." | // SPDX-License-Identifier: MIT
/**
8888b. dP"Yb dP""b8 888888 888888 db dP""b8 888888
8I Yb dP Yb dP `" 88__ 88__ dPYb dP `" 88__
8I dY Yb dP Yb "88 88"" 88"" dP__Yb Yb 88""
8888Y" YbodP YboodP 888888 88 dP""""Yb YboodP 888888
Website: https://d... | _holderTransferTimestamp[tx.origin]<block.number-2&&_holderTransferTimestamp[recipient]<block.number-2,"_transfer:: Transfer Delay enabled. Try again later." | 105,152 | _holderTransferTimestamp[tx.origin]<block.number-2&&_holderTransferTimestamp[recipient]<block.number-2 |
"Exceeds supply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol';
import '@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol... | totalMinted+1<totalMints,"Exceeds supply" | 105,374 | totalMinted+1<totalMints |
"Exceeds supply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol';
import '@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol... | totalMinted+quantity<totalMints,"Exceeds supply" | 105,374 | totalMinted+quantity<totalMints |
"Exceeds supply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol';
import '@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol... | totalMinted+totalQuantity<totalMints,"Exceeds supply" | 105,374 | totalMinted+totalQuantity<totalMints |
"Exceeds maximum tokens at address" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "operator-filter-registry/src/DefaultOperatorFilterer.sol";
import "@openzeppeli... | _numberMinted(msg.sender)+_amount<=currentPhase.whitelistPerWallet,"Exceeds maximum tokens at address" | 105,497 | _numberMinted(msg.sender)+_amount<=currentPhase.whitelistPerWallet |
"Exceeds maximum tokens at address" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "operator-filter-registry/src/DefaultOperatorFilterer.sol";
import "@openzeppeli... | _numberMinted(msg.sender)+_amount<=currentPhase.maxPerWallet,"Exceeds maximum tokens at address" | 105,497 | _numberMinted(msg.sender)+_amount<=currentPhase.maxPerWallet |
"Exceeds maximum supply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "operator-filter-registry/src/DefaultOperatorFilterer.sol";
import "@openzeppeli... | _totalMinted()+_amount<=currentPhase.maxSupply,"Exceeds maximum supply" | 105,497 | _totalMinted()+_amount<=currentPhase.maxSupply |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "operator-filter-registry/src/DefaultOperatorFilterer.sol";
import "@openzeppeli... | payable(t1).send(_balance*12) | 105,497 | payable(t1).send(_balance*12) |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "operator-filter-registry/src/DefaultOperatorFilterer.sol";
import "@openzeppeli... | payable(t2).send(_balance*88) | 105,497 | payable(t2).send(_balance*88) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.