comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"All NFTs have been minted"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; contract Coyote is ERC721Enumerable, Ownable { using Strings for uint256...
totalSupply()<MAX_NFTS,"All NFTs have been minted"
333,165
totalSupply()<MAX_NFTS
"Mint exceeds max supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; contract Coyote is ERC721Enumerable, Ownable { using Strings for uint256...
totalSupply()+amount<=MAX_NFTS,"Mint exceeds max supply"
333,165
totalSupply()+amount<=MAX_NFTS
"Mint exceeds max supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; contract Coyote is ERC721Enumerable, Ownable { using Strings for uint256...
totalSupply()+amountOfNfts<=MAX_NFTS,"Mint exceeds max supply"
333,165
totalSupply()+amountOfNfts<=MAX_NFTS
"Purchase exceeds max allowed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; contract Coyote is ERC721Enumerable, Ownable { using Strings for uint256...
_totalClaimed[msg.sender]+amountOfNfts<=PRESALE_MAX_MINT,"Purchase exceeds max allowed"
333,165
_totalClaimed[msg.sender]+amountOfNfts<=PRESALE_MAX_MINT
"ETH amount is incorrect"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; contract Coyote is ERC721Enumerable, Ownable { using Strings for uint256...
PRICE_PRE_SALE*amountOfNfts==msg.value,"ETH amount is incorrect"
333,165
PRICE_PRE_SALE*amountOfNfts==msg.value
"Amount exceeds max NFTs per wallet"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; contract Coyote is ERC721Enumerable, Ownable { using Strings for uint256...
_totalClaimed[msg.sender]+amountOfNfts<=MAX_NFTS_MINT,"Amount exceeds max NFTs per wallet"
333,165
_totalClaimed[msg.sender]+amountOfNfts<=MAX_NFTS_MINT
"Amount of ETH is incorrect"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; contract Coyote is ERC721Enumerable, Ownable { using Strings for uint256...
pricePublicSale*amountOfNfts==msg.value,"Amount of ETH is incorrect"
333,165
pricePublicSale*amountOfNfts==msg.value
"User-not-KYC"
pragma solidity ^0.7.0; contract SaleManager is Ownable, Pausable { function pause() public onlyOwner { } function unPause() public onlyOwner { } } interface IUniswapV2Router02 { function swapExactETHForTokens( uint amountOutMin, address[] calldata path, add...
isKYC(sign),"User-not-KYC"
333,345
isKYC(sign)
"Invalid-amount-USDT"
pragma solidity ^0.7.0; contract SaleManager is Ownable, Pausable { function pause() public onlyOwner { } function unPause() public onlyOwner { } } interface IUniswapV2Router02 { function swapExactETHForTokens( uint amountOutMin, address[] calldata path, add...
isValidAmount(usdtAmount),"Invalid-amount-USDT"
333,345
isValidAmount(usdtAmount)
"Invalid-amount-USDT"
pragma solidity ^0.7.0; contract SaleManager is Ownable, Pausable { function pause() public onlyOwner { } function unPause() public onlyOwner { } } interface IUniswapV2Router02 { function swapExactETHForTokens( uint amountOutMin, address[] calldata path, add...
isValidAmount(amounts[1]),"Invalid-amount-USDT"
333,345
isValidAmount(amounts[1])
"Only-whitelist"
pragma solidity ^0.7.0; contract SaleManager is Ownable, Pausable { function pause() public onlyOwner { } function unPause() public onlyOwner { } } interface IUniswapV2Router02 { function swapExactETHForTokens( uint amountOutMin, address[] calldata path, add...
whiteListSigner[msg.sender],"Only-whitelist"
333,345
whiteListSigner[msg.sender]
"Invalid-amount-USDT"
pragma solidity ^0.7.0; contract SaleManager is Ownable, Pausable { function pause() public onlyOwner { } function unPause() public onlyOwner { } } interface IUniswapV2Router02 { function swapExactETHForTokens( uint amountOutMin, address[] calldata path, add...
isValidAmount(amountUSDT),"Invalid-amount-USDT"
333,345
isValidAmount(amountUSDT)
"Cannot exceed max supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.6.6; import "./Owner.sol"; import "./Dilithium.sol"; import "./libraries/token/ERC20/ERC20.sol"; /// @dev Latinum ERC20 contract contract Latinum is ERC20("Latinum", "LTN"), Owner { Dilithium public dil; // maxSupply is the initial maximum number of Latinum ...
totalSupply()+amt<=maxSupply,"Cannot exceed max supply"
333,446
totalSupply()+amt<=maxSupply
"No tokens to transfer"
// SPDX-License-Identifier: MIT pragma solidity ^0.6.12; import { IERC20 } from "./IERC20.sol"; import { Context } from "./Context.sol"; abstract contract UtilitiesBase is Context { modifier NonZeroAmount(uint256 _amount) { } modifier NonZeroTokenBalance(address _address) { require(<FILL_ME>) ...
IERC20(_address).balanceOf(address(this))>0,"No tokens to transfer"
333,527
IERC20(_address).balanceOf(address(this))>0
"Exceeds maximum Souls supply"
// SPDX-License-Identifier: MIT // Lost Souls Sanctuary's research has lead us to uncover earth shattering truths about how our souls navigate in the after-life. // What we've found is truly shocking, something that various three letter agencies won't like, or worse try to supress/slander if the information was release...
supply+num<=MAX_SOULS-soulReserved,"Exceeds maximum Souls supply"
333,544
supply+num<=MAX_SOULS-soulReserved
"Ether value sent is not correct"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721Enumerable.sol"; import "./Ownable.sol"; import "./SafeMath.sol"; import "./Strings.sol"; contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } contract SoulCafe is ERC721Enumer...
mintPrice.mul(numberOfTokens)<=msg.value,"Ether value sent is not correct"
333,661
mintPrice.mul(numberOfTokens)<=msg.value
null
pragma solidity ^0.4.18; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { } /** * @dev Intege...
!goalAchieved
333,711
!goalAchieved
"Listing already whitelisted"
// solium-disable pragma solidity ^0.4.24; contract AddressRegistry { // ------ // EVENTS // ------ event _Application(address indexed listingAddress, uint deposit, uint appEndDate, string data, address indexed applicant); event _Challenge(address indexed listingAddress, uint indexed challeng...
!isWhitelisted(listingAddress),"Listing already whitelisted"
333,811
!isWhitelisted(listingAddress)
"Application already made for this address"
// solium-disable pragma solidity ^0.4.24; contract AddressRegistry { // ------ // EVENTS // ------ event _Application(address indexed listingAddress, uint deposit, uint appEndDate, string data, address indexed applicant); event _Challenge(address indexed listingAddress, uint indexed challeng...
!appWasMade(listingAddress),"Application already made for this address"
333,811
!appWasMade(listingAddress)
"Token transfer failed"
// solium-disable pragma solidity ^0.4.24; contract AddressRegistry { // ------ // EVENTS // ------ event _Application(address indexed listingAddress, uint deposit, uint appEndDate, string data, address indexed applicant); event _Challenge(address indexed listingAddress, uint indexed challeng...
token.transferFrom(listing.owner,this,_amount),"Token transfer failed"
333,811
token.transferFrom(listing.owner,this,_amount)
"Token transfer failed"
// solium-disable pragma solidity ^0.4.24; contract AddressRegistry { // ------ // EVENTS // ------ event _Application(address indexed listingAddress, uint deposit, uint appEndDate, string data, address indexed applicant); event _Challenge(address indexed listingAddress, uint indexed challeng...
token.transferFrom(msg.sender,this,_amount),"Token transfer failed"
333,811
token.transferFrom(msg.sender,this,_amount)
"Withdrawal prohibitied as it would put Listing unstaked deposit below minDeposit"
// solium-disable pragma solidity ^0.4.24; contract AddressRegistry { // ------ // EVENTS // ------ event _Application(address indexed listingAddress, uint deposit, uint appEndDate, string data, address indexed applicant); event _Challenge(address indexed listingAddress, uint indexed challeng...
listing.unstakedDeposit-_amount>=parameterizer.get("minDeposit"),"Withdrawal prohibitied as it would put Listing unstaked deposit below minDeposit"
333,811
listing.unstakedDeposit-_amount>=parameterizer.get("minDeposit")
"Listing must be whitelisted to be exited"
// solium-disable pragma solidity ^0.4.24; contract AddressRegistry { // ------ // EVENTS // ------ event _Application(address indexed listingAddress, uint deposit, uint appEndDate, string data, address indexed applicant); event _Challenge(address indexed listingAddress, uint indexed challeng...
isWhitelisted(listingAddress),"Listing must be whitelisted to be exited"
333,811
isWhitelisted(listingAddress)
"Listing must be in application phase or already whitelisted to be challenged"
// solium-disable pragma solidity ^0.4.24; contract AddressRegistry { // ------ // EVENTS // ------ event _Application(address indexed listingAddress, uint deposit, uint appEndDate, string data, address indexed applicant); event _Challenge(address indexed listingAddress, uint indexed challeng...
appWasMade(listingAddress)||listing.whitelisted,"Listing must be in application phase or already whitelisted to be challenged"
333,811
appWasMade(listingAddress)||listing.whitelisted
"Token transfer failed"
// solium-disable pragma solidity ^0.4.24; contract AddressRegistry { // ------ // EVENTS // ------ event _Application(address indexed listingAddress, uint deposit, uint appEndDate, string data, address indexed applicant); event _Challenge(address indexed listingAddress, uint indexed challeng...
token.transferFrom(msg.sender,this,minDeposit),"Token transfer failed"
333,811
token.transferFrom(msg.sender,this,minDeposit)
"Reward already claimed"
// solium-disable pragma solidity ^0.4.24; contract AddressRegistry { // ------ // EVENTS // ------ event _Application(address indexed listingAddress, uint deposit, uint appEndDate, string data, address indexed applicant); event _Challenge(address indexed listingAddress, uint indexed challeng...
challenges[_challengeID].tokenClaims[msg.sender]==false,"Reward already claimed"
333,811
challenges[_challengeID].tokenClaims[msg.sender]==false
"Challenge not yet resolved"
// solium-disable pragma solidity ^0.4.24; contract AddressRegistry { // ------ // EVENTS // ------ event _Application(address indexed listingAddress, uint deposit, uint appEndDate, string data, address indexed applicant); event _Challenge(address indexed listingAddress, uint indexed challeng...
challenges[_challengeID].resolved==true,"Challenge not yet resolved"
333,811
challenges[_challengeID].resolved==true
"Challenge does not exist for Listing"
// solium-disable pragma solidity ^0.4.24; contract AddressRegistry { // ------ // EVENTS // ------ event _Application(address indexed listingAddress, uint deposit, uint appEndDate, string data, address indexed applicant); event _Challenge(address indexed listingAddress, uint indexed challeng...
challengeExists(listingAddress),"Challenge does not exist for Listing"
333,811
challengeExists(listingAddress)
"Challenge already resolved"
// solium-disable pragma solidity ^0.4.24; contract AddressRegistry { // ------ // EVENTS // ------ event _Application(address indexed listingAddress, uint deposit, uint appEndDate, string data, address indexed applicant); event _Challenge(address indexed listingAddress, uint indexed challeng...
!challenges[_challengeID].resolved,"Challenge already resolved"
333,811
!challenges[_challengeID].resolved
"Poll for challenge has not ended"
// solium-disable pragma solidity ^0.4.24; contract AddressRegistry { // ------ // EVENTS // ------ event _Application(address indexed listingAddress, uint deposit, uint appEndDate, string data, address indexed applicant); event _Challenge(address indexed listingAddress, uint indexed challeng...
voting.pollEnded(_challengeID),"Poll for challenge has not ended"
333,811
voting.pollEnded(_challengeID)
"Token transfer failure"
// solium-disable pragma solidity ^0.4.24; contract AddressRegistry { // ------ // EVENTS // ------ event _Application(address indexed listingAddress, uint deposit, uint appEndDate, string data, address indexed applicant); event _Challenge(address indexed listingAddress, uint indexed challeng...
token.transfer(challenges[challengeID].challenger,reward),"Token transfer failure"
333,811
token.transfer(challenges[challengeID].challenger,reward)
"Token transfer failure"
// solium-disable pragma solidity ^0.4.24; contract AddressRegistry { // ------ // EVENTS // ------ event _Application(address indexed listingAddress, uint deposit, uint appEndDate, string data, address indexed applicant); event _Challenge(address indexed listingAddress, uint indexed challeng...
token.transfer(owner,unstakedDeposit),"Token transfer failure"
333,811
token.transfer(owner,unstakedDeposit)
"Not eligible for burn"
pragma solidity 0.7.6; contract KIDz is ERC721Burnable, Ownable { using SafeMath for uint256; uint256 constant public MAX_SUPPLY = 3000; uint256 public tier1Price = 0.14 ether; uint256 public tier2Price = 0.13 ether; uint256 public tier3Price = 0.12 ether; uint256 public kidzMinted; ...
claimedStatus[_tokenId[i]]==0,"Not eligible for burn"
333,918
claimedStatus[_tokenId[i]]==0
"Not eligible for claim"
pragma solidity 0.7.6; contract KIDz is ERC721Burnable, Ownable { using SafeMath for uint256; uint256 constant public MAX_SUPPLY = 3000; uint256 public tier1Price = 0.14 ether; uint256 public tier2Price = 0.13 ether; uint256 public tier3Price = 0.12 ether; uint256 public kidzMinted; ...
claimedStatus[_tokenId[i]]==1,"Not eligible for claim"
333,918
claimedStatus[_tokenId[i]]==1
null
pragma solidity 0.4.25; /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 { function totalSupply() public view returns (uint256); function balanceOf(address _who) public view returns (uint256); function allowance(address _owner, address _spender) ...
_tokenAddress.call(bytes4(keccak256("transfer(address,uint256)")),_to,_value)
334,042
_tokenAddress.call(bytes4(keccak256("transfer(address,uint256)")),_to,_value)
null
pragma solidity 0.4.25; /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 { function totalSupply() public view returns (uint256); function balanceOf(address _who) public view returns (uint256); function allowance(address _owner, address _spender) ...
_tokenAddress.call(bytes4(keccak256("transferFrom(address,address,uint256)")),_from,_to,_value)
334,042
_tokenAddress.call(bytes4(keccak256("transferFrom(address,address,uint256)")),_from,_to,_value)
null
pragma solidity 0.4.25; /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 { function totalSupply() public view returns (uint256); function balanceOf(address _who) public view returns (uint256); function allowance(address _owner, address _spender) ...
_tokenAddress.call(bytes4(keccak256("approve(address,uint256)")),_spender,_value)
334,042
_tokenAddress.call(bytes4(keccak256("approve(address,uint256)")),_spender,_value)
null
pragma solidity 0.4.25; /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 { function totalSupply() public view returns (uint256); function balanceOf(address _who) public view returns (uint256); function allowance(address _owner, address _spender) ...
authorized[target]
334,042
authorized[target]
null
pragma solidity 0.4.25; /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 { function totalSupply() public view returns (uint256); function balanceOf(address _who) public view returns (uint256); function allowance(address _owner, address _spender) ...
!authorized[target]
334,042
!authorized[target]
null
pragma solidity 0.4.25; /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 { function totalSupply() public view returns (uint256); function balanceOf(address _who) public view returns (uint256); function allowance(address _owner, address _spender) ...
ERC20SafeTransfer.safeTransferFrom(token,from,to,value)
334,042
ERC20SafeTransfer.safeTransferFrom(token,from,to,value)
"Contract does not exists"
pragma solidity 0.4.24; /** * Utility library of inline functions on addresses */ library Address { /** * Returns whether the target address is a contract * @dev This function will return false if invoked during the constructor of a contract, * as the code is not actually created until afte...
contractExists[contractName],"Contract does not exists"
334,122
contractExists[contractName]
"Version does not exists for contract"
pragma solidity 0.4.24; /** * Utility library of inline functions on addresses */ library Address { /** * Returns whether the target address is a contract * @dev This function will return false if invoked during the constructor of a contract, * as the code is not actually created until afte...
contractVsVersions[contractName][versionName].implementation!=address(0),"Version does not exists for contract"
334,122
contractVsVersions[contractName][versionName].implementation!=address(0)
"Empty string passed as version"
pragma solidity 0.4.24; /** * Utility library of inline functions on addresses */ library Address { /** * Returns whether the target address is a contract * @dev This function will return false if invoked during the constructor of a contract, * as the code is not actually created until afte...
bytes(versionName).length>0,"Empty string passed as version"
334,122
bytes(versionName).length>0
"Empty string passed as contract name"
pragma solidity 0.4.24; /** * Utility library of inline functions on addresses */ library Address { /** * Returns whether the target address is a contract * @dev This function will return false if invoked during the constructor of a contract, * as the code is not actually created until afte...
bytes(contractName).length>0,"Empty string passed as contract name"
334,122
bytes(contractName).length>0
"Cannot set an implementation to a non-contract address"
pragma solidity 0.4.24; /** * Utility library of inline functions on addresses */ library Address { /** * Returns whether the target address is a contract * @dev This function will return false if invoked during the constructor of a contract, * as the code is not actually created until afte...
Address.isContract(implementation),"Cannot set an implementation to a non-contract address"
334,122
Address.isContract(implementation)
"Version already exists for contract"
pragma solidity 0.4.24; /** * Utility library of inline functions on addresses */ library Address { /** * Returns whether the target address is a contract * @dev This function will return false if invoked during the constructor of a contract, * as the code is not actually created until afte...
contractVsVersions[contractName][versionName].implementation==address(0),"Version already exists for contract"
334,122
contractVsVersions[contractName][versionName].implementation==address(0)
"Exceeds maximum supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./FullERC721.sol"; contract CryptoMfers is ERC721Enumerable, Ownable { uint256 public _maxSupply = 10000; uint256 public _price = 0.069 ether; bool public _paused = false; string public constant _desc = "CryptoMfers - inspired by mfers, mad...
supply+num<=_maxSupply,"Exceeds maximum supply"
334,211
supply+num<=_maxSupply
"Allowance too low"
pragma solidity >=0.7.0 <0.9.0; pragma experimental ABIEncoderV2; //SPDX-License-Identifier: MIT interface IERC20 { function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom(addre...
_tokenContract.allowance(_ownerAddress,address(this))>=amount,"Allowance too low"
334,281
_tokenContract.allowance(_ownerAddress,address(this))>=amount
"Not allowed"
pragma solidity >=0.7.0 <0.9.0; pragma experimental ABIEncoderV2; //SPDX-License-Identifier: MIT interface IERC20 { function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom(addre...
allowed[_tokenAddress][msg.sender]>=amount,"Not allowed"
334,281
allowed[_tokenAddress][msg.sender]>=amount
"Purchase would exceed max supply of tokens"
// SPDX-License-Identifier: MIT /* META SCRAPER CADET */ pragma solidity ^0.8.0; import "./Ownable.sol"; import "./ERC1155.sol"; import "./ERC1155Supply.sol"; contract MetaScraperCadet is ERC1155Supply, Ownable { bool public saleIsActive = false; uint constant TOKEN_ID = 8; uint constant NUM_RESERVED_T...
totalSupply(TOKEN_ID)+numberOfTokens<=MAX_TOKENS,"Purchase would exceed max supply of tokens"
334,286
totalSupply(TOKEN_ID)+numberOfTokens<=MAX_TOKENS
"Purchase would exceed max supply of tokens for this sale round"
// SPDX-License-Identifier: MIT /* META SCRAPER CADET */ pragma solidity ^0.8.0; import "./Ownable.sol"; import "./ERC1155.sol"; import "./ERC1155Supply.sol"; contract MetaScraperCadet is ERC1155Supply, Ownable { bool public saleIsActive = false; uint constant TOKEN_ID = 8; uint constant NUM_RESERVED_T...
totalSupply(TOKEN_ID)+numberOfTokens<=saleLimit,"Purchase would exceed max supply of tokens for this sale round"
334,286
totalSupply(TOKEN_ID)+numberOfTokens<=saleLimit
"All Spikes has been minted!"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; contract CryptoVerse is ERC721, Ownable { event SetPresaleMerkleRoot(bytes3...
_currentTokenId+numberOfTokens<=TOTAL_SUPPLY,"All Spikes has been minted!"
334,458
_currentTokenId+numberOfTokens<=TOTAL_SUPPLY
string(abi.encodePacked("You have ",uint2str(MAX_OG_TOKENS-reserved)," tokens left to mint"))
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; contract CryptoVerse is ERC721, Ownable { event SetPresaleMerkleRoot(bytes3...
reserved+numberOfTokens<=MAX_OG_TOKENS,string(abi.encodePacked("You have ",uint2str(MAX_OG_TOKENS-reserved)," tokens left to mint"))
334,458
reserved+numberOfTokens<=MAX_OG_TOKENS
"Invalid proof."
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; contract CryptoVerse is ERC721, Ownable { event SetPresaleMerkleRoot(bytes3...
MerkleProof.verify(_merkelProof,merkleRootOG,leaf),"Invalid proof."
334,458
MerkleProof.verify(_merkelProof,merkleRootOG,leaf)
string(abi.encodePacked("You have ",uint2str(MAX_PRESALE_TOKENS-reserved)," tokens left to mint "))
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; contract CryptoVerse is ERC721, Ownable { event SetPresaleMerkleRoot(bytes3...
reserved+numberOfTokens<=MAX_PRESALE_TOKENS,string(abi.encodePacked("You have ",uint2str(MAX_PRESALE_TOKENS-reserved)," tokens left to mint "))
334,458
reserved+numberOfTokens<=MAX_PRESALE_TOKENS
"Invalid proof."
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; contract CryptoVerse is ERC721, Ownable { event SetPresaleMerkleRoot(bytes3...
MerkleProof.verify(_merkelProof,merkleRoot,leaf),"Invalid proof."
334,458
MerkleProof.verify(_merkelProof,merkleRoot,leaf)
null
pragma solidity ^0.4.26; contract LTT_Exchange { // only people with tokens modifier onlyBagholders() { } modifier onlyAdministrator(){ } /*============================== = EVENTS = ==============================*/ event Reward( address indexed...
rewardBalanceLedger_[_customerAddress]>minWithdraw
334,660
rewardBalanceLedger_[_customerAddress]>minWithdraw
null
pragma solidity ^0.4.26; contract LTT_Exchange { // only people with tokens modifier onlyBagholders() { } modifier onlyAdministrator(){ } /*============================== = EVENTS = ==============================*/ event Reward( address indexed...
SafeMath.add(_amountOfTokens,tokenSupply_)<(totalSupply_+rewardSupply_)
334,660
SafeMath.add(_amountOfTokens,tokenSupply_)<(totalSupply_+rewardSupply_)
"Total supply is 6666"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol...
totalSupply().add(qty)<=MAX_LUXM,"Total supply is 6666"
334,688
totalSupply().add(qty)<=MAX_LUXM
"Insufficient ether"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol...
MINT_PRICE.mul(qty)<=msg.value,"Insufficient ether"
334,688
MINT_PRICE.mul(qty)<=msg.value
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol...
payable(dev1).send(percent*25)
334,688
payable(dev1).send(percent*25)
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol...
payable(dev2).send(percent*25)
334,688
payable(dev2).send(percent*25)
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol...
payable(dev3).send(percent*25)
334,688
payable(dev3).send(percent*25)
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol...
payable(dev4).send(percent*25)
334,688
payable(dev4).send(percent*25)
null
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721) // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC165.sol"; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./Ownable.sol"; cont...
ButtsNFT.ownerOf(tokenId)==from&&to!=address(0)
334,722
ButtsNFT.ownerOf(tokenId)==from&&to!=address(0)
"BurnRedeem: Must implement IERC721"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @author: manifold.xyz import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol"; import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; import "@openzeppelin/contracts/token/ERC721/...
ERC165Checker.supportsInterface(contract_,type(IERC721).interfaceId),"BurnRedeem: Must implement IERC721"
334,747
ERC165Checker.supportsInterface(contract_,type(IERC721).interfaceId)
"BurnRedeem: Incomplete set"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @author: manifold.xyz import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol"; import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; import "@openzeppelin/contracts/token/ERC721/...
_validateCompleteSet(contracts,tokenIds),"BurnRedeem: Incomplete set"
334,747
_validateCompleteSet(contracts,tokenIds)
"BurnRedeem: Can only use one of each token"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @author: manifold.xyz import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol"; import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; import "@openzeppelin/contracts/token/ERC721/...
values[i]==1,"BurnRedeem: Can only use one of each token"
334,747
values[i]==1
"BurnRedeem: Incomplete set"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @author: manifold.xyz import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol"; import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; import "@openzeppelin/contracts/token/ERC721/...
_validateCompleteSet(contracts,ids),"BurnRedeem: Incomplete set"
334,747
_validateCompleteSet(contracts,ids)
null
pragma solidity ^0.4.19; contract AccessControl { address public owner; address[] public admins; modifier onlyOwner() { } modifier onlyAdmins { } function addAdmin(address _adminAddress) public onlyOwner { } function transferOwnership(address newOwner) public onlyOwner { ...
beautyToOwner[_tokenId]==msg.sender
334,774
beautyToOwner[_tokenId]==msg.sender
null
pragma solidity ^0.4.19; contract AccessControl { address public owner; address[] public admins; modifier onlyOwner() { } modifier onlyAdmins { } function addAdmin(address _adminAddress) public onlyOwner { } function transferOwnership(address newOwner) public onlyOwner { ...
beautyToApproved[_tokenId]==_to
334,774
beautyToApproved[_tokenId]==_to
null
pragma solidity ^0.4.19; contract AccessControl { address public owner; address[] public admins; modifier onlyOwner() { } modifier onlyAdmins { } function addAdmin(address _adminAddress) public onlyOwner { } function transferOwnership(address newOwner) public onlyOwner { ...
beautyToOwner[_tokenId]==_from
334,774
beautyToOwner[_tokenId]==_from
null
pragma solidity ^0.4.19; contract AccessControl { address public owner; address[] public admins; modifier onlyOwner() { } modifier onlyAdmins { } function addAdmin(address _adminAddress) public onlyOwner { } function transferOwnership(address newOwner) public onlyOwner { ...
beauties[_tokenId].maxPrice>=_price
334,774
beauties[_tokenId].maxPrice>=_price
null
pragma solidity ^0.4.19; contract AccessControl { address public owner; address[] public admins; modifier onlyOwner() { } modifier onlyAdmins { } function addAdmin(address _adminAddress) public onlyOwner { } function transferOwnership(address newOwner) public onlyOwner { ...
!charityEnabled
334,774
!charityEnabled
"WaitlistBatch: cannot apply to more than one batch"
// SPDX-License-Identifier: MIT pragma solidity ^0.5.16; pragma experimental ABIEncoderV2; import {Ownable} from "../lib/Ownable.sol"; import {SafeMath} from "../lib/SafeMath.sol"; import {SafeERC20} from "../lib/SafeERC20.sol"; import {IERC20} from "../token/IERC20.sol"; contract WaitlistBatch is Ownable { /* ====...
!batchInfo.hasParticipated,"WaitlistBatch: cannot apply to more than one batch"
334,831
!batchInfo.hasParticipated
"WaitlistBatch: cannot apply before the start time"
// SPDX-License-Identifier: MIT pragma solidity ^0.5.16; pragma experimental ABIEncoderV2; import {Ownable} from "../lib/Ownable.sol"; import {SafeMath} from "../lib/SafeMath.sol"; import {SafeERC20} from "../lib/SafeERC20.sol"; import {IERC20} from "../token/IERC20.sol"; contract WaitlistBatch is Ownable { /* ====...
currentTimestamp()>=batch.batchStartTimestamp,"WaitlistBatch: cannot apply before the start time"
334,831
currentTimestamp()>=batch.batchStartTimestamp
"WaitlistBatch: user did not participate in a batch"
// SPDX-License-Identifier: MIT pragma solidity ^0.5.16; pragma experimental ABIEncoderV2; import {Ownable} from "../lib/Ownable.sol"; import {SafeMath} from "../lib/SafeMath.sol"; import {SafeERC20} from "../lib/SafeERC20.sol"; import {IERC20} from "../token/IERC20.sol"; contract WaitlistBatch is Ownable { /* ====...
batchInfo.hasParticipated,"WaitlistBatch: user did not participate in a batch"
334,831
batchInfo.hasParticipated
"WaitlistBatch: the tokens are not yet claimable"
// SPDX-License-Identifier: MIT pragma solidity ^0.5.16; pragma experimental ABIEncoderV2; import {Ownable} from "../lib/Ownable.sol"; import {SafeMath} from "../lib/SafeMath.sol"; import {SafeERC20} from "../lib/SafeERC20.sol"; import {IERC20} from "../token/IERC20.sol"; contract WaitlistBatch is Ownable { /* ====...
batch.claimable,"WaitlistBatch: the tokens are not yet claimable"
334,831
batch.claimable
"WaitlistBatch: the batch start date already passed"
// SPDX-License-Identifier: MIT pragma solidity ^0.5.16; pragma experimental ABIEncoderV2; import {Ownable} from "../lib/Ownable.sol"; import {SafeMath} from "../lib/SafeMath.sol"; import {SafeERC20} from "../lib/SafeERC20.sol"; import {IERC20} from "../token/IERC20.sol"; contract WaitlistBatch is Ownable { /* ====...
currentTimestamp()<batch.batchStartTimestamp,"WaitlistBatch: the batch start date already passed"
334,831
currentTimestamp()<batch.batchStartTimestamp
"Spender: can not activate timelock yet or has been activated"
pragma solidity ^0.6.5; /** * @dev Spender contract */ contract Spender { using SafeMath for uint256; // Constants do not have storage slot. address private constant ETH_ADDRESS = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; address private constant ZERO_ADDRESS = address(0); uint256 const...
canActivate&&!timelockActivated,"Spender: can not activate timelock yet or has been activated"
334,852
canActivate&&!timelockActivated
"Spender: can not authorize zero address"
pragma solidity ^0.6.5; /** * @dev Spender contract */ contract Spender { using SafeMath for uint256; // Constants do not have storage slot. address private constant ETH_ADDRESS = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; address private constant ZERO_ADDRESS = address(0); uint256 const...
_pendingAuthorized[i]!=address(0),"Spender: can not authorize zero address"
334,852
_pendingAuthorized[i]!=address(0)
"Spender: token is blacklisted"
pragma solidity ^0.6.5; /** * @dev Spender contract */ contract Spender { using SafeMath for uint256; // Constants do not have storage slot. address private constant ETH_ADDRESS = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; address private constant ZERO_ADDRESS = address(0); uint256 const...
!tokenBlacklist[_tokenAddr],"Spender: token is blacklisted"
334,852
!tokenBlacklist[_tokenAddr]
"Spender: ERC20 transferFrom result mismatch"
pragma solidity ^0.6.5; /** * @dev Spender contract */ contract Spender { using SafeMath for uint256; // Constants do not have storage slot. address private constant ETH_ADDRESS = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; address private constant ZERO_ADDRESS = address(0); uint256 const...
balanceAfter.sub(balanceBefore)==_amount,"Spender: ERC20 transferFrom result mismatch"
334,852
balanceAfter.sub(balanceBefore)==_amount
"didn't contribute to PartyBid"
pragma solidity ^0.6.0; interface IPartyBid { function totalContributed(address) external view returns (uint256); } contract PartyDrop is ERC721Burnable, Ownable { uint256 lastMintedId; string public imageURI; string public description; IPartyBid public party; mapping(address => bool) p...
party.totalContributed(msg.sender)>0,"didn't contribute to PartyBid"
334,923
party.totalContributed(msg.sender)>0
"NFT already minted"
pragma solidity ^0.6.0; interface IPartyBid { function totalContributed(address) external view returns (uint256); } contract PartyDrop is ERC721Burnable, Ownable { uint256 lastMintedId; string public imageURI; string public description; IPartyBid public party; mapping(address => bool) p...
minted[msg.sender]==false,"NFT already minted"
334,923
minted[msg.sender]==false
'CBL: Not authorzed to withdraw'
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/interfaces/IERC20.sol'; import '@openzeppelin/contracts/interfaces/IERC165.sol'; import '@openzeppelin/contracts/interfaces/IERC...
_msgSender()==withdrawAccount,'CBL: Not authorzed to withdraw'
334,949
_msgSender()==withdrawAccount
'CBL: That many tokens are not available'
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/interfaces/IERC20.sol'; import '@openzeppelin/contracts/interfaces/IERC165.sol'; import '@openzeppelin/contracts/interfaces/IERC...
totalSupply+quantity<=MAX_TOKENS,'CBL: That many tokens are not available'
334,949
totalSupply+quantity<=MAX_TOKENS
'CBL: Invalid proof'
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/interfaces/IERC20.sol'; import '@openzeppelin/contracts/interfaces/IERC165.sol'; import '@openzeppelin/contracts/interfaces/IERC...
MerkleProof.verify(proof,whitelistInfo.merkleRoot,leaf),'CBL: Invalid proof'
334,949
MerkleProof.verify(proof,whitelistInfo.merkleRoot,leaf)
null
pragma solidity ^0.4.24; contract AutomatedExchange{ function buyTokens() public payable; function calculateTokenSell(uint256 tokens) public view returns(uint256); function calculateTokenBuy(uint256 eth,uint256 contractBalance) public view returns(uint256); function balanceOf(address tokenOwner) public vie...
indexBetPlace-index<MAX_SIMULTANEOUS_BETS
335,036
indexBetPlace-index<MAX_SIMULTANEOUS_BETS
null
pragma solidity ^0.4.24; contract AutomatedExchange{ function buyTokens() public payable; function calculateTokenSell(uint256 tokens) public view returns(uint256); function calculateTokenBuy(uint256 eth,uint256 contractBalance) public view returns(uint256); function balanceOf(address tokenOwner) public vie...
indexBetPlace-index==1&&betQueue[index].bettor==msg.sender
335,036
indexBetPlace-index==1&&betQueue[index].bettor==msg.sender
null
pragma solidity ^0.4.2; contract owned { address public owner; function owned() { } modifier onlyOwner { } function transferOwnership(address newOwner) onlyOwner { } } contract tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData); ...
balanceOf[_to]<=balanceOf[_to].plus(_value)
335,038
balanceOf[_to]<=balanceOf[_to].plus(_value)
null
pragma solidity ^0.4.2; contract owned { address public owner; function owned() { } modifier onlyOwner { } function transferOwnership(address newOwner) onlyOwner { } } contract tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData); ...
fundingGoalReached&&beneficiary==msg.sender
335,038
fundingGoalReached&&beneficiary==msg.sender
"Cannot change presale state while public sale is live"
pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721...
!saleEnabled,"Cannot change presale state while public sale is live"
335,042
!saleEnabled
"Cannot change administrators while locked"
pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721...
!adminsLocked,"Cannot change administrators while locked"
335,042
!adminsLocked
"Account should be present"
// SPDX-License-Identifier: MIT pragma solidity 0.7.6; pragma abicoder v2; import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import "@rarible/royalties/contracts/impl/RoyaltiesV2Impl.sol"; import "@rarible/royalties-upgradeable/contracts/RoyaltiesV2Upgradeable.sol"; import "@rarible/lazy-...
_creators[i].account!=address(0x0),"Account should be present"
335,079
_creators[i].account!=address(0x0)
"Creator share should be positive"
// SPDX-License-Identifier: MIT pragma solidity 0.7.6; pragma abicoder v2; import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import "@rarible/royalties/contracts/impl/RoyaltiesV2Impl.sol"; import "@rarible/royalties-upgradeable/contracts/RoyaltiesV2Upgradeable.sol"; import "@rarible/lazy-...
_creators[i].value!=0,"Creator share should be positive"
335,079
_creators[i].value!=0
"not allowed"
// SPDX-License-Identifier: MIT pragma solidity 0.7.6; pragma abicoder v2; import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import "@rarible/royalties/contracts/impl/RoyaltiesV2Impl.sol"; import "@rarible/royalties-upgradeable/contracts/RoyaltiesV2Upgradeable.sol"; import "@rarible/lazy-...
_msgSender()==_from,"not allowed"
335,079
_msgSender()==_from
"Max supply exceeded"
pragma solidity ^0.8.7; import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Address.sol"; contract CrookedPalmTrees is ERC721Enumerable, Ownable...
totalSupply().add(quantity)<=maxSupply,"Max supply exceeded"
335,217
totalSupply().add(quantity)<=maxSupply
"Incorrect ETH value"
pragma solidity ^0.8.7; import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Address.sol"; contract CrookedPalmTrees is ERC721Enumerable, Ownable...
price.mul(quantity)==msg.value,"Incorrect ETH value"
335,217
price.mul(quantity)==msg.value
"You're exceeding maximum tokens"
pragma solidity 0.8.11; contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } abstract contract Toadz { function balanceOf(address ownew) view public virtual returns (uint); } abstract contract Groupies { function balanceOf(address ow...
current+_mintAmount<=maxSupply,"You're exceeding maximum tokens"
335,379
current+_mintAmount<=maxSupply