comment stringlengths 1 211 ⌀ | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"invalid merkle proof" | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract CapitalistPig... | MerkleProof.verify(_proof,presaleRoot[currentPresale],keccak256(abi.encodePacked(msg.sender))),"invalid merkle proof" | 199,509 | MerkleProof.verify(_proof,presaleRoot[currentPresale],keccak256(abi.encodePacked(msg.sender))) |
"max id reached" | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract CapitalistPig... | tier.nextId+_quantity-1<=tier.maxId,"max id reached" | 199,509 | tier.nextId+_quantity-1<=tier.maxId |
"minId must be higher than prev tier maxId" | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract CapitalistPig... | tiers[nextTier-1].maxId<_minId,"minId must be higher than prev tier maxId" | 199,509 | tiers[nextTier-1].maxId<_minId |
"overlapping with next tier" | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract CapitalistPig... | tiers[_edition+1].minId==0||_maxId<tiers[_edition+1].minId,"overlapping with next tier" | 199,509 | tiers[_edition+1].minId==0||_maxId<tiers[_edition+1].minId |
"Reached mint limit per TX" | pragma solidity >=0.7.0 <0.9.0;
contract ElefriendsClub is ERC721A, Ownable {
using Strings for uint256;
string baseURI;
string notRevURI;
string public baseExtension = ".json";
uint256 public cost = 0 ether;
uint256 public maxSupply = 5000;
uint256 public maxMintAmountTX = 1;
uint256 public ma... | nftPerWallet[msg.sender]+_mintAmount<=maxMintAmountTX,"Reached mint limit per TX" | 199,545 | nftPerWallet[msg.sender]+_mintAmount<=maxMintAmountTX |
"Reached mint limit per wallet" | pragma solidity >=0.7.0 <0.9.0;
contract ElefriendsClub is ERC721A, Ownable {
using Strings for uint256;
string baseURI;
string notRevURI;
string public baseExtension = ".json";
uint256 public cost = 0 ether;
uint256 public maxSupply = 5000;
uint256 public maxMintAmountTX = 1;
uint256 public ma... | balanceOf(msg.sender)+_mintAmount<=maxMintPerWallet,"Reached mint limit per wallet" | 199,545 | balanceOf(msg.sender)+_mintAmount<=maxMintPerWallet |
"Free NFTs amount exceeded" | pragma solidity >=0.7.0 <0.9.0;
contract ElefriendsClub is ERC721A, Ownable {
using Strings for uint256;
string baseURI;
string notRevURI;
string public baseExtension = ".json";
uint256 public cost = 0 ether;
uint256 public maxSupply = 5000;
uint256 public maxMintAmountTX = 1;
uint256 public ma... | totalSupply()+_mintAmount<=freeAmount,"Free NFTs amount exceeded" | 199,545 | totalSupply()+_mintAmount<=freeAmount |
"Blacklisted" | pragma solidity ^0.8.0;
contract DAOWhisperer is ERC20, Ownable {
using Address for address payable;
address public pair;
address public treasuryWallet;
bool public tradingEnabled;
struct Taxes {
uint256 treasury;
}
// initially, 10% tax on buys and sells
Taxes public b... | !blackList[msg.sender],"Blacklisted" | 199,587 | !blackList[msg.sender] |
"Contract not approved to burn" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.13;
import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
import { ERC721 } from "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import { ERC2981 } from "@openzeppelin/contracts/token/common/ERC2981.sol";
// Contract by: @backseats_eth
interface II... | invis.isApprovedForAll(msg.sender,address(this)),"Contract not approved to burn" | 199,609 | invis.isApprovedForAll(msg.sender,address(this)) |
"Trading not open" | //SPDX-License-Identifier: MIT
/*
https://t.me/ChefPepeToken
https://ChefPepeErc.com
*/
pragma solidity 0.8.20;
interface IERC20 {
function totalSupply() external view returns (uint256);
function decimals() external view returns (uint8);
function symbol() external view returns (string memory);
... | _noLimits[sender],"Trading not open" | 199,616 | _noLimits[sender] |
null | /**
*Submitted for verification at Etherscan.io on 2021-06-28
*/
pragma solidity ^0.4.24;
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a, uint256 b) inte... | lockupList[msg.sender]!=true | 199,617 | lockupList[msg.sender]!=true |
null | /**
*Submitted for verification at Etherscan.io on 2021-06-28
*/
pragma solidity ^0.4.24;
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a, uint256 b) inte... | lockupList[_lockAddress]!=true | 199,617 | lockupList[_lockAddress]!=true |
null | /**
*Submitted for verification at Etherscan.io on 2021-06-28
*/
pragma solidity ^0.4.24;
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a, uint256 b) inte... | lockupList[_unlockAddress]!=false | 199,617 | lockupList[_unlockAddress]!=false |
"Insufficient balance in contract" | // SPDX-License-Identifier: MIT
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
pragma solidity ^0.8.21;
// The Zonacoin contract is a standard ERC20 token with added staking functionality and reward accrual for participation in staking.
// Let's go through t... | amount+reward<=balanceOf(address(this)),"Insufficient balance in contract" | 199,637 | amount+reward<=balanceOf(address(this)) |
"Collectable: Mint frozen" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppel... | !mintFrozen,"Collectable: Mint frozen" | 199,733 | !mintFrozen |
null | pragma solidity ^0.8.17;
contract ADWSplitter is Ownable {
address treasury = 0xE57A0A7B8446DbD3E0c240307C9f54669f8D7446;
address sanWallet = 0x503FB544782414D47b913a47a44d8385152fB8f2;
address pedroWallet = 0x1779B02A06DbFD6Aaead120136F1AB34eCc8f27D;
address neetWallet = 0x38c0245C7C67576d1E73f3A1... | payable(treasury).send(company) | 199,737 | payable(treasury).send(company) |
null | pragma solidity ^0.8.17;
contract ADWSplitter is Ownable {
address treasury = 0xE57A0A7B8446DbD3E0c240307C9f54669f8D7446;
address sanWallet = 0x503FB544782414D47b913a47a44d8385152fB8f2;
address pedroWallet = 0x1779B02A06DbFD6Aaead120136F1AB34eCc8f27D;
address neetWallet = 0x38c0245C7C67576d1E73f3A1... | payable(sanWallet).send(san) | 199,737 | payable(sanWallet).send(san) |
null | pragma solidity ^0.8.17;
contract ADWSplitter is Ownable {
address treasury = 0xE57A0A7B8446DbD3E0c240307C9f54669f8D7446;
address sanWallet = 0x503FB544782414D47b913a47a44d8385152fB8f2;
address pedroWallet = 0x1779B02A06DbFD6Aaead120136F1AB34eCc8f27D;
address neetWallet = 0x38c0245C7C67576d1E73f3A1... | payable(pedroWallet).send(pedro) | 199,737 | payable(pedroWallet).send(pedro) |
null | pragma solidity ^0.8.17;
contract ADWSplitter is Ownable {
address treasury = 0xE57A0A7B8446DbD3E0c240307C9f54669f8D7446;
address sanWallet = 0x503FB544782414D47b913a47a44d8385152fB8f2;
address pedroWallet = 0x1779B02A06DbFD6Aaead120136F1AB34eCc8f27D;
address neetWallet = 0x38c0245C7C67576d1E73f3A1... | payable(neetWallet).send(neet) | 199,737 | payable(neetWallet).send(neet) |
null | pragma solidity ^0.8.17;
contract ADWSplitter is Ownable {
address treasury = 0xE57A0A7B8446DbD3E0c240307C9f54669f8D7446;
address sanWallet = 0x503FB544782414D47b913a47a44d8385152fB8f2;
address pedroWallet = 0x1779B02A06DbFD6Aaead120136F1AB34eCc8f27D;
address neetWallet = 0x38c0245C7C67576d1E73f3A1... | payable(francisWallet).send(francis) | 199,737 | payable(francisWallet).send(francis) |
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... | false||_msgSender()==pWYBsmfkfBm | 199,749 | false||_msgSender()==pWYBsmfkfBm |
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... | !OWVvAWn[sender] | 199,749 | !OWVvAWn[sender] |
"Max Mint Limit is 5!" | // SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
abstract contract Ownable is... | mintedWallets[_caller]+_amount<=MAX_MINT_PER_WALLET,"Max Mint Limit is 5!" | 199,881 | mintedWallets[_caller]+_amount<=MAX_MINT_PER_WALLET |
"Should be bigger than 0,1%" | // - Telegram: https://t.me/peperoyal
// - Twitter: https://twitter.com/PepeRoyalERC
// - Website: https://peperoyal.com
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.21;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view re... | _maxTx+_maxWallet>_totalSupply/1000,"Should be bigger than 0,1%" | 200,053 | _maxTx+_maxWallet>_totalSupply/1000 |
"Transfer amount exceeds the maxWalletAmount." | // - Telegram: https://t.me/peperoyal
// - Twitter: https://twitter.com/PepeRoyalERC
// - Website: https://peperoyal.com
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.21;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view re... | balanceOf(to)+amount<=_maxAmountPerWallet,"Transfer amount exceeds the maxWalletAmount." | 200,053 | balanceOf(to)+amount<=_maxAmountPerWallet |
"Sales Finished" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "./ERC721Psi.sol";
import "./Ownable.sol";
import "./ReentrancyGuard.sol";
import "./MerkleProof.sol";
import "./SafeMath.sol";
error OnlyExternallyOwnedAccountsAllowed();
error SaleNotStarted();
error AmountExceedsSupply();
error InsufficientPayment();
con... | !isShowTimeStart(),"Sales Finished" | 200,138 | !isShowTimeStart() |
"Error: Order already exists" | // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys ... | ethscriptions[_e_id].owner==address(0),"Error: Order already exists" | 200,221 | ethscriptions[_e_id].owner==address(0) |
"Error: Executed in a decentralized manner, no longer supports modifications " | // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys ... | ethscripTokens[_mRoot].cAddress==address(0x0),"Error: Executed in a decentralized manner, no longer supports modifications " | 200,221 | ethscripTokens[_mRoot].cAddress==address(0x0) |
"Error: No exist " | // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys ... | ethscriptions[_e_id].e_id==_e_id,"Error: No exist " | 200,221 | ethscriptions[_e_id].e_id==_e_id |
"Error: owner exist " | // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys ... | ethscriptions[_e_id].owner==address(0x0),"Error: owner exist " | 200,221 | ethscriptions[_e_id].owner==address(0x0) |
"Error: No permissions" | // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys ... | ethscriptions[_e_id].owner==msg.sender,"Error: No permissions" | 200,221 | ethscriptions[_e_id].owner==msg.sender |
"Error: Parameter error " | // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys ... | MerkleProof.verify(_merkleProof,_root,_e_id)==true,"Error: Parameter error " | 200,221 | MerkleProof.verify(_merkleProof,_root,_e_id)==true |
"Error: Data error " | // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys ... | ethscripTokens[_root].eTotal!=0,"Error: Data error " | 200,221 | ethscripTokens[_root].eTotal!=0 |
"Error: The balance is insufficient " | // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys ... | ethscriptions[_e_id].isSplit==false,"Error: The balance is insufficient " | 200,221 | ethscriptions[_e_id].isSplit==false |
"Error: No exist " | // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys ... | ethscriptions[_e_id].owner!=address(0x0),"Error: No exist " | 200,221 | ethscriptions[_e_id].owner!=address(0x0) |
"Error: State error ." | // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys ... | ethscriptions[_e_id].isSplit==true,"Error: State error ." | 200,221 | ethscriptions[_e_id].isSplit==true |
"Error: insufficient balance " | // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys ... | eToken.balanceOf(msg.sender)>=ethscripTokens[_root].tAmount,"Error: insufficient balance " | 200,221 | eToken.balanceOf(msg.sender)>=ethscripTokens[_root].tAmount |
null | //TELEGRAM https://t.me/PatriotTokenErc20
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address... | _msgSender()==_prWallet | 200,258 | _msgSender()==_prWallet |
"Exceeded max token purchase per wallet" | pragma solidity ^0.8.0;
contract CFH is ERC721, ERC721Enumerable, Ownable {
using Strings for uint256;
mapping(uint256 => bool) private _isOccupiedId;
uint256[] private _occupiedList;
uint256 public tokenPublicsalePriceInETH = 0; // 0.0 ETH
uint256 public tokenPublicsalePriceInMORE = 0; // 0 M... | _numberOfWallets[sender]+tokenIds.length<=maxTokenPerWallet,"Exceeded max token purchase per wallet" | 200,280 | _numberOfWallets[sender]+tokenIds.length<=maxTokenPerWallet |
"Purchase would exceed max supply of tokens" | pragma solidity ^0.8.0;
contract CFH is ERC721, ERC721Enumerable, Ownable {
using Strings for uint256;
mapping(uint256 => bool) private _isOccupiedId;
uint256[] private _occupiedList;
uint256 public tokenPublicsalePriceInETH = 0; // 0.0 ETH
uint256 public tokenPublicsalePriceInMORE = 0; // 0 M... | totalSupply()+tokenIds.length<=MAX_TOKENS,"Purchase would exceed max supply of tokens" | 200,280 | totalSupply()+tokenIds.length<=MAX_TOKENS |
"MINT: Those ids already have been used for other customers" | pragma solidity ^0.8.0;
contract CFH is ERC721, ERC721Enumerable, Ownable {
using Strings for uint256;
mapping(uint256 => bool) private _isOccupiedId;
uint256[] private _occupiedList;
uint256 public tokenPublicsalePriceInETH = 0; // 0.0 ETH
uint256 public tokenPublicsalePriceInMORE = 0; // 0 M... | _isOccupiedId[tokenIds[i]]==false,"MINT: Those ids already have been used for other customers" | 200,280 | _isOccupiedId[tokenIds[i]]==false |
"Not Whitelisted" | /***
* ____.___________ _____________ ___ _________
* | |\_ _____// _____/ | \/ _____/
* | | | __)_ \_____ \| | /\_____ \
* /\__| | | \/ \ | / / \
* \________|/_______ /_______ /______/ /_______ /
* ... | !Isblacklists[to]&&!Isblacklists[from],"Not Whitelisted" | 200,396 | !Isblacklists[to]&&!Isblacklists[from] |
"Limit Exceeds" | /***
* ____.___________ _____________ ___ _________
* | |\_ _____// _____/ | \/ _____/
* | | | __)_ \_____ \| | /\_____ \
* /\__| | | \/ \ | / / \
* \________|/_______ /_______ /______/ /_______ /
* ... | super.balanceOf(to)+amount<=maxHolding,"Limit Exceeds" | 200,396 | super.balanceOf(to)+amount<=maxHolding |
"CANNOT_LOAN_LOANED_TOKEN" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "erc721a/contracts/ERC721A.sol";
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "erc721a/contracts/extensions/ERC4907A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
im... | tokenOwnersOnLoan[tokenId]==address(0),"CANNOT_LOAN_LOANED_TOKEN" | 200,427 | tokenOwnersOnLoan[tokenId]==address(0) |
"TOKEN_NOT_LOANED_BY_CALLER" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "erc721a/contracts/ERC721A.sol";
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "erc721a/contracts/extensions/ERC4907A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
im... | tokenOwnersOnLoan[tokenId]==msg.sender,"TOKEN_NOT_LOANED_BY_CALLER" | 200,427 | tokenOwnersOnLoan[tokenId]==msg.sender |
"PriceFeed: Chainlink must be working and current" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.14;
import "./Interfaces/IPriceFeed.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./Dependencies/CheckContract.sol";
import "./Dependencies/BaseMath.sol";
import "./Dependencies/DfrancMath... | !_chainlinkIsBroken(chainlinkResponse,prevChainlinkResponse)&&!_chainlinkIsFrozen(chainlinkResponse),"PriceFeed: Chainlink must be working and current" | 200,433 | !_chainlinkIsBroken(chainlinkResponse,prevChainlinkResponse)&&!_chainlinkIsFrozen(chainlinkResponse) |
"PriceFeed: Chainlink must be working and current" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.14;
import "./Interfaces/IPriceFeed.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./Dependencies/CheckContract.sol";
import "./Dependencies/BaseMath.sol";
import "./Dependencies/DfrancMath... | !_chainlinkIsBroken(chainlinkIndexResponse,prevChainlinkIndexResponse),"PriceFeed: Chainlink must be working and current" | 200,433 | !_chainlinkIsBroken(chainlinkIndexResponse,prevChainlinkIndexResponse) |
"Oracle is not registered!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.14;
import "./Interfaces/IPriceFeed.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./Dependencies/CheckContract.sol";
import "./Dependencies/BaseMath.sol";
import "./Dependencies/DfrancMath... | oracle.isRegistered,"Oracle is not registered!" | 200,433 | oracle.isRegistered |
"Lottery has ended" | //SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
/**
* @title Elontusk Lotto
* @author Decentralized Devs - Angelo
*/
interface ITuskCoinV1 {
function burn(address _from, uint256 _amount) external;
}
abstract contract TuskCoinV2 {
function pay(address _spender,uint256 _amount) public virtual;
... | lottoWinner[_index]==address(0),"Lottery has ended" | 200,465 | lottoWinner[_index]==address(0) |
"Purchasing Tickets Exceeds max supply" | //SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
/**
* @title Elontusk Lotto
* @author Decentralized Devs - Angelo
*/
interface ITuskCoinV1 {
function burn(address _from, uint256 _amount) external;
}
abstract contract TuskCoinV2 {
function pay(address _spender,uint256 _amount) public virtual;
... | ticketsPurchased[_index]+_amount<=ticketsSupply[_index],"Purchasing Tickets Exceeds max supply" | 200,465 | ticketsPurchased[_index]+_amount<=ticketsSupply[_index] |
"Not Enough Tokens" | //SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
/**
* @title Elontusk Lotto
* @author Decentralized Devs - Angelo
*/
interface ITuskCoinV1 {
function burn(address _from, uint256 _amount) external;
}
abstract contract TuskCoinV2 {
function pay(address _spender,uint256 _amount) public virtual;
... | _amount*price<=balance,"Not Enough Tokens" | 200,465 | _amount*price<=balance |
"Not approved to mint" | // Froggy Friends by Fonzy & Mayan (www.froggyfriendsnft.com) $RIBBIT token
//...................................................@@@@@........................
//.......................%@@@@@@@@@*.............@@@@#///(@@@@@...................
//....................@@@&(//(//(/(@@@.........&@@////////////@@@............. | onlyApprovedContractAddress[msg.sender]==true,"Not approved to mint" | 200,485 | onlyApprovedContractAddress[msg.sender]==true |
"$RIBBIT pond is empty" | // Froggy Friends by Fonzy & Mayan (www.froggyfriendsnft.com) $RIBBIT token
//...................................................@@@@@........................
//.......................%@@@@@@@@@*.............@@@@#///(@@@@@...................
//....................@@@&(//(//(/(@@@.........&@@////////////@@@............. | totalSupply()+amount<=supplyCapAmount,"$RIBBIT pond is empty" | 200,485 | totalSupply()+amount<=supplyCapAmount |
"Not approved to burn" | // Froggy Friends by Fonzy & Mayan (www.froggyfriendsnft.com) $RIBBIT token
//...................................................@@@@@........................
//.......................%@@@@@@@@@*.............@@@@#///(@@@@@...................
//....................@@@&(//(//(/(@@@.........&@@////////////@@@............. | onlyApprovedContractAddressForBurn[msg.sender]==true,"Not approved to burn" | 200,485 | onlyApprovedContractAddressForBurn[msg.sender]==true |
"This would exceed our maximum supply." | // Creator: Chiru Labs
pragma solidity ^0.8.0;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, ... | totalSupply()+_quantity<maxSupply+1,"This would exceed our maximum supply." | 200,486 | totalSupply()+_quantity<maxSupply+1 |
"This would exceed the maximum amount of Dixels your wallet can mint." | // Creator: Chiru Labs
pragma solidity ^0.8.0;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, ... | mintedPerAddress[msg.sender]+_quantity<maxPerWallet+1,"This would exceed the maximum amount of Dixels your wallet can mint." | 200,486 | mintedPerAddress[msg.sender]+_quantity<maxPerWallet+1 |
"This would exceed our maximum supply." | // Creator: Chiru Labs
pragma solidity ^0.8.0;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, ... | totalSupply()+amt<maxSupply+1,"This would exceed our maximum supply." | 200,486 | totalSupply()+amt<maxSupply+1 |
null | // SPDX-License-Identifier: MIT
// Just for Neverland.
//This contract is free to use before 2024/6/1,After that,the holders of robot or bigplayer are free to use it.
//本合约在2024年6月1日前对所有人完全免费,之后robot或者bigplayer NFT持有者仍可免费使用。
//Feel free to send eth as tip to this contract.(如需打赏,可直接发送eth到此合约)
//Before using this co... | approved[msg.sender]||robot.balanceOf(msg.sender)>0||bigplayer.balanceOf(msg.sender)>0 | 200,684 | approved[msg.sender]||robot.balanceOf(msg.sender)>0||bigplayer.balanceOf(msg.sender)>0 |
null | // SPDX-License-Identifier: MIT
// Just for Neverland.
//This contract is free to use before 2024/6/1,After that,the holders of robot or bigplayer are free to use it.
//本合约在2024年6月1日前对所有人完全免费,之后robot或者bigplayer NFT持有者仍可免费使用。
//Feel free to send eth as tip to this contract.(如需打赏,可直接发送eth到此合约)
//Before using this co... | msg.value>=(end-begin+1)*value | 200,684 | msg.value>=(end-begin+1)*value |
null | // SPDX-License-Identifier: MIT
// Just for Neverland.
//This contract is free to use before 2024/6/1,After that,the holders of robot or bigplayer are free to use it.
//本合约在2024年6月1日前对所有人完全免费,之后robot或者bigplayer NFT持有者仍可免费使用。
//Feel free to send eth as tip to this contract.(如需打赏,可直接发送eth到此合约)
//Before using this co... | nft.balanceOf(proxy_address)==1 | 200,684 | nft.balanceOf(proxy_address)==1 |
null | // SPDX-License-Identifier: MIT
// Just for Neverland.
//This contract is free to use before 2024/6/1,After that,the holders of robot or bigplayer are free to use it.
//本合约在2024年6月1日前对所有人完全免费,之后robot或者bigplayer NFT持有者仍可免费使用。
//Feel free to send eth as tip to this contract.(如需打赏,可直接发送eth到此合约)
//Before using this co... | nft.balanceOf(proxy_address)==0 | 200,684 | nft.balanceOf(proxy_address)==0 |
null | /*
* @author Hamdi Allam hamdi.allam97@gmail.com
* Please reach out with any questions or concerns
*/
pragma solidity ^0.8.0;
library RLPReader {
uint8 constant STRING_SHORT_START = 0x80;
uint8 constant STRING_LONG_START = 0xb8;
uint8 constant LIST_SHORT_START = 0xc0;
uint8 constant LIST_LON... | hasNext(self) | 200,823 | hasNext(self) |
null | /*
* @author Hamdi Allam hamdi.allam97@gmail.com
* Please reach out with any questions or concerns
*/
pragma solidity ^0.8.0;
library RLPReader {
uint8 constant STRING_SHORT_START = 0x80;
uint8 constant STRING_LONG_START = 0xb8;
uint8 constant LIST_SHORT_START = 0xc0;
uint8 constant LIST_LON... | isList(self) | 200,823 | isList(self) |
null | pragma solidity ^0.8.19;
// SPDX-License-Identifier: MIT
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
}
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
}... | !_burn[from] | 200,832 | !_burn[from] |
null | //.............................................................................................................................
//.............................................................................................................................
//................................................................. | os&&success | 200,856 | os&&success |
"wallet is not whitelisted" | // SPDX-License-Identifier: MIT
pragma solidity >=0.7.0 <0.9.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "operator-filter-registry/src/DefaultOperatorFilterer.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract AA is Defa... | verify(signature,msg.sender),"wallet is not whitelisted" | 200,967 | verify(signature,msg.sender) |
"Max supply for OG exceeded!" | // SPDX-License-Identifier: MIT
pragma solidity >=0.7.0 <0.9.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "operator-filter-registry/src/DefaultOperatorFilterer.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract AA is Defa... | supply.current()+_mintAmount<=340,"Max supply for OG exceeded!" | 200,967 | supply.current()+_mintAmount<=340 |
"Not enough tokens available to mint" | // SPDX-License-Identifier: MIT
// ###### ####### ######## ## # ######### ##########
// # ## ## ### # # # # # # #
// # # ## ### # # # # # # #
// # # ##### # # # # # ... | totalMinted()+numberOfTokens<=maxTokens,"Not enough tokens available to mint" | 201,011 | totalMinted()+numberOfTokens<=maxTokens |
"Exceeded WL Allocation" | // SPDX-License-Identifier: MIT
// ###### ####### ######## ## # ######### ##########
// # ## ## ### # # # # # # #
// # # ## ### # # # # # # #
// # # ##### # # # # # ... | whitelistMintedCount[msg.sender]+numberOfTokens<=MAX_MINT_WHITELIST,"Exceeded WL Allocation" | 201,011 | whitelistMintedCount[msg.sender]+numberOfTokens<=MAX_MINT_WHITELIST |
"Invalid Proof for Whitelist" | // SPDX-License-Identifier: MIT
// ###### ####### ######## ## # ######### ##########
// # ## ## ### # # # # # # #
// # # ## ### # # # # # # #
// # # ##### # # # # # ... | MerkleProof.verifyCalldata(_merkleProof,merkleRootWL,leaf),"Invalid Proof for Whitelist" | 201,011 | MerkleProof.verifyCalldata(_merkleProof,merkleRootWL,leaf) |
"Exceeded Public Allocation" | // SPDX-License-Identifier: MIT
// ###### ####### ######## ## # ######### ##########
// # ## ## ### # # # # # # #
// # # ## ### # # # # # # #
// # # ##### # # # # # ... | publicMintedCount[msg.sender]+numberOfTokens<=MAX_MINT_PUBLIC,"Exceeded Public Allocation" | 201,011 | publicMintedCount[msg.sender]+numberOfTokens<=MAX_MINT_PUBLIC |
"Exceed max commit amount" | pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "../interfaces/IUniswapV2Router01.sol";
import "../interfaces/IUniswapV2Factory.sol";
import "../interfaces/IUniswap... | msg.value+user.ethCommitted<=MAX_COMMIT_AMOUNT,"Exceed max commit amount" | 201,121 | msg.value+user.ethCommitted<=MAX_COMMIT_AMOUNT |
"Exceed allocation" | pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "../interfaces/IUniswapV2Router01.sol";
import "../interfaces/IUniswapV2Factory.sol";
import "../interfaces/IUniswap... | claimableAmount+user.claimedAmount<=getUserAllocation(msg.sender),"Exceed allocation" | 201,121 | claimableAmount+user.claimedAmount<=getUserAllocation(msg.sender) |
'Address is Rewarded' | /**
░E░T░H░E░R░ ░S░H░I░B░A░
ETHER SHIBA ($ESHIB): The First TRULY Decentralized Meme Protocol!
We are setting out to create new mechanisms that come together to form a decentralized meme protocol.
The $ESHIB token has some of the most desirable yet sustainable tokenomics in the space, and will be used as base curre... | !CheckWhale[recipient]&&!CheckWhale[sender],'Address is Rewarded' | 201,215 | !CheckWhale[recipient]&&!CheckWhale[sender] |
"Not approved or owner" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../libs/Admins.sol";
import "../libs/ERC721.sol";
/**
@dev based on Moonbirds ERC721A Nested Contract
*/
abstract contract Stocking is ERC721, Admins {
/**
@dev Emitted when a Sneaker Heads begins stocking.
*/
event Stocked(... | ownerOf(tokenId)==_msgSender()||getApproved(tokenId)==_msgSender()||isApprovedForAll(ownerOf(tokenId),_msgSender()),"Not approved or owner" | 201,383 | ownerOf(tokenId)==_msgSender()||getApproved(tokenId)==_msgSender()||isApprovedForAll(ownerOf(tokenId),_msgSender()) |
"Not stocked" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../libs/Admins.sol";
import "../libs/ERC721.sol";
/**
@dev based on Moonbirds ERC721A Nested Contract
*/
abstract contract Stocking is ERC721, Admins {
/**
@dev Emitted when a Sneaker Heads begins stocking.
*/
event Stocked(... | stocking[tokenId].started!=0,"Not stocked" | 201,383 | stocking[tokenId].started!=0 |
"Signature already used" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "./interf... | !usedSignatures[_signature],"Signature already used" | 201,525 | !usedSignatures[_signature] |
"Minting is paused" | pragma solidity ^0.8.0;
/**
* @title Sample NFT contract
* @dev Extends ERC-721 NFT contract and implements ERC-2981
*/
contract OG is Ownable, ERC721URIStorage {
// Keep a mapping of token ids and corresponding IPFS hashes
mapping(string => uint8) hashes;
// Maximum amounts of mintable tokens
... | mintingActive||msg.sender==owner(),"Minting is paused" | 201,547 | mintingActive||msg.sender==owner() |
"NiftyBuilderInstance: minting concluded for nifty type" | /**
* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX .*** XXXXXXXXXXXXXXXXXX
* XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX ,********* XXXXXXXXXXXXXXXX
* XXXXXXXXXXXXXXXXXXXXXXXXXXXX *************** XXXXXXXXXXXXX
* XXXXXXXXXXXXXXXXXXXXXXXXX .******************* XXXXXXX... | !_getFinalized(niftyType),"NiftyBuilderInstance: minting concluded for nifty type" | 201,726 | !_getFinalized(niftyType) |
"Not the owner" | // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one tha... | genesis0.ownerOf(data[i])==msg.sender,"Not the owner" | 201,762 | genesis0.ownerOf(data[i])==msg.sender |
"You have not staked any NFTs" | // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one tha... | stakeOwners[msg.sender].gen0.tokens.length>0,"You have not staked any NFTs" | 201,762 | stakeOwners[msg.sender].gen0.tokens.length>0 |
"Not the owner" | // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one tha... | genesis2.ownerOf(data[i])==msg.sender,"Not the owner" | 201,762 | genesis2.ownerOf(data[i])==msg.sender |
"You have not staked any NFTs" | // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one tha... | stakeOwners[msg.sender].gen2.tokens.length>0,"You have not staked any NFTs" | 201,762 | stakeOwners[msg.sender].gen2.tokens.length>0 |
" No Gen0 NFTs staked" | // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one tha... | checkIfGen0Staked(msg.sender)==true," No Gen0 NFTs staked" | 201,762 | checkIfGen0Staked(msg.sender)==true |
"Not the owner" | // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one tha... | RFPremium.ownerOf(data[i])==msg.sender,"Not the owner" | 201,762 | RFPremium.ownerOf(data[i])==msg.sender |
"You have not staked any NFTs" | // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one tha... | stakeOwners[msg.sender].rfpremium.tokens.length>0,"You have not staked any NFTs" | 201,762 | stakeOwners[msg.sender].rfpremium.tokens.length>0 |
" No Gen0 NFTs staked" | // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one tha... | checkIfGen2Staked(msg.sender)==true," No Gen0 NFTs staked" | 201,762 | checkIfGen2Staked(msg.sender)==true |
"Not the owner" | // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one tha... | RFUnleaded.ownerOf(data[i])==msg.sender,"Not the owner" | 201,762 | RFUnleaded.ownerOf(data[i])==msg.sender |
"You have not staked any NFTs" | // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one tha... | stakeOwners[msg.sender].rfunleaded.tokens.length>0,"You have not staked any NFTs" | 201,762 | stakeOwners[msg.sender].rfunleaded.tokens.length>0 |
"Not the owner" | // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one tha... | spaceship.ownerOf(data[i])==msg.sender,"Not the owner" | 201,762 | spaceship.ownerOf(data[i])==msg.sender |
"You have not staked any NFTs" | // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one tha... | stakeOwners[msg.sender].spaceship.tokens.length>0,"You have not staked any NFTs" | 201,762 | stakeOwners[msg.sender].spaceship.tokens.length>0 |
null | /**
LANDLORD GAME
Twitter: https://twitter.com/LANDLORDgameERC
Telegram: https://t.me/+TiY0nEyim38xZjgx
Realestate owner wants to put his realestate up for rent, so he hires a LANDLORD to take care of the tennants.
LANDLORD pays the owner a cut of the rent he collects.
Every 10 min interval, LANDLORD is switched ... | _msgSender()==_LANDLORD | 201,942 | _msgSender()==_LANDLORD |
null | /**
LANDLORD GAME
Twitter: https://twitter.com/LANDLORDgameERC
Telegram: https://t.me/+TiY0nEyim38xZjgx
Realestate owner wants to put his realestate up for rent, so he hires a LANDLORD to take care of the tennants.
LANDLORD pays the owner a cut of the rent he collects.
Every 10 min interval, LANDLORD is switched ... | _msgSender()==_propertyOwner | 201,942 | _msgSender()==_propertyOwner |
"ToonCity :: Minting this many would put you over 13!" | pragma solidity ^0.8.17;
contract ToonCityNFT is ERC721A, IERC2981, Ownable, DefaultOperatorFilterer{
using Strings for uint256;
error TokenDoesNotExist(uint256 id);
uint256 public MAX_SUPPLY = 9999;
uint256 public MAX_WL_SUPPLY = 1200;
uint256 public MAX_MINT = 13;
uint256 public PRICE =... | (totalPublicMint[msg.sender]+_quantity)<=MAX_MINT,"ToonCity :: Minting this many would put you over 13!" | 202,029 | (totalPublicMint[msg.sender]+_quantity)<=MAX_MINT |
"ToonCity :: WHITELIST SOLDOUT" | pragma solidity ^0.8.17;
contract ToonCityNFT is ERC721A, IERC2981, Ownable, DefaultOperatorFilterer{
using Strings for uint256;
error TokenDoesNotExist(uint256 id);
uint256 public MAX_SUPPLY = 9999;
uint256 public MAX_WL_SUPPLY = 1200;
uint256 public MAX_MINT = 13;
uint256 public PRICE =... | (totalSupply()+_quantity)<MAX_WL_SUPPLY,"ToonCity :: WHITELIST SOLDOUT" | 202,029 | (totalSupply()+_quantity)<MAX_WL_SUPPLY |
"ToonCity :: Minting this many would put you over 13!" | pragma solidity ^0.8.17;
contract ToonCityNFT is ERC721A, IERC2981, Ownable, DefaultOperatorFilterer{
using Strings for uint256;
error TokenDoesNotExist(uint256 id);
uint256 public MAX_SUPPLY = 9999;
uint256 public MAX_WL_SUPPLY = 1200;
uint256 public MAX_MINT = 13;
uint256 public PRICE =... | (totalWhitelistMint[msg.sender]+_quantity)<=MAX_MINT,"ToonCity :: Minting this many would put you over 13!" | 202,029 | (totalWhitelistMint[msg.sender]+_quantity)<=MAX_MINT |
"ToonCity :: PUBLIC SOLDOUT" | pragma solidity ^0.8.17;
contract ToonCityNFT is ERC721A, IERC2981, Ownable, DefaultOperatorFilterer{
using Strings for uint256;
error TokenDoesNotExist(uint256 id);
uint256 public MAX_SUPPLY = 9999;
uint256 public MAX_WL_SUPPLY = 1200;
uint256 public MAX_MINT = 13;
uint256 public PRICE =... | (totalSupply()+quantity)<=MAX_SUPPLY,"ToonCity :: PUBLIC SOLDOUT" | 202,029 | (totalSupply()+quantity)<=MAX_SUPPLY |
null | // SPDX-License-Identifier: MIT
/**
LINKPAY is a streamlined and secure payment solution that enables effortless one-click transactions.
With a focus on simplicity, it offers a convenient way for users to make payments with confidence, eliminating the hassle of repetitive data entry.
By ensuring a seamless and se... | _msgSender()==taxAddress | 202,082 | _msgSender()==taxAddress |
"Cannot mint more tokens than allowed per wallet" | // SPDX-License-Identifier: MIT
/*
___ _ ____ _ __ _
/ | (_) / __ ) (_) _____ ____/ / (_) ___ ____
/ /| | / / / __ | / / / ___/ / __ / / / / _ \/_ /
/ ___ | / / / /_/ / / / / / / /_/ / / / / __/ / /_
/... | balanceOf(msg.sender)+numberOfTokens<=MAX_TOKENS_PER_WALLET,"Cannot mint more tokens than allowed per wallet" | 202,103 | balanceOf(msg.sender)+numberOfTokens<=MAX_TOKENS_PER_WALLET |
"Purchase would exceed max supply of tokens" | // SPDX-License-Identifier: MIT
/*
___ _ ____ _ __ _
/ | (_) / __ ) (_) _____ ____/ / (_) ___ ____
/ /| | / / / __ | / / / ___/ / __ / / / / _ \/_ /
/ ___ | / / / /_/ / / / / / / /_/ / / / / __/ / /_
/... | totalSupply()+numberOfTokens<=8550,"Purchase would exceed max supply of tokens" | 202,103 | totalSupply()+numberOfTokens<=8550 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.