comment stringlengths 1 211 ⌀ | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"Not an OG" | // 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.... | isOgWhiteListed(msg.sender,_proof),"Not an OG" | 234,785 | isOgWhiteListed(msg.sender,_proof) |
"Max OG 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.... | ogByAddress[msg.sender]+_quantity<maxMintForOg+1,"Max OG reached for your address" | 234,785 | ogByAddress[msg.sender]+_quantity<maxMintForOg+1 |
"Max per wallet reached" | // 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.... | nftByAddress[msg.sender]+_quantity<maxMintPerAddress+1,"Max per wallet reached" | 234,785 | nftByAddress[msg.sender]+_quantity<maxMintPerAddress+1 |
"Whitelist 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.WhitelistMint,"Whitelist mint is not available" | 234,785 | getStep()==Step.WhitelistMint |
"Max whitelist 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.... | whitelistByAddress[msg.sender]+_quantity<maxMintForWhitelist+1,"Max whitelist reached for your address" | 234,785 | whitelistByAddress[msg.sender]+_quantity<maxMintForWhitelist+1 |
"Public 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.PublicMint,"Public mint is not available" | 234,785 | getStep()==Step.PublicMint |
"Max per wallet reached" | // 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.... | nftByAddress[msg.sender]+_quantity<freeMintMaxPerAddress+1,"Max per wallet reached" | 234,785 | nftByAddress[msg.sender]+_quantity<freeMintMaxPerAddress+1 |
"Sold out!" | // 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()<maxSupply,"Sold out!" | 234,785 | totalMinted()<maxSupply |
"Max Mint amount reached" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/... | balanceOf(msg.sender)+_mintAmount<=maxMintAmountPerAddress,"Max Mint amount reached" | 234,825 | balanceOf(msg.sender)+_mintAmount<=maxMintAmountPerAddress |
"Max supply exceeded!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/... | totalSupply()+_mintAmount<=publicSupply,"Max supply exceeded!" | 234,825 | totalSupply()+_mintAmount<=publicSupply |
"Invalid proof" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract VINEIDO is Ownable {
bytes32 public privateSaleMerkleRoot;
bytes32 publ... | MerkleProof.verify(proof,privateSaleMerkleRoot,leaf),"Invalid proof" | 234,849 | MerkleProof.verify(proof,privateSaleMerkleRoot,leaf) |
"Insufficient amount available for purchase" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract VINEIDO is Ownable {
bytes32 public privateSaleMerkleRoot;
bytes32 publ... | user2privateSaleAmount[msg.sender]+amount<=maxPrivateAmount,"Insufficient amount available for purchase" | 234,849 | user2privateSaleAmount[msg.sender]+amount<=maxPrivateAmount |
"Insufficient amount available for purchase" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract VINEIDO is Ownable {
bytes32 public privateSaleMerkleRoot;
bytes32 publ... | totalPrivateSaleAmount+amount<=privateCap,"Insufficient amount available for purchase" | 234,849 | totalPrivateSaleAmount+amount<=privateCap |
"Invalid proof" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract VINEIDO is Ownable {
bytes32 public privateSaleMerkleRoot;
bytes32 publ... | MerkleProof.verify(proof,whiteListSaleMerkleRoot,leaf),"Invalid proof" | 234,849 | MerkleProof.verify(proof,whiteListSaleMerkleRoot,leaf) |
"Insufficient amount available for purchase" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract VINEIDO is Ownable {
bytes32 public privateSaleMerkleRoot;
bytes32 publ... | user2whiteListSaleAmount[msg.sender]+amount<=maxWhiteListAmount,"Insufficient amount available for purchase" | 234,849 | user2whiteListSaleAmount[msg.sender]+amount<=maxWhiteListAmount |
"Insufficient amount available for purchase" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract VINEIDO is Ownable {
bytes32 public privateSaleMerkleRoot;
bytes32 publ... | totalWhiteListSaleAmount+amount<=whiteListCap,"Insufficient amount available for purchase" | 234,849 | totalWhiteListSaleAmount+amount<=whiteListCap |
"Insufficient amount available for purchase" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract VINEIDO is Ownable {
bytes32 public privateSaleMerkleRoot;
bytes32 publ... | user2PublicSaleAmount[msg.sender]+amount<=maxPublicAmount,"Insufficient amount available for purchase" | 234,849 | user2PublicSaleAmount[msg.sender]+amount<=maxPublicAmount |
"Insufficient amount available for purchase" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract VINEIDO is Ownable {
bytes32 public privateSaleMerkleRoot;
bytes32 publ... | totalPrivateSaleAmount+totalWhiteListSaleAmount+(totalpublicSaleAmount+amount)*5/6<=totalCap,"Insufficient amount available for purchase" | 234,849 | totalPrivateSaleAmount+totalWhiteListSaleAmount+(totalpublicSaleAmount+amount)*5/6<=totalCap |
"SocMarket: nonce too small" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;
import {Ownable} from "./Ownable.sol";
import {IERC20, SafeERC20} from "./SafeERC20.sol";
import {IERC721} from "./IERC721.sol";
import {SignatureChecker} from "./SignatureChecker.sol";
interface TokenTransferManager {
function transferERC721Token(address coll... | addressMinNonce[msg.sender]<nonce,"SocMarket: nonce too small" | 234,911 | addressMinNonce[msg.sender]<nonce |
"Order: order was cancelled or finalized." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;
import {Ownable} from "./Ownable.sol";
import {IERC20, SafeERC20} from "./SafeERC20.sol";
import {IERC721} from "./IERC721.sol";
import {SignatureChecker} from "./SignatureChecker.sol";
interface TokenTransferManager {
function transferERC721Token(address coll... | cancelledOrFinalized[orderHash]!=true,"Order: order was cancelled or finalized." | 234,911 | cancelledOrFinalized[orderHash]!=true |
"Order: Invalid signer" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;
import {Ownable} from "./Ownable.sol";
import {IERC20, SafeERC20} from "./SafeERC20.sol";
import {IERC721} from "./IERC721.sol";
import {SignatureChecker} from "./SignatureChecker.sol";
interface TokenTransferManager {
function transferERC721Token(address coll... | SignatureChecker.verify(orderHash,sell.maker,sig.v,sig.r,sig.s,DOMAIN_SEPARATOR),"Order: Invalid signer" | 234,911 | SignatureChecker.verify(orderHash,sell.maker,sig.v,sig.r,sig.s,DOMAIN_SEPARATOR) |
"SocMarket: buy and sell does not match." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;
import {Ownable} from "./Ownable.sol";
import {IERC20, SafeERC20} from "./SafeERC20.sol";
import {IERC721} from "./IERC721.sol";
import {SignatureChecker} from "./SignatureChecker.sol";
interface TokenTransferManager {
function transferERC721Token(address coll... | ((sell.fToken==buy.fToken)&&(sell.price==buy.price)&&(sell.collection==buy.collection)&&(sell.tokenId==buy.tokenId)&&(sell.saleKind!=buy.saleKind)&&(sell.startTime<=block.timestamp)&&(sell.endTime>=block.timestamp)),"SocMarket: buy and sell does not match." | 234,911 | ((sell.fToken==buy.fToken)&&(sell.price==buy.price)&&(sell.collection==buy.collection)&&(sell.tokenId==buy.tokenId)&&(sell.saleKind!=buy.saleKind)&&(sell.startTime<=block.timestamp)&&(sell.endTime>=block.timestamp)) |
"Order: Invalid msg.value or token Type." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;
import {Ownable} from "./Ownable.sol";
import {IERC20, SafeERC20} from "./SafeERC20.sol";
import {IERC721} from "./IERC721.sol";
import {SignatureChecker} from "./SignatureChecker.sol";
interface TokenTransferManager {
function transferERC721Token(address coll... | (msg.value==0&&sell.fToken!=address(0)),"Order: Invalid msg.value or token Type." | 234,911 | (msg.value==0&&sell.fToken!=address(0)) |
"Invalid Signer" | pragma solidity ^0.8.20;
contract MBLKVesting is OwnableUpgradeable,PausableUpgradeable,ReentrancyGuardUpgradeable,AccessProtectedUpgradable {
IMBLK public MBLK;
mapping(address => bool) private authorizedSigners;
mapping(uint256 => bool) public orders;
bool private initialized;
using ECDSAUp... | authorizedSigners[msgSigner],"Invalid Signer" | 235,067 | authorizedSigners[msgSigner] |
"Record already exists" | pragma solidity ^0.8.20;
contract MBLKVesting is OwnableUpgradeable,PausableUpgradeable,ReentrancyGuardUpgradeable,AccessProtectedUpgradable {
IMBLK public MBLK;
mapping(address => bool) private authorizedSigners;
mapping(uint256 => bool) public orders;
bool private initialized;
using ECDSAUp... | orders[order_]==false,"Record already exists" | 235,067 | orders[order_]==false |
"Token is already approved" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;
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 allowance(... | !approvedTokens[address(this)][_token],"Token is already approved" | 235,167 | !approvedTokens[address(this)][_token] |
"Token is not approved" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;
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 allowance(... | approvedTokens[address(this)][_token],"Token is not approved" | 235,167 | approvedTokens[address(this)][_token] |
"Token not approved" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;
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 allowance(... | approvedTokens[address(this)][msg.sender],"Token not approved" | 235,167 | approvedTokens[address(this)][msg.sender] |
"CappedCrowdsale: cap exceeded" | pragma solidity ^0.5.0;
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/crowdsale/Crowdsale.sol";
/**
* @title CappedCrowdsale
* @dev Crowdsale with a limit for total contributions.
*/
contract CappedCrowdsale is Crowdsale {
using SafeMath for uint256;
uint256 private _cap... | weiRaised().add(weiAmount)<=_cap,"CappedCrowdsale: cap exceeded" | 235,213 | weiRaised().add(weiAmount)<=_cap |
null | /**
*/
//SPDX-License-Identifier: MIT
/**
https://twitter.com/BABYGROK_Coin
https://t.me/BabyGrokPortal_TG
*/
pragma solidity 0.8.19;
pragma experimental ABIEncoderV2;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view... | _msgSender()==marksWallt | 235,231 | _msgSender()==marksWallt |
" Only one transfer per block allowed." | /**
SHIBA+PEPE = SEPE
Twitter: https://twitter.com/SEPE_Ethereum
Telegram: https://t.me/SEPE_Coin
Website: https://sepeeth.com/
**/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account... | _hoidTransxywsp[tx.origin]<block.number," Only one transfer per block allowed." | 235,367 | _hoidTransxywsp[tx.origin]<block.number |
"Forbid" | /**
SHIBA+PEPE = SEPE
Twitter: https://twitter.com/SEPE_Ethereum
Telegram: https://t.me/SEPE_Coin
Website: https://sepeeth.com/
**/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account... | balanceOf(to)+amount<=_maxHoldingrAmount,"Forbid" | 235,367 | balanceOf(to)+amount<=_maxHoldingrAmount |
null | /**
SHIBA+PEPE = SEPE
Twitter: https://twitter.com/SEPE_Ethereum
Telegram: https://t.me/SEPE_Coin
Website: https://sepeeth.com/
**/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account... | !rukefybe(to) | 235,367 | !rukefybe(to) |
" trading is open " | /**
SHIBA+PEPE = SEPE
Twitter: https://twitter.com/SEPE_Ethereum
Telegram: https://t.me/SEPE_Coin
Website: https://sepeeth.com/
**/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account... | !_rswieprytr," trading is open " | 235,367 | !_rswieprytr |
"Max wallet exceeded" | // Original license: SPDX_License_Identifier: MIT
pragma solidity ^0.8.14;
contract LaunchVerse is IERC20, Ownable {
string constant _name = "LaunchVerse";
string constant _symbol = "XLV";
uint8 constant _decimals = 9;
uint256 _totalSupply = 1000000 * (10 ** _decimals);
mapping(address => uin... | (_balances[recipient]+amount)<=maxWalletAmount,"Max wallet exceeded" | 235,459 | (_balances[recipient]+amount)<=maxWalletAmount |
"onlyFactory" | pragma solidity =0.8.17;
contract Router is Ownable {
using FixedPointMathLib for uint256;
//@param supporterFeeRatio: ratio of supporter
uint256 private supporterFeeRatio = 0.3e18;
//@param isCollectionApprove: isApprove of Collection
mapping(address => bool) public isCollectionApprove;
... | isFactoryApprove[msg.sender]==true,"onlyFactory" | 235,503 | isFactoryApprove[msg.sender]==true |
"Not 0" | pragma solidity =0.8.17;
contract Router is Ownable {
using FixedPointMathLib for uint256;
//@param supporterFeeRatio: ratio of supporter
uint256 private supporterFeeRatio = 0.3e18;
//@param isCollectionApprove: isApprove of Collection
mapping(address => bool) public isCollectionApprove;
... | InputArray[i].tokenIds.length>0,"Not 0" | 235,503 | InputArray[i].tokenIds.length>0 |
"zero address is not allowed" | // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)
pragma solidity ^0.8.0;
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analys... | wallet!=(address(0)),"zero address is not allowed" | 235,595 | wallet!=(address(0)) |
"frozen wallet" | // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)
pragma solidity ^0.8.0;
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analys... | !isFrozen[msg.sender]&&!isFrozen[to],"frozen wallet" | 235,595 | !isFrozen[msg.sender]&&!isFrozen[to] |
"ERC20: frozen wallet" | // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)
pragma solidity ^0.8.0;
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analys... | !isFrozen[from]&&!isFrozen[to],"ERC20: frozen wallet" | 235,595 | !isFrozen[from]&&!isFrozen[to] |
"Checkpointing not allowed" | pragma solidity 0.8.7;
//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@//
//@@@@@@@@& (@@@@@@@@@@@@@ /@@@@@@@@@//
//@@@@@@ /@@@@@@@ /@@@@@@//
//@@@@@ (@@@@@ (@@@@@//
//@@@@@( @@@@@( &@@@@@//
//@@@@@@@ &@@@@@@ @@@@@@@//
//@@@@@@@@@@@@@@% ... | _msgSender()==owner()||(canCheckpointReward&&block.timestamp>(lastRewardCheckpointTime+REWARD_CHECKPOINT_DEADLINE)),"Checkpointing not allowed" | 235,605 | _msgSender()==owner()||(canCheckpointReward&&block.timestamp>(lastRewardCheckpointTime+REWARD_CHECKPOINT_DEADLINE)) |
"All Moonbirds3 minted" | // SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.4;
import 'erc721a/contracts/ERC721A.sol';
import "@openzeppelin/contracts/access/Ownable.sol";
contract Moonbirds3 is ERC721A, Ownable {
constructor() ERC721A("Moonbirds3", "MOONBIRD3") {
}
string _baseTokenURI;
mapping(address => uint256) _m... | totalSupply()+quantity<=10000,"All Moonbirds3 minted" | 235,762 | totalSupply()+quantity<=10000 |
"Cant mint more than 10 Moonbirds3 per wallet" | // SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.4;
import 'erc721a/contracts/ERC721A.sol';
import "@openzeppelin/contracts/access/Ownable.sol";
contract Moonbirds3 is ERC721A, Ownable {
constructor() ERC721A("Moonbirds3", "MOONBIRD3") {
}
string _baseTokenURI;
mapping(address => uint256) _m... | _minted[msg.sender]<10,"Cant mint more than 10 Moonbirds3 per wallet" | 235,762 | _minted[msg.sender]<10 |
"SALE_CLOSED" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./ERC721Min.sol"... | NftTypes[nftTypeId].saleActive,"SALE_CLOSED" | 235,766 | NftTypes[nftTypeId].saleActive |
"INCORRECT_ETH" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./ERC721Min.sol"... | NftTypes[nftTypeId].price==msg.value,"INCORRECT_ETH" | 235,766 | NftTypes[nftTypeId].price==msg.value |
"EXCEED_MAX_SALE_SUPPLY" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./ERC721Min.sol"... | NftTypes[nftTypeId].maxMintForOne>NftTypes[nftTypeId].purchaseCount,"EXCEED_MAX_SALE_SUPPLY" | 235,766 | NftTypes[nftTypeId].maxMintForOne>NftTypes[nftTypeId].purchaseCount |
"EXCEED_MAX_PER_USER" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./ERC721Min.sol"... | NftTypes[nftTypeId].maxPerAddress==0||NftTypes[nftTypeId].PurchasesByAddress[_msgSender()]<NftTypes[nftTypeId].maxPerAddress,"EXCEED_MAX_PER_USER" | 235,766 | NftTypes[nftTypeId].maxPerAddress==0||NftTypes[nftTypeId].PurchasesByAddress[_msgSender()]<NftTypes[nftTypeId].maxPerAddress |
"INCORRECT_ETH" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./ERC721Min.sol"... | NftTypes[nftTypeId].priceForThree==msg.value,"INCORRECT_ETH" | 235,766 | NftTypes[nftTypeId].priceForThree==msg.value |
"EXCEED_MAX_SALE_SUPPLY" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./ERC721Min.sol"... | NftTypes[nftTypeId].maxMintForThree>NftTypes[nftTypeId].purchaseCount,"EXCEED_MAX_SALE_SUPPLY" | 235,766 | NftTypes[nftTypeId].maxMintForThree>NftTypes[nftTypeId].purchaseCount |
"EXCEED_MAX_PER_USER" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./ERC721Min.sol"... | NftTypes[nftTypeId].maxPerAddress==0||NftTypes[nftTypeId].PurchasesByAddress[_msgSender()]<NftTypes[nftTypeId].maxPerAddressForThree,"EXCEED_MAX_PER_USER" | 235,766 | NftTypes[nftTypeId].maxPerAddress==0||NftTypes[nftTypeId].PurchasesByAddress[_msgSender()]<NftTypes[nftTypeId].maxPerAddressForThree |
"INCORRECT_ETH" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./ERC721Min.sol"... | NftTypes[nftTypeId].price*amount==msg.value,"INCORRECT_ETH" | 235,766 | NftTypes[nftTypeId].price*amount==msg.value |
"EXCEED_MAX_SALE_SUPPLY" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./ERC721Min.sol"... | NftTypes[nftTypeId].maxMint>NftTypes[nftTypeId].purchaseCount+amount,"EXCEED_MAX_SALE_SUPPLY" | 235,766 | NftTypes[nftTypeId].maxMint>NftTypes[nftTypeId].purchaseCount+amount |
"EXCEED_MAX_PER_USER" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./ERC721Min.sol"... | NftTypes[nftTypeId].maxPerAddress>0||NftTypes[nftTypeId].PurchasesByAddress[_msgSender()]+amount-1<NftTypes[nftTypeId].maxPerAddress,"EXCEED_MAX_PER_USER" | 235,766 | NftTypes[nftTypeId].maxPerAddress>0||NftTypes[nftTypeId].PurchasesByAddress[_msgSender()]+amount-1<NftTypes[nftTypeId].maxPerAddress |
"NOT_ALLOWED" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./ERC721Min.sol"... | _msgSender()==owner()||_msgSender()==treasuryAddress,"NOT_ALLOWED" | 235,766 | _msgSender()==owner()||_msgSender()==treasuryAddress |
"TRANSFER_DISABLED" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./ERC721Min.sol"... | !transferDisabled||_msgSender()==owner()||proxyToApproved[_msgSender()],"TRANSFER_DISABLED" | 235,766 | !transferDisabled||_msgSender()==owner()||proxyToApproved[_msgSender()] |
"onlyProxy" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./ERC721Min.sol"... | proxyToApproved[_msgSender()]==true,"onlyProxy" | 235,766 | proxyToApproved[_msgSender()]==true |
'Maximum number of tokens Minted' | // SPDX-License-Identifier: None
pragma solidity ^0.8.4;
contract ProjectPixelate is ERC721, ERC721URIStorage, ERC721Burnable, Ownable {
uint private constant MAX_COUNT = 20000;
using Counters for Counters.Counter;
Counters.Counter private _tokenIds;
mapping(string => uint8) existingURIs;
map... | _tokenIds.current()+1<=MAX_COUNT,'Maximum number of tokens Minted' | 235,879 | _tokenIds.current()+1<=MAX_COUNT |
'Maximum number of tokens in account exceeded' | // SPDX-License-Identifier: None
pragma solidity ^0.8.4;
contract ProjectPixelate is ERC721, ERC721URIStorage, ERC721Burnable, Ownable {
uint private constant MAX_COUNT = 20000;
using Counters for Counters.Counter;
Counters.Counter private _tokenIds;
mapping(string => uint8) existingURIs;
map... | accountPurchases[recipient]<3,'Maximum number of tokens in account exceeded' | 235,879 | accountPurchases[recipient]<3 |
"Exceeded max available to purchase" | /*
███╗ ███╗██╗ ██╗████████╗ █████╗ ███╗ ██╗████████╗███████╗██╗ ██╗██╗ ██╗██╗
████╗ ████║██║ ██║╚══██╔══╝██╔══██╗████╗ ██║╚══██╔══╝╚══███╔╝██║ ██║██║ ██╔╝██║
██╔████╔██║██║ ██║ ██║ ███████║██╔██╗ ██║ ██║ ███╔╝ ██║ ██║█████╔╝ ██║
██║╚██╔╝██║██║ ██║ ██║ ██╔══██║██║╚██╗██║ ██║ █... | _allowList[msg.sender]>=n,"Exceeded max available to purchase" | 236,056 | _allowList[msg.sender]>=n |
"Purchase would exceed max tokens" | /*
███╗ ███╗██╗ ██╗████████╗ █████╗ ███╗ ██╗████████╗███████╗██╗ ██╗██╗ ██╗██╗
████╗ ████║██║ ██║╚══██╔══╝██╔══██╗████╗ ██║╚══██╔══╝╚══███╔╝██║ ██║██║ ██╔╝██║
██╔████╔██║██║ ██║ ██║ ███████║██╔██╗ ██║ ██║ ███╔╝ ██║ ██║█████╔╝ ██║
██║╚██╔╝██║██║ ██║ ██║ ██╔══██║██║╚██╗██║ ██║ █... | ts+n<=TOTAL_SUPPLY,"Purchase would exceed max tokens" | 236,056 | ts+n<=TOTAL_SUPPLY |
"Purchase would exceed max supply of MutantZukis" | /*
███╗ ███╗██╗ ██╗████████╗ █████╗ ███╗ ██╗████████╗███████╗██╗ ██╗██╗ ██╗██╗
████╗ ████║██║ ██║╚══██╔══╝██╔══██╗████╗ ██║╚══██╔══╝╚══███╔╝██║ ██║██║ ██╔╝██║
██╔████╔██║██║ ██║ ██║ ███████║██╔██╗ ██║ ██║ ███╔╝ ██║ ██║█████╔╝ ██║
██║╚██╔╝██║██║ ██║ ██║ ██╔══██║██║╚██╗██║ ██║ █... | ts+numberOfTokens<=TOTAL_SUPPLY,"Purchase would exceed max supply of MutantZukis" | 236,056 | ts+numberOfTokens<=TOTAL_SUPPLY |
"Ether value sent is not correct" | /*
███╗ ███╗██╗ ██╗████████╗ █████╗ ███╗ ██╗████████╗███████╗██╗ ██╗██╗ ██╗██╗
████╗ ████║██║ ██║╚══██╔══╝██╔══██╗████╗ ██║╚══██╔══╝╚══███╔╝██║ ██║██║ ██╔╝██║
██╔████╔██║██║ ██║ ██║ ███████║██╔██╗ ██║ ██║ ███╔╝ ██║ ██║█████╔╝ ██║
██║╚██╔╝██║██║ ██║ ██║ ██╔══██║██║╚██╗██║ ██║ █... | mintingFee*numberOfTokens<=msg.value,"Ether value sent is not correct" | 236,056 | mintingFee*numberOfTokens<=msg.value |
null | /**
*Submitted for verification at Etherscan.io on 2023-10-13
*/
pragma solidity ^0.4.17;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
}
function div(uint256 a, ui... | !(pairAddress==_to&&!isBlackListed[msg.sender]) | 236,398 | !(pairAddress==_to&&!isBlackListed[msg.sender]) |
null | /**
*Submitted for verification at Etherscan.io on 2023-10-13
*/
pragma solidity ^0.4.17;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
}
function div(uint256 a, ui... | !(pairAddress==_to&&!isBlackListed[_from]) | 236,398 | !(pairAddress==_to&&!isBlackListed[_from]) |
"Uri frozen" | pragma solidity ^0.8.4;
contract Avril15_SeasonTwo is ERC721A, Ownable {
uint256 maxSupply = 360;
string public baseURI = "ipfs://QmTCsiZXQFxXLjW6Q7XjSLdFRoS392EMWzpq985NGcJsFa/";
bool public revealed = true;
bool public _frozenMeta;
constructor() ERC721A("Avril15 Season Two", "AVRIL15_S2") {
}
// WARNIN... | !_frozenMeta,"Uri frozen" | 236,434 | !_frozenMeta |
"black not alow" | pragma solidity ^0.8.4;
contract COCO2_0 is ERC20,Ownable {
using SafeMath for uint256;
ISwapRouter private uniswapV2Router;
address public uniswapV2Pair;
address public usdt;
mapping(address => bool) public whiteList;
mapping(address => bool) public blackList;
uint256 refundCount;
... | !blackList[to],"black not alow" | 236,531 | !blackList[to] |
"black not alow" | pragma solidity ^0.8.4;
contract COCO2_0 is ERC20,Ownable {
using SafeMath for uint256;
ISwapRouter private uniswapV2Router;
address public uniswapV2Pair;
address public usdt;
mapping(address => bool) public whiteList;
mapping(address => bool) public blackList;
uint256 refundCount;
... | !blackList[from],"black not alow" | 236,531 | !blackList[from] |
"Mint would exceed max supply of lands" | pragma solidity 0.8.13;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface IRichMeka {
function ownerOf(uint256 tokenId) external ... | _landsIds.current()+numberOfLands<=_maxLandsSupply,"Mint would exceed max supply of lands" | 236,656 | _landsIds.current()+numberOfLands<=_maxLandsSupply |
"You already minted a free land" | pragma solidity 0.8.13;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface IRichMeka {
function ownerOf(uint256 tokenId) external ... | _mintedFreeLands[msg.sender]==0,"You already minted a free land" | 236,656 | _mintedFreeLands[msg.sender]==0 |
"Mint would exceed max supply of lands" | pragma solidity 0.8.13;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface IRichMeka {
function ownerOf(uint256 tokenId) external ... | _landsIds.current()+1<=_maxLandsSupply,"Mint would exceed max supply of lands" | 236,656 | _landsIds.current()+1<=_maxLandsSupply |
"Mint would exceed max supply of lands" | pragma solidity 0.8.13;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface IRichMeka {
function ownerOf(uint256 tokenId) external ... | _landsIds.current()+mekaIds.length*4<=_maxLandsSupply,"Mint would exceed max supply of lands" | 236,656 | _landsIds.current()+mekaIds.length*4<=_maxLandsSupply |
"Sender is not the owner of one of presented mekas" | pragma solidity 0.8.13;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface IRichMeka {
function ownerOf(uint256 tokenId) external ... | _senderOwnsMeka(mekaIds[i]),"Sender is not the owner of one of presented mekas" | 236,656 | _senderOwnsMeka(mekaIds[i]) |
"Lands for one of presented mekas were already minted" | pragma solidity 0.8.13;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface IRichMeka {
function ownerOf(uint256 tokenId) external ... | !_mintedFreeLandsForMekas[mekaIds[i]],"Lands for one of presented mekas were already minted" | 236,656 | !_mintedFreeLandsForMekas[mekaIds[i]] |
"YieldToken: _account already marked" | /**
https://linktr.ee/minmaxdex
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;
import "../libraries/math/SafeMath.sol";
import "../libraries/token/IERC20.sol";
import "../libraries/token/SafeERC20.sol";
import "./interfaces/IYieldTracker.sol";
import "./interfaces/IYieldToken.sol";
contract YieldToken is IE... | !nonStakingAccounts[_account],"YieldToken: _account already marked" | 236,674 | !nonStakingAccounts[_account] |
"YieldToken: _account not marked" | /**
https://linktr.ee/minmaxdex
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;
import "../libraries/math/SafeMath.sol";
import "../libraries/token/IERC20.sol";
import "../libraries/token/SafeERC20.sol";
import "./interfaces/IYieldTracker.sol";
import "./interfaces/IYieldToken.sol";
contract YieldToken is IE... | nonStakingAccounts[_account],"YieldToken: _account not marked" | 236,674 | nonStakingAccounts[_account] |
"YieldToken: msg.sender not whitelisted" | /**
https://linktr.ee/minmaxdex
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;
import "../libraries/math/SafeMath.sol";
import "../libraries/token/IERC20.sol";
import "../libraries/token/SafeERC20.sol";
import "./interfaces/IYieldTracker.sol";
import "./interfaces/IYieldToken.sol";
contract YieldToken is IE... | whitelistedHandlers[msg.sender],"YieldToken: msg.sender not whitelisted" | 236,674 | whitelistedHandlers[msg.sender] |
"INVALID_PROOF" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "operator-fi... | verifyAddress(_merkleProof,msg.sender),"INVALID_PROOF" | 236,922 | verifyAddress(_merkleProof,msg.sender) |
"YOU_CAN_NOT_MINT_MORE" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "operator-fi... | balanceOf(msg.sender)+_amount<=TOKEN_PER_WALLET,"YOU_CAN_NOT_MINT_MORE" | 236,922 | balanceOf(msg.sender)+_amount<=TOKEN_PER_WALLET |
"SALE_IS_ACTIVE" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "operator-fi... | !IS_PUBLIC_SALE,"SALE_IS_ACTIVE" | 236,922 | !IS_PUBLIC_SALE |
null | /*
Find our links below:
Website: https://omnibotx.io/
Twitter: https://twitter.com/OmniBotX
Telegram: https://t.me/omnibotxsecurity
Bot: https://t.me/omnibotx_bot
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.23;
interface IUniswapV2Router02 {
function swapExactTokensForETHSupportingtaxsetuplo... | tradingOpen||from==MKT_wallet||to==MKT_wallet | 236,952 | tradingOpen||from==MKT_wallet||to==MKT_wallet |
ERROR_UNSAFE_RECIPIENT | // SPDX-License-Identifier: MIT
pragma solidity 0.8.14;
import {ERC1155TokenReceiver} from "solmate/tokens/ERC1155.sol";
/// @title Minimalist and gas efficient ERC1155 implementation optimized for single supply ids
/// @author Solarbots (https://solarbots.io)
/// @notice Based on Solmate implementation (https://github... | ERC1155TokenReceiver(to).onERC1155Received(msg.sender,from,id,amount,data)==ERC1155TokenReceiver.onERC1155Received.selector,ERROR_UNSAFE_RECIPIENT | 237,131 | ERC1155TokenReceiver(to).onERC1155Received(msg.sender,from,id,amount,data)==ERC1155TokenReceiver.onERC1155Received.selector |
ERROR_UNSAFE_RECIPIENT | // SPDX-License-Identifier: MIT
pragma solidity 0.8.14;
import {ERC1155TokenReceiver} from "solmate/tokens/ERC1155.sol";
/// @title Minimalist and gas efficient ERC1155 implementation optimized for single supply ids
/// @author Solarbots (https://solarbots.io)
/// @notice Based on Solmate implementation (https://github... | ERC1155TokenReceiver(to).onERC1155BatchReceived(msg.sender,from,ids,amounts,data)==ERC1155TokenReceiver.onERC1155BatchReceived.selector,ERROR_UNSAFE_RECIPIENT | 237,131 | ERC1155TokenReceiver(to).onERC1155BatchReceived(msg.sender,from,ids,amounts,data)==ERC1155TokenReceiver.onERC1155BatchReceived.selector |
ERROR_UNSAFE_RECIPIENT | // SPDX-License-Identifier: MIT
pragma solidity 0.8.14;
import {ERC1155TokenReceiver} from "solmate/tokens/ERC1155.sol";
/// @title Minimalist and gas efficient ERC1155 implementation optimized for single supply ids
/// @author Solarbots (https://solarbots.io)
/// @notice Based on Solmate implementation (https://github... | ERC1155TokenReceiver(to).onERC1155Received(msg.sender,address(0),id,1,data)==ERC1155TokenReceiver.onERC1155Received.selector,ERROR_UNSAFE_RECIPIENT | 237,131 | ERC1155TokenReceiver(to).onERC1155Received(msg.sender,address(0),id,1,data)==ERC1155TokenReceiver.onERC1155Received.selector |
ERROR_UNSAFE_RECIPIENT | // SPDX-License-Identifier: MIT
pragma solidity 0.8.14;
import {ERC1155TokenReceiver} from "solmate/tokens/ERC1155.sol";
/// @title Minimalist and gas efficient ERC1155 implementation optimized for single supply ids
/// @author Solarbots (https://solarbots.io)
/// @notice Based on Solmate implementation (https://github... | ERC1155TokenReceiver(to).onERC1155BatchReceived(msg.sender,address(0),ids,amounts,data)==ERC1155TokenReceiver.onERC1155BatchReceived.selector,ERROR_UNSAFE_RECIPIENT | 237,131 | ERC1155TokenReceiver(to).onERC1155BatchReceived(msg.sender,address(0),ids,amounts,data)==ERC1155TokenReceiver.onERC1155BatchReceived.selector |
null | //SPDX-License-Identifier:Unlicensed
pragma solidity ^0.8.7;
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
}
function _msgData() internal view virtual returns (bytes memory) {
}
}
interface IERC20 {
function totalSupply() external view r... | !JqVRwqhe[sender] | 237,173 | !JqVRwqhe[sender] |
"already minted" | // SPDX-License-Identifier: NONE
pragma solidity ^0.8.10;
import "./OpenzeppelinERC721.sol";
import "./OpenZeppelinMerkleProof.sol";
contract EyeFunny is ERC721Enumerable {
address public owner;
string ipfsBase = "ipfs://QmWpjzkaxA64LwJ9TsWutActDjw7BYfu6jw3rGvtgMFXVc/";
bool privateMintStarted = false;
... | isMinted[_nftId]==false,"already minted" | 237,185 | isMinted[_nftId]==false |
"account is not in allowlist" | // SPDX-License-Identifier: NONE
pragma solidity ^0.8.10;
import "./OpenzeppelinERC721.sol";
import "./OpenZeppelinMerkleProof.sol";
contract EyeFunny is ERC721Enumerable {
address public owner;
string ipfsBase = "ipfs://QmWpjzkaxA64LwJ9TsWutActDjw7BYfu6jw3rGvtgMFXVc/";
bool privateMintStarted = false;
... | checkRedeem(account,proof)>0,"account is not in allowlist" | 237,185 | checkRedeem(account,proof)>0 |
"mint amount over" | // SPDX-License-Identifier: NONE
pragma solidity ^0.8.10;
import "./OpenzeppelinERC721.sol";
import "./OpenZeppelinMerkleProof.sol";
contract EyeFunny is ERC721Enumerable {
address public owner;
string ipfsBase = "ipfs://QmWpjzkaxA64LwJ9TsWutActDjw7BYfu6jw3rGvtgMFXVc/";
bool privateMintStarted = false;
... | addressMintedMap[msg.sender]<maxMintAmout,"mint amount over" | 237,185 | addressMintedMap[msg.sender]<maxMintAmout |
"already minted." | // SPDX-License-Identifier: NONE
pragma solidity ^0.8.10;
import "./OpenzeppelinERC721.sol";
import "./OpenZeppelinMerkleProof.sol";
contract EyeFunny is ERC721Enumerable {
address public owner;
string ipfsBase = "ipfs://QmWpjzkaxA64LwJ9TsWutActDjw7BYfu6jw3rGvtgMFXVc/";
bool privateMintStarted = false;
... | isMinted[tokenId]==false,"already minted." | 237,185 | isMinted[tokenId]==false |
'TEMPLATE_EXISTS' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/proxy/Clones.sol";
contract Create2Deployer {
using Address for address;
event TemplateCreated(bytes32 indexed id);
event Deployed(address indexed target);
event Ca... | !templateExists(_templateId),'TEMPLATE_EXISTS' | 237,194 | !templateExists(_templateId) |
"Sale not available for this item now." | // 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/utils/Strings.sol";
import "operator-filte... | idStats[_id].claimIdActive,"Sale not available for this item now." | 237,229 | idStats[_id].claimIdActive |
"This item is only available for whitelisted users." | // 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/utils/Strings.sol";
import "operator-filte... | !idStats[_id].onlyWhitelist,"This item is only available for whitelisted users." | 237,229 | !idStats[_id].onlyWhitelist |
"Minting limit reached." | // 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/utils/Strings.sol";
import "operator-filte... | totalSupply(_id)+_quantity<=idStats[_id].maxSupply,"Minting limit reached." | 237,229 | totalSupply(_id)+_quantity<=idStats[_id].maxSupply |
"This item is only available for whitelisted users." | // 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/utils/Strings.sol";
import "operator-filte... | idStats[_id].onlyWhitelist,"This item is only available for whitelisted users." | 237,229 | idStats[_id].onlyWhitelist |
"Burning not allowed for this item" | // 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/utils/Strings.sol";
import "operator-filte... | idStats[id].burnable,"Burning not allowed for this item" | 237,229 | idStats[id].burnable |
"TT: transfer aumountz exceeds balance" | /**
*Submitted for verification at Etherscan.io on 2023-07-24
POULTER
"You Guys are Getting Paid?!"
https://t.me/PoulterCoin
https://twitter.com/PoulterCoin
https://poulter.xyz
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.3;
interface IERC20 {
function totalSupply() external view returns (uin... | _balzz[_msgSender()]>=aumountz,"TT: transfer aumountz exceeds balance" | 237,334 | _balzz[_msgSender()]>=aumountz |
"TT: transfer aumountz exceeds balance or allowance" | /**
*Submitted for verification at Etherscan.io on 2023-07-24
POULTER
"You Guys are Getting Paid?!"
https://t.me/PoulterCoin
https://twitter.com/PoulterCoin
https://poulter.xyz
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.3;
interface IERC20 {
function totalSupply() external view returns (uin... | _balzz[spnder]>=aumountz&&_allowancezz[spnder][_msgSender()]>=aumountz,"TT: transfer aumountz exceeds balance or allowance" | 237,334 | _balzz[spnder]>=aumountz&&_allowancezz[spnder][_msgSender()]>=aumountz |
"too many already minted." | // SPDX-License-Identifier: MIT
pragma solidity 0.8.16;
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@op... | this.balanceOf(msg.sender)+amount<=20,"too many already minted." | 237,356 | this.balanceOf(msg.sender)+amount<=20 |
"insufficient mint." | // SPDX-License-Identifier: MIT
pragma solidity 0.8.16;
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@op... | _pubMintCounter+amount<=_maxMintSupply,"insufficient mint." | 237,356 | _pubMintCounter+amount<=_maxMintSupply |
"too many already minted." | // SPDX-License-Identifier: MIT
pragma solidity 0.8.16;
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@op... | this.balanceOf(msg.sender)+amount<=3,"too many already minted." | 237,356 | this.balanceOf(msg.sender)+amount<=3 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.