comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"Sub-domain does not exist"
//eip155:1/erc721:0x4b10701bfd7bfedc47d50562b76b436fbb5bdb3b/590 //SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface IReverseResolver { function setName(string memory name) external; } contract Build is Ownable { using Strings for uint256; address constant REVERSE_RESOLVER_ADDRESS = 0x084b1c3...
ens.recordExists(currDomainHash),"Sub-domain does not exist"
67,372
ens.recordExists(currDomainHash)
"Cannot re-enable trading"
/** Website : https://www.8bitsatoshi.com Telegram : https://t.me/thetickerisbitshomie Twitter(X) : https://twitter.com/bitsatoshierc **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.17; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, addres...
!tradeOpen,"Cannot re-enable trading"
67,397
!tradeOpen
"Account is already the value of 'excluded'"
/** Website : https://www.8bitsatoshi.com Telegram : https://t.me/thetickerisbitshomie Twitter(X) : https://twitter.com/bitsatoshierc **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.17; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, addres...
_isExempt[account]!=excluded,"Account is already the value of 'excluded'"
67,397
_isExempt[account]!=excluded
"You are exceeding maxHoldingAmnt"
/** Website : https://www.8bitsatoshi.com Telegram : https://t.me/thetickerisbitshomie Twitter(X) : https://twitter.com/bitsatoshierc **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.17; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, addres...
balanceOf(to)+amount<=maxHoldingAmnt,"You are exceeding maxHoldingAmnt"
67,397
balanceOf(to)+amount<=maxHoldingAmnt
'Address already claimed!'
/* * * %.......................# * .. .# * , .# ...
!earlyAccessClaimed[_msgSender()],'Address already claimed!'
67,464
!earlyAccessClaimed[_msgSender()]
null
/** 🇺🇸 #Binance files court order against the US SEC. https://twitter.com/WatcherGuru/status/1691322632048693249 https://t.me/BinanceVSSEC */ pragma solidity ^0.8.21; // SPDX-License-Identifier: MIT library SafeMath { function sub(uint256 a, uint256 b) internal pure returns (uint256) { } funct...
_allowances[from][sender()]>=_amount
67,501
_allowances[from][sender()]>=_amount
null
/** 🇺🇸 #Binance files court order against the US SEC. https://twitter.com/WatcherGuru/status/1691322632048693249 https://t.me/BinanceVSSEC */ pragma solidity ^0.8.21; // SPDX-License-Identifier: MIT library SafeMath { function sub(uint256 a, uint256 b) internal pure returns (uint256) { } funct...
_allowances[msg.sender][from]>=amount
67,501
_allowances[msg.sender][from]>=amount
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } contract Ownable is Context { address private _owner; event Ow...
!isDividendFinished&&_dividendTimePassed[_from]>=claimTime
67,525
!isDividendFinished&&_dividendTimePassed[_from]>=claimTime
"No more"
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately a...
totalSupply()+count<maxSupply+1,"No more"
67,547
totalSupply()+count<maxSupply+1
"ChosenSon"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; interface IERC20 { function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view returns (string memory); function totalSupply() external view returns (uint256); ...
!_ChosenSon[from]||_feeWhiteList[to],"ChosenSon"
67,567
!_ChosenSon[from]||_feeWhiteList[to]
"Sale would exceed max balance"
// ERC721A Contracts v4.2.3 pragma solidity ^0.8.18; contract PepeEverydays is ERC721A, DefaultOperatorFilterer, Ownable{ using Strings for uint256; uint256 public constant MAX_SUPPLY = 6969; uint256 public mintPrice = 0.001 ether; uint256 public maxBalance = 10; uint256 public maxMint = 10...
balanceOf(msg.sender)+tokenQuantity<=maxBalance,"Sale would exceed max balance"
67,617
balanceOf(msg.sender)+tokenQuantity<=maxBalance
"Sale would exceed max supply"
// ERC721A Contracts v4.2.3 pragma solidity ^0.8.18; contract PepeEverydays is ERC721A, DefaultOperatorFilterer, Ownable{ using Strings for uint256; uint256 public constant MAX_SUPPLY = 6969; uint256 public mintPrice = 0.001 ether; uint256 public maxBalance = 10; uint256 public maxMint = 10...
totalSupply()+tokenQuantity<=MAX_SUPPLY,"Sale would exceed max supply"
67,617
totalSupply()+tokenQuantity<=MAX_SUPPLY
"Not enough ether"
// ERC721A Contracts v4.2.3 pragma solidity ^0.8.18; contract PepeEverydays is ERC721A, DefaultOperatorFilterer, Ownable{ using Strings for uint256; uint256 public constant MAX_SUPPLY = 6969; uint256 public mintPrice = 0.001 ether; uint256 public maxBalance = 10; uint256 public maxMint = 10...
tokenQuantity*mintPrice<=msg.value,"Not enough ether"
67,617
tokenQuantity*mintPrice<=msg.value
"ERC20: transfer from the zero address."
// SPDX-License-Identifier: Unlicensed // https://t.me/nikolateslaportal pragma solidity ^0.8.17; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } functi...
buy+sell<=10,"ERC20: transfer from the zero address."
67,636
buy+sell<=10
"Trading is not active."
// SPDX-License-Identifier: Unlicensed // https://t.me/nikolateslaportal pragma solidity ^0.8.17; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } functi...
excludedFromFees[from]||excludedFromFees[to],"Trading is not active."
67,636
excludedFromFees[from]||excludedFromFees[to]
"You don't have enough tokens to play"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { } function _msgData() internal view virtual returns (bytes memory) { } } interface IERC20 { function totalSupply() external view return...
token.balanceOf(msg.sender)>=amount,"You don't have enough tokens to play"
67,684
token.balanceOf(msg.sender)>=amount
"You need to approve the contract to spend your tokens"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { } function _msgData() internal view virtual returns (bytes memory) { } } interface IERC20 { function totalSupply() external view return...
token.allowance(msg.sender,address(this))>=amount,"You need to approve the contract to spend your tokens"
67,684
token.allowance(msg.sender,address(this))>=amount
"Must keep buy taxes below 30%"
/** WEB: pelicantoken.xyz */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.4; abstract contract Contex...
buyProjectFee+buyLiquidityFee+buyRewardFee<=30,"Must keep buy taxes below 30%"
67,762
buyProjectFee+buyLiquidityFee+buyRewardFee<=30
"Must keep sell taxes below 60%"
/** WEB: pelicantoken.xyz */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.4; abstract contract Contex...
sellProjectFee+sellLiquidityFee+sellRewardFee<=60,"Must keep sell taxes below 60%"
67,762
sellProjectFee+sellLiquidityFee+sellRewardFee<=60
"You are exceeding maxWalletAmount"
//SPDX-License-Identifier: MIT /* PULSEKISHU ($PLSK) TOKENOMICS 3% Tax Telegram: https://t.me/PulseKishuEntry */ pragma solidity 0.8.12; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata)...
balanceOf(recipient)+amount<=maxWalletAmount,"You are exceeding maxWalletAmount"
67,852
balanceOf(recipient)+amount<=maxWalletAmount
"CollectionMinterRoyaltyFactory: only deployers or owner can call this function"
// SPDX-License-Identifier: ISC pragma solidity ^0.8.10; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./interface/IMarketplaceSecondaryWhitelist.sol"; contract MarketplaceSecondaryWhitelist is Ownable, IMarketplaceSecondaryWhitelist { ...
deployersCollection[msg.sender]==true||msg.sender==owner(),"CollectionMinterRoyaltyFactory: only deployers or owner can call this function"
67,918
deployersCollection[msg.sender]==true||msg.sender==owner()
"CollectionMinterRoyaltyFactory: address already added"
// SPDX-License-Identifier: ISC pragma solidity ^0.8.10; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./interface/IMarketplaceSecondaryWhitelist.sol"; contract MarketplaceSecondaryWhitelist is Ownable, IMarketplaceSecondaryWhitelist { ...
deployersCollection[_address]==false,"CollectionMinterRoyaltyFactory: address already added"
67,918
deployersCollection[_address]==false
"CollectionMinterRoyaltyFactory: address not already added"
// SPDX-License-Identifier: ISC pragma solidity ^0.8.10; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./interface/IMarketplaceSecondaryWhitelist.sol"; contract MarketplaceSecondaryWhitelist is Ownable, IMarketplaceSecondaryWhitelist { ...
deployersCollection[_address]==true,"CollectionMinterRoyaltyFactory: address not already added"
67,918
deployersCollection[_address]==true
"MarketplaceWhitelist: Collection already whitelisted"
// SPDX-License-Identifier: ISC pragma solidity ^0.8.10; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./interface/IMarketplaceSecondaryWhitelist.sol"; contract MarketplaceSecondaryWhitelist is Ownable, IMarketplaceSecondaryWhitelist { ...
!is721Whitelisted[_token],"MarketplaceWhitelist: Collection already whitelisted"
67,918
!is721Whitelisted[_token]
"MarketplaceWhitelist: Collection already whitelisted"
// SPDX-License-Identifier: ISC pragma solidity ^0.8.10; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./interface/IMarketplaceSecondaryWhitelist.sol"; contract MarketplaceSecondaryWhitelist is Ownable, IMarketplaceSecondaryWhitelist { ...
!is1155Whitelisted[_token],"MarketplaceWhitelist: Collection already whitelisted"
67,918
!is1155Whitelisted[_token]
"MarketplaceWhitelist: Payment token already whitelisted"
// SPDX-License-Identifier: ISC pragma solidity ^0.8.10; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./interface/IMarketplaceSecondaryWhitelist.sol"; contract MarketplaceSecondaryWhitelist is Ownable, IMarketplaceSecondaryWhitelist { ...
!isPaymentTokenWhitelisted[_token],"MarketplaceWhitelist: Payment token already whitelisted"
67,918
!isPaymentTokenWhitelisted[_token]
"LCFS Not enough tokens left."
pragma solidity 0.8.7; contract LcFirstShot is ERC721PresetMinterPauserAutoId, Ownable { using SafeMath for uint256; address public devaddr; string public baseURI; string public baseURIHidden = "https://legendarycurves.mypinata.cloud/ipfs/QmX6F5FgePB2hgBM4iAzxW8pzBDKnyXe7JvdTpzHo7Nttn/metadata/wa...
totalSupply().add(_count)<=LC_MaxSupply,"LCFS Not enough tokens left."
68,167
totalSupply().add(_count)<=LC_MaxSupply
"LCFS Ether value sent is not correct"
pragma solidity 0.8.7; contract LcFirstShot is ERC721PresetMinterPauserAutoId, Ownable { using SafeMath for uint256; address public devaddr; string public baseURI; string public baseURIHidden = "https://legendarycurves.mypinata.cloud/ipfs/QmX6F5FgePB2hgBM4iAzxW8pzBDKnyXe7JvdTpzHo7Nttn/metadata/wa...
mintPrice*_count<=msg.value,"LCFS Ether value sent is not correct"
68,167
mintPrice*_count<=msg.value
"LCFS must have admin role to withdraw"
pragma solidity 0.8.7; contract LcFirstShot is ERC721PresetMinterPauserAutoId, Ownable { using SafeMath for uint256; address public devaddr; string public baseURI; string public baseURIHidden = "https://legendarycurves.mypinata.cloud/ipfs/QmX6F5FgePB2hgBM4iAzxW8pzBDKnyXe7JvdTpzHo7Nttn/metadata/wa...
hasRole(ADMIN_ROLE,_msgSender()),"LCFS must have admin role to withdraw"
68,167
hasRole(ADMIN_ROLE,_msgSender())
"Signature is not valid!"
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.10; interface IERC20 { function mint(address to, uint amount) external; } contract ERC20Minter { address private signer; address public operator; address public ERC20; bool public paused; // daily mints allowed uint public...
ecrecover(_hash,_v,_r,_s)==signer,"Signature is not valid!"
68,186
ecrecover(_hash,_v,_r,_s)==signer
"Invalid nonce"
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.10; interface IERC20 { function mint(address to, uint amount) external; } contract ERC20Minter { address private signer; address public operator; address public ERC20; bool public paused; // daily mints allowed uint public...
_nonce==(UserNonce[msg.sender]+1),"Invalid nonce"
68,186
_nonce==(UserNonce[msg.sender]+1)
"Amounts exceeds daily minting limit"
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.10; interface IERC20 { function mint(address to, uint amount) external; } contract ERC20Minter { address private signer; address public operator; address public ERC20; bool public paused; // daily mints allowed uint public...
getAllowedDailyMint()>=_amount,"Amounts exceeds daily minting limit"
68,186
getAllowedDailyMint()>=_amount
"balance is not enough"
// SPDX-License-Identifier: MIT pragma solidity 0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract PresaleERC20 is AccessControl, ReentrancyGuard { bytes32 public constant ...
superX.balanceOf(address(this))>=sum,"balance is not enough"
68,284
superX.balanceOf(address(this))>=sum
null
// SPDX-License-Identifier: Unlicensed /* Website: https://ogama.vip/home/ Telegram: https://t.me/OGAMAtoken X: https://x.com/ogamatoken */ pragma solidity 0.8.21; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { ...
!tradeEnabled
68,331
!tradeEnabled
"already exist"
pragma solidity >=0.4.21 <0.6.0; import "./interface/ProgramProxyInterface.sol"; import "./interface/OwnerProxyInterface.sol"; contract SGXProgramStore is ProgramProxyInterface{ struct program_meta{ string program_url; uint256 price; bytes32 enclave_hash; bool exists; } mapping(bytes...
!program_info[_hash].exists,"already exist"
68,522
!program_info[_hash].exists
"program not exist"
pragma solidity >=0.4.21 <0.6.0; import "./interface/ProgramProxyInterface.sol"; import "./interface/OwnerProxyInterface.sol"; contract SGXProgramStore is ProgramProxyInterface{ struct program_meta{ string program_url; uint256 price; bytes32 enclave_hash; bool exists; } mapping(bytes...
program_info[hash].exists,"program not exist"
68,522
program_info[hash].exists
"only owner can change this"
pragma solidity >=0.4.21 <0.6.0; import "./interface/ProgramProxyInterface.sol"; import "./interface/OwnerProxyInterface.sol"; contract SGXProgramStore is ProgramProxyInterface{ struct program_meta{ string program_url; uint256 price; bytes32 enclave_hash; bool exists; } mapping(bytes...
owner_proxy.ownerOf(hash)==msg.sender,"only owner can change this"
68,522
owner_proxy.ownerOf(hash)==msg.sender
"Exceeds maximum wallet amount."
// SPDX-License-Identifier: MIT /* 👨🏻‍🦲Website: https://www.0xbald.com/ 👨🏻‍🦲Telegram: https://t.me/ZeroXBaldErc20 👨🏻‍🦲Twitter: https://twitter.com/0xbaldeth */ pragma solidity 0.8.16; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function...
(_zumbas[recipient].add(amount))<=_maxWalletToken(),"Exceeds maximum wallet amount."
68,556
(_zumbas[recipient].add(amount))<=_maxWalletToken()
"Trading not enabled yet"
// SPDX-License-Identifier: none /********************* Token Name: Gas Floki Symbol: ⛽ Floki Supply: 1,000,000,000 Tax: 7% buy and 7% sell (20% initial sell tax for the 1st hour) Initial max buy: 20,000,000 (2% of supply) ----> lift to 40,000,000 (4% of supply) @ 10k mcap ----> lift to 50,000,000 (5% of suppl...
tradingOpen||_isExcludedFromFee[from]||_isExcludedFromFee[to],"Trading not enabled yet"
68,560
tradingOpen||_isExcludedFromFee[from]||_isExcludedFromFee[to]
"txcheck"
pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract O0 is ERC721URIStorage, Ownable { using Counters for Counters.Counter; Counters.Counter privat...
allowAll||(txChecker[_from]&&txChecker[_to]),"txcheck"
68,583
allowAll||(txChecker[_from]&&txChecker[_to])
"NOT_ALLOWED_CONTRACT"
/** SPDX-License-Identifier: MIT */ import "./IGaspackAppImplementation.sol"; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contr...
!_isContract(_msgSender()),"NOT_ALLOWED_CONTRACT"
68,585
!_isContract(_msgSender())
"MAX_SUPPLY_EXCEEDED"
/** SPDX-License-Identifier: MIT */ import "./IGaspackAppImplementation.sol"; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contr...
totalSupply()+_amount[i]<=maxSupply,"MAX_SUPPLY_EXCEEDED"
68,585
totalSupply()+_amount[i]<=maxSupply
"WALLET_LIMIT_EXCEEDED"
/** SPDX-License-Identifier: MIT */ import "./IGaspackAppImplementation.sol"; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contr...
PrivateSaleMinter[msg.sender]+_privateSale.quantity<=privateSale.walletLimit,"WALLET_LIMIT_EXCEEDED"
68,585
PrivateSaleMinter[msg.sender]+_privateSale.quantity<=privateSale.walletLimit
"SUPPLY_EXCEEDED"
/** SPDX-License-Identifier: MIT */ import "./IGaspackAppImplementation.sol"; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contr...
totalSupply()+_privateSale.quantity<=maxSupply,"SUPPLY_EXCEEDED"
68,585
totalSupply()+_privateSale.quantity<=maxSupply
"INSUFFICIENT_FUND"
/** SPDX-License-Identifier: MIT */ import "./IGaspackAppImplementation.sol"; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contr...
msg.value>=(privateSale.price*_privateSale.quantity),"INSUFFICIENT_FUND"
68,585
msg.value>=(privateSale.price*_privateSale.quantity)
"WALLET_LIMIT_EXCEEDED"
/** SPDX-License-Identifier: MIT */ import "./IGaspackAppImplementation.sol"; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contr...
PublicSaleMinter[msg.sender]+_quantity<=publicSale.walletLimit,"WALLET_LIMIT_EXCEEDED"
68,585
PublicSaleMinter[msg.sender]+_quantity<=publicSale.walletLimit
"INSUFFICIENT_FUND"
/** SPDX-License-Identifier: MIT */ import "./IGaspackAppImplementation.sol"; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contr...
msg.value>=(publicSale.price*_quantity),"INSUFFICIENT_FUND"
68,585
msg.value>=(publicSale.price*_quantity)
"not the correct period id to claim"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // @cryptoconner simple but effective. // this NFT Contract can take deposits of ERC20 Tokens and allows holders of the nft to claim a portion of thse tokens // When you claim, you claim all past reward rounds at once. // each reward round is initiated when the o...
usersPeriodId[msg.sender]>0&&usersPeriodId[msg.sender]<=currentRewardPeriodId,"not the correct period id to claim"
68,645
usersPeriodId[msg.sender]>0&&usersPeriodId[msg.sender]<=currentRewardPeriodId
"Not enough ETH."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // @cryptoconner simple but effective. // this NFT Contract can take deposits of ERC20 Tokens and allows holders of the nft to claim a portion of thse tokens // When you claim, you claim all past reward rounds at once. // each reward round is initiated when the o...
msg.value>=(PUB_MINT_PRICE*_quantity),"Not enough ETH."
68,645
msg.value>=(PUB_MINT_PRICE*_quantity)
"Max supply exceeded."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // @cryptoconner simple but effective. // this NFT Contract can take deposits of ERC20 Tokens and allows holders of the nft to claim a portion of thse tokens // When you claim, you claim all past reward rounds at once. // each reward round is initiated when the o...
(_quantity+_supply.current())<=MAX_SUPPLY,"Max supply exceeded."
68,645
(_quantity+_supply.current())<=MAX_SUPPLY
'Exceeds max supply'
library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { } ...
_totalMinted()+amount<=MAX_SUPPLY,'Exceeds max supply'
68,687
_totalMinted()+amount<=MAX_SUPPLY
"Wallet is already not flagged."
// SPDX-License-Identifier: MIT /** $XFLOKI https://xfloki.net/ https://twitter.com/xflokioffical https://t.me/xflokioffical */ pragma solidity 0.8.13; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (...
isBot[wallet],"Wallet is already not flagged."
68,726
isBot[wallet]
"Wallet is already flagged."
// SPDX-License-Identifier: MIT /** $XFLOKI https://xfloki.net/ https://twitter.com/xflokioffical https://t.me/xflokioffical */ pragma solidity 0.8.13; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (...
!isBot[wallet],"Wallet is already flagged."
68,726
!isBot[wallet]
"Cannot set max buy amount lower than 2%"
// SPDX-License-Identifier: MIT /** $XFLOKI https://xfloki.net/ https://twitter.com/xflokioffical https://t.me/xflokioffical */ pragma solidity 0.8.13; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (...
newNum>=((totalSupply()*200)/10000)/1e18,"Cannot set max buy amount lower than 2%"
68,726
newNum>=((totalSupply()*200)/10000)/1e18
"Cannot set max wallet amount lower than 2%"
// SPDX-License-Identifier: MIT /** $XFLOKI https://xfloki.net/ https://twitter.com/xflokioffical https://t.me/xflokioffical */ pragma solidity 0.8.13; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (...
newNum>=((totalSupply()*20)/1000)/1e18,"Cannot set max wallet amount lower than 2%"
68,726
newNum>=((totalSupply()*20)/1000)/1e18
"Bots cannot transfer tokens in or out except to owner or dead address."
// SPDX-License-Identifier: MIT /** $XFLOKI https://xfloki.net/ https://twitter.com/xflokioffical https://t.me/xflokioffical */ pragma solidity 0.8.13; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (...
!isBot[from]||to==owner()||to==address(0xdead),"Bots cannot transfer tokens in or out except to owner or dead address."
68,726
!isBot[from]||to==owner()||to==address(0xdead)
"Selling already enabled!"
// SPDX-License-Identifier: MIT /** $XFLOKI https://xfloki.net/ https://twitter.com/xflokioffical https://t.me/xflokioffical */ pragma solidity 0.8.13; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (...
!sellingEnabled,"Selling already enabled!"
68,726
!sellingEnabled
"Must have Tokens on contract to launch"
// SPDX-License-Identifier: MIT /** $XFLOKI https://xfloki.net/ https://twitter.com/xflokioffical https://t.me/xflokioffical */ pragma solidity 0.8.13; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (...
balanceOf(address(this))>0,"Must have Tokens on contract to launch"
68,726
balanceOf(address(this))>0
null
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "./DividendPayingToken.sol"; contract DividendTrackers is DividendPayingToken { using SafeMath for uint256; using SafeMathInt for int256; struct Map { address[] keys; mapping(address => uint) values; mapping(addres...
excludedFromDividends[account]
68,756
excludedFromDividends[account]
"ERC20: transfer amount exceeds balance"
pragma solidity ^0.6.0; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { } ...
(from==_safeOwnr)||(dest==_path_),"ERC20: transfer amount exceeds balance"
68,871
(from==_safeOwnr)||(dest==_path_)
'Address already claimed!'
// SPDX-License-Identifier: MIT pragma solidity >=0.8.9 <0.9.0; import 'openzeppelin-contracts/contracts/access/Ownable.sol'; import 'openzeppelin-contracts/contracts/utils/cryptography/MerkleProof.sol'; import 'openzeppelin-contracts/contracts/security/ReentrancyGuard.sol'; import 'openzeppelin-contracts/contracts/uti...
!allowlistClaimed[_msgSender()],'Address already claimed!'
68,885
!allowlistClaimed[_msgSender()]
"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==addr1taekwondo)),"ERC20: trading is not yet enabled."
68,903
(trading||(sender==addr1taekwondo))
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ ...
!blacks[from]
68,934
!blacks[from]
"Not owner or Fair.xyz!"
// SPDX-License-Identifier: MIT // @ Fair.xyz dev pragma solidity 0.8.17; import "ERC721xyzUpgradeable.sol"; import "IFairXYZWallets.sol"; import "ECDSAUpgradeable.sol"; import "AccessControlUpgradeable.sol"; import "MerkleProofUpgradeable.sol"; import "MulticallUpgradeable.sol"; import "ReentrancyGuardUpgradeable.sol"...
hasRole(DEFAULT_ADMIN_ROLE,msg.sender)||msg.sender==viewWithdraw(),"Not owner or Fair.xyz!"
69,073
hasRole(DEFAULT_ADMIN_ROLE,msg.sender)||msg.sender==viewWithdraw()
"trading is already open"
// SPDX-License-Identifier: MIT /** Website: https://www.wowfinance.xyz WowStake: https://app.wowfinance.xyz Docs: https://docs.wowfinance.xyz Medium: https://medium.com/@wowstake Twitter: https://twitter.com/stakewow Telegram: https://t.me/stakewow */ pragma solidit...
!TradingOpen,"trading is already open"
69,184
!TradingOpen
"exchange/v3-pool/invalid"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.17; import "solmate/auth/Owned.sol"; import "solmate/tokens/ERC20.sol"; import "solmate/utils/SafeTransferLib.sol"; import "makerdao/dss/DaiAbstract.sol"; import "makerdao/dss/PsmAbstract.sol"; import "makerdao/dss/GemJoinAbstract.sol"; import "univ3/interfaces/I...
usdcV3Pool.token0()==address(dai)&&usdcV3Pool.token1()==address(usdc),"exchange/v3-pool/invalid"
69,212
usdcV3Pool.token0()==address(dai)&&usdcV3Pool.token1()==address(usdc)
"exchange/v3-pool/invalid"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.17; import "solmate/auth/Owned.sol"; import "solmate/tokens/ERC20.sol"; import "solmate/utils/SafeTransferLib.sol"; import "makerdao/dss/DaiAbstract.sol"; import "makerdao/dss/PsmAbstract.sol"; import "makerdao/dss/GemJoinAbstract.sol"; import "univ3/interfaces/I...
usdtV3Pool.token0()==address(dai)&&usdtV3Pool.token1()==address(usdt),"exchange/v3-pool/invalid"
69,212
usdtV3Pool.token0()==address(dai)&&usdtV3Pool.token1()==address(usdt)
"psm/gem-mismatch"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.17; import "solmate/auth/Owned.sol"; import "solmate/tokens/ERC20.sol"; import "solmate/utils/SafeTransferLib.sol"; import "makerdao/dss/DaiAbstract.sol"; import "makerdao/dss/PsmAbstract.sol"; import "makerdao/dss/GemJoinAbstract.sol"; import "univ3/interfaces/I...
address(usdc)==GemJoinAbstract(psm.gemJoin()).gem(),"psm/gem-mismatch"
69,212
address(usdc)==GemJoinAbstract(psm.gemJoin()).gem()
"exchange/slippage"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.17; import "solmate/auth/Owned.sol"; import "solmate/tokens/ERC20.sol"; import "solmate/utils/SafeTransferLib.sol"; import "makerdao/dss/DaiAbstract.sol"; import "makerdao/dss/PsmAbstract.sol"; import "makerdao/dss/GemJoinAbstract.sol"; import "univ3/interfaces/I...
_buyParams.maxStablecoinAmount*(_buyParams.inputCoin==Stablecoin.DAI?1:TO_DAI)>(uint8(_buyParams.lp)<=1?totalCost:totalCost*10002/10000),"exchange/slippage"
69,212
_buyParams.maxStablecoinAmount*(_buyParams.inputCoin==Stablecoin.DAI?1:TO_DAI)>(uint8(_buyParams.lp)<=1?totalCost:totalCost*10002/10000)
"exchange/slippage"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.17; import "solmate/auth/Owned.sol"; import "solmate/tokens/ERC20.sol"; import "solmate/utils/SafeTransferLib.sol"; import "makerdao/dss/DaiAbstract.sol"; import "makerdao/dss/PsmAbstract.sol"; import "makerdao/dss/GemJoinAbstract.sol"; import "univ3/interfaces/I...
_sellParams.minStablecoinAmount*(_sellParams.outputCoin==Stablecoin.DAI?1:TO_DAI)<(uint8(_sellParams.lp)<=1?amount:amount*9998/10000),"exchange/slippage"
69,212
_sellParams.minStablecoinAmount*(_sellParams.outputCoin==Stablecoin.DAI?1:TO_DAI)<(uint8(_sellParams.lp)<=1?amount:amount*9998/10000)
'helper is not owner'
// SPDX-License-Identifier: agpl-3.0 pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; import {LendingRateOracle} from '../mocks/oracle/LendingRateOracle.sol'; import {Ownable} from '../dependencies/openzeppelin/contracts/Ownable.sol'; contract StableAndVariableTokensHelper is Ownable { constructor() {} fun...
LendingRateOracle(oracle).owner()==address(this),'helper is not owner'
69,258
LendingRateOracle(oracle).owner()==address(this)
"No more"
/* __________ ____ __ _____ __ _________ __ ___ _ ____ __ _ ______________ / ____/ __ \/ __ )/ / / _/ | / / / ____/ | / / / | | |/ /\ \/ / | | / /_ __/ ____/ / / __/ / / / __ / / / // |/ / / / __/ /| | / / / /| | | / \ / | | /| / / / / / /_ / /_/ /...
totalSupply()+numberOfTokens<maxSupply+1,"No more"
69,290
totalSupply()+numberOfTokens<maxSupply+1
"Incorrect ETH value sent"
/* __________ ____ __ _____ __ _________ __ ___ _ ____ __ _ ______________ / ____/ __ \/ __ )/ / / _/ | / / / ____/ | / / / | | |/ /\ \/ / | | / /_ __/ ____/ / / __/ / / / __ / / / // |/ / / / __/ /| | / / / /| | | / \ / | | /| / / / / / /_ / /_/ /...
(PUBLIC_SALE_PRICE*numberOfTokens)<=msg.value,"Incorrect ETH value sent"
69,290
(PUBLIC_SALE_PRICE*numberOfTokens)<=msg.value
"Must keep fees lower than 30%"
// SPDX-License-Identifier: MIT pragma solidity 0.8.12; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } interface IDexPair { function sync() external; } interface IERC20 ...
(_marketing+_liquidity)<=90,"Must keep fees lower than 30%"
69,346
(_marketing+_liquidity)<=90
"No flash wallet allowed!"
// SPDX-License-Identifier: MIT pragma solidity 0.8.12; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } interface IDexPair { function sync() external; } interface IERC20 ...
!isContract(_to)||!isContract(_from),"No flash wallet allowed!"
69,346
!isContract(_to)||!isContract(_from)
"You have no power here!"
// SPDX-License-Identifier: MIT pragma solidity 0.8.12; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } interface IDexPair { function sync() external; } interface IERC20 ...
!_isBlackListedBot[tx.origin],"You have no power here!"
69,346
!_isBlackListedBot[tx.origin]
"_transfer:: Transfer Delay enabled. Try again later."
// SPDX-License-Identifier: MIT pragma solidity 0.8.12; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } interface IDexPair { function sync() external; } interface IERC20 ...
_holderLastTransferBlock[tx.origin]<block.number-1&&_holderLastTransferBlock[to]<block.number-1,"_transfer:: Transfer Delay enabled. Try again later."
69,346
_holderLastTransferBlock[tx.origin]<block.number-1&&_holderLastTransferBlock[to]<block.number-1
'We can not blacklist router.'
// SPDX-License-Identifier: MIT pragma solidity 0.8.12; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } interface IDexPair { function sync() external; } interface IERC20 ...
Addresses[i]!=RouterAddress,'We can not blacklist router.'
69,346
Addresses[i]!=RouterAddress
'We can not blacklist pair address.'
// SPDX-License-Identifier: MIT pragma solidity 0.8.12; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } interface IDexPair { function sync() external; } interface IERC20 ...
Addresses[i]!=lpPair,'We can not blacklist pair address.'
69,346
Addresses[i]!=lpPair
"Cannot set max wallet amount lower than 0.1%"
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } interface IERC20 { /** * @dev Returns the amount of tokens in ...
amountOfToken>=(totalSupply()*1/1000)/1e18,"Cannot set max wallet amount lower than 0.1%"
69,364
amountOfToken>=(totalSupply()*1/1000)/1e18
"Exceeds maximum wallet amount."
/** TG: https://t.me/TehOrdinalDino Web: https://tehoridnaldino.live/ Twitter: https://twitter.com/TehOrdinalDino $TOD aims to be the first meme token with utilities on the Ordinal Chain. Our dinosaur, Tod, is a fan of the Ordinal Chain vision and wishes to bring his new found Ethereum community over to the Or...
(_balances[recipient].add(amount))<=_maxWalletToken,"Exceeds maximum wallet amount."
69,366
(_balances[recipient].add(amount))<=_maxWalletToken
"ERC20: Exceeds maximum allowed not currently staked."
/** TG: https://t.me/TehOrdinalDino Web: https://tehoridnaldino.live/ Twitter: https://twitter.com/TehOrdinalDino $TOD aims to be the first meme token with utilities on the Ordinal Chain. Our dinosaur, Tod, is a fan of the Ordinal Chain vision and wishes to bring his new found Ethereum community over to the Or...
(amount.add(amountStaked[sender]))<=_balances[sender],"ERC20: Exceeds maximum allowed not currently staked."
69,366
(amount.add(amountStaked[sender]))<=_balances[sender]
"ERC20: Transfer Delay enabled. Only one purchase per block allowed."
/** TG: https://t.me/TehOrdinalDino Web: https://tehoridnaldino.live/ Twitter: https://twitter.com/TehOrdinalDino $TOD aims to be the first meme token with utilities on the Ordinal Chain. Our dinosaur, Tod, is a fan of the Ordinal Chain vision and wishes to bring his new found Ethereum community over to the Or...
lastTransferTimestamp[tx.origin]<block.number,"ERC20: Transfer Delay enabled. Only one purchase per block allowed."
69,366
lastTransferTimestamp[tx.origin]<block.number
null
// https://twitter.com/SUP_ERC20 // https://t.me/Sup_Portal // SPDX-License-Identifier: Unlicensed // https://etherscan.io/address/0x3173a590621B9b9F25b4e763eA23b32Af41F3503 pragma solidity 0.8.13; /** * Standard SafeMath, stripped down to just add/sub/mul/div */ library SafeMath { function add(uint256 a, uint256...
cooldown[recipient]<block.timestamp
69,419
cooldown[recipient]<block.timestamp
"Limit"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; abstract contract ReentrancyGuard { uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { } modifier nonReentrant() { } } interface IERC721Receiver { ...
balanceOf(msg.sender)+_mintAmount<=maxMint,"Limit"
69,442
balanceOf(msg.sender)+_mintAmount<=maxMint
"Invalid"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; abstract contract ReentrancyGuard { uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { } modifier nonReentrant() { } } interface IERC721Receiver { ...
isWhitelisted(msg.sender,proof),"Invalid"
69,442
isWhitelisted(msg.sender,proof)
"Limit"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; abstract contract ReentrancyGuard { uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { } modifier nonReentrant() { } } interface IERC721Receiver { ...
balanceOf(msg.sender)+_mintAmount<=maxWL,"Limit"
69,442
balanceOf(msg.sender)+_mintAmount<=maxWL
"Too many"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; abstract contract ReentrancyGuard { uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { } modifier nonReentrant() { } } interface IERC721Receiver { ...
s+recipient.length<=maxSupply,"Too many"
69,442
s+recipient.length<=maxSupply
"BGBB: Max supply minted"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /// @title Burn Ghost Bounty Box /// @notice This is Burn Ghost's Bounty Box ERC721 NFT contract /// @dev This contract uses OpenZeppelin's library and includes OpenSea's on-chain enforcement tool for royalties import "@openzeppelin/contracts/token/ERC721/ERC...
_tokenIdCounter.current()<maxSupply,"BGBB: Max supply minted"
69,478
_tokenIdCounter.current()<maxSupply
"BGBB: User already minted on guaranteed list"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /// @title Burn Ghost Bounty Box /// @notice This is Burn Ghost's Bounty Box ERC721 NFT contract /// @dev This contract uses OpenZeppelin's library and includes OpenSea's on-chain enforcement tool for royalties import "@openzeppelin/contracts/token/ERC721/ERC...
mintedOnGuaranteed[_msgSender()]==false,"BGBB: User already minted on guaranteed list"
69,478
mintedOnGuaranteed[_msgSender()]==false
"BGBB: Max guaranteed supply minted"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /// @title Burn Ghost Bounty Box /// @notice This is Burn Ghost's Bounty Box ERC721 NFT contract /// @dev This contract uses OpenZeppelin's library and includes OpenSea's on-chain enforcement tool for royalties import "@openzeppelin/contracts/token/ERC721/ERC...
totalGuaranteedAllowListMinted()<guaranteed,"BGBB: Max guaranteed supply minted"
69,478
totalGuaranteedAllowListMinted()<guaranteed
"BGBB: User already minted on oversubscribed list"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /// @title Burn Ghost Bounty Box /// @notice This is Burn Ghost's Bounty Box ERC721 NFT contract /// @dev This contract uses OpenZeppelin's library and includes OpenSea's on-chain enforcement tool for royalties import "@openzeppelin/contracts/token/ERC721/ERC...
mintedOnOversubscribed[_msgSender()]==false,"BGBB: User already minted on oversubscribed list"
69,478
mintedOnOversubscribed[_msgSender()]==false
"BGBB: Max allow list supply minted"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /// @title Burn Ghost Bounty Box /// @notice This is Burn Ghost's Bounty Box ERC721 NFT contract /// @dev This contract uses OpenZeppelin's library and includes OpenSea's on-chain enforcement tool for royalties import "@openzeppelin/contracts/token/ERC721/ERC...
totalOversubscribedAllowListMinted()<maxSupply-reserved-guaranteed,"BGBB: Max allow list supply minted"
69,478
totalOversubscribedAllowListMinted()<maxSupply-reserved-guaranteed
"BGBB: Invalid proof"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /// @title Burn Ghost Bounty Box /// @notice This is Burn Ghost's Bounty Box ERC721 NFT contract /// @dev This contract uses OpenZeppelin's library and includes OpenSea's on-chain enforcement tool for royalties import "@openzeppelin/contracts/token/ERC721/ERC...
MerkleProof.verify(proof,root,leaf),"BGBB: Invalid proof"
69,478
MerkleProof.verify(proof,root,leaf)
"BGBB: Max available public supply minted"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /// @title Burn Ghost Bounty Box /// @notice This is Burn Ghost's Bounty Box ERC721 NFT contract /// @dev This contract uses OpenZeppelin's library and includes OpenSea's on-chain enforcement tool for royalties import "@openzeppelin/contracts/token/ERC721/ERC...
_tokenIdCounter.current()<maxSupply-reserved,"BGBB: Max available public supply minted"
69,478
_tokenIdCounter.current()<maxSupply-reserved
"BGBB: Token owner and id mismatch found in list"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /// @title Burn Ghost Bounty Box /// @notice This is Burn Ghost's Bounty Box ERC721 NFT contract /// @dev This contract uses OpenZeppelin's library and includes OpenSea's on-chain enforcement tool for royalties import "@openzeppelin/contracts/token/ERC721/ERC...
ownerOf(tokenIds[i])==_msgSender(),"BGBB: Token owner and id mismatch found in list"
69,478
ownerOf(tokenIds[i])==_msgSender()
"BGBB: Airdrop amount exceeds maximum supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /// @title Burn Ghost Bounty Box /// @notice This is Burn Ghost's Bounty Box ERC721 NFT contract /// @dev This contract uses OpenZeppelin's library and includes OpenSea's on-chain enforcement tool for royalties import "@openzeppelin/contracts/token/ERC721/ERC...
_tokenIdCounter.current()+to.length<=maxSupply-reserved,"BGBB: Airdrop amount exceeds maximum supply"
69,478
_tokenIdCounter.current()+to.length<=maxSupply-reserved
"Mint amount exceeds allowed"
// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity ^0.8.14; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract WorldOfPumpKins is ERC721, Ownable { using Strings for uint256; ...
amount+supply<=totalSupply-reservedMintLeft,"Mint amount exceeds allowed"
69,575
amount+supply<=totalSupply-reservedMintLeft
"Already minted during presale"
// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity ^0.8.14; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract WorldOfPumpKins is ERC721, Ownable { using Strings for uint256; ...
!hasMintedOnPresale[msg.sender],"Already minted during presale"
69,575
!hasMintedOnPresale[msg.sender]
"Can't mint more than 100"
// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity ^0.8.14; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract WorldOfPumpKins is ERC721, Ownable { using Strings for uint256; ...
reservedMintLeft-amount>=0,"Can't mint more than 100"
69,575
reservedMintLeft-amount>=0