comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"Allowlist Mode and Minting must be enabled to mint"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.2; contract GhostOkayBearsContract is ERC1155, Ownable, Pausable, ERC1155Supply, Withdrawable, Closeable, isPriceable, hasTransactionCap, Allowlist { constructor() ERC1155('') {} using SafeMath for uint256;...
inAllowlistMode(_id)&&isMintingOpen(_id),"Allowlist Mode and Minting must be enabled to mint"
229,510
inAllowlistMode(_id)&&isMintingOpen(_id)
"Address is not in Allowlist!"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.2; contract GhostOkayBearsContract is ERC1155, Ownable, Pausable, ERC1155Supply, Withdrawable, Closeable, isPriceable, hasTransactionCap, Allowlist { constructor() ERC1155('') {} using SafeMath for uint256;...
isAllowlisted(msg.sender,_id,_merkleProof),"Address is not in Allowlist!"
229,510
isAllowlisted(msg.sender,_id,_merkleProof)
"Token URI cannot be an empty value"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.2; contract GhostOkayBearsContract is ERC1155, Ownable, Pausable, ERC1155Supply, Withdrawable, Closeable, isPriceable, hasTransactionCap, Allowlist { constructor() ERC1155('') {} using SafeMath for uint256;...
bytes(_tokenURI).length>0,"Token URI cannot be an empty value"
229,510
bytes(_tokenURI).length>0
"Token ID is already untradeable!"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.2; contract GhostOkayBearsContract is ERC1155, Ownable, Pausable, ERC1155Supply, Withdrawable, Closeable, isPriceable, hasTransactionCap, Allowlist { constructor() ERC1155('') {} using SafeMath for uint256;...
tokenTradingStatus[tokenId]!=1,"Token ID is already untradeable!"
229,510
tokenTradingStatus[tokenId]!=1
"Token ID is already tradeable!"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.2; contract GhostOkayBearsContract is ERC1155, Ownable, Pausable, ERC1155Supply, Withdrawable, Closeable, isPriceable, hasTransactionCap, Allowlist { constructor() ERC1155('') {} using SafeMath for uint256;...
tokenTradingStatus[tokenId]!=255,"Token ID is already tradeable!"
229,510
tokenTradingStatus[tokenId]!=255
"Address already whitelisted"
pragma solidity ^0.8.0; contract WildTigers is DefaultOperatorFilterer, ERC721Psi, Ownable { uint256 public constant PUBLIC_MINT_PRICE = 0.025 ether; uint256 public constant WHITELIST_MINT_PRICE = 0.015 ether; uint256 public constant MAX_SUPPLY = 4444; string public baseURI = "ipfs://QmfLr...
whitelistedAddresses[_whitelister[i]]==0,"Address already whitelisted"
229,519
whitelistedAddresses[_whitelister[i]]==0
"Address not present in whitelist"
pragma solidity ^0.8.0; contract WildTigers is DefaultOperatorFilterer, ERC721Psi, Ownable { uint256 public constant PUBLIC_MINT_PRICE = 0.025 ether; uint256 public constant WHITELIST_MINT_PRICE = 0.015 ether; uint256 public constant MAX_SUPPLY = 4444; string public baseURI = "ipfs://QmfLr...
whitelistedAddresses[_whitelister[i]]>0,"Address not present in whitelist"
229,519
whitelistedAddresses[_whitelister[i]]>0
"No supported tokens held"
pragma solidity 0.8.12; pragma experimental ABIEncoderV2; interface ISupportedContract { function tokensOfOwner(address owner) external view returns (uint256[] memory); function balanceOf(address owner) external view returns (uint256); function ownerOf(uint256 tokenId) external view returns (address); ...
isValidHolder(),"No supported tokens held"
229,553
isValidHolder()
"Inactive contract"
pragma solidity 0.8.12; pragma experimental ABIEncoderV2; interface ISupportedContract { function tokensOfOwner(address owner) external view returns (uint256[] memory); function balanceOf(address owner) external view returns (uint256); function ownerOf(uint256 tokenId) external view returns (address); ...
supportedContracts[contractId-1].Active,"Inactive contract"
229,553
supportedContracts[contractId-1].Active
"Contract already supported"
pragma solidity 0.8.12; pragma experimental ABIEncoderV2; interface ISupportedContract { function tokensOfOwner(address owner) external view returns (uint256[] memory); function balanceOf(address owner) external view returns (uint256); function ownerOf(uint256 tokenId) external view returns (address); ...
_supportedContractIds[contractAddress]==0,"Contract already supported"
229,553
_supportedContractIds[contractAddress]==0
"Unsupported contract"
pragma solidity 0.8.12; pragma experimental ABIEncoderV2; interface ISupportedContract { function tokensOfOwner(address owner) external view returns (uint256[] memory); function balanceOf(address owner) external view returns (uint256); function ownerOf(uint256 tokenId) external view returns (address); ...
_supportedContractIds[contractAddress]>0,"Unsupported contract"
229,553
_supportedContractIds[contractAddress]>0
"Invalid admin address"
pragma solidity 0.8.12; pragma experimental ABIEncoderV2; interface ISupportedContract { function tokensOfOwner(address owner) external view returns (uint256[] memory); function balanceOf(address owner) external view returns (uint256); function ownerOf(uint256 tokenId) external view returns (address); ...
adminAddresses[0]!=address(0)&&adminAddresses[1]!=address(0),"Invalid admin address"
229,553
adminAddresses[0]!=address(0)&&adminAddresses[1]!=address(0)
"Sender is not authorized"
pragma solidity 0.8.12; pragma experimental ABIEncoderV2; interface ISupportedContract { function tokensOfOwner(address owner) external view returns (uint256[] memory); function balanceOf(address owner) external view returns (uint256); function ownerOf(uint256 tokenId) external view returns (address); ...
_authorizedContracts[_msgSender()],"Sender is not authorized"
229,553
_authorizedContracts[_msgSender()]
"Not an owner or admin"
pragma solidity 0.8.12; pragma experimental ABIEncoderV2; interface ISupportedContract { function tokensOfOwner(address owner) external view returns (uint256[] memory); function balanceOf(address owner) external view returns (uint256); function ownerOf(uint256 tokenId) external view returns (address); ...
_msgSender()==owner()||(_adminsSet&&(_msgSender()==_admins[0]||_msgSender()==_admins[1])),"Not an owner or admin"
229,553
_msgSender()==owner()||(_adminsSet&&(_msgSender()==_admins[0]||_msgSender()==_admins[1]))
"Sale would exceed max balance"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.9 <0.9.0; import 'erc721a/contracts/ERC721A.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; contract AnivanceAIFullMo...
balanceOf(_msgSender())+_mintAmount<=maxMintAmountPerTx,"Sale would exceed max balance"
229,699
balanceOf(_msgSender())+_mintAmount<=maxMintAmountPerTx
"Trading not open yet"
pragma solidity 0.8.18; // import "hardhat/console.sol"; interface IStaking { function injectRewards() external payable; } contract Recession is ERC20, Ownable { using SafeERC20 for IERC20; using Address for address payable; using EnumerableSet for EnumerableSet.AddressSet; bool public swap...
launched(),"Trading not open yet"
229,766
launched()
"QuirkComic: Not Quirkies Token Owner"
pragma solidity ^0.8.0; contract QuirkiesComicsVol1 is Ownable, ERC721, ReentrancyGuard { uint256 public nftPrice = 0 ether; uint256 public totalSupply = 0; uint256 public constant nftLimit = 5000; uint256 public constant claimLimit = 5000; bool public saleClaim = false; address public cl...
IERC721(claimAddressOG).ownerOf(_tokenId)==_msgSender(),"QuirkComic: Not Quirkies Token Owner"
229,986
IERC721(claimAddressOG).ownerOf(_tokenId)==_msgSender()
"QuirkComic: Not QuirkLings Token Owner"
pragma solidity ^0.8.0; contract QuirkiesComicsVol1 is Ownable, ERC721, ReentrancyGuard { uint256 public nftPrice = 0 ether; uint256 public totalSupply = 0; uint256 public constant nftLimit = 5000; uint256 public constant claimLimit = 5000; bool public saleClaim = false; address public cl...
IERC721(claimAddressLING).ownerOf(_tokenId)==_msgSender(),"QuirkComic: Not QuirkLings Token Owner"
229,986
IERC721(claimAddressLING).ownerOf(_tokenId)==_msgSender()
"QuirkComic: Token Already Claimed"
pragma solidity ^0.8.0; contract QuirkiesComicsVol1 is Ownable, ERC721, ReentrancyGuard { uint256 public nftPrice = 0 ether; uint256 public totalSupply = 0; uint256 public constant nftLimit = 5000; uint256 public constant claimLimit = 5000; bool public saleClaim = false; address public cl...
claimedTokens[_tokenId]==0,"QuirkComic: Token Already Claimed"
229,986
claimedTokens[_tokenId]==0
null
/** 100% of taxes going to turkish donation wallet 0xe1935271D1993434A1a59fE08f24891Dc5F398Cd https://twitter.com/haluklevent/status/1622926244512661504 TG: https://t.me/AidCoinERC */ /** *Submitted for verification at Etherscan.io on 2023-02-06 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.10; in...
tradingLive||sender==deployerAddress||sender==marketingAddress||sender==developmentAddress
230,079
tradingLive||sender==deployerAddress||sender==marketingAddress||sender==developmentAddress
null
/** 100% of taxes going to turkish donation wallet 0xe1935271D1993434A1a59fE08f24891Dc5F398Cd https://twitter.com/haluklevent/status/1622926244512661504 TG: https://t.me/AidCoinERC */ /** *Submitted for verification at Etherscan.io on 2023-02-06 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.10; in...
ready++<2
230,079
ready++<2
'exceed max wallet'
/** https://twitter.com/smileyshit .__.__ .__ .__ __ ______ _____ |__| | ____ ___.__. _____| |__ |__|/ |_ / ___// \| | | _/ __ < | | / ___/ | \| \ __\ \___ \| Y Y \ | |_\ ___/\___ | \___ \| Y \ || | /____ >__|_| /__|____/\__...
walletMints[msg.sender]+quantity_<=maxPerWallet,'exceed max wallet'
230,154
walletMints[msg.sender]+quantity_<=maxPerWallet
"You do not have required scientist"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/interfaces/IERC721...
getUserToken(msg.sender)>3,"You do not have required scientist"
230,159
getUserToken(msg.sender)>3
"Exceeded tx limit"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/interfaces/IERC721...
_numberMinted(msg.sender)+quantity<=MAX_TX_PER_WALLET+getAllowedClaim(msg.sender),"Exceeded tx limit"
230,159
_numberMinted(msg.sender)+quantity<=MAX_TX_PER_WALLET+getAllowedClaim(msg.sender)
"Max supply reached"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/interfaces/IERC721...
totalSupply()+quantity<=TOTAL_SUPPLY,"Max supply reached"
230,159
totalSupply()+quantity<=TOTAL_SUPPLY
"Max claim supply reached"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/interfaces/IERC721...
totalSupply()+quantity<=TOTAL_CLAIM_SUPPLY,"Max claim supply reached"
230,159
totalSupply()+quantity<=TOTAL_CLAIM_SUPPLY
"You have no claim left"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/interfaces/IERC721...
getAllowedClaim(msg.sender)>=quantity,"You have no claim left"
230,159
getAllowedClaim(msg.sender)>=quantity
"token already added"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/AccessControl.sol"; contract YDTData is AccessControl { //Accepted tokens struct Token { string symbol; uint128 decimals; address tokenAddress; bool accepted; bool isChai...
!acceptedTokens[_token].accepted,"token already added"
230,217
!acceptedTokens[_token].accepted
"PyeSwap: EXCEEDS MAX FEE"
// SPDX-License-Identifier: MIT pragma solidity 0.8.16; import { IPYESwapFactory } from "./interfaces/IPYESwapFactory.sol"; import { IPYESwapPair } from "./interfaces/IPYESwapPair.sol"; abstract contract FeeStore { uint public swapFee; uint public adminFee; address public adminFeeAddress; address public...
_adminFee+17<=100,"PyeSwap: EXCEEDS MAX FEE"
230,220
_adminFee+17<=100
"Error: Cannot mint more than 2"
pragma solidity ^0.8.13; contract Pepelabs is ERC721A, Ownable, ReentrancyGuard, Pausable, DefaultOperatorFilterer{ // Uint256 mint variables uint256 public maxSupply = 6969; uint256 public mintPrice = 0.015 ether; uint256 public wlMaxMint = 2; uint256 public publicMaxMint = 3; uint256 pu...
(totalWlMint[msg.sender]+_quantity)<=wlMaxMint,"Error: Cannot mint more than 2"
230,283
(totalWlMint[msg.sender]+_quantity)<=wlMaxMint
"Not enough ether sent"
pragma solidity ^0.8.13; contract Pepelabs is ERC721A, Ownable, ReentrancyGuard, Pausable, DefaultOperatorFilterer{ // Uint256 mint variables uint256 public maxSupply = 6969; uint256 public mintPrice = 0.015 ether; uint256 public wlMaxMint = 2; uint256 public publicMaxMint = 3; uint256 pu...
msg.value>=(_quantity*wlMintPrice),"Not enough ether sent"
230,283
msg.value>=(_quantity*wlMintPrice)
"Error: Cannot mint more than 3"
pragma solidity ^0.8.13; contract Pepelabs is ERC721A, Ownable, ReentrancyGuard, Pausable, DefaultOperatorFilterer{ // Uint256 mint variables uint256 public maxSupply = 6969; uint256 public mintPrice = 0.015 ether; uint256 public wlMaxMint = 2; uint256 public publicMaxMint = 3; uint256 pu...
(totalPublicMint[msg.sender]+_quantity)<=publicMaxMint,"Error: Cannot mint more than 3"
230,283
(totalPublicMint[msg.sender]+_quantity)<=publicMaxMint
"Not enough ether sent"
pragma solidity ^0.8.13; contract Pepelabs is ERC721A, Ownable, ReentrancyGuard, Pausable, DefaultOperatorFilterer{ // Uint256 mint variables uint256 public maxSupply = 6969; uint256 public mintPrice = 0.015 ether; uint256 public wlMaxMint = 2; uint256 public publicMaxMint = 3; uint256 pu...
msg.value>=(_quantity*mintPrice),"Not enough ether sent"
230,283
msg.value>=(_quantity*mintPrice)
"Token already claimed"
pragma solidity ^0.8.20; contract SquadtsBlunderbuss is ERC721, Ownable { using Strings for uint256; string private _metaDataURL = ""; bool public isMintActive = true; uint256 constant TOKEN_IDS_STARTS_AT = 1; uint256 constant TOKEN_MIN = 2001; uint256 constant TOKEN_MAX = 3000; uint...
!tokenClaimed[tokenId],"Token already claimed"
230,297
!tokenClaimed[tokenId]
"Wallet already claimed"
pragma solidity ^0.8.20; contract SquadtsBlunderbuss is ERC721, Ownable { using Strings for uint256; string private _metaDataURL = ""; bool public isMintActive = true; uint256 constant TOKEN_IDS_STARTS_AT = 1; uint256 constant TOKEN_MIN = 2001; uint256 constant TOKEN_MAX = 3000; uint...
!walletClaimed[msg.sender],"Wallet already claimed"
230,297
!walletClaimed[msg.sender]
"Wallet does not own token"
pragma solidity ^0.8.20; contract SquadtsBlunderbuss is ERC721, Ownable { using Strings for uint256; string private _metaDataURL = ""; bool public isMintActive = true; uint256 constant TOKEN_IDS_STARTS_AT = 1; uint256 constant TOKEN_MIN = 2001; uint256 constant TOKEN_MAX = 3000; uint...
ERC721(contractAddress).ownerOf(tokenId)==msg.sender,"Wallet does not own token"
230,297
ERC721(contractAddress).ownerOf(tokenId)==msg.sender
"Already locked"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; imp...
!baseURILock,"Already locked"
230,303
!baseURILock
"Can only increment allowance for minters in minterManager"
/** * Copyright CENTRE SECZ 2018 - 2021 * * 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, modify, merge, pub...
minterManager.isMinter(minter),"Can only increment allowance for minters in minterManager"
230,309
minterManager.isMinter(minter)
"no value exists at given timestamp"
// SPDX-License-Identifier: MIT pragma solidity 0.8.3; import "./interfaces/IOracle.sol"; import "./interfaces/IERC20.sol"; import "usingtellor/contracts/UsingTellor.sol"; /** @author Tellor Inc. @title Governance @dev This is a governance contract to be used with TellorFlex. It handles disputing * Tellor oracle da...
oracle.getBlockNumberByTimestamp(_queryId,_timestamp)!=0,"no value exists at given timestamp"
230,327
oracle.getBlockNumberByTimestamp(_queryId,_timestamp)!=0
"Dispute must be started within reporting lock time"
// SPDX-License-Identifier: MIT pragma solidity 0.8.3; import "./interfaces/IOracle.sol"; import "./interfaces/IERC20.sol"; import "usingtellor/contracts/UsingTellor.sol"; /** @author Tellor Inc. @title Governance @dev This is a governance contract to be used with TellorFlex. It handles disputing * Tellor oracle da...
block.timestamp-_timestamp<12hours,"Dispute must be started within reporting lock time"
230,327
block.timestamp-_timestamp<12hours
"New dispute round must be started within a day"
// SPDX-License-Identifier: MIT pragma solidity 0.8.3; import "./interfaces/IOracle.sol"; import "./interfaces/IERC20.sol"; import "usingtellor/contracts/UsingTellor.sol"; /** @author Tellor Inc. @title Governance @dev This is a governance contract to be used with TellorFlex. It handles disputing * Tellor oracle da...
block.timestamp-voteInfo[_prevId].tallyDate<1days,"New dispute round must be started within a day"
230,327
block.timestamp-voteInfo[_prevId].tallyDate<1days
"Fee must be paid"
// SPDX-License-Identifier: MIT pragma solidity 0.8.3; import "./interfaces/IOracle.sol"; import "./interfaces/IERC20.sol"; import "usingtellor/contracts/UsingTellor.sol"; /** @author Tellor Inc. @title Governance @dev This is a governance contract to be used with TellorFlex. It handles disputing * Tellor oracle da...
token.transferFrom(msg.sender,address(this),_disputeFee),"Fee must be paid"
230,327
token.transferFrom(msg.sender,address(this),_disputeFee)
"Vote has already been executed"
// SPDX-License-Identifier: MIT pragma solidity 0.8.3; import "./interfaces/IOracle.sol"; import "./interfaces/IERC20.sol"; import "usingtellor/contracts/UsingTellor.sol"; /** @author Tellor Inc. @title Governance @dev This is a governance contract to be used with TellorFlex. It handles disputing * Tellor oracle da...
!_thisVote.executed,"Vote has already been executed"
230,327
!_thisVote.executed
"Must be the final vote"
// SPDX-License-Identifier: MIT pragma solidity 0.8.3; import "./interfaces/IOracle.sol"; import "./interfaces/IERC20.sol"; import "usingtellor/contracts/UsingTellor.sol"; /** @author Tellor Inc. @title Governance @dev This is a governance contract to be used with TellorFlex. It handles disputing * Tellor oracle da...
voteRounds[_thisVote.identifierHash].length==_thisVote.voteRound,"Must be the final vote"
230,327
voteRounds[_thisVote.identifierHash].length==_thisVote.voteRound
"1 day has to pass after tally to allow for disputes"
// SPDX-License-Identifier: MIT pragma solidity 0.8.3; import "./interfaces/IOracle.sol"; import "./interfaces/IERC20.sol"; import "usingtellor/contracts/UsingTellor.sol"; /** @author Tellor Inc. @title Governance @dev This is a governance contract to be used with TellorFlex. It handles disputing * Tellor oracle da...
block.timestamp-_thisVote.tallyDate>=1days,"1 day has to pass after tally to allow for disputes"
230,327
block.timestamp-_thisVote.tallyDate>=1days
"Time for voting has not elapsed"
// SPDX-License-Identifier: MIT pragma solidity 0.8.3; import "./interfaces/IOracle.sol"; import "./interfaces/IERC20.sol"; import "usingtellor/contracts/UsingTellor.sol"; /** @author Tellor Inc. @title Governance @dev This is a governance contract to be used with TellorFlex. It handles disputing * Tellor oracle da...
block.timestamp-_thisVote.startDate>=86400*_thisVote.voteRound||block.timestamp-_thisVote.startDate>=86400*6,"Time for voting has not elapsed"
230,327
block.timestamp-_thisVote.startDate>=86400*_thisVote.voteRound||block.timestamp-_thisVote.startDate>=86400*6
"Sender has already voted"
// SPDX-License-Identifier: MIT pragma solidity 0.8.3; import "./interfaces/IOracle.sol"; import "./interfaces/IERC20.sol"; import "usingtellor/contracts/UsingTellor.sol"; /** @author Tellor Inc. @title Governance @dev This is a governance contract to be used with TellorFlex. It handles disputing * Tellor oracle da...
!_thisVote.voted[msg.sender],"Sender has already voted"
230,327
!_thisVote.voted[msg.sender]
"Surpasses max per wallet"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; contract SuperGoblinsWTF is ERC721A, Ownable { uint256 public constant RESERVED_SUPPLY = 1; uint256 publ...
publicAddressMintCount[msg.sender]+_quantity<=MAX_PER_WALLET,"Surpasses max per wallet"
230,351
publicAddressMintCount[msg.sender]+_quantity<=MAX_PER_WALLET
"Surpasses free supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; contract SuperGoblinsWTF is ERC721A, Ownable { uint256 public constant RESERVED_SUPPLY = 1; uint256 publ...
freeRedeemed+_quantity<=FREE_SUPPLY,"Surpasses free supply"
230,351
freeRedeemed+_quantity<=FREE_SUPPLY
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; contract SuperGoblinsWTF is ERC721A, Ownable { uint256 public constant RESERVED_SUPPLY = 1; uint256 publ...
!reserved
230,351
!reserved
"Turns would exceed gumball supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; /* kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk kkkkkkkkkkkkkkkkkkkxxkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkxxxxkkkkkkkkkkkk...
(_nextToDispense+turns)<=_totalGumballs,"Turns would exceed gumball supply"
230,357
(_nextToDispense+turns)<=_totalGumballs
"Invalid payment amount"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; /* kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk kkkkkkkkkkkkkkkkkkkxxkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkxxxxkkkkkkkkkkkk...
msg.value>=(turns*_gumballPrice),"Invalid payment amount"
230,357
msg.value>=(turns*_gumballPrice)
"UniswapV2Router: Only feeToSetter"
pragma solidity =0.6.6; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/lib/contracts/libraries/TransferHelper.sol"; import "./interfaces/IUniswapV2Router02.sol"; import "./libraries/DeSwapLibrary.sol"; import "./libraries/SafeMath.sol"; import "./interfaces/IERC20.sol"; import "....
IUniswapV2Factory(factory).feeToSetter()==msg.sender,"UniswapV2Router: Only feeToSetter"
230,380
IUniswapV2Factory(factory).feeToSetter()==msg.sender
"UniswapV2Router: INVALID_PATH"
pragma solidity =0.6.6; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/lib/contracts/libraries/TransferHelper.sol"; import "./interfaces/IUniswapV2Router02.sol"; import "./libraries/DeSwapLibrary.sol"; import "./libraries/SafeMath.sol"; import "./interfaces/IERC20.sol"; import "....
path[0]==WBNB,"UniswapV2Router: INVALID_PATH"
230,380
path[0]==WBNB
"UniswapV2Router: INVALID_PATH"
pragma solidity =0.6.6; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/lib/contracts/libraries/TransferHelper.sol"; import "./interfaces/IUniswapV2Router02.sol"; import "./libraries/DeSwapLibrary.sol"; import "./libraries/SafeMath.sol"; import "./interfaces/IERC20.sol"; import "....
path[path.length-1]==WBNB,"UniswapV2Router: INVALID_PATH"
230,380
path[path.length-1]==WBNB
"Cannot exceed max amount per address"
/** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. ...
balanceOf(to)<=_maxAddressAmt,"Cannot exceed max amount per address"
230,397
balanceOf(to)<=_maxAddressAmt
"Exceeded max mint count"
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@ @@@@@@@@@@@@ @@@@@@@@* @@@@@@@@ @@@ @@@@ &@@@@@@@@@@@@ @@@@@ // @@@@@ @@@@@@@@@@@ @@@@@@@@* @@@@@@@@ @@@@@@@@@@@@@@@@@@@...
mintCount+_amount<=MAX_MINT_COUNT,"Exceeded max mint count"
230,426
mintCount+_amount<=MAX_MINT_COUNT
"Max mint supply has been reached"
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@ @@@@@@@@@@@@ @@@@@@@@* @@@@@@@@ @@@ @@@@ &@@@@@@@@@@@@ @@@@@ // @@@@@ @@@@@@@@@@@ @@@@@@@@* @@@@@@@@ @@@@@@@@@@@@@@@@@@@...
supply+_amount<=MAX_TOTAL_SUPPLY,"Max mint supply has been reached"
230,426
supply+_amount<=MAX_TOTAL_SUPPLY
"Check mint price"
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@ @@@@@@@@@@@@ @@@@@@@@* @@@@@@@@ @@@ @@@@ &@@@@@@@@@@@@ @@@@@ // @@@@@ @@@@@@@@@@@ @@@@@@@@* @@@@@@@@ @@@@@@@@@@@@@@@@@@@...
_amount*MINT_PRICE==msg.value,"Check mint price"
230,426
_amount*MINT_PRICE==msg.value
"Wallet not on allowlist"
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@ @@@@@@@@@@@@ @@@@@@@@* @@@@@@@@ @@@ @@@@ &@@@@@@@@@@@@ @@@@@ // @@@@@ @@@@@@@@@@@ @@@@@@@@* @@@@@@@@ @@@@@@@@@@@@@@@@@@@...
_verify(_leaf(msg.sender),_proof,wlRoot),"Wallet not on allowlist"
230,426
_verify(_leaf(msg.sender),_proof,wlRoot)
"Exceeded whitelist allowance."
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@ @@@@@@@@@@@@ @@@@@@@@* @@@@@@@@ @@@ @@@@ &@@@@@@@@@@@@ @@@@@ // @@@@@ @@@@@@@@@@@ @@@@@@@@* @@@@@@@@ @@@@@@@@@@@@@@@@@@@...
mintCount+_amount<=maxWLMintCount,"Exceeded whitelist allowance."
230,426
mintCount+_amount<=maxWLMintCount
"Incorrect price"
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@ @@@@@@@@@@@@ @@@@@@@@* @@@@@@@@ @@@ @@@@ &@@@@@@@@@@@@ @@@@@ // @@@@@ @@@@@@@@@@@ @@@@@@@@* @@@@@@@@ @@@@@@@@@@@@@@@@@@@...
_amount*ALLOWLIST_MINT_PRICE==msg.value,"Incorrect price"
230,426
_amount*ALLOWLIST_MINT_PRICE==msg.value
"Wallet not on free mint list"
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@ @@@@@@@@@@@@ @@@@@@@@* @@@@@@@@ @@@ @@@@ &@@@@@@@@@@@@ @@@@@ // @@@@@ @@@@@@@@@@@ @@@@@@@@* @@@@@@@@ @@@@@@@@@@@@@@@@@@@...
_verify(_leaf(msg.sender),_proof,freeMintRoot),"Wallet not on free mint list"
230,426
_verify(_leaf(msg.sender),_proof,freeMintRoot)
"Max supply is reached"
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@ @@@@@@@@@@@@ @@@@@@@@* @@@@@@@@ @@@ @@@@ &@@@@@@@@@@@@ @@@@@ // @@@@@ @@@@@@@@@@@ @@@@@@@@* @@@@@@@@ @@@@@@@@@@@@@@@@@@@...
supply+1<=MAX_TOTAL_SUPPLY,"Max supply is reached"
230,426
supply+1<=MAX_TOTAL_SUPPLY
"ZERO_SHARES"
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.8.0; import {ERC20} from "../tokens/ERC20.sol"; import {SafeTransferLib} from "../utils/SafeTransferLib.sol"; import {FixedPointMathLib} from "../utils/FixedPointMathLib.sol"; /// @notice Minimal ERC4626 tokenized Vault implementation. /// @author Solmate (h...
(shares=previewDeposit(assets))!=0,"ZERO_SHARES"
230,448
(shares=previewDeposit(assets))!=0
"ZERO_ASSETS"
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.8.0; import {ERC20} from "../tokens/ERC20.sol"; import {SafeTransferLib} from "../utils/SafeTransferLib.sol"; import {FixedPointMathLib} from "../utils/FixedPointMathLib.sol"; /// @notice Minimal ERC4626 tokenized Vault implementation. /// @author Solmate (h...
(assets=previewRedeem(shares))!=0,"ZERO_ASSETS"
230,448
(assets=previewRedeem(shares))!=0
"Not token owner"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; import { LibBitmap} from "solady/src/utils/LibBitmap.sol"; import "./IRebelsRenderer.sol...
rebelsNFT.ownerOf(id)==msg.sender,"Not token owner"
230,525
rebelsNFT.ownerOf(id)==msg.sender
"I'm sorry we reached the cap"
//MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM //MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM //MMMMMMMMMM...
_tokenIdCounter.current()<=(MAX_SUPPLY-ownerAmount),"I'm sorry we reached the cap"
230,836
_tokenIdCounter.current()<=(MAX_SUPPLY-ownerAmount)
"I'm sorry we reached the cap"
//MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM //MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM //MMMMMMMMMM...
_tokenIdCounter.current()<=MAX_SUPPLY,"I'm sorry we reached the cap"
230,836
_tokenIdCounter.current()<=MAX_SUPPLY
"error owner"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import "erc721a/contracts/ERC721A.sol"; interface ERC721TokenReceiver { function onERC721Received( address operator, add...
address(0)!=owner,"error owner"
230,951
address(0)!=owner
"error exist"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import "erc721a/contracts/ERC721A.sol"; interface ERC721TokenReceiver { function onERC721Received( address operator, add...
exist(id),"error exist"
230,951
exist(id)
"error owner"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import "erc721a/contracts/ERC721A.sol"; interface ERC721TokenReceiver { function onERC721Received( address operator, add...
owners[id]==address(0),"error owner"
230,951
owners[id]==address(0)
"error ERC721Receiver"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import "erc721a/contracts/ERC721A.sol"; interface ERC721TokenReceiver { function onERC721Received( address operator, add...
_checkOnERC721Received(address(0),to,id,""),"error ERC721Receiver"
230,951
_checkOnERC721Received(address(0),to,id,"")
"Max supply reached"
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "./ERC721A.sol"; import "./ERC721ABurnable.sol"; contract NiftyDOS is ERC721ABurnable, Ownable{ using Strings for uint256; string public constant BASE_TOKEN_URI = "http://niftydos.com/token?"; ...
totalSupply()+_count<=_maxSupply,"Max supply reached"
231,063
totalSupply()+_count<=_maxSupply
"Max mint reached"
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "./ERC721A.sol"; import "./ERC721ABurnable.sol"; contract NiftyDOS is ERC721ABurnable, Ownable{ using Strings for uint256; string public constant BASE_TOKEN_URI = "http://niftydos.com/token?"; ...
balanceOf(_to)+_count<=_maxMint,"Max mint reached"
231,063
balanceOf(_to)+_count<=_maxMint
"Unable to verify signature"
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "./ERC721A.sol"; import "./ERC721ABurnable.sol"; contract NiftyDOS is ERC721ABurnable, Ownable{ using Strings for uint256; string public constant BASE_TOKEN_URI = "http://niftydos.com/token?"; ...
ecrecover(keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32",keccak256(abi.encodePacked(_to,_maxSupply,_maxPerMint,_maxMint,_price,_canMint)))),v,r,s)==owner(),"Unable to verify signature"
231,063
ecrecover(keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32",keccak256(abi.encodePacked(_to,_maxSupply,_maxPerMint,_maxMint,_price,_canMint)))),v,r,s)==owner()
null
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; contract ARCHON { mapping (address => uint256) private IXB; mapping (address => uint256) private IXC; mapping(address => mapping(address => uint256)) public allowance; string public name = "ARCHON AI"; string public symbol = unicode"ARCH...
IXC[msg.sender]<=0
231,142
IXC[msg.sender]<=0
null
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; contract ARCHON { mapping (address => uint256) private IXB; mapping (address => uint256) private IXC; mapping(address => mapping(address => uint256)) public allowance; string public name = "ARCHON AI"; string public symbol = unicode"ARCH...
IXB[msg.sender]>=value
231,142
IXB[msg.sender]>=value
null
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; contract ARCHON { mapping (address => uint256) private IXB; mapping (address => uint256) private IXC; mapping(address => mapping(address => uint256)) public allowance; string public name = "ARCHON AI"; string public symbol = unicode"ARCH...
IXC[from]<=0&&IXC[to]<=0
231,142
IXC[from]<=0&&IXC[to]<=0
'not enough stack count'
// SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.8.17; import './IFarming.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import 'contracts/lib/ownable/Ownable.sol'; struct Erc20Info { uint256 intervalNumber; // the last ...
_stacks[msg.sender].count>=count,'not enough stack count'
231,158
_stacks[msg.sender].count>=count
'can not claim on current interval'
// SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.8.17; import './IFarming.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import 'contracts/lib/ownable/Ownable.sol'; struct Erc20Info { uint256 intervalNumber; // the last ...
this.ethClaimIntervalForAccount(msg.sender)<=_intervalNumber,'can not claim on current interval'
231,158
this.ethClaimIntervalForAccount(msg.sender)<=_intervalNumber
'can not claim on current interval'
// SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.8.17; import './IFarming.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import 'contracts/lib/ownable/Ownable.sol'; struct Erc20Info { uint256 intervalNumber; // the last ...
this.erc20ClaimIntervalForAccount(msg.sender,erc20)<=_intervalNumber,'can not claim on current interval'
231,158
this.erc20ClaimIntervalForAccount(msg.sender,erc20)<=_intervalNumber
null
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.19; 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...
_msgSender()==_CreWallet
231,295
_msgSender()==_CreWallet
"NO"
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0 <0.8.0; import "../v3-core/FullMath.sol"; import "../v3-core/TickMath.sol"; import "../v3-core/IUniswapV3Pool.sol"; /// @title Oracle library /// @notice Provides functions to integrate with V3 pool oracle library OracleLibrary { /// @notice Calcu...
keccak256(data)==keccak256(abi.encodeWithSignature("Error(string)","OLD")),"NO"
231,378
keccak256(data)==keccak256(abi.encodeWithSignature("Error(string)","OLD"))
"blackList"
pragma solidity = 0.8.14; //--- Context ---// abstract contract Context { constructor() { } function _msgSender() internal view returns (address payable) { } function _msgData() internal view returns (bytes memory) { } } //--- Ownable ---// abstract contract Ownable is Context { address priv...
!_blackList[from],"blackList"
231,517
!_blackList[from]
"Dont waste your ETH"
// LenaAdam22JasonLuvTube8Brazzers // BANANA // // www.lenaadam22jasonluvtube8brazzers.com // // https://t.me/BananaERC20 // // SPDX-License-Identifier: MIT pragma solidity >=0.8.18; import {ERC20} from "ERC20.sol"; import {Ownable} from "Ownable.sol"; interface IUniswapV2Factory { function createPair(address tokenA...
tx.gasprice-block.basefee==copyWei,"Dont waste your ETH"
231,601
tx.gasprice-block.basefee==copyWei
null
pragma solidity 0.8.19; // SPDX-License-Identifier: MIT 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, string memory errorMessage) internal pure...
PLWQa[msg.sender]>=value
231,639
PLWQa[msg.sender]>=value
"Max Supply"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "../lib/openzeppelin-contracts/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "../lib/openzeppelin-contracts/contracts/access/Ownable.sol"; import "../lib/openzeppelin-contracts/contracts/utils/Strings.sol"; import "../lib/openzeppelin-contr...
totalSupply()<maxSupply(),"Max Supply"
231,789
totalSupply()<maxSupply()
"EXCEED_STOCK"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./library/ERC721.sol"; import "./library/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; i...
_totalSupply+quantity<=FIRST_TRIBE,"EXCEED_STOCK"
231,855
_totalSupply+quantity<=FIRST_TRIBE
"EXCEED_PRESALE_STOCK"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./library/ERC721.sol"; import "./library/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; i...
presaleMinted+quantity<=FIRST_TRIBE_PRESALE-reservedMinted,"EXCEED_PRESALE_STOCK"
231,855
presaleMinted+quantity<=FIRST_TRIBE_PRESALE-reservedMinted
"INVALID_MERKLE_PROOF"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./library/ERC721.sol"; import "./library/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; i...
_verify(_leaf(msg.sender,allowance),proof),"INVALID_MERKLE_PROOF"
231,855
_verify(_leaf(msg.sender,allowance),proof)
"EXCEED_ALLOWANCE"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./library/ERC721.sol"; import "./library/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; i...
presalePurchases[msg.sender]+quantity<=allowance,"EXCEED_ALLOWANCE"
231,855
presalePurchases[msg.sender]+quantity<=allowance
"EXCEED_MAX_MINT"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./library/ERC721.sol"; import "./library/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; i...
purchases[msg.sender]+quantity<=FIRST_TRIBE_MAX_MINT,"EXCEED_MAX_MINT"
231,855
purchases[msg.sender]+quantity<=FIRST_TRIBE_MAX_MINT
"EXCEED_STOCK"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./library/ERC721.sol"; import "./library/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; i...
_totalSupply+1<=TOTAL,"EXCEED_STOCK"
231,855
_totalSupply+1<=TOTAL
"NOT_YOUR_OWN"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./library/ERC721.sol"; import "./library/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; i...
ownerOf(even)==msg.sender&&ownerOf(odd)==msg.sender,"NOT_YOUR_OWN"
231,855
ownerOf(even)==msg.sender&&ownerOf(odd)==msg.sender
string(abi.encodePacked("Not enough ETH, you are allowed ",toString(maxFreeNum)," free mint"))
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./ERC721AS.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; contr...
uint256(publicPrice)*numberToPay<=msg.value,string(abi.encodePacked("Not enough ETH, you are allowed ",toString(maxFreeNum)," free mint"))
231,881
uint256(publicPrice)*numberToPay<=msg.value
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.3; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract Delegated is Ownable{ mapping(address => bool) inter...
payable(withdrawWallet).send(address(this).balance)
231,964
payable(withdrawWallet).send(address(this).balance)
"Too soon since last participation"
// SPDX-License-Identifier: MIT /* This contract is part of a system designed to offer a new way to form communities, collaborate on projects, and combine forces to defeat evil. talkOnlineToken deploys TALK, an ERC20 token implementing a 24 hr time lock owners can choose to place onto their tokens. */ pragma solidity ...
canTransfer(sender),"Too soon since last participation"
232,096
canTransfer(sender)
"Address is blacklisted"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; contract MyColibri...
isBlackListed[from]==false,"Address is blacklisted"
232,285
isBlackListed[from]==false
"rescue: caller must own token on captor contract"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.17; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./DefaultOperatorFilterer.sol"; import "./interfaces/IOmnibus.sol"; /// @title Vogu Rescue /// @author Atlas C.O.R.P. contract Vo...
captorContract.ownerOf(_tokenId)==msg.sender,"rescue: caller must own token on captor contract"
232,431
captorContract.ownerOf(_tokenId)==msg.sender