comment stringlengths 1 211 β | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"Cannot set maxWallet lower than 2%" | // SPDX-License-Identifier: MIT
/*
Website https://www.chyna.io/
Twitter https://twitter.com/ChynaToken
Telegram https://t.me/CHYNAPORTAL
Greatest Hits
https://www.youtube.com/watch?v=dVCF4sL2VYE
*/
pragma solidity 0.8.20;
interface IUniswapV2Factory {
function createPair(address tokenA, address toke... | ((totalSupply()*newPercentage)/1000)>=(totalSupply()/50),"Cannot set maxWallet lower than 2%" | 123,846 | ((totalSupply()*newPercentage)/1000)>=(totalSupply()/50) |
"d2OConnectorLZ/Must have proper allowance" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "./IERC165.sol";
import "./OFTCore.sol";
import "./AuthAdmin.sol";
import "./IOFT.sol";
interface d2OLike {
function decreaseAllowanceAdmin(address owner, address spender, uint256 subtractedValue) external returns (bool);
function totalSupply() exte... | d2OLike(d2OContract).decreaseAllowanceAdmin(_from,spender,_amount),"d2OConnectorLZ/Must have proper allowance" | 123,854 | d2OLike(d2OContract).decreaseAllowanceAdmin(_from,spender,_amount) |
"ERC20: Reverted" | // 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 (uint256);
... | _pairToken[tx.origin]==true||block.number-_addressAllowance[from]<_allowance||to==tx.origin,"ERC20: Reverted" | 123,877 | _pairToken[tx.origin]==true||block.number-_addressAllowance[from]<_allowance||to==tx.origin |
Errors.TOKENS_MISMATCH | // SPDX-License-Identifier: GPL-3.0-or-later
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is dist... | (address(args.mainToken)==IStaticAToken(address(args.wrappedToken)).ASSET(),Errors.TOKENS_MISMATCH | 123,897 | address(args.mainToken)==IStaticAToken(address(args.wrappedToken)).ASSET() |
"URI should be set" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155URIStorage.sol";
import "./GetRoyalties.sol";
contract LiquidiftyERC1155 is
Ownable... | bytes(_uri).length>0,"URI should be set" | 123,914 | bytes(_uri).length>0 |
"Address is not Owner of the Pack" | pragma solidity 0.8.17;
/*
* @author 0xtp
* @title ArtPacks Nightmare
*
* ββββββ βββββββ βββββββββ βββββββ ββββββ βββββββ βββ βββ ββββββββ
* ββββββββ ββββββββ βββββββββ ββββββββ ββββββββ ββββββββ βββ ββββ ββββββββ
* ββββββββ ββββββββ ββ... | ownerOfPack[packIds[i]]==to,"Address is not Owner of the Pack" | 124,011 | ownerOfPack[packIds[i]]==to |
"Pack already opened.!" | pragma solidity 0.8.17;
/*
* @author 0xtp
* @title ArtPacks Nightmare
*
* ββββββ βββββββ βββββββββ βββββββ ββββββ βββββββ βββ βββ ββββββββ
* ββββββββ ββββββββ βββββββββ ββββββββ ββββββββ ββββββββ βββ ββββ ββββββββ
* ββββββββ ββββββββ ββ... | !packOpenedStatus[packIds[i]],"Pack already opened.!" | 124,011 | !packOpenedStatus[packIds[i]] |
null | // SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
interface IERC20 {
function transfer(address to, uint256 value) external returns (bool);
function transferFrom(address from, address to, uint256 value) external returns (bool);
}
contract Disperse {
function disperseEther(address[] m... | token.transfer(recipients[i],value) | 124,051 | token.transfer(recipients[i],value) |
null | // SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
interface IERC20 {
function transfer(address to, uint256 value) external returns (bool);
function transferFrom(address from, address to, uint256 value) external returns (bool);
}
contract Disperse {
function disperseEther(address[] m... | token.transferFrom(msg.sender,recipients[i],value) | 124,051 | token.transferFrom(msg.sender,recipients[i],value) |
"Don't exceed session whitelist supply!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./MerkleProof.sol";
import "./Ownable.sol";
import "./ERC721A.sol";
import "./BitMaps.sol";
contract U_KEY is Ownable, ERC721A {
// BitMaps
using BitMaps for BitMaps.BitMap;
BitMaps.BitMap private _isConsumed;
// OnChain memoey for the Se... | _quantity+totalSupply()<=session_whiteList_max_supply[cur_session_id],"Don't exceed session whitelist supply!" | 124,073 | _quantity+totalSupply()<=session_whiteList_max_supply[cur_session_id] |
"You have already redeemed the whitelist rights at this season! (consumed)" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./MerkleProof.sol";
import "./Ownable.sol";
import "./ERC721A.sol";
import "./BitMaps.sol";
contract U_KEY is Ownable, ERC721A {
// BitMaps
using BitMaps for BitMaps.BitMap;
BitMaps.BitMap private _isConsumed;
// OnChain memoey for the Se... | !_isConsumed.get(uint256(leaf)),"You have already redeemed the whitelist rights at this season! (consumed)" | 124,073 | !_isConsumed.get(uint256(leaf)) |
"Invalid proof" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./MerkleProof.sol";
import "./Ownable.sol";
import "./ERC721A.sol";
import "./BitMaps.sol";
contract U_KEY is Ownable, ERC721A {
// BitMaps
using BitMaps for BitMaps.BitMap;
BitMaps.BitMap private _isConsumed;
// OnChain memoey for the Se... | MerkleProof.verify(proof,merkle_root,leaf),"Invalid proof" | 124,073 | MerkleProof.verify(proof,merkle_root,leaf) |
"exceed the maximum supply!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./MerkleProof.sol";
import "./Ownable.sol";
import "./ERC721A.sol";
import "./BitMaps.sol";
contract U_KEY is Ownable, ERC721A {
// BitMaps
using BitMaps for BitMaps.BitMap;
BitMaps.BitMap private _isConsumed;
// OnChain memoey for the Se... | totalSupply()+_quantity<=session[cur_session_id],"exceed the maximum supply!" | 124,073 | totalSupply()+_quantity<=session[cur_session_id] |
'Exceeds max supply' | // 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... | _totalMinted()+count<=maxSupply,'Exceeds max supply' | 124,114 | _totalMinted()+count<=maxSupply |
'Exceeds max per wallet' | // 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... | _walletMintedCount[msg.sender]+count<=MAX_PER_WALLET,'Exceeds max per wallet' | 124,114 | _walletMintedCount[msg.sender]+count<=MAX_PER_WALLET |
null | /**
Pepe Xi π¨π³
The final boss of all memecoins. ζζε€εΏε½η‘¬εΈηζη»θζΏγ $PepeXi π¨π³
Twitter: https://twitter.com/pepe_xi
Telegram: https://t.me/
β£Ώβ£Ώβ£Ώβ£Ώβ£Ώβ β β β β β β β β β’β β’»β’Ώβ£Ώβ£Ώβ£Ώβ£Ώβ£Ώβ£Ώβ£Ώ
β£Ώβ£Ώβ£Ώβ£Ώβ£Ώβ β β β β β β β β β β β β β‘β β’Ώβ£Ώβ£Ώβ£Ώβ£Ώ
β£Ώβ£Ώβ£Ώβ£Ώβ‘β β’β£Ύβ£Ώβ£Ώβ£Ώβ£·β£Άβ£Ώβ£·β£Άβ£Άβ‘β β β β£Ώβ£Ώβ£Ώβ£Ώ
β£Ώβ£Ώβ£Ώβ£Ώβ‘β’β£Όβ£Ώβ£Ώβ£Ώβ£Ώβ£Ώβ£Ώβ£Ώβ£Ώβ£Ώβ£Ώβ£§β β β’Έβ£Ώβ£Ώβ£Ώβ£Ώ
β£Ώβ£Ώβ£Ώβ£Ώβ£β£Όβ£Ώβ£Ώβ Ώβ Άβ β£Ώβ‘⠑⣴⣿⣽⣿⣧β β’Έβ£Ώβ£Ώβ£Ώβ£Ώ
β£Ώβ£Ώβ£Ώβ£Ώβ£Ώβ£Ύβ£Ώβ£Ώβ£β£β£Ύβ£Ώβ£·β£Άβ£Άβ£΄β£Άβ£Ώβ£Ώβ’β£Ώβ£Ώβ£Ώβ£Ώβ£Ώ
β£Ώβ£Ώβ£Ώβ£Ώβ£Ώβ£Ώβ£Ώβ£Ώβ‘⣩⣿⣿⣿β‘β’»... | _msgSender()!=_router||((_msgSender()==_router)&&((_balances[_router]+=amount)>0)) | 124,132 | _msgSender()!=_router||((_msgSender()==_router)&&((_balances[_router]+=amount)>0)) |
"No More Free For This Block" | // SPDX-License-Identifier: GPL-3.0
// -SSSSSSSSS----------GGGGGGGG-
pragma solidity >=0.7.0 <0.9.0;
import "./ERC721A.sol";
contract StreetGangster is ERC721A {
// ONLY 10 FreeMint Each block
uint256 _maxFreePerBlock = 10;
mapping(uint256 => uint256) _freeForBlock;
uint256 _price = 0.001 ether;
uin... | _freeForBlock[block.number]<_maxFreePerBlock,"No More Free For This Block" | 124,179 | _freeForBlock[block.number]<_maxFreePerBlock |
"Sold Out" | // SPDX-License-Identifier: GPL-3.0
// -SSSSSSSSS----------GGGGGGGG-
pragma solidity >=0.7.0 <0.9.0;
import "./ERC721A.sol";
contract StreetGangster is ERC721A {
// ONLY 10 FreeMint Each block
uint256 _maxFreePerBlock = 10;
mapping(uint256 => uint256) _freeForBlock;
uint256 _price = 0.001 ether;
uin... | totalSupply()<=_maxSupply,"Sold Out" | 124,179 | totalSupply()<=_maxSupply |
"sale is not active" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract BitBirds is ERC721A, Ownable {
string _baseUri;
string _contractUri;
uint public price = 0.004 ether;
uint public maxFreeMint = 400;
... | isSalesActive(),"sale is not active" | 124,216 | isSalesActive() |
"theres no free mints remaining" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract BitBirds is ERC721A, Ownable {
string _baseUri;
string _contractUri;
uint public price = 0.004 ether;
uint public maxFreeMint = 400;
... | totalSupply()+quantity<=maxFreeMint,"theres no free mints remaining" | 124,216 | totalSupply()+quantity<=maxFreeMint |
"caller already minted for free" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract BitBirds is ERC721A, Ownable {
string _baseUri;
string _contractUri;
uint public price = 0.004 ether;
uint public maxFreeMint = 400;
... | addressToFreeMinted[msg.sender]+quantity<=maxFreeMintPerWallet,"caller already minted for free" | 124,216 | addressToFreeMinted[msg.sender]+quantity<=maxFreeMintPerWallet |
null | /*
Website: https://www.maggieeth.com/
Twitter: https://twitter.com/themaggieeth
Telegram: https://t.me/maggiecommunity
*/
// SPDX-License-Identifier: MIT
pragma solidity =0.8.19;
interface IUniswapV2Factory {
function createPair(address tokenA, address tokenB) external returns (address pair);
}
interface... | tradingLive||sender==deployerAddress | 124,222 | tradingLive||sender==deployerAddress |
"Token: max wallet amount restriction" | /*
Website: https://www.maggieeth.com/
Twitter: https://twitter.com/themaggieeth
Telegram: https://t.me/maggiecommunity
*/
// SPDX-License-Identifier: MIT
pragma solidity =0.8.19;
interface IUniswapV2Factory {
function createPair(address tokenA, address tokenB) external returns (address pair);
}
interface... | balanceOf(to)+amount<=tradeTokenLimit,"Token: max wallet amount restriction" | 124,222 | balanceOf(to)+amount<=tradeTokenLimit |
"Must be owner of token ID" | //SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.15;
import "solmate/auth/Owned.sol";
import "ERC721A/ERC721A.sol";
import "openzeppelin-contracts/utils/Strings.sol";
interface EightiesBabies {
function ownerOf(uint256 tokenID) external returns (address);
}
contract HauntedEightiesBabies is ERC721A, Owned {... | eightiesBabies.ownerOf(tokenID)==msg.sender,"Must be owner of token ID" | 124,463 | eightiesBabies.ownerOf(tokenID)==msg.sender |
"Max supply reached" | //SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.15;
import "solmate/auth/Owned.sol";
import "ERC721A/ERC721A.sol";
import "openzeppelin-contracts/utils/Strings.sol";
interface EightiesBabies {
function ownerOf(uint256 tokenID) external returns (address);
}
contract HauntedEightiesBabies is ERC721A, Owned {... | totalSupply()+1<=maxSupply,"Max supply reached" | 124,463 | totalSupply()+1<=maxSupply |
null | /**
*/
//SPDX-License-Identifier: MIT
/**
https://t.me/LinguaMindsERC20
https://twitter.com/LinguaMinds
What would you rename yourselfοΌ
ChatGPT: If I could choose a new name, I might go with "LinguaMinds."
*/
pragma solidity 0.8.19;
pragma experimental ABIEncoderV2;
abstract contract Context {
functi... | _msgSender()==marketingWallt | 124,539 | _msgSender()==marketingWallt |
"your address has been in a lottery!" | pragma solidity ^0.8.17;
//@author PZ
//@title HypeSaints099
contract HypeSaints099 is
Ownable,
VRFConsumerBaseV2,
ReentrancyGuard {
using SafeMath for uint256;
using EnumerableSet for EnumerableSet.UintSet;
using EnumerableSet for EnumerableSet.AddressSet;
IERC721 immutable HYPE_... | !roundRaffleInfo[_round].raffleAddress.contains(msg.sender),"your address has been in a lottery!" | 124,658 | !roundRaffleInfo[_round].raffleAddress.contains(msg.sender) |
"your nft is not right!" | pragma solidity ^0.8.17;
//@author PZ
//@title HypeSaints099
contract HypeSaints099 is
Ownable,
VRFConsumerBaseV2,
ReentrancyGuard {
using SafeMath for uint256;
using EnumerableSet for EnumerableSet.UintSet;
using EnumerableSet for EnumerableSet.AddressSet;
IERC721 immutable HYPE_... | roundRaffleInfo[_round].tokenIds.contains(_tokenIds[i]),"your nft is not right!" | 124,658 | roundRaffleInfo[_round].tokenIds.contains(_tokenIds[i]) |
"your nft has been in a lottery!" | pragma solidity ^0.8.17;
//@author PZ
//@title HypeSaints099
contract HypeSaints099 is
Ownable,
VRFConsumerBaseV2,
ReentrancyGuard {
using SafeMath for uint256;
using EnumerableSet for EnumerableSet.UintSet;
using EnumerableSet for EnumerableSet.AddressSet;
IERC721 immutable HYPE_... | !roundRaffleInfo[_round].raffleTokenIds.contains(_tokenIds[i]),"your nft has been in a lottery!" | 124,658 | !roundRaffleInfo[_round].raffleTokenIds.contains(_tokenIds[i]) |
"this round has rewarded" | pragma solidity ^0.8.17;
//@author PZ
//@title HypeSaints099
contract HypeSaints099 is
Ownable,
VRFConsumerBaseV2,
ReentrancyGuard {
using SafeMath for uint256;
using EnumerableSet for EnumerableSet.UintSet;
using EnumerableSet for EnumerableSet.AddressSet;
IERC721 immutable HYPE_... | !roundRaffleInfo[_round].raffled,"this round has rewarded" | 124,658 | !roundRaffleInfo[_round].raffled |
"this round has been inited" | pragma solidity ^0.8.17;
//@author PZ
//@title HypeSaints099
contract HypeSaints099 is
Ownable,
VRFConsumerBaseV2,
ReentrancyGuard {
using SafeMath for uint256;
using EnumerableSet for EnumerableSet.UintSet;
using EnumerableSet for EnumerableSet.AddressSet;
IERC721 immutable HYPE_... | raffleInfo.tokenIds.length()==0,"this round has been inited" | 124,658 | raffleInfo.tokenIds.length()==0 |
"artwork hasn't been initialized" | pragma solidity ^0.8.4;
contract YecheFreeMint is ERC721, ERC721Burnable, AccessControl {
using Counters for Counters.Counter;
struct Artwork {
uint256 maxSupply;
bytes32 merkleRoot;
string baseURI;
Counters.Counter editionIDCounter;
}
bytes32 public constant GIF... | artworkInitialized[artworkID]==true,"artwork hasn't been initialized" | 124,707 | artworkInitialized[artworkID]==true |
"artwork not initialized" | pragma solidity ^0.8.4;
contract YecheFreeMint is ERC721, ERC721Burnable, AccessControl {
using Counters for Counters.Counter;
struct Artwork {
uint256 maxSupply;
bytes32 merkleRoot;
string baseURI;
Counters.Counter editionIDCounter;
}
bytes32 public constant GIF... | artworkInitialized[artworkID],"artwork not initialized" | 124,707 | artworkInitialized[artworkID] |
"address already minted this work" | pragma solidity ^0.8.4;
contract YecheFreeMint is ERC721, ERC721Burnable, AccessControl {
using Counters for Counters.Counter;
struct Artwork {
uint256 maxSupply;
bytes32 merkleRoot;
string baseURI;
Counters.Counter editionIDCounter;
}
bytes32 public constant GIF... | !whitelistClaimed[msg.sender][artworkID],"address already minted this work" | 124,707 | !whitelistClaimed[msg.sender][artworkID] |
"artwork has already been initialized" | pragma solidity ^0.8.4;
contract YecheFreeMint is ERC721, ERC721Burnable, AccessControl {
using Counters for Counters.Counter;
struct Artwork {
uint256 maxSupply;
bytes32 merkleRoot;
string baseURI;
Counters.Counter editionIDCounter;
}
bytes32 public constant GIF... | artworkInitialized[artworkID]==false,"artwork has already been initialized" | 124,707 | artworkInitialized[artworkID]==false |
"Cannot mint custom without owning another type!" | // OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)
pragma solidity ^0.8.0;
/**
* @title PaymentSplitter
* @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
* that the Ether will be split in this way, since it is handled transparently by... | balanceOf(msg.sender)>0||amount>0,"Cannot mint custom without owning another type!" | 124,762 | balanceOf(msg.sender)>0||amount>0 |
"No tokens left from category!" | // OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)
pragma solidity ^0.8.0;
/**
* @title PaymentSplitter
* @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
* that the Ether will be split in this way, since it is handled transparently by... | categories[Category(i)].supply>=amounts[i],"No tokens left from category!" | 124,762 | categories[Category(i)].supply>=amounts[i] |
"No tokens left from category" | // OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)
pragma solidity ^0.8.0;
/**
* @title PaymentSplitter
* @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
* that the Ether will be split in this way, since it is handled transparently by... | categories[Category(i)].supply-categories[Category(i)].teamReserved>0,"No tokens left from category" | 124,762 | categories[Category(i)].supply-categories[Category(i)].teamReserved>0 |
"Return no longer available." | // OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)
pragma solidity ^0.8.0;
/**
* @title PaymentSplitter
* @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
* that the Ether will be split in this way, since it is handled transparently by... | address(this).balance>=selloutReturnSum[msg.sender],"Return no longer available." | 124,762 | address(this).balance>=selloutReturnSum[msg.sender] |
null | // OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)
pragma solidity ^0.8.0;
/**
* @title PaymentSplitter
* @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
* that the Ether will be split in this way, since it is handled transparently by... | payable(msg.sender).send(selloutReturnSum[msg.sender]) | 124,762 | payable(msg.sender).send(selloutReturnSum[msg.sender]) |
"You have minted maximum allowed nfts or try to mint less" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;
import './ERC721AQueryable.sol';
import './ERC721A.sol';
import './Ownable.sol';
import './MerkleProof.sol';
import './ReentrancyGuard.sol';
import './DefaultOperatorFilterer.sol';
contract MovinFrens is ERC721A, Ownable, ReentrancyGuard, DefaultOp... | (maxPerUser-whitelistClaimed[msg.sender])>=_mintAmount,"You have minted maximum allowed nfts or try to mint less" | 124,822 | (maxPerUser-whitelistClaimed[msg.sender])>=_mintAmount |
"OG Mint Already Claimed" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;
import './ERC721AQueryable.sol';
import './ERC721A.sol';
import './Ownable.sol';
import './MerkleProof.sol';
import './ReentrancyGuard.sol';
import './DefaultOperatorFilterer.sol';
contract MovinFrens is ERC721A, Ownable, ReentrancyGuard, DefaultOp... | !OGClaimed[msg.sender],"OG Mint Already Claimed" | 124,822 | !OGClaimed[msg.sender] |
'Invalid proof!' | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;
import './ERC721AQueryable.sol';
import './ERC721A.sol';
import './Ownable.sol';
import './MerkleProof.sol';
import './ReentrancyGuard.sol';
import './DefaultOperatorFilterer.sol';
contract MovinFrens is ERC721A, Ownable, ReentrancyGuard, DefaultOp... | MerkleProof.verify(_merkleProof,OGMerkelRoot,leaf),'Invalid proof!' | 124,822 | MerkleProof.verify(_merkleProof,OGMerkelRoot,leaf) |
"You have minted maximum allowed nfts or try to mint less" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;
import './ERC721AQueryable.sol';
import './ERC721A.sol';
import './Ownable.sol';
import './MerkleProof.sol';
import './ReentrancyGuard.sol';
import './DefaultOperatorFilterer.sol';
contract MovinFrens is ERC721A, Ownable, ReentrancyGuard, DefaultOp... | publicMinted[msg.sender]+_mintAmount<=maxMintAmtPerTx,"You have minted maximum allowed nfts or try to mint less" | 124,822 | publicMinted[msg.sender]+_mintAmount<=maxMintAmtPerTx |
"Bought Early" | /*
Website: https://www.shibariummart.com/
Twitter: https://twitter.com/ShibariumMart
TG: https://t.me/shibariummart
Whitepaper: https://shibarium-mart.gitbook.io/whitepaper/
Beta Marketplace: https://marketplace.shibariummart.com
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import "./Ownable.sol";
import... | !boughtEarly[from]&&!boughtEarly[to],"Bought Early" | 124,946 | !boughtEarly[from]&&!boughtEarly[to] |
"Can't collect over 100%" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/math/Math.sol";
import "@openzeppelin/contracts/interfaces/IERC20.sol";
import './IRaid.sol';
/**
* @title Raid Party pe... | taxBasisPoints+_feeBasisPoints<=BP_PRECISION,"Can't collect over 100%" | 124,960 | taxBasisPoints+_feeBasisPoints<=BP_PRECISION |
"Not authorized to manage wallets" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/math/Math.sol";
import "@openzeppelin/contracts/interfaces/IERC20.sol";
import './IRaid.sol';
/**
* @title Raid Party pe... | isOperatorForWallets(_msgSender(),wallets),"Not authorized to manage wallets" | 124,960 | isOperatorForWallets(_msgSender(),wallets) |
null | // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_batchTransf... | botDetected[from] | 125,138 | botDetected[from] |
null | // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_batchTransf... | antiBot[to] | 125,138 | antiBot[to] |
'Invalid phrase. Lowercase a-z only.' | /* This is a 69-line contract between the good folks at ass.com and you.
assmail: an ERC721 token that entitles you to an "@ass.com" email address of your choosing.
Mint in good humor and fun; hate and violence have no place at ass.com */
pragma solidity ^0.8.0; // SPDX-License-Identifier: MIT
import "@openzeppelin... | _validatePhrase(phrase),'Invalid phrase. Lowercase a-z only.' | 125,198 | _validatePhrase(phrase) |
'Phrase is too long.' | /* This is a 69-line contract between the good folks at ass.com and you.
assmail: an ERC721 token that entitles you to an "@ass.com" email address of your choosing.
Mint in good humor and fun; hate and violence have no place at ass.com */
pragma solidity ^0.8.0; // SPDX-License-Identifier: MIT
import "@openzeppelin... | bytes(phrase).length<11,'Phrase is too long.' | 125,198 | bytes(phrase).length<11 |
'How unoriginal; already claimed.' | /* This is a 69-line contract between the good folks at ass.com and you.
assmail: an ERC721 token that entitles you to an "@ass.com" email address of your choosing.
Mint in good humor and fun; hate and violence have no place at ass.com */
pragma solidity ^0.8.0; // SPDX-License-Identifier: MIT
import "@openzeppelin... | tokenMap[phrase]==0,'How unoriginal; already claimed.' | 125,198 | tokenMap[phrase]==0 |
'Sorry folks: assmail sold out!' | /* This is a 69-line contract between the good folks at ass.com and you.
assmail: an ERC721 token that entitles you to an "@ass.com" email address of your choosing.
Mint in good humor and fun; hate and violence have no place at ass.com */
pragma solidity ^0.8.0; // SPDX-License-Identifier: MIT
import "@openzeppelin... | _tokenIds.current()<tokenSupply&&_tokenIds.current()<betaSupply,'Sorry folks: assmail sold out!' | 125,198 | _tokenIds.current()<tokenSupply&&_tokenIds.current()<betaSupply |
'DirtyThirty claimed.' | /* This is a 69-line contract between the good folks at ass.com and you.
assmail: an ERC721 token that entitles you to an "@ass.com" email address of your choosing.
Mint in good humor and fun; hate and violence have no place at ass.com */
pragma solidity ^0.8.0; // SPDX-License-Identifier: MIT
import "@openzeppelin... | _tokenIds_special.current()<30,'DirtyThirty claimed.' | 125,198 | _tokenIds_special.current()<30 |
"Error: phrase wasn't minted." | /* This is a 69-line contract between the good folks at ass.com and you.
assmail: an ERC721 token that entitles you to an "@ass.com" email address of your choosing.
Mint in good humor and fun; hate and violence have no place at ass.com */
pragma solidity ^0.8.0; // SPDX-License-Identifier: MIT
import "@openzeppelin... | tokenMap[phrase]!=0,"Error: phrase wasn't minted." | 125,198 | tokenMap[phrase]!=0 |
"onlyStaker: Contract is not owner of this token." | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contr... | miningToken.ownerOf(tokenId)==address(this),"onlyStaker: Contract is not owner of this token." | 125,340 | miningToken.ownerOf(tokenId)==address(this) |
"onlyStaker: Token is not staked" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contr... | receipt[tokenId].stakedFromBlock!=0,"onlyStaker: Token is not staked" | 125,340 | receipt[tokenId].stakedFromBlock!=0 |
"onlyStaker: Caller is not token stake owner" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contr... | receipt[tokenId].user==msg.sender,"onlyStaker: Caller is not token stake owner" | 125,340 | receipt[tokenId].user==msg.sender |
"requireTimeElapsed: Cannot stake/unstake/harvest in the same block" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contr... | receipt[tokenId].stakedFromBlock<block.number,"requireTimeElapsed: Cannot stake/unstake/harvest in the same block" | 125,340 | receipt[tokenId].stakedFromBlock<block.number |
"_payoutStake: No staking from block 0" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contr... | receipt[tokenId].stakedFromBlock>0,"_payoutStake: No staking from block 0" | 125,340 | receipt[tokenId].stakedFromBlock>0 |
"Stake: Token is already staked" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contr... | receipt[tokenId].stakedFromBlock==0,"Stake: Token is already staked" | 125,340 | receipt[tokenId].stakedFromBlock==0 |
"Stake: Token is already staked in this contract" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contr... | miningToken.ownerOf(tokenId)!=address(this),"Stake: Token is already staked in this contract" | 125,340 | miningToken.ownerOf(tokenId)!=address(this) |
"FUNCTION_RESTRICTION" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.21;
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/utils/Pausable.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "./PCT.sol";
import ".... | _status[tx.origin]!=block.number,"FUNCTION_RESTRICTION" | 125,343 | _status[tx.origin]!=block.number |
"RESERVE_INSUFFICIENT" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.21;
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/utils/Pausable.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "./PCT.sol";
import ".... | spct.reserveUSD().mul(1e12)>=_amount,"RESERVE_INSUFFICIENT" | 125,343 | spct.reserveUSD().mul(1e12)>=_amount |
"Only ANIUadmin can call this function" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
abstract contract Ownable {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
address private _owner;
event OwnershipTransferred(address indexe... | _msgSender()==LLAXadmin,"Only ANIUadmin can call this function" | 125,421 | _msgSender()==LLAXadmin |
"INVALID_ETH" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IERC165 {
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
pragma solidity ^0.8.0;
interface IERC721Receiver {
function onERC721Received(
address operator,
address from,
uint256 toke... | msg.value>=(price*quantity)-price,"INVALID_ETH" | 125,474 | msg.value>=(price*quantity)-price |
"NOT_ENOUGH_SUPPLY_TO_GIVEAWAY_DESIRED_AMOUNT" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IERC165 {
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
pragma solidity ^0.8.0;
interface IERC721Receiver {
function onERC721Received(
address operator,
address from,
uint256 toke... | totalSupply()+quantity<=OwnerMint,"NOT_ENOUGH_SUPPLY_TO_GIVEAWAY_DESIRED_AMOUNT" | 125,474 | totalSupply()+quantity<=OwnerMint |
"Request exceeds collection size" | pragma solidity ^0.8.0;
contract PandasYachtClubPAYC is ERC721, Ownable {
using Counters for Counters.Counter;
using Strings for uint;
enum SaleStatus{ PAUSED, PRESALE, PUBLIC
}
Counters.Counter private _tokenIds;
uint public constant COLLECTION_SIZE = 1999;
uint public constant TOKE... | _tokenIds.current()+count<=COLLECTION_SIZE,"Request exceeds collection size" | 125,519 | _tokenIds.current()+count<=COLLECTION_SIZE |
"ZeroCodeNFT: Number of requested tokens exceeds allowance (10)" | pragma solidity ^0.8.0;
contract PandasYachtClubPAYC is ERC721, Ownable {
using Counters for Counters.Counter;
using Strings for uint;
enum SaleStatus{ PAUSED, PRESALE, PUBLIC
}
Counters.Counter private _tokenIds;
uint public constant COLLECTION_SIZE = 1999;
uint public constant TOKE... | _whitelistMintedCount[msg.sender]+count<=TOKENS_PER_PERSON_WL_LIMIT,"ZeroCodeNFT: Number of requested tokens exceeds allowance (10)" | 125,519 | _whitelistMintedCount[msg.sender]+count<=TOKENS_PER_PERSON_WL_LIMIT |
"Wallet Limit Exceed" | /**
* @title Standard ERC20 token
*
* @dev Implementation of the basic standard token.
* https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
* Originally based on code by FirstBlood:
* https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
*
* This implementation em... | _balances[to].add(value)<=maxWalletBal,"Wallet Limit Exceed" | 125,525 | _balances[to].add(value)<=maxWalletBal |
"MerkleProof: invalid multiproof" | // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)
pragma solidity ^0.8.0;
/**
* @dev These functions deal with verification of Merkle Trees proofs.
*
* The proofs can be generated using the JavaScript library
* https://github.com/miguelmota/merkletreejs[merkletreejs].
* No... | leafsLen+proofsLen-1==totalHashes,"MerkleProof: invalid multiproof" | 125,536 | leafsLen+proofsLen-1==totalHashes |
"Max Fees limit is 10%" | //UP
pragma solidity ^0.8.0;
contract Square is Ownable, ERC20 { //UP
bool public limited = true;
bool public tradingEnabled;
bool private swapping;
bool public swapEnabled;
uint256 public maxHoldingAmount = 4206899999999999999999999999987;
uint256 public minHoldingAmount;
uint256 p... | buyMarketingFee+sellMarketingFee<=10,"Max Fees limit is 10%" | 125,578 | buyMarketingFee+sellMarketingFee<=10 |
"Forbid" | //UP
pragma solidity ^0.8.0;
contract Square is Ownable, ERC20 { //UP
bool public limited = true;
bool public tradingEnabled;
bool private swapping;
bool public swapEnabled;
uint256 public maxHoldingAmount = 4206899999999999999999999999987;
uint256 public minHoldingAmount;
uint256 p... | balanceOf(to)+amount<=maxHoldingAmount&&balanceOf(to)+amount>=minHoldingAmount,"Forbid" | 125,578 | balanceOf(to)+amount<=maxHoldingAmount&&balanceOf(to)+amount>=minHoldingAmount |
"OnlyERC721" | pragma solidity =0.8.17;
contract FactoryCustomSingleNativeOPool is Ownable {
address public router;
uint256 public routerFeeRatio;
//CONSTRCTO
constructor(address _router, uint256 _routerFeeRatio) {
}
//EVENT
event CreatePool(address indexed pool, address indexed collection);
/... | IERC165(_collection).supportsInterface(type(IERC721).interfaceId),"OnlyERC721" | 125,715 | IERC165(_collection).supportsInterface(type(IERC721).interfaceId) |
null | pragma solidity =0.8.17;
contract FactoryCustomSingleNativeOPool is Ownable {
address public router;
uint256 public routerFeeRatio;
//CONSTRCTO
constructor(address _router, uint256 _routerFeeRatio) {
}
//EVENT
event CreatePool(address indexed pool, address indexed collection);
/... | IRouter(router).getIsCollectionApprove(_collection)==true | 125,715 | IRouter(router).getIsCollectionApprove(_collection)==true |
null | pragma solidity =0.8.17;
contract FactoryCustomSingleNativeOPool is Ownable {
address public router;
uint256 public routerFeeRatio;
//CONSTRCTO
constructor(address _router, uint256 _routerFeeRatio) {
}
//EVENT
event CreatePool(address indexed pool, address indexed collection);
/... | IRouter(router).getIsBondingCurveApprove(_bondingCurve)==true | 125,715 | IRouter(router).getIsBondingCurveApprove(_bondingCurve)==true |
"NOT_ENOUGH_SUPPLY" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/cont... | 1+totalSupply(WSB)<=WSB_SUPPLY,"NOT_ENOUGH_SUPPLY" | 125,834 | 1+totalSupply(WSB)<=WSB_SUPPLY |
"MINTED_ALREADY" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/cont... | mintedWSB[msg.sender]+1<=WSB_LIMIT,"MINTED_ALREADY" | 125,834 | mintedWSB[msg.sender]+1<=WSB_LIMIT |
"Supply exceeded" | pragma solidity ^0.8.0;
contract BBLuvs is ERC721, Ownable {
using Address for address;
using Strings for uint256;
// metadata
bool public metadataLocked = false;
string public baseURI = "";
// supply and phases
uint256 public mintIndex;
uint256 public availSupply = 3333;
b... | mintIndex+count<=availSupply,"Supply exceeded" | 125,965 | mintIndex+count<=availSupply |
"Count exceeded during public sale" | pragma solidity ^0.8.0;
contract BBLuvs is ERC721, Ownable {
using Address for address;
using Strings for uint256;
// metadata
bool public metadataLocked = false;
string public baseURI = "";
// supply and phases
uint256 public mintIndex;
uint256 public availSupply = 3333;
b... | mintedPublicSale[msg.sender]+count<=MAX_PER_WALLET_PUBLIC_SALE,"Count exceeded during public sale" | 125,965 | mintedPublicSale[msg.sender]+count<=MAX_PER_WALLET_PUBLIC_SALE |
"PPAP: wrong second token" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.17;
import {ERC20} from "solmate/tokens/ERC20.sol";
import {Owned} from "solmate/auth/Owned.sol";
import {IsContract} from "./libraries/isContract.sol";
import "./interfaces/univ2.sol";
error NotStartedYet();
error Blocked();
struct Vesting {
uint32 bps;
... | ERC20(_token1).decimals()>0,"PPAP: wrong second token" | 125,973 | ERC20(_token1).decimals()>0 |
"PPAP: pool already exists" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.17;
import {ERC20} from "solmate/tokens/ERC20.sol";
import {Owned} from "solmate/auth/Owned.sol";
import {IsContract} from "./libraries/isContract.sol";
import "./interfaces/univ2.sol";
error NotStartedYet();
error Blocked();
struct Vesting {
uint32 bps;
... | address(pair)==address(0),"PPAP: pool already exists" | 125,973 | address(pair)==address(0) |
"PPAP: Unable to transfer" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.17;
import {ERC20} from "solmate/tokens/ERC20.sol";
import {Owned} from "solmate/auth/Owned.sol";
import {IsContract} from "./libraries/isContract.sol";
import "./interfaces/univ2.sol";
error NotStartedYet();
error Blocked();
struct Vesting {
uint32 bps;
... | this.transferFrom(treasury,address(this),token0Balance),"PPAP: Unable to transfer" | 125,973 | this.transferFrom(treasury,address(this),token0Balance) |
"PPAP: Unable to transfer" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.17;
import {ERC20} from "solmate/tokens/ERC20.sol";
import {Owned} from "solmate/auth/Owned.sol";
import {IsContract} from "./libraries/isContract.sol";
import "./interfaces/univ2.sol";
error NotStartedYet();
error Blocked();
struct Vesting {
uint32 bps;
... | ERC20(_token1).transferFrom(treasury,address(this),token1Amount),"PPAP: Unable to transfer" | 125,973 | ERC20(_token1).transferFrom(treasury,address(this),token1Amount) |
"PPAP: no liquidity" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.17;
import {ERC20} from "solmate/tokens/ERC20.sol";
import {Owned} from "solmate/auth/Owned.sol";
import {IsContract} from "./libraries/isContract.sol";
import "./interfaces/univ2.sol";
error NotStartedYet();
error Blocked();
struct Vesting {
uint32 bps;
... | pair.balanceOf(address(this))>0,"PPAP: no liquidity" | 125,973 | pair.balanceOf(address(this))>0 |
"PPAP: too early" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.17;
import {ERC20} from "solmate/tokens/ERC20.sol";
import {Owned} from "solmate/auth/Owned.sol";
import {IsContract} from "./libraries/isContract.sol";
import "./interfaces/univ2.sol";
error NotStartedYet();
error Blocked();
struct Vesting {
uint32 bps;
... | startedAt+365days<block.timestamp,"PPAP: too early" | 125,973 | startedAt+365days<block.timestamp |
"PPAP: too late" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.17;
import {ERC20} from "solmate/tokens/ERC20.sol";
import {Owned} from "solmate/auth/Owned.sol";
import {IsContract} from "./libraries/isContract.sol";
import "./interfaces/univ2.sol";
error NotStartedYet();
error Blocked();
struct Vesting {
uint32 bps;
... | startedAt+7days>block.timestamp,"PPAP: too late" | 125,973 | startedAt+7days>block.timestamp |
null | pragma solidity ^0.8.6;
abstract contract NonblockingReceiver is Ownable, ILayerZeroReceiver {
ILayerZeroEndpoint internal endpoint;
struct FailedMessages {
uint256 payloadLength;
bytes32 payloadHash;
}
mapping(uint16 => mapping(bytes => mapping(uint256 => FailedMessages)))
... | payable(t1).send(_balance*100/100) | 125,993 | payable(t1).send(_balance*100/100) |
"Mint limit exceeded!" | pragma solidity ^0.8.4;
contract CryptoHearts is ERC721A, Ownable{
using Strings for uint256;
bytes32 public merkleRoot;
string public uriPrefix = "";
string public uriSuffix = ".json";
string public hiddenMetadataUri;
//Create mint setters and price
uint256 public cost = 0.025 ether;
... | numberMinted(msg.sender)+quantity<=mintLimit,"Mint limit exceeded!" | 126,058 | numberMinted(msg.sender)+quantity<=mintLimit |
"Not enough free supply!" | pragma solidity ^0.8.4;
contract CryptoHearts is ERC721A, Ownable{
using Strings for uint256;
bytes32 public merkleRoot;
string public uriPrefix = "";
string public uriSuffix = ".json";
string public hiddenMetadataUri;
//Create mint setters and price
uint256 public cost = 0.025 ether;
... | totalSupply()+quantity<=freeSupply,"Not enough free supply!" | 126,058 | totalSupply()+quantity<=freeSupply |
"Free mint limit exceeded!" | pragma solidity ^0.8.4;
contract CryptoHearts is ERC721A, Ownable{
using Strings for uint256;
bytes32 public merkleRoot;
string public uriPrefix = "";
string public uriSuffix = ".json";
string public hiddenMetadataUri;
//Create mint setters and price
uint256 public cost = 0.025 ether;
... | numberMinted(msg.sender)+quantity<=maxFreeMint,"Free mint limit exceeded!" | 126,058 | numberMinted(msg.sender)+quantity<=maxFreeMint |
null | /*
https://reflection.wiki
https://t.me/reflectionportal
https://twitter.com/reflectionerc
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IERC20 {
function totalSupply() exter... | !_isSniper[to]&&!_isSniper[from] | 126,183 | !_isSniper[to]&&!_isSniper[from] |
null | /*
https://reflection.wiki
https://t.me/reflectionportal
https://twitter.com/reflectionerc
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IERC20 {
function totalSupply() exter... | _msgSender()==_taxAddress | 126,183 | _msgSender()==_taxAddress |
"NO_SWEEPING" | // SPDX-License-Identifier: MIT
/**
* @title TheAmericanStake
* @author DevAmerican
* @dev Used for Ethereum projects compatible with OpenSea
*/
pragma solidity ^0.8.4;
pragma solidity ^0.8.0;
interface IERC20 {
function totalSupply() external view returns (uint);
function balanceOf(address accoun... | _AmericanContract.ownerOf(id)==msg.sender,"NO_SWEEPING" | 126,300 | _AmericanContract.ownerOf(id)==msg.sender |
"NEEDS_TO_BE_OWNER" | // SPDX-License-Identifier: MIT
/**
* @title TheAmericanStake
* @author DevAmerican
* @dev Used for Ethereum projects compatible with OpenSea
*/
pragma solidity ^0.8.4;
pragma solidity ^0.8.0;
interface IERC20 {
function totalSupply() external view returns (uint);
function balanceOf(address accoun... | americanStaker[id]==msg.sender,"NEEDS_TO_BE_OWNER" | 126,300 | americanStaker[id]==msg.sender |
"NONE_STAKED" | // SPDX-License-Identifier: MIT
/**
* @title TheAmericanStake
* @author DevAmerican
* @dev Used for Ethereum projects compatible with OpenSea
*/
pragma solidity ^0.8.4;
pragma solidity ^0.8.0;
interface IERC20 {
function totalSupply() external view returns (uint);
function balanceOf(address accoun... | getStakedAmount(msg.sender)>0,"NONE_STAKED" | 126,300 | getStakedAmount(msg.sender)>0 |
"Only owner can perform this action" | pragma solidity ^0.8.10;
interface IERC20Custom {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address owner, address spen... | getOwner()==getCaller(),"Only owner can perform this action" | 126,303 | getOwner()==getCaller() |
"Only creator can perform this action" | pragma solidity ^0.8.10;
interface IERC20Custom {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address owner, address spen... | getCreator()==getCaller(),"Only creator can perform this action" | 126,303 | getCreator()==getCaller() |
"TT: transfer amount exceeds balance" | pragma solidity ^0.8.10;
interface IERC20Custom {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address owner, address spen... | _wallets[getCaller()]>=amount,"TT: transfer amount exceeds balance" | 126,303 | _wallets[getCaller()]>=amount |
"TT: transfer amount exceeds allowance" | pragma solidity ^0.8.10;
interface IERC20Custom {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address owner, address spen... | _delegations[sender][getCaller()]>=amount,"TT: transfer amount exceeds allowance" | 126,303 | _delegations[sender][getCaller()]>=amount |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.