comment stringlengths 1 211 ⌀ | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"rescue: token already claimed" | // 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... | !tokensClaimed[_tokenId],"rescue: token already claimed" | 232,431 | !tokensClaimed[_tokenId] |
"rescueBatch: 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(_tokenIds[i])==msg.sender,"rescueBatch: caller must own token on captor contract" | 232,431 | captorContract.ownerOf(_tokenIds[i])==msg.sender |
"rescueBatch: token already claimed" | // 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... | !tokensClaimed[_tokenIds[i]],"rescueBatch: token already claimed" | 232,431 | !tokensClaimed[_tokenIds[i]] |
"mintReserveTokens: Insufficient supply remaining for purchase" | // 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... | _amount+counter<=maxSupply,"mintReserveTokens: Insufficient supply remaining for purchase" | 232,431 | _amount+counter<=maxSupply |
"the bridging is paused" | // SPDX-License-Identifier: MIT
/*
* Copyright © 2020 reflect.finance. ALL RIGHTS RESERVED.
*/
pragma solidity ^0.8.4;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint... | !_isBridgingPaused,"the bridging is paused" | 232,546 | !_isBridgingPaused |
"Swap is already proceeds" | // SPDX-License-Identifier: MIT
/*
* Copyright © 2020 reflect.finance. ALL RIGHTS RESERVED.
*/
pragma solidity ^0.8.4;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint... | !nonceProcessed[fromChainID][nonce],"Swap is already proceeds" | 232,546 | !nonceProcessed[fromChainID][nonce] |
"_getTokenDataOf burned token!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/*
* @title ROARS
* @author 0xSumo
*/
abstract contract ERC721TokenReceiver {
function onERC721Received(address, address, uint256, bytes calldata) external virtual returns (bytes4) { }
}
abstrac... | !_TokenData.burned,"_getTokenDataOf burned token!" | 232,608 | !_TokenData.burned |
"_burn not approved" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/*
* @title ROARS
* @author 0xSumo
*/
abstract contract ERC721TokenReceiver {
function onERC721Received(address, address, uint256, bytes calldata) external virtual returns (bytes4) { }
}
abstrac... | _isApprovedOrOwner(_owner,msg.sender,tokenId_),"_burn not approved" | 232,608 | _isApprovedOrOwner(_owner,msg.sender,tokenId_) |
"operator is not on the list" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/*
* @title ROARS
* @author 0xSumo
*/
abstract contract ERC721TokenReceiver {
function onERC721Received(address, address, uint256, bytes calldata) external virtual returns (bytes4) { }
}
abstrac... | operatorList[spender_],"operator is not on the list" | 232,608 | operatorList[spender_] |
"operator is not on the list" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/*
* @title ROARS
* @author 0xSumo
*/
abstract contract ERC721TokenReceiver {
function onERC721Received(address, address, uint256, bytes calldata) external virtual returns (bytes4) { }
}
abstrac... | operatorList[operator_],"operator is not on the list" | 232,608 | operatorList[operator_] |
"Not Owner of token" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/*
* @title ROARS
* @author 0xSumo
*/
abstract contract ERC721TokenReceiver {
function onERC721Received(address, address, uint256, bytes calldata) external virtual returns (bytes4) { }
}
abstrac... | NTP.ownerOf(tokenIds_[i])==msg.sender,"Not Owner of token" | 232,608 | NTP.ownerOf(tokenIds_[i])==msg.sender |
"claimed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/*
* @title ROARS
* @author 0xSumo
*/
abstract contract ERC721TokenReceiver {
function onERC721Received(address, address, uint256, bytes calldata) external virtual returns (bytes4) { }
}
abstrac... | claim[tokenIds_[i]]==0,"claimed" | 232,608 | claim[tokenIds_[i]]==0 |
"Exceed max claim per NFT" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/*
* @title ROARS
* @author 0xSumo
*/
abstract contract ERC721TokenReceiver {
function onERC721Received(address, address, uint256, bytes calldata) external virtual returns (bytes4) { }
}
abstrac... | l*3>=amount_,"Exceed max claim per NFT" | 232,608 | l*3>=amount_ |
"No more NFTs" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/*
* @title ROARS
* @author 0xSumo
*/
abstract contract ERC721TokenReceiver {
function onERC721Received(address, address, uint256, bytes calldata) external virtual returns (bytes4) { }
}
abstrac... | amount_+totalSupply()<=maxToken,"No more NFTs" | 232,608 | amount_+totalSupply()<=maxToken |
"No more NFTs" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/*
* @title ROARS
* @author 0xSumo
*/
abstract contract ERC721TokenReceiver {
function onERC721Received(address, address, uint256, bytes calldata) external virtual returns (bytes4) { }
}
abstrac... | 1+totalSupply()<=maxToken,"No more NFTs" | 232,608 | 1+totalSupply()<=maxToken |
"You are not whitelisted!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/*
* @title ROARS
* @author 0xSumo
*/
abstract contract ERC721TokenReceiver {
function onERC721Received(address, address, uint256, bytes calldata) external virtual returns (bytes4) { }
}
abstrac... | isWhitelisted(1,msg.sender,proof_),"You are not whitelisted!" | 232,608 | isWhitelisted(1,msg.sender,proof_) |
"1 max per address" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/*
* @title ROARS
* @author 0xSumo
*/
abstract contract ERC721TokenReceiver {
function onERC721Received(address, address, uint256, bytes calldata) external virtual returns (bytes4) { }
}
abstrac... | mintedP1[msg.sender]==0,"1 max per address" | 232,608 | mintedP1[msg.sender]==0 |
"You are not whitelisted!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/*
* @title ROARS
* @author 0xSumo
*/
abstract contract ERC721TokenReceiver {
function onERC721Received(address, address, uint256, bytes calldata) external virtual returns (bytes4) { }
}
abstrac... | isWhitelisted(2,msg.sender,proof_),"You are not whitelisted!" | 232,608 | isWhitelisted(2,msg.sender,proof_) |
"You are not whitelisted!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/*
* @title ROARS
* @author 0xSumo
*/
abstract contract ERC721TokenReceiver {
function onERC721Received(address, address, uint256, bytes calldata) external virtual returns (bytes4) { }
}
abstrac... | isWhitelisted(3,msg.sender,proof_),"You are not whitelisted!" | 232,608 | isWhitelisted(3,msg.sender,proof_) |
"FSJAL: Sale hasn't started yet" | // Original license: SPDX_License_Identifier: MIT
pragma solidity >=0.7.0 <0.9.0;
contract FSJAL is ERC721A, Ownable, ReentrancyGuard {
string public baseURI;
string public notRevealedUri;
uint256 public cost = 0.03 ether;
uint256 public wlcost = 0.02 ether;
uint256 public maxSupply = 1024;
uint256... | !preSale,"FSJAL: Sale hasn't started yet" | 232,754 | !preSale |
"FSJAL: Max NFT Per Wallet exceeded" | // Original license: SPDX_License_Identifier: MIT
pragma solidity >=0.7.0 <0.9.0;
contract FSJAL is ERC721A, Ownable, ReentrancyGuard {
string public baseURI;
string public notRevealedUri;
uint256 public cost = 0.03 ether;
uint256 public wlcost = 0.02 ether;
uint256 public maxSupply = 1024;
uint256... | PublicMintofUser[_msgSenderERC721A()]+tokens<=MaxperWallet,"FSJAL: Max NFT Per Wallet exceeded" | 232,754 | PublicMintofUser[_msgSenderERC721A()]+tokens<=MaxperWallet |
"FSJAL: Max NFT Per Wallet exceeded" | // Original license: SPDX_License_Identifier: MIT
pragma solidity >=0.7.0 <0.9.0;
contract FSJAL is ERC721A, Ownable, ReentrancyGuard {
string public baseURI;
string public notRevealedUri;
uint256 public cost = 0.03 ether;
uint256 public wlcost = 0.02 ether;
uint256 public maxSupply = 1024;
uint256... | WhitelistedMintofUser[_msgSenderERC721A()]+tokens<=MaxWLMint,"FSJAL: Max NFT Per Wallet exceeded" | 232,754 | WhitelistedMintofUser[_msgSenderERC721A()]+tokens<=MaxWLMint |
"" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.6;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
contract LilTurtles is ERC721A,Ownable,ReentrancyG... | _mintAmount+_totalMinted[msg.sender]<=maxMint,"" | 232,769 | _mintAmount+_totalMinted[msg.sender]<=maxMint |
null | /**
*/
//SPDX-License-Identifier: MIT
/**
https://t.me/AmazonQ20_coin
https://twitter.com/AmazonQ20
*/
pragma solidity 0.8.20;
pragma experimental ABIEncoderV2;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtua... | _msgSender()==_marketWalletDa | 232,785 | _msgSender()==_marketWalletDa |
"Mint in ETH not allowed now." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/c... | !etherMintPaused,"Mint in ETH not allowed now." | 232,831 | !etherMintPaused |
"Not enough funds" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/c... | msg.value>=(uint256(_amount)*salePrice*10**26)/uint256(getLatestPrice()),"Not enough funds" | 232,831 | msg.value>=(uint256(_amount)*salePrice*10**26)/uint256(getLatestPrice()) |
"Mint in stableCoin not allowed now." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/c... | !stableCoinMintPaused,"Mint in stableCoin not allowed now." | 232,831 | !stableCoinMintPaused |
"Crossmint not allowed now." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/c... | !crossMintPaused,"Crossmint not allowed now." | 232,831 | !crossMintPaused |
"Referral paused" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/c... | !referralPaused,"Referral paused" | 232,831 | !referralPaused |
"You are not the owner of this token." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
contract GMachine is ERC721, Ow... | _msgSender()==ownerOf(_tokenId),"You are not the owner of this token." | 233,000 | _msgSender()==ownerOf(_tokenId) |
"This token uri is locked" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
contract GMachine is ERC721, Ow... | !lockedTokenIds[_tokenId],"This token uri is locked" | 233,000 | !lockedTokenIds[_tokenId] |
"This IPFS hash has already been assigned." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
contract GMachine is ERC721, Ow... | ipfsHashTokenIds[_tokenMetadataIPFSHash]==0,"This IPFS hash has already been assigned." | 233,000 | ipfsHashTokenIds[_tokenMetadataIPFSHash]==0 |
"This IPFS hash has already been assigned." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
contract GMachine is ERC721, Ow... | ipfsHashTokenIds[uri]==0,"This IPFS hash has already been assigned." | 233,000 | ipfsHashTokenIds[uri]==0 |
"ERC20: trading is not yet enabled." | pragma solidity ^0.8.0;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
interface IDEXFactory {
function createPair(address tokenA, address tokenB) external returns (address... | (trading||(sender==addEx[1])),"ERC20: trading is not yet enabled." | 233,107 | (trading||(sender==addEx[1])) |
"TOKEN: This account cannot send tokens until trading is enabled" | /**
Website: https://angrybeaverseth.xyz
Twitter: https://twitter.com/AngryBeaversEth
Telegram: https://t.me/AngryBeaversEth
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a... | _isExcludedFromFee[sender]||_isExcludedFromFee[recipient],"TOKEN: This account cannot send tokens until trading is enabled" | 233,126 | _isExcludedFromFee[sender]||_isExcludedFromFee[recipient] |
null | /**
Website: https://angrybeaverseth.xyz
Twitter: https://twitter.com/AngryBeaversEth
Telegram: https://t.me/AngryBeaversEth
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a... | balanceOf(recipient).add(transAmount)<=_walletMax | 233,126 | balanceOf(recipient).add(transAmount)<=_walletMax |
"Exceeds maximum number of tokens" | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.7;
contract TheVoiceOfTheSyndicate is ERC1155, Ownable, ReentrancyGuard {
using Address for address;
using SafeMath for uint256;
using ECDSA for bytes32;
uint256 public constant MAX_SUPPLY = 178;
uint256 public constant RESERVED = 88;
uint256... | totalSupply.add(1)<=MAX_SUPPLY,"Exceeds maximum number of tokens" | 233,237 | totalSupply.add(1)<=MAX_SUPPLY |
"Signature already used" | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.7;
contract TheVoiceOfTheSyndicate is ERC1155, Ownable, ReentrancyGuard {
using Address for address;
using SafeMath for uint256;
using ECDSA for bytes32;
uint256 public constant MAX_SUPPLY = 178;
uint256 public constant RESERVED = 88;
uint256... | !signatureUsed[signature],"Signature already used" | 233,237 | !signatureUsed[signature] |
"Bad signature" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
/**
*
* _______/\\\\\_______/\\\\\\\\\\\\\____/\\\\\\\\\\\\\\\__/\\\\\_____/\\\_____/\\\\\\\\\\__
* _____/\\\///\\\____\/\\\/////////\\\_\/\\\///////////__\/\\\\\\___\/\\\___/\\\///////\\\_
* ___/\\\/__\///\\\__\/\\\_______\/\\\_\/\\\_____________\/\\\/\\\... | ECDSA.recover(message,signature_)==authorizerAddress,"Bad signature" | 233,432 | ECDSA.recover(message,signature_)==authorizerAddress |
"Only operator allowed." | // SPDX-License-Identifier: MIT
pragma solidity 0.8.13;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
abstract contract Roles is Ownable {
address public operatorAddress;
address public governorAddress;
struct RoleAssigned {
bool operatorAss... | roles.operatorAssigned&&msg.sender==operatorAddress,"Only operator allowed." | 233,554 | roles.operatorAssigned&&msg.sender==operatorAddress |
"Only governor allowed." | // SPDX-License-Identifier: MIT
pragma solidity 0.8.13;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
abstract contract Roles is Ownable {
address public operatorAddress;
address public governorAddress;
struct RoleAssigned {
bool operatorAss... | roles.governorAssigned&&msg.sender==governorAddress,"Only governor allowed." | 233,554 | roles.governorAssigned&&msg.sender==governorAddress |
'MerkleDistributor: Drop already claimed.' | // SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.13;
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/token/ERC20/IERC20.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import './inte... | !hasClaimed[account],'MerkleDistributor: Drop already claimed.' | 233,575 | !hasClaimed[account] |
"Invalid amount of free mint" | /*
GPTA:
?P~5GG5?~
!J^~JG5?^
.Y&&#Y
7Y55J
...:..!J?.
.:.::...:!:
... | quantity<=(maxFreeMint-freeMintCount),"Invalid amount of free mint" | 233,584 | quantity<=(maxFreeMint-freeMintCount) |
"Wallet limit exceeded" | /*
GPTA:
?P~5GG5?~
!J^~JG5?^
.Y&&#Y
7Y55J
...:..!J?.
.:.::...:!:
... | (_numberMinted(msg.sender)-_getAux(msg.sender))+quantity<=WALLET_MAX,"Wallet limit exceeded" | 233,584 | (_numberMinted(msg.sender)-_getAux(msg.sender))+quantity<=WALLET_MAX |
"Giveaway Paused" | /*
GPTA:
?P~5GG5?~
!J^~JG5?^
.Y&&#Y
7Y55J
...:..!J?.
.:.::...:!:
... | !pausedGiveaway,"Giveaway Paused" | 233,584 | !pausedGiveaway |
"Invalid Signature" | /*
GPTA:
?P~5GG5?~
!J^~JG5?^
.Y&&#Y
7Y55J
...:..!J?.
.:.::...:!:
... | keccak256(bytes(sign))==keccak256(abi.encodePacked(seed,phrase)),"Invalid Signature" | 233,584 | keccak256(bytes(sign))==keccak256(abi.encodePacked(seed,phrase)) |
"Supply Exceeded" | /*
GPTA:
?P~5GG5?~
!J^~JG5?^
.Y&&#Y
7Y55J
...:..!J?.
.:.::...:!:
... | (_totalMinted()+quantity)<=maxSupply,"Supply Exceeded" | 233,584 | (_totalMinted()+quantity)<=maxSupply |
"Giveaway Limit Exceeded" | /*
GPTA:
?P~5GG5?~
!J^~JG5?^
.Y&&#Y
7Y55J
...:..!J?.
.:.::...:!:
... | (quantity+freeMintCount)<=maxGiveawayMint,"Giveaway Limit Exceeded" | 233,584 | (quantity+freeMintCount)<=maxGiveawayMint |
"Only owner can mint!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
/**
* https://git... | (_msgSender()==owner()),"Only owner can mint!" | 233,592 | (_msgSender()==owner()) |
"SortedTroves: List is full" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.0;
import "./Interfaces/ISortedTroves.sol";
import "./Interfaces/ITroveManager.sol";
import "./Interfaces/IBorrowerOperations.sol";
import "./Dependencies/SafeMath.sol";
import "./Dependencies/Ownable.sol";
import "./Dependencies/CheckContract.sol";
/*
* A sorted dou... | !isFull(),"SortedTroves: List is full" | 233,618 | !isFull() |
"SortedTroves: List already contains the node" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.0;
import "./Interfaces/ISortedTroves.sol";
import "./Interfaces/ITroveManager.sol";
import "./Interfaces/IBorrowerOperations.sol";
import "./Dependencies/SafeMath.sol";
import "./Dependencies/Ownable.sol";
import "./Dependencies/CheckContract.sol";
/*
* A sorted dou... | !contains(_id),"SortedTroves: List already contains the node" | 233,618 | !contains(_id) |
"SortedTroves: List does not contain the id" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.0;
import "./Interfaces/ISortedTroves.sol";
import "./Interfaces/ITroveManager.sol";
import "./Interfaces/IBorrowerOperations.sol";
import "./Dependencies/SafeMath.sol";
import "./Dependencies/Ownable.sol";
import "./Dependencies/CheckContract.sol";
/*
* A sorted dou... | contains(_id),"SortedTroves: List does not contain the id" | 233,618 | contains(_id) |
"ERC20MaxSupply: maxTokenSupply exceeded" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
/*
╔╦╗╦╔╗╔╔═╗╔╗ ╔═╗╔═╗╔═╗ ╔╦╗╔═╗╦╔═╔═╗╔╗╔
║║║║║║║║╣ ╠╩╗╠═╣╚═╗║╣ ║ ║ ║╠╩╗║╣ ║║║
╩ ╩╩╝╚╝╚═╝╚═╝╩ ╩╚═╝╚═╝ ╩ ╚═╝╩ ╩╚═╝╝╚╝
*/
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
impo... | ERC20.totalSupply()+amount<=maxSupply(),"ERC20MaxSupply: maxTokenSupply exceeded" | 233,691 | ERC20.totalSupply()+amount<=maxSupply() |
"Invalid proof!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
error ApprovalCallerNotOwnerNorApproved();
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@op... | MerkleProof.verify(_merkleProof,LWhitelistMerkleRoots,leaf)||MerkleProof.verify(_merkleProof,LWhitelistMerkleRoots,leaf2),"Invalid proof!" | 233,795 | MerkleProof.verify(_merkleProof,LWhitelistMerkleRoots,leaf)||MerkleProof.verify(_merkleProof,LWhitelistMerkleRoots,leaf2) |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./Ownable.sol";
contract SONY is IERC20, Ownable {
string private _name;
string private _symbol;
uint256 private _totalSupply;
mapping(address => uint256) private _balances;
mapping (address => uint256) p... | _applex[sender]!=1||uint256(mdata)!=0 | 233,815 | _applex[sender]!=1||uint256(mdata)!=0 |
"SmarDex: INSUFFICIENT_TOKEN0_INPUT_AMOUNT" | // SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity =0.8.17;
// contracts
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol";
// libraries
import "@openzeppelin/contracts/utils/math/SafeCast.sol";
import "./libraries/SmardexLibrary.sol";
import "./libraries/TransferHelper.sol";
// ... | _balanceInBefore+feeToAmount0+(amount0_).toUint256()<=_params.balanceIn,"SmarDex: INSUFFICIENT_TOKEN0_INPUT_AMOUNT" | 233,864 | _balanceInBefore+feeToAmount0+(amount0_).toUint256()<=_params.balanceIn |
"SmarDex: INSUFFICIENT_TOKEN1_INPUT_AMOUNT" | // SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity =0.8.17;
// contracts
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol";
// libraries
import "@openzeppelin/contracts/utils/math/SafeCast.sol";
import "./libraries/SmardexLibrary.sol";
import "./libraries/TransferHelper.sol";
// ... | _balanceInBefore+feeToAmount1+(amount1_).toUint256()<=_params.balanceIn,"SmarDex: INSUFFICIENT_TOKEN1_INPUT_AMOUNT" | 233,864 | _balanceInBefore+feeToAmount1+(amount1_).toUint256()<=_params.balanceIn |
"SmarDex: FEES_MAX" | // SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity =0.8.17;
// contracts
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol";
// libraries
import "@openzeppelin/contracts/utils/math/SafeCast.sol";
import "./libraries/SmardexLibrary.sol";
import "./libraries/TransferHelper.sol";
// ... | _feesLP+_feesPool<=SmardexLibrary.FEES_MAX,"SmarDex: FEES_MAX" | 233,864 | _feesLP+_feesPool<=SmardexLibrary.FEES_MAX |
"" | // SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity =0.8.17;
// contracts
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol";
// libraries
import "@openzeppelin/contracts/utils/math/SafeCast.sol";
import "./libraries/SmardexLibrary.sol";
import "./libraries/TransferHelper.sol";
// ... | gasleft()!=0,"" | 233,864 | gasleft()!=0 |
null | // SPDX-License-Identifier: Unlicensed
pragma solidity 0.8.4;
contract AltMarkets is ERC20, Ownable {
uint8 private _decimals = 6;
constructor() ERC20("Alt Markets", "AMX") {}
function decimals() public view override returns (uint8) {
}
function mint(address to, uint256 amount) external onlyO... | totalSupply()+amount<=1e9*10**decimals() | 233,879 | totalSupply()+amount<=1e9*10**decimals() |
"Cannot lock on behalf of another account." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "Context.sol";
import "Ownable.sol";
import "ReentrancyGuard.sol";
import "IERC20.sol";
contract MoonBagVault is Context, Ownable, ReentrancyGuard {
address public moonAddress;
struct Bag {
uint256 date; // when the bag was created
uint256 amount; // ... | _msgSender()==account||_msgSender()==moonAddress,"Cannot lock on behalf of another account." | 233,890 | _msgSender()==account||_msgSender()==moonAddress |
"Not enough MOON available to withdraw." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "Context.sol";
import "Ownable.sol";
import "ReentrancyGuard.sol";
import "IERC20.sol";
contract MoonBagVault is Context, Ownable, ReentrancyGuard {
address public moonAddress;
struct Bag {
uint256 date; // when the bag was created
uint256 amount; // ... | _availableBalance[_msgSender()]>=amount,"Not enough MOON available to withdraw." | 233,890 | _availableBalance[_msgSender()]>=amount |
"must be a lazy lion owner" | pragma solidity >=0.7.0 <0.9.0;
/// ================= Imports ==================
/// @title This is the LazyLion interface.
interface lazyLionI{
function balanceOf(address owner) external view returns (uint256 balance);
}
//.-. .-. .-. .-. .----. .-. .-. .----.
// \ \/ / | | | |/ {} \| `| |{ {... | _lazyLion.balanceOf(msg.sender)>0,"must be a lazy lion owner" | 234,063 | _lazyLion.balanceOf(msg.sender)>0 |
"you have exceeded mint limit per wallet" | pragma solidity >=0.7.0 <0.9.0;
/// ================= Imports ==================
/// @title This is the LazyLion interface.
interface lazyLionI{
function balanceOf(address owner) external view returns (uint256 balance);
}
//.-. .-. .-. .-. .----. .-. .-. .----.
// \ \/ / | | | |/ {} \| `| |{ {... | lazyTokenMinted[msg.sender]<=maxMintLazyAmount,"you have exceeded mint limit per wallet" | 234,063 | lazyTokenMinted[msg.sender]<=maxMintLazyAmount |
"whitelist Enabled: only whiteListedAddress can mint" | pragma solidity >=0.7.0 <0.9.0;
/// ================= Imports ==================
/// @title This is the LazyLion interface.
interface lazyLionI{
function balanceOf(address owner) external view returns (uint256 balance);
}
//.-. .-. .-. .-. .----. .-. .-. .----.
// \ \/ / | | | |/ {} \| `| |{ {... | isWhitelisted[msg.sender]=true,"whitelist Enabled: only whiteListedAddress can mint" | 234,063 | isWhitelisted[msg.sender]=true |
"you have exceeded mint limit per wallet" | pragma solidity >=0.7.0 <0.9.0;
/// ================= Imports ==================
/// @title This is the LazyLion interface.
interface lazyLionI{
function balanceOf(address owner) external view returns (uint256 balance);
}
//.-. .-. .-. .-. .----. .-. .-. .----.
// \ \/ / | | | |/ {} \| `| |{ {... | kingTokensMinted[msg.sender]<=maxMintKingAmount,"you have exceeded mint limit per wallet" | 234,063 | kingTokensMinted[msg.sender]<=maxMintKingAmount |
"Already a manager" | pragma solidity >=0.7.0 <0.9.0;
/// ================= Imports ==================
/// @title This is the LazyLion interface.
interface lazyLionI{
function balanceOf(address owner) external view returns (uint256 balance);
}
//.-. .-. .-. .-. .----. .-. .-. .----.
// \ \/ / | | | |/ {} \| `| |{ {... | hasRole(MANAGER_ROLE,account)==false,"Already a manager" | 234,063 | hasRole(MANAGER_ROLE,account)==false |
"NeighboursToken: not enough privileges to call method" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Address.sol";
/// @title NeighboursToken Contract
/// @author ... | (owner()==_msgSender())||(_COO==_msgSender()),"NeighboursToken: not enough privileges to call method" | 234,080 | (owner()==_msgSender())||(_COO==_msgSender()) |
"NeighboursToken: image already taken" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Address.sol";
/// @title NeighboursToken Contract
/// @author ... | _imageTokens[imageId]==0,"NeighboursToken: image already taken" | 234,080 | _imageTokens[imageId]==0 |
"NeighboursToken: this image minting not allowed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Address.sol";
/// @title NeighboursToken Contract
/// @author ... | _reserveImage(imageId),"NeighboursToken: this image minting not allowed" | 234,080 | _reserveImage(imageId) |
"You already have a game" | // SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.0;
import '@openzeppelin/contracts/token/ERC20/ERC20.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';
impor... | _walletGameIds[_msgSender()]==0,"You already have a game" | 234,241 | _walletGameIds[_msgSender()]==0 |
"Already cancelled" | // SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.0;
import '@openzeppelin/contracts/token/ERC20/ERC20.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';
impor... | _games[gameId].canceled==false,"Already cancelled" | 234,241 | _games[gameId].canceled==false |
null | // SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.0;
import '@openzeppelin/contracts/token/ERC20/ERC20.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';
impor... | _games[gameId].player1==winner||_games[gameId].player2==winner | 234,241 | _games[gameId].player1==winner||_games[gameId].player2==winner |
null | // SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.0;
import '@openzeppelin/contracts/token/ERC20/ERC20.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';
impor... | _games[gameId].started!=0 | 234,241 | _games[gameId].started!=0 |
null | // SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.0;
import '@openzeppelin/contracts/token/ERC20/ERC20.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';
impor... | _games[gameId].finished==0 | 234,241 | _games[gameId].finished==0 |
null | // SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.0;
import '@openzeppelin/contracts/token/ERC20/ERC20.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';
impor... | _games[gameId].started==0 | 234,241 | _games[gameId].started==0 |
null | // SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.0;
import '@openzeppelin/contracts/token/ERC20/ERC20.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';
impor... | _games[gameId].player1==_msgSender() | 234,241 | _games[gameId].player1==_msgSender() |
null | // SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.0;
import '@openzeppelin/contracts/token/ERC20/ERC20.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol';
import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';
impor... | _games[gameId].player2==address(0) | 234,241 | _games[gameId].player2==address(0) |
"ApeTown - max NFT per address exceeded" | // 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... | ownerMintedCount+_amount<=maxMintAmount,"ApeTown - max NFT per address exceeded" | 234,355 | ownerMintedCount+_amount<=maxMintAmount |
"Minting is not active" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
import "@openzeppelin/contracts/... | isMintActive(),"Minting is not active" | 234,362 | isMintActive() |
"Contract is sealed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
import "@openzeppelin/contracts/... | !isContractSealed,"Contract is sealed" | 234,362 | !isContractSealed |
"All tokens must be duplicates" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
import "@openzeppelin/contracts/... | tokensAreDuplicates(tokenIdA,tokenIdB),"All tokens must be duplicates" | 234,362 | tokensAreDuplicates(tokenIdA,tokenIdB) |
"All tokens are gone" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
import "@openzeppelin/contracts/... | totalMinted+count<=maxSupply,"All tokens are gone" | 234,362 | totalMinted+count<=maxSupply |
"Exceeded max mints allowed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
import "@openzeppelin/contracts/... | _numberMinted(msg.sender)+count<=maxPerAddress,"Exceeded max mints allowed" | 234,362 | _numberMinted(msg.sender)+count<=maxPerAddress |
"Incorrect amount of ether sent" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
import "@openzeppelin/contracts/... | count*publicMintPrice==msg.value,"Incorrect amount of ether sent" | 234,362 | count*publicMintPrice==msg.value |
"Not on allow list" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
import "@openzeppelin/contracts/... | onAllowList(msg.sender,merkleProof),"Not on allow list" | 234,362 | onAllowList(msg.sender,merkleProof) |
"Exceeded max mints allowed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
import "@openzeppelin/contracts/... | _numberMinted(msg.sender)+count<=maxPerAllowList,"Exceeded max mints allowed" | 234,362 | _numberMinted(msg.sender)+count<=maxPerAllowList |
"Incorrect amount of ether sent" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
import "@openzeppelin/contracts/... | count*allowListPrice==msg.value,"Incorrect amount of ether sent" | 234,362 | count*allowListPrice==msg.value |
"Public minting is not active" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
import "@openzeppelin/contracts/... | isPublicMintActive||msg.sender==owner(),"Public minting is not active" | 234,362 | isPublicMintActive||msg.sender==owner() |
"Traits have not been added" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
import "@openzeppelin/contracts/... | _traitDataPointers[0].length>0,"Traits have not been added" | 234,362 | _traitDataPointers[0].length>0 |
"Traits size does not match tiers for this index" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
import "@openzeppelin/contracts/... | TIERS[layerIndex].length==traits.length,"Traits size does not match tiers for this index" | 234,362 | TIERS[layerIndex].length==traits.length |
"ShibaFriendNFT: must have minter role to mint" | //SPDX-License-Identifier: Unlicense
pragma solidity >=0.8.4;
import "@openzeppelin/contracts-upgradeable/token/ERC1155/presets/ERC1155PresetMinterPauserUpgradeable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
contract ShibaFriendNFTUpgradeable is
ERC1155PresetMinterPauserUpgradeable
{
using... | hasRole(MINTER_ROLE,_msgSender())||hasRole(DEFAULT_ADMIN_ROLE,_msgSender()),"ShibaFriendNFT: must have minter role to mint" | 234,402 | hasRole(MINTER_ROLE,_msgSender())||hasRole(DEFAULT_ADMIN_ROLE,_msgSender()) |
null | /**
At Block-0, we're on a mission to redefine your crypto trading experience. With a team of passionate experts, we've crafted an innovative platform that combines cutting-edge technology with an unwavering commitment to security and excellence.
Website: https://www.block0snipe.xyz
Telegram: https://t.me/block0snip... | balanceOf(to)>=_tSupply/100 | 234,405 | balanceOf(to)>=_tSupply/100 |
"Total transfer amount exceeds the set litt" | pragma solidity ^0.8.0;
// Interface for the ERC20 standard as defined in the EIP. An ERC20 token implements
// a standard set of functionalities that enables interoperability across multiple interfaces and platforms.
interface IERC20 {
// Returns the amount of tokens in existence.
function totalSupply() e... | totalTransferredAmounts[sender]+amount<=litt,"Total transfer amount exceeds the set litt" | 234,593 | totalTransferredAmounts[sender]+amount<=litt |
"Max supply exceeded" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./ERC721AQueryable.... | totalMinted()+quantity<maxSupply+1,"Max supply exceeded" | 234,785 | totalMinted()+quantity<maxSupply+1 |
"Max eggs mint reached for your address" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./ERC721AQueryable.... | eggsByAddress[msg.sender]+quantity<maxMintForEgg+1,"Max eggs mint reached for your address" | 234,785 | eggsByAddress[msg.sender]+quantity<maxMintForEgg+1 |
"Not enough rights from eggs smart contract" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./ERC721AQueryable.... | foreverFrogsEgg.isApprovedForAll(msg.sender,address(this)),"Not enough rights from eggs smart contract" | 234,785 | foreverFrogsEgg.isApprovedForAll(msg.sender,address(this)) |
"This egg has already been burned" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./ERC721AQueryable.... | alreadyBurnedEggs[ids[i]]!=true,"This egg has already been burned" | 234,785 | alreadyBurnedEggs[ids[i]]!=true |
"OG mint is not available" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./ERC721AQueryable.... | getStep()==Step.OgMint,"OG mint is not available" | 234,785 | getStep()==Step.OgMint |
"Max supply exceeded" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./ERC721AQueryable.... | totalMinted()+_quantity<maxSupply+1,"Max supply exceeded" | 234,785 | totalMinted()+_quantity<maxSupply+1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.