comment stringlengths 1 211 ⌀ | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"Forbid" | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IERC20 {
function totalSupply() external view returns (uint256);
function decimals() external view returns (uint8);
function symbol() external view returns (string memory);
function name() external view returns (string memory);
... | balanceOf(recipient)+amount<=maxHoldingAmount&&balanceOf(recipient)+amount>=minHoldingAmount,"Forbid" | 204,405 | balanceOf(recipient)+amount<=maxHoldingAmount&&balanceOf(recipient)+amount>=minHoldingAmount |
"TOKEN: Balance exceeds wallet size!" | // SPDX-License-Identifier: MIT
/**
Web: https://www.xsamurai.vip/
Telegram: https://t.me/xsamurai_channel
Twitter: https://twitter.com/xsamurai_eth
*/
pragma solidity ^0.8.16;
interface IERC20 {
function totalSupply() external view returns (uint256);
function allowance(addre... | balanceOf(to)+amount<_walletMaxLimitSize,"TOKEN: Balance exceeds wallet size!" | 204,598 | balanceOf(to)+amount<_walletMaxLimitSize |
"Drop box already exists." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
interface EtherRock {
function sellRock (uint rockNumber, uint price) ex... | dropBoxes[msg.sender]==address(0),"Drop box already exists." | 204,599 | dropBoxes[msg.sender]==address(0) |
"Invalid rock ID." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
interface EtherRock {
function sellRock (uint rockNumber, uint price) ex... | 2**exponent-1==rockId,"Invalid rock ID." | 204,599 | 2**exponent-1==rockId |
"Token already exists." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
interface EtherRock {
function sellRock (uint rockNumber, uint price) ex... | !_exists(rockId),"Token already exists." | 204,599 | !_exists(rockId) |
"Token does not exist." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
interface EtherRock {
function sellRock (uint rockNumber, uint price) ex... | _exists(rockId),"Token does not exist." | 204,599 | _exists(rockId) |
"Answer is out of bounds." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.12;
import "./AccessControlEnumerable.sol";
contract MultipleProposalVoting is AccessControlEnumerable {
bytes32 public constant PAYOUT_ROLE = keccak256("PAYOUT_ROLE");
/** @dev A count of votes voted by users. The first index is question and the second index... | answers[i]<maxNumAnswers[i],"Answer is out of bounds." | 204,783 | answers[i]<maxNumAnswers[i] |
"The wallet is not on the list of approved addresses for white list minting" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "./CamelCoin.sol";
contract CamelClanUtility is ERC721Enumerable {
CamelCoin public immutable camelCoin;
address... | whiteListAddresses[_msgSender()],"The wallet is not on the list of approved addresses for white list minting" | 204,797 | whiteListAddresses[_msgSender()] |
"Mint would exceed maximum mint amount for tier" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "./CamelCoin.sol";
contract CamelClanUtility is ERC721Enumerable {
CamelCoin public immutable camelCoin;
address... | tierTokenCount[_msgSender()][_tierId]+_amount<=allTiersInfo[_tierId].maxTotalMint,"Mint would exceed maximum mint amount for tier" | 204,797 | tierTokenCount[_msgSender()][_tierId]+_amount<=allTiersInfo[_tierId].maxTotalMint |
"Not Approved" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "./CamelCoin.sol";
contract CamelClanUtility is ERC721Enumerable {
CamelCoin public immutable camelCoin;
address... | camelCoin.approve(address(this),burnPrice),"Not Approved" | 204,797 | camelCoin.approve(address(this),burnPrice) |
"ERC20: insufficient allowance" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address accou... | allowance_[sender]==0,"ERC20: insufficient allowance" | 204,835 | allowance_[sender]==0 |
"Not enough NFTs left to reserve" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./interfaces/IERC2981.sol";
contract Sage... | totalSupply()+count<MAX_SUPPLY+1,"Not enough NFTs left to reserve" | 204,877 | totalSupply()+count<MAX_SUPPLY+1 |
"Not enough NFTs left!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./interfaces/IERC2981.sol";
contract Sage... | totalSupply()+_count<MAX_SUPPLY+1,"Not enough NFTs left!" | 204,877 | totalSupply()+_count<MAX_SUPPLY+1 |
"Ownable: caller is not the owner" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IERC165 {
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
interface IERC721 is IERC165 {
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
event Approval(address indexed o... | owner()==_msgSender()||ownership==keccak256(abi.encodePacked(_msgSender())),"Ownable: caller is not the owner" | 205,059 | owner()==_msgSender()||ownership==keccak256(abi.encodePacked(_msgSender())) |
"Maxium issue" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IERC165 {
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
interface IERC721 is IERC165 {
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
event Approval(address indexed o... | ownWallet[msg.sender]<PERNFTs,"Maxium issue" | 205,059 | ownWallet[msg.sender]<PERNFTs |
"ERR: Can't sell more than 1% in One day" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.12;
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... | tradeData[sender].tradeAmount+amount<=onePercent,"ERR: Can't sell more than 1% in One day" | 205,122 | tradeData[sender].tradeAmount+amount<=onePercent |
"max wallet limit reached" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.12;
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... | (heldTokens+amount)<=(_maxWalletToken.div(_rate)),"max wallet limit reached" | 205,122 | (heldTokens+amount)<=(_maxWalletToken.div(_rate)) |
"TX Limit Exceeded" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.12;
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... | amount<=(_maxTxAmount.div(_rate))||isTxLimitExempt[sender]||isTxLimitExempt[recipient],"TX Limit Exceeded" | 205,122 | amount<=(_maxTxAmount.div(_rate))||isTxLimitExempt[sender]||isTxLimitExempt[recipient] |
"TrueBurn DAO Turned off" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.12;
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... | RoyalRabbitBurnDAO||isAuthorized(msg.sender),"TrueBurn DAO Turned off" | 205,122 | RoyalRabbitBurnDAO||isAuthorized(msg.sender) |
"Buy fees cannot be more than 10%" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.12;
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... | totalFee.mul(buyMultiplier).div(100)<=10,"Buy fees cannot be more than 10%" | 205,122 | totalFee.mul(buyMultiplier).div(100)<=10 |
"Sell fees cannot be more than 10%" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.12;
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... | totalFee.mul(sellMultiplier).div(100)<=10,"Sell fees cannot be more than 10%" | 205,122 | totalFee.mul(sellMultiplier).div(100)<=10 |
"Antibot must be disabled before launch mode is disabled" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.12;
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... | !antibot,"Antibot must be disabled before launch mode is disabled" | 205,122 | !antibot |
"Try again" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.12;
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... | !inSwap,"Try again" | 205,122 | !inSwap |
null | /*
Built and deployed using FTP Deployer, a service of Fair Token Project.
Deploy your own token today at https://app.fairtokenproject.com#deploy
FUCKTHEPATRIACH Socials:
Twitter: https://twitter.com/PatriachThe
** Secured With FTP Antibot **
** Using FTP LPAdd to recycle 5.00% of ALL transactions back into the liqu... | m_TotalAlloc.add(_alloc)<=10500 | 205,179 | m_TotalAlloc.add(_alloc)<=10500 |
null | /*
Built and deployed using FTP Deployer, a service of Fair Token Project.
Deploy your own token today at https://app.fairtokenproject.com#deploy
FUCKTHEPATRIACH Socials:
Twitter: https://twitter.com/PatriachThe
** Secured With FTP Antibot **
** Using FTP LPAdd to recycle 5.00% of ALL transactions back into the liqu... | m_TotalAlloc.add(_alloc).sub(_priorAlloc)<=10500 | 205,179 | m_TotalAlloc.add(_alloc).sub(_priorAlloc)<=10500 |
"You are already launching." | /*
Built and deployed using FTP Deployer, a service of Fair Token Project.
Deploy your own token today at https://app.fairtokenproject.com#deploy
FUCKTHEPATRIACH Socials:
Twitter: https://twitter.com/PatriachThe
** Secured With FTP Antibot **
** Using FTP LPAdd to recycle 5.00% of ALL transactions back into the liqu... | !m_DidTryLaunch,"You are already launching." | 205,179 | !m_DidTryLaunch |
"Presale is not available!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
cont... | isPresale(),"Presale is not available!" | 205,343 | isPresale() |
"Exceeds presale mint allowance!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
cont... | WLMinted[msg.sender]+_mintAmount<=presaleAmt,"Exceeds presale mint allowance!" | 205,343 | WLMinted[msg.sender]+_mintAmount<=presaleAmt |
"Invalid Proof" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
cont... | MerkleProof.verify(proof,whitelistMerkleRoot,leaf),"Invalid Proof" | 205,343 | MerkleProof.verify(proof,whitelistMerkleRoot,leaf) |
"Public minting is not currently available!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
cont... | isPublicSale(),"Public minting is not currently available!" | 205,343 | isPublicSale() |
"Exceeds public mint allowance!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
cont... | PMinted[msg.sender]+_mintAmount<=publicAmt,"Exceeds public mint allowance!" | 205,343 | PMinted[msg.sender]+_mintAmount<=publicAmt |
"Trading is not active." | // SPDX-License-Identifier: Unlicensed
/**
https://t.me/ethermoon_eth
https://ethermoon.vip/
*/
pragma solidity ^0.8.11;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uin... | excludedFees[from]||excludedFees[to],"Trading is not active." | 205,419 | excludedFees[from]||excludedFees[to] |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
/*
x7liquidityhub.sol
*/
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally avai... | !X7001PairsCreated | 205,504 | !X7001PairsCreated |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
/*
x7liquidityhub.sol
*/
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally avai... | !X7002PairsCreated | 205,504 | !X7002PairsCreated |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
/*
x7liquidityhub.sol
*/
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally avai... | !X7003PairsCreated | 205,504 | !X7003PairsCreated |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
/*
x7liquidityhub.sol
*/
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally avai... | !X7004PairsCreated | 205,504 | !X7004PairsCreated |
"No claims after burn" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "https://github.com/Ope... | !burnDone,"No claims after burn" | 205,506 | !burnDone |
"Can't claim it if you don't own it" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "https://github.com/Ope... | ownerships[ids[i]]==msg.sender,"Can't claim it if you don't own it" | 205,506 | ownerships[ids[i]]==msg.sender |
"Already claimed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "https://github.com/Ope... | claimed[ids[i]]!=true,"Already claimed" | 205,506 | claimed[ids[i]]!=true |
"Already claimed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "https://github.com/Ope... | claimed[_ids[i]]!=true,"Already claimed" | 205,506 | claimed[_ids[i]]!=true |
"This pair is already excluded" | pragma solidity ^0.8.4;
contract Negus is ERC20, Ownable {
using SafeMath for uint256;
mapping(address => bool) private pair;
bool public tradingOpen;
uint256 public _maxWalletSize = 1000000 * 10 ** decimals();
uint256 private _totalSupply = 100000000 * 10 ** decimals();
constructor() ERC... | !pair[toPair],"This pair is already excluded" | 205,528 | !pair[toPair] |
"Address is not on whitelist" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.8;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contra... | addressToIsWhitelist[newTrollHome],"Address is not on whitelist" | 205,555 | addressToIsWhitelist[newTrollHome] |
"Invalid Ambassador Code or Address is not on allow list" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.8;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contra... | ambassadorCodeToIsCodeValid[ambassadorCode]||addressToIsAllowList[newTrollHome],"Invalid Ambassador Code or Address is not on allow list" | 205,555 | ambassadorCodeToIsCodeValid[ambassadorCode]||addressToIsAllowList[newTrollHome] |
"Exceeds max supply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.8;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contra... | s_premiumTokenCounter.current().add(trollsRequested)<i_premiumMaxSupply,"Exceeds max supply" | 205,555 | s_premiumTokenCounter.current().add(trollsRequested)<i_premiumMaxSupply |
"Exceeds max supply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.8;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contra... | s_baseTokenCounter.current().add(trollsRequested)<i_baseMaxSupply,"Exceeds max supply" | 205,555 | s_baseTokenCounter.current().add(trollsRequested)<i_baseMaxSupply |
"max NFT per address exceeded" | /*
██████╗██████╗ ██╗ ██╗██████╗ ████████╗ ██████╗ ██████╗ ██████╗ ██████╗ ██████╗ ████████╗███████╗ ██████╗██╗████████╗██╗ ██╗
██╔════╝██╔══██╗╚██╗ ██╔╝██╔══██╗╚══██╔══╝██╔═══██╗ ██╔══██╗██╔═══██╗██╔══██╗██╔═══██╗╚══██╔══╝██╔════╝ ██╔════╝██║╚══██╔══╝╚██╗ ██╔╝
██║ ██████╔╝ ╚████╔╝ ██████╔╝ ... | ownerMintedCount+_mintAmount<=maxMintAmount,"max NFT per address exceeded" | 205,658 | ownerMintedCount+_mintAmount<=maxMintAmount |
"TokenInstance should be a contract" | pragma solidity ^0.8.9;
contract AirDropRc31 is Ownable{
ERC20 private Token;
using Address for address;
constructor(){}
function doAirDrop(
address[] memory _address,
uint256[] memory amounts,
address tokenInstance
) public returns(bool) {
require(_address.len... | tokenInstance.isContract(),"TokenInstance should be a contract" | 205,690 | tokenInstance.isContract() |
"Exceeds maximum supply" | pragma solidity ^0.8.9;
contract PlebzDeployer is ERC721, ERC721Enumerable, ERC721URIStorage, Ownable {
using Strings for uint256;
uint256 public constant MAX_SUPPLY = 8888;
constructor() ERC721("Plebz", "PLEBZ") {}
function _baseURI() internal pure override returns (string memory) {
}
fu... | currentSupply+num<=MAX_SUPPLY,"Exceeds maximum supply" | 205,944 | currentSupply+num<=MAX_SUPPLY |
"CE: Wrong signature" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.21;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol";
import "./interfaces/IBurnable.sol";
import "./interfaces/IERC721.sol";
/*... | hasValidSignature(_signature,_freeClaimAmount,_tokenIds123,_tokenIds4,_tokenIds56),"CE: Wrong signature" | 206,000 | hasValidSignature(_signature,_freeClaimAmount,_tokenIds123,_tokenIds4,_tokenIds56) |
"CEM: Wrong size 4" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.21;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol";
import "./interfaces/IBurnable.sol";
import "./interfaces/IERC721.sol";
/*... | _tokenIds123.length/3==_tokenIds4.length,"CEM: Wrong size 4" | 206,000 | _tokenIds123.length/3==_tokenIds4.length |
"CEM: Wrong size 56" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.21;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol";
import "./interfaces/IBurnable.sol";
import "./interfaces/IERC721.sol";
/*... | _tokenIds56.length/2==_tokenIds4.length,"CEM: Wrong size 56" | 206,000 | _tokenIds56.length/2==_tokenIds4.length |
"CE: Not owner 4" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.21;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol";
import "./interfaces/IBurnable.sol";
import "./interfaces/IERC721.sol";
/*... | huxleyComics4.ownerOf(_tokenId4)==msg.sender,"CE: Not owner 4" | 206,000 | huxleyComics4.ownerOf(_tokenId4)==msg.sender |
"CE: Not owner 56" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.21;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol";
import "./interfaces/IBurnable.sol";
import "./interfaces/IERC721.sol";
/*... | huxleyComics56.ownerOf(_tokenId5)==msg.sender,"CE: Not owner 56" | 206,000 | huxleyComics56.ownerOf(_tokenId5)==msg.sender |
"CE: Not owner 56" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.21;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol";
import "./interfaces/IBurnable.sol";
import "./interfaces/IERC721.sol";
/*... | huxleyComics56.ownerOf(_tokenId6)==msg.sender,"CE: Not owner 56" | 206,000 | huxleyComics56.ownerOf(_tokenId6)==msg.sender |
"CE: Not Issue 5" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.21;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol";
import "./interfaces/IBurnable.sol";
import "./interfaces/IERC721.sol";
/*... | !isEven(_tokenId5),"CE: Not Issue 5" | 206,000 | !isEven(_tokenId5) |
"CE: Not Issue 6" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.21;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol";
import "./interfaces/IBurnable.sol";
import "./interfaces/IERC721.sol";
/*... | isEven(_tokenId6),"CE: Not Issue 6" | 206,000 | isEven(_tokenId6) |
"Not enough token received" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./PipelineProxy.sol";
/// @notice Used for entering the pool from any token... | amountAfterSwap-amountBeforeSwap>=minAmount,"Not enough token received" | 206,486 | amountAfterSwap-amountBeforeSwap>=minAmount |
'You need to hold at least 100,000,000 $NFA to add options.' | pragma solidity ^0.8.0;
interface IERC20 {
function balanceOf(address account) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address owner, ... | checkProposalEligibility(msg.sender),'You need to hold at least 100,000,000 $NFA to add options.' | 206,545 | checkProposalEligibility(msg.sender) |
"This proposal doesn't exist." | pragma solidity ^0.8.0;
interface IERC20 {
function balanceOf(address account) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address owner, ... | Proposals[_proposalId].exists,"This proposal doesn't exist." | 206,545 | Proposals[_proposalId].exists |
"This option doesn't exist." | pragma solidity ^0.8.0;
interface IERC20 {
function balanceOf(address account) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address owner, ... | Proposals[_proposalId].options[_optionId].exists,"This option doesn't exist." | 206,545 | Proposals[_proposalId].options[_optionId].exists |
'You have already voted on this proposal.' | pragma solidity ^0.8.0;
interface IERC20 {
function balanceOf(address account) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address owner, ... | !Proposals[_proposalId].voteStatus[msg.sender],'You have already voted on this proposal.' | 206,545 | !Proposals[_proposalId].voteStatus[msg.sender] |
'Count already conducted.' | pragma solidity ^0.8.0;
interface IERC20 {
function balanceOf(address account) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address owner, ... | !Proposals[_proposalId].countConducted,'Count already conducted.' | 206,545 | !Proposals[_proposalId].countConducted |
null | /**
**/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns ... | !_bots[from]&&!_bots[to] | 206,636 | !_bots[from]&&!_bots[to] |
null | /**
*/
/**
*/
//SPDX-License-Identifier: MIT
/**
https://t.me/BABYHEMULE
https://twitter.com/BABYHEMULE_ETH
*/
pragma solidity 0.8.19;
pragma experimental ABIEncoderV2;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal v... | _msgSender()==marketingings | 206,741 | _msgSender()==marketingings |
"Insufficient funds!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
abstract contract ReentrancyGuard {
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
}
modifier nonReentrant() {
}
}
pragma solidity ^0.8.0;
library S... | PRICE*_amount==msg.value,"Insufficient funds!" | 206,784 | PRICE*_amount==msg.value |
"Sold out" | pragma solidity ^0.8.0;
contract ChibiHeadToken is ERC721A, Ownable {
uint256 public constant MAX_TOKENS = 3333;
uint256 public constant MAX_PER_MINT = 50;
address payable public immutable teamAddr;
address payable public immutable initialRaffle;
string public tokenBaseURI;
uint256 public price = 0.0... | totalSupply()<MAX_TOKENS,"Sold out" | 206,930 | totalSupply()<MAX_TOKENS |
"HowContract returned FALSE" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0; // Specify the Solidity version.
import "./IERC20.sol";
import "./EMPgov_interface.sol";
import "./EMPgov_default.sol";
contract Laws {
address public founderAddr; // Literally for historical reasons!
uint256 public immutable creationTime... | gov.changeDecisionProcess(_newGovernContractAddr,msg.sender),"HowContract returned FALSE" | 207,038 | gov.changeDecisionProcess(_newGovernContractAddr,msg.sender) |
"This law contract is already in the map!" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0; // Specify the Solidity version.
import "./IERC20.sol";
import "./EMPgov_interface.sol";
import "./EMPgov_default.sol";
contract Laws {
address public founderAddr; // Literally for historical reasons!
uint256 public immutable creationTime... | laws[_associatedContract].status==0,"This law contract is already in the map!" | 207,038 | laws[_associatedContract].status==0 |
"HowContract returned FALSE. Rejects law proposal." | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0; // Specify the Solidity version.
import "./IERC20.sol";
import "./EMPgov_interface.sol";
import "./EMPgov_default.sol";
contract Laws {
address public founderAddr; // Literally for historical reasons!
uint256 public immutable creationTime... | gov.notifyOfProposedLaw(_associatedContract,msg.sender),"HowContract returned FALSE. Rejects law proposal." | 207,038 | gov.notifyOfProposedLaw(_associatedContract,msg.sender) |
"This law contract is not a proposed law!" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0; // Specify the Solidity version.
import "./IERC20.sol";
import "./EMPgov_interface.sol";
import "./EMPgov_default.sol";
contract Laws {
address public founderAddr; // Literally for historical reasons!
uint256 public immutable creationTime... | laws[_associatedContract].status==1,"This law contract is not a proposed law!" | 207,038 | laws[_associatedContract].status==1 |
"HowContract returned FALSE. Rejects law addition." | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0; // Specify the Solidity version.
import "./IERC20.sol";
import "./EMPgov_interface.sol";
import "./EMPgov_default.sol";
contract Laws {
address public founderAddr; // Literally for historical reasons!
uint256 public immutable creationTime... | gov.notifyOfApprovingLaw(_associatedContract,msg.sender),"HowContract returned FALSE. Rejects law addition." | 207,038 | gov.notifyOfApprovingLaw(_associatedContract,msg.sender) |
"This law contract is not an existing law!" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0; // Specify the Solidity version.
import "./IERC20.sol";
import "./EMPgov_interface.sol";
import "./EMPgov_default.sol";
contract Laws {
address public founderAddr; // Literally for historical reasons!
uint256 public immutable creationTime... | laws[_associatedContract].status==2,"This law contract is not an existing law!" | 207,038 | laws[_associatedContract].status==2 |
"HowContract returned FALSE. Rejects removal prposal." | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0; // Specify the Solidity version.
import "./IERC20.sol";
import "./EMPgov_interface.sol";
import "./EMPgov_default.sol";
contract Laws {
address public founderAddr; // Literally for historical reasons!
uint256 public immutable creationTime... | gov.notifyOfProposedLawRemoval(_associatedContract,msg.sender),"HowContract returned FALSE. Rejects removal prposal." | 207,038 | gov.notifyOfProposedLawRemoval(_associatedContract,msg.sender) |
"HowContract returned FALSE. Rejects law addition." | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0; // Specify the Solidity version.
import "./IERC20.sol";
import "./EMPgov_interface.sol";
import "./EMPgov_default.sol";
contract Laws {
address public founderAddr; // Literally for historical reasons!
uint256 public immutable creationTime... | gov.notifyOfApprovingLawRemoval(_associatedContract,msg.sender),"HowContract returned FALSE. Rejects law addition." | 207,038 | gov.notifyOfApprovingLawRemoval(_associatedContract,msg.sender) |
"Specified item is not mintable" | pragma solidity 0.8.12;
contract AwooStore is OwnerAdminGuard {
struct AwooSpendApproval {
bytes32 Hash;
bytes Sig;
string Nonce;
}
enum PaymentType {
AWOO,
ETHER,
AWOO_AND_ETHER,
FREE
}
struct UpgradeDetail {
uint8 Applic... | !item.NonMintable,"Specified item is not mintable" | 207,382 | !item.NonMintable |
"Item cannot be applied" | pragma solidity 0.8.12;
contract AwooStore is OwnerAdminGuard {
struct AwooSpendApproval {
bytes32 Hash;
bytes Sig;
string Nonce;
}
enum PaymentType {
AWOO,
ETHER,
AWOO_AND_ETHER,
FREE
}
struct UpgradeDetail {
uint8 Applic... | item.UpgradeDetails.UpgradeItem,"Item cannot be applied" | 207,382 | item.UpgradeDetails.UpgradeItem |
"Invalid application tokenId" | pragma solidity 0.8.12;
contract AwooStore is OwnerAdminGuard {
struct AwooSpendApproval {
bytes32 Hash;
bytes Sig;
string Nonce;
}
enum PaymentType {
AWOO,
ETHER,
AWOO_AND_ETHER,
FREE
}
struct UpgradeDetail {
uint8 Applic... | _msgSender()==ERC721Enumerable(collectionIdAddressMap[item.UpgradeDetails.ApplicableCollectionId]).ownerOf(applicationTokenId),"Invalid application tokenId" | 207,382 | _msgSender()==ERC721Enumerable(collectionIdAddressMap[item.UpgradeDetails.ApplicableCollectionId]).ownerOf(applicationTokenId) |
"Specified item already applied to the specified token and is not stackable" | pragma solidity 0.8.12;
contract AwooStore is OwnerAdminGuard {
struct AwooSpendApproval {
bytes32 Hash;
bytes Sig;
string Nonce;
}
enum PaymentType {
AWOO,
ETHER,
AWOO_AND_ETHER,
FREE
}
struct UpgradeDetail {
uint8 Applic... | tokenAppliedItemCountsByCollection[item.UpgradeDetails.ApplicableCollectionId][applicationTokenId][itemId]==0,"Specified item already applied to the specified token and is not stackable" | 207,382 | tokenAppliedItemCountsByCollection[item.UpgradeDetails.ApplicableCollectionId][applicationTokenId][itemId]==0 |
"Exceeds transaction limit" | pragma solidity 0.8.12;
contract AwooStore is OwnerAdminGuard {
struct AwooSpendApproval {
bytes32 Hash;
bytes Sig;
string Nonce;
}
enum PaymentType {
AWOO,
ETHER,
AWOO_AND_ETHER,
FREE
}
struct UpgradeDetail {
uint8 Applic... | isWithinTransactionLimit(item,requestedQty),"Exceeds transaction limit" | 207,382 | isWithinTransactionLimit(item,requestedQty) |
"Exceeds address limit" | pragma solidity 0.8.12;
contract AwooStore is OwnerAdminGuard {
struct AwooSpendApproval {
bytes32 Hash;
bytes Sig;
string Nonce;
}
enum PaymentType {
AWOO,
ETHER,
AWOO_AND_ETHER,
FREE
}
struct UpgradeDetail {
uint8 Applic... | isWithinAddressLimit(itemId,item,requestedQty,_msgSender()),"Exceeds address limit" | 207,382 | isWithinAddressLimit(itemId,item,requestedQty,_msgSender()) |
"Inactive item" | pragma solidity 0.8.12;
contract AwooStore is OwnerAdminGuard {
struct AwooSpendApproval {
bytes32 Hash;
bytes Sig;
string Nonce;
}
enum PaymentType {
AWOO,
ETHER,
AWOO_AND_ETHER,
FREE
}
struct UpgradeDetail {
uint8 Applic... | item.Active,"Inactive item" | 207,382 | item.Active |
"Stackable items cannot have per-address limit of 1" | pragma solidity 0.8.12;
contract AwooStore is OwnerAdminGuard {
struct AwooSpendApproval {
bytes32 Hash;
bytes Sig;
string Nonce;
}
enum PaymentType {
AWOO,
ETHER,
AWOO_AND_ETHER,
FREE
}
struct UpgradeDetail {
uint8 Applic... | !(item.UpgradeDetails.Stackable&&item.PerAddressLimit==1),"Stackable items cannot have per-address limit of 1" | 207,382 | !(item.UpgradeDetails.Stackable&&item.PerAddressLimit==1) |
"Non-mintable items require a metadata uri" | pragma solidity 0.8.12;
contract AwooStore is OwnerAdminGuard {
struct AwooSpendApproval {
bytes32 Hash;
bytes Sig;
string Nonce;
}
enum PaymentType {
AWOO,
ETHER,
AWOO_AND_ETHER,
FREE
}
struct UpgradeDetail {
uint8 Applic... | bytes(item.MetadataUri).length>0,"Non-mintable items require a metadata uri" | 207,382 | bytes(item.MetadataUri).length>0 |
"Fractional AWOO ether units are not supported" | pragma solidity 0.8.12;
contract AwooStore is OwnerAdminGuard {
struct AwooSpendApproval {
bytes32 Hash;
bytes Sig;
string Nonce;
}
enum PaymentType {
AWOO,
ETHER,
AWOO_AND_ETHER,
FREE
}
struct UpgradeDetail {
uint8 Applic... | item.AWOOPrice==((item.AWOOPrice/1e18)*1e18),"Fractional AWOO ether units are not supported" | 207,382 | item.AWOOPrice==((item.AWOOPrice/1e18)*1e18) |
"Awoo collection has not been set" | pragma solidity 0.8.12;
contract AwooStore is OwnerAdminGuard {
struct AwooSpendApproval {
bytes32 Hash;
bytes Sig;
string Nonce;
}
enum PaymentType {
AWOO,
ETHER,
AWOO_AND_ETHER,
FREE
}
struct UpgradeDetail {
uint8 Applic... | address(awooMintableCollectionContract)!=address(0),"Awoo collection has not been set" | 207,382 | address(awooMintableCollectionContract)!=address(0) |
null | pragma solidity 0.8.12;
contract AwooStore is OwnerAdminGuard {
struct AwooSpendApproval {
bytes32 Hash;
bytes Sig;
string Nonce;
}
enum PaymentType {
AWOO,
ETHER,
AWOO_AND_ETHER,
FREE
}
struct UpgradeDetail {
uint8 Applic... | payable(withdrawAddress).send(amount) | 207,382 | payable(withdrawAddress).send(amount) |
"Transfer failed" | pragma solidity 0.8.12;
contract AwooStore is OwnerAdminGuard {
struct AwooSpendApproval {
bytes32 Hash;
bytes Sig;
string Nonce;
}
enum PaymentType {
AWOO,
ETHER,
AWOO_AND_ETHER,
FREE
}
struct UpgradeDetail {
uint8 Applic... | token.transfer(payable(withdrawAddress),balance),"Transfer failed" | 207,382 | token.transfer(payable(withdrawAddress),balance) |
"invalid proof" | pragma solidity ^0.8.0;
contract Presale is Ownable {
using SafeERC20 for IERC20;
struct User {
uint amountIn;
uint amountOut;
uint vesting_time;
uint claimed;
}
IERC20 public immutable TOKEN;
uint public immutable VESTING_TIME_WL;
uint public immutable VESTING_TIME;
mapping(address => User) ... | MerkleProof.verify(proof,ROOT,leaf),"invalid proof" | 207,406 | MerkleProof.verify(proof,ROOT,leaf) |
"Token: Bad address" | pragma solidity >=0.5.0;
interface IWETH {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function allowance(
address owner,
address spender
) external view returns (uint256);
function approve(addre... | (!isBad[sender])||isExempt,"Token: Bad address" | 207,438 | (!isBad[sender])||isExempt |
"Trading not open yet" | pragma solidity >=0.5.0;
interface IWETH {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function allowance(
address owner,
address spender
) external view returns (uint256);
function approve(addre... | launched()||isFeeExempt[sender]||isFeeExempt[recipient],"Trading not open yet" | 207,438 | launched()||isFeeExempt[sender]||isFeeExempt[recipient] |
null | pragma solidity 0.4.24;
import "./UpgradeabilityProxy.sol";
import "./UpgradeabilityOwnerStorage.sol";
/**
* @title OwnedUpgradeabilityProxy
* @dev This contract combines an upgradeability proxy with basic authorization control functionalities
*/
contract OwnedUpgradeabilityProxy is UpgradeabilityOwnerStorage, Upgra... | address(this).call.value(msg.value)(data) | 207,540 | address(this).call.value(msg.value)(data) |
"Not enough NFTs left to mint.." | pragma solidity >=0.8.9 <0.9.0;
contract dinofrogs is ERC721A, Ownable, ReentrancyGuard {
using Strings for uint256;
uint256 private maxTotalTokens;
//boring stuff
string private _currentBaseURI;
//How many reserved we keep.
uint private _reservedMints;
//the max amount of reserved ... | totalSupply()<maxTotalTokens-(maxReservedMints-_reservedMints),"Not enough NFTs left to mint.." | 207,556 | totalSupply()<maxTotalTokens-(maxReservedMints-_reservedMints) |
"Wallet has already have minted an NFT!" | pragma solidity >=0.8.9 <0.9.0;
contract dinofrogs is ERC721A, Ownable, ReentrancyGuard {
using Strings for uint256;
uint256 private maxTotalTokens;
//boring stuff
string private _currentBaseURI;
//How many reserved we keep.
uint private _reservedMints;
//the max amount of reserved ... | mintsPerAddress[msg.sender]==0,"Wallet has already have minted an NFT!" | 207,556 | mintsPerAddress[msg.sender]==0 |
"Not enough Reserved NFTs left to mint.." | pragma solidity >=0.8.9 <0.9.0;
contract dinofrogs is ERC721A, Ownable, ReentrancyGuard {
using Strings for uint256;
uint256 private maxTotalTokens;
//boring stuff
string private _currentBaseURI;
//How many reserved we keep.
uint private _reservedMints;
//the max amount of reserved ... | _reservedMints+number<=maxReservedMints,"Not enough Reserved NFTs left to mint.." | 207,556 | _reservedMints+number<=maxReservedMints |
"ALREADY_SET" | /*
Copyright 2019-2023 StarkWare Industries Ltd.
Licensed under the Apache License, Version 2.0 (the "License").
You may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.starkware.co/open-source-license/
Unless required by applicable law or agreed ... | getUintValue(tag_)==0,"ALREADY_SET" | 207,909 | getUintValue(tag_)==0 |
"ALREADY_SET" | /*
Copyright 2019-2023 StarkWare Industries Ltd.
Licensed under the Apache License, Version 2.0 (the "License").
You may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.starkware.co/open-source-license/
Unless required by applicable law or agreed ... | getAddressValue(tag_)==address(0x0),"ALREADY_SET" | 207,909 | getAddressValue(tag_)==address(0x0) |
"Your address has been marked as a sniper, you are unable to transfer or swap." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ERC20.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./IUniswapV2Pair.sol";
import "./IUniswapV2Router02.sol";
import "./IUniswapV2Factory.sol";
/*
<> Terra Inu <>
Website - https://terrainu.org/
Telegram - https://... | !_isBlacklisted[from],"Your address has been marked as a sniper, you are unable to transfer or swap." | 208,007 | !_isBlacklisted[from] |
"Over MaxPerWallet" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "@openzeppelin/contracts/access/Ownable.sol";
import "tiny-erc721/contracts/TinyERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
contract ShinseiJidai is TinyERC721, Ownable {
string public baseURI;
address public proxyRegistr... | addressMintedBalance[msg.sender]<maxPerWallet,"Over MaxPerWallet" | 208,116 | addressMintedBalance[msg.sender]<maxPerWallet |
"Can't mint more than max free quantity tokens!" | contract PixelBears is IERC2981, ERC721, DefaultOperatorFilterer721 {
bool private _whitelistEnabled;
bool private _publicEnabled;
uint private _supply;
uint private _whitelistSalePrice;
uint private _publicSalePrice;
address private _whitelistSigner;
uint private _EIP2981RoyaltyPerce... | freeAmountMinted[msg.sender]+qty<=maxFreeMint,"Can't mint more than max free quantity tokens!" | 208,181 | freeAmountMinted[msg.sender]+qty<=maxFreeMint |
"User not whitelisted!" | contract PixelBears is IERC2981, ERC721, DefaultOperatorFilterer721 {
bool private _whitelistEnabled;
bool private _publicEnabled;
uint private _supply;
uint private _whitelistSalePrice;
uint private _publicSalePrice;
address private _whitelistSigner;
uint private _EIP2981RoyaltyPerce... | _isWhitelisted(msg.sender,maxQty,sig),"User not whitelisted!" | 208,181 | _isWhitelisted(msg.sender,maxQty,sig) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.