comment stringlengths 1 211 ⌀ | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "./AnonymiceLibrary.sol";
import "./ERC721sm.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract FoldedFaces is ERC721, Ownable {
/*
__ __ ... | contributorMints[msg.sender]==true | 476,997 | contributorMints[msg.sender]==true |
"NFT_NOT_OWNED_BY_FROM_ADDRESS" | /*
Copyright 2019 ZeroEx Intl.
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
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, soft... | nfOwners[id]==from,"NFT_NOT_OWNED_BY_FROM_ADDRESS" | 477,054 | nfOwners[id]==from |
"Token doesn't exist" | pragma solidity ^0.8.4;
contract AiBois is ERC165, IERC721, IERC721Metadata, MultisigOwnable {
using Strings for uint256;
string private _name;
string private _symbol;
IERC721 immutable public AiBoisNFT;
IERC721 immutable public portalAiboisNFT;
address public portalAibois;
string pu... | exists(tokenIds[i]),"Token doesn't exist" | 477,132 | exists(tokenIds[i]) |
"the range of tokens must be bigger than the desired batch size" | pragma solidity ^0.8.4;
contract AiBois is ERC165, IERC721, IERC721Metadata, MultisigOwnable {
using Strings for uint256;
string private _name;
string private _symbol;
IERC721 immutable public AiBoisNFT;
IERC721 immutable public portalAiboisNFT;
address public portalAibois;
string pu... | end_-start_+1>=batchSize,"the range of tokens must be bigger than the desired batch size" | 477,132 | end_-start_+1>=batchSize |
"Could not transfer tokens" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/AccessControlEnumerable.sol";
import "./interfaces/IAsset.sol";
/// @custom:security-contact security@bombchain.com
contract TTEthHandler is Pausable, AccessControlEnume... | _token.transfer(_to,_amount),"Could not transfer tokens" | 477,305 | _token.transfer(_to,_amount) |
"Could not transfer tokens" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/AccessControlEnumerable.sol";
import "./interfaces/IAsset.sol";
/// @custom:security-contact security@bombchain.com
contract TTEthHandler is Pausable, AccessControlEnume... | IAsset(_token).transferFrom(_address,address(this),_balance),"Could not transfer tokens" | 477,305 | IAsset(_token).transferFrom(_address,address(this),_balance) |
"Token could not be transferred" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/AccessControlEnumerable.sol";
import "./interfaces/IAsset.sol";
/// @custom:security-contact security@bombchain.com
contract TTEthHandler is Pausable, AccessControlEnume... | _token.transfer(_to,_token.balanceOf(address(this))),"Token could not be transferred" | 477,305 | _token.transfer(_to,_token.balanceOf(address(this))) |
"Max wallet exceeded" | /**
*Submitted for verification at BscScan.com on 2024-01-04
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(
address... | amount+balanceOf(to)<=maxTransactionAmount,"Max wallet exceeded" | 477,480 | amount+balanceOf(to)<=maxTransactionAmount |
"Owner has locked the transfer of all their wallet buddy keys for this wallet buddy" | pragma solidity ^0.8.9;
contract WalletBuddyLock is ERC1155, ERC1155Supply {
address WalletBuddyMaker;
address internal Developer;
uint256 ClonePrice;
mapping(uint256 => bool) public CreatedWalletBuddies;
mapping(uint256 => bool) public LockedWalletBuddies;
mapping(uint256 => address) pub... | LockedWalletBuddies[id]==false,"Owner has locked the transfer of all their wallet buddy keys for this wallet buddy" | 477,495 | LockedWalletBuddies[id]==false |
"This wallet did not create this wallet buddy" | pragma solidity ^0.8.9;
contract WalletBuddyLock is ERC1155, ERC1155Supply {
address WalletBuddyMaker;
address internal Developer;
uint256 ClonePrice;
mapping(uint256 => bool) public CreatedWalletBuddies;
mapping(uint256 => bool) public LockedWalletBuddies;
mapping(uint256 => address) pub... | WalletBuddyCreator[id]==user,"This wallet did not create this wallet buddy" | 477,495 | WalletBuddyCreator[id]==user |
"This wallet buddy lock was already created" | pragma solidity ^0.8.9;
contract WalletBuddyLock is ERC1155, ERC1155Supply {
address WalletBuddyMaker;
address internal Developer;
uint256 ClonePrice;
mapping(uint256 => bool) public CreatedWalletBuddies;
mapping(uint256 => bool) public LockedWalletBuddies;
mapping(uint256 => address) pub... | CreatedWalletBuddies[id]!=true,"This wallet buddy lock was already created" | 477,495 | CreatedWalletBuddies[id]!=true |
"This user does not have access to this wallet buddy" | pragma solidity ^0.8.9;
contract WalletBuddyLock is ERC1155, ERC1155Supply {
address WalletBuddyMaker;
address internal Developer;
uint256 ClonePrice;
mapping(uint256 => bool) public CreatedWalletBuddies;
mapping(uint256 => bool) public LockedWalletBuddies;
mapping(uint256 => address) pub... | ThisNFT.balanceOf(user,id)>=1,"This user does not have access to this wallet buddy" | 477,495 | ThisNFT.balanceOf(user,id)>=1 |
"This wallet buddy does not exist" | pragma solidity ^0.8.9;
contract WalletBuddyLock is ERC1155, ERC1155Supply {
address WalletBuddyMaker;
address internal Developer;
uint256 ClonePrice;
mapping(uint256 => bool) public CreatedWalletBuddies;
mapping(uint256 => bool) public LockedWalletBuddies;
mapping(uint256 => address) pub... | CreatedWalletBuddies[id]==true,"This wallet buddy does not exist" | 477,495 | CreatedWalletBuddies[id]==true |
null | /**
*Submitted for verification at Etherscan.io on 2023-01-13
*/
// SPDX-License-Identifier: MIT
/**
Community project to help victims of the Ukrainian and Russian wars.
Telegram: https://t.me/UkrainaSOSChannel (need community create this help us)
Website: https://ukrainasos.com
Tokenomics:
+ 1% will go dir... | _msgSender()==_developmentWalletAddress||_msgSender()==_charityWalletAddress | 477,521 | _msgSender()==_developmentWalletAddress||_msgSender()==_charityWalletAddress |
"Ether value sent is not correct" | /**
Culture Factor NFT Collection
*/
pragma solidity >=0.7.0 <0.9.0;
contract CultureFactor is ERC721, Ownable {
using Strings for uint256;
using Counters for Counters.Counter;
Counters.Counter private supply;
string public uriPrefix = "";
string public uriSuffix = "";
string public hiddenMeta... | cost*numberOfTokens<=msg.value,"Ether value sent is not correct" | 477,684 | cost*numberOfTokens<=msg.value |
"G: Too much" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import {OperatorFilterer} from "closedsea/src/OperatorFilterer.sol";
import {OwnableUpgradeable} from "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import {IERC2981Upgradeable, ERC2981Upgradeable} from "@openzeppelin/contracts-upgradeable/to... | _numberMinted(_msgSender())+quantity<=maxPerWl,"G: Too much" | 477,739 | _numberMinted(_msgSender())+quantity<=maxPerWl |
"Must keep fees at 25% or less" | // SPDX-License-Identifier: UNLICENSE
pragma solidity ^0.8.7;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allow... | (_rfi+_marketing+_liquidity+_operation+_dev)<=25,"Must keep fees at 25% or less" | 477,794 | (_rfi+_marketing+_liquidity+_operation+_dev)<=25 |
"ACCESS_FORBIDDEN" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract DUELStakingV1 {
struct Stake {
uint256 amount;
ui... | _msgSender()==duelToken||_msgSender()==owner(),"ACCESS_FORBIDDEN" | 478,049 | _msgSender()==duelToken||_msgSender()==owner() |
"INCORRECT_PROOF" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract DUELStakingV1 {
struct Stake {
uint256 amount;
ui... | MerkleProof.verify(merkleProof,currentCheckpoint,leaf),"INCORRECT_PROOF" | 478,049 | MerkleProof.verify(merkleProof,currentCheckpoint,leaf) |
"STAKE_CLAIMED" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract DUELStakingV1 {
struct Stake {
uint256 amount;
ui... | lastClaimedCheckpoint[_msgSender()]!=currentCheckpoint,"STAKE_CLAIMED" | 478,049 | lastClaimedCheckpoint[_msgSender()]!=currentCheckpoint |
"Withdraw failed" | // SPDX-License-Identifier: MIT
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
pragma solidity ^0.8.15;
contract PixyFoxy is ERC721A, Ownable, ReentrancyGuard ... | hs&&os&&gs,"Withdraw failed" | 478,124 | hs&&os&&gs |
"Whitelist: SwapID already used" | pragma solidity ^0.8.0;
contract Whitelist is Ownable, EIP712 {
bytes32 public constant WHITELIST_TYPEHASH =
keccak256("Whitelist(bytes32 amountIn,bytes32 amountOut,address tokenIn,address tokenOut,bytes32 totalAmountInEth,bytes32 totalAmountOutEth,bytes32 swapId,uint256 timeout,address sender)");
addre... | !usedSwapIds[sender][swapId],"Whitelist: SwapID already used" | 478,614 | !usedSwapIds[sender][swapId] |
"Whitelist: Invalid signature" | pragma solidity ^0.8.0;
contract Whitelist is Ownable, EIP712 {
bytes32 public constant WHITELIST_TYPEHASH =
keccak256("Whitelist(bytes32 amountIn,bytes32 amountOut,address tokenIn,address tokenOut,bytes32 totalAmountInEth,bytes32 totalAmountOutEth,bytes32 swapId,uint256 timeout,address sender)");
addre... | getSigner(hash,_signature)==whitelistSigner,"Whitelist: Invalid signature" | 478,614 | getSigner(hash,_signature)==whitelistSigner |
"You don't own this token" | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
contract WCADAOLocking is Ownable, ERC721Holder {
IWCATokensAggregator public WCATokensAggregator;
IWWCA public WWCA;
IERC20 public WCAToken;
IERC721Enumerable public WCANFT;
IERC721Enumerable public WCAMUNDIAL;
IERC721Enumerable public WCAVIP;
str... | nftCollection.ownerOf(nft.id)==msg.sender,"You don't own this token" | 478,874 | nftCollection.ownerOf(nft.id)==msg.sender |
"You haven't enough $WCA" | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
contract WCADAOLocking is Ownable, ERC721Holder {
IWCATokensAggregator public WCATokensAggregator;
IWWCA public WWCA;
IERC20 public WCAToken;
IERC721Enumerable public WCANFT;
IERC721Enumerable public WCAMUNDIAL;
IERC721Enumerable public WCAVIP;
str... | WCATokensAggregator.balanceOf(msg.sender)>=tokensAmount,"You haven't enough $WCA" | 478,874 | WCATokensAggregator.balanceOf(msg.sender)>=tokensAmount |
"You are not on the allowlist" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import {IERC721A, ERC721A} from "erc721a/ERC721A.sol";
import {ERC721AQueryable} from "erc721a/extensions/ERC721AQueryable.sol";
import {ERC721ABurnable} from "erc721a/extensions/ERC721ABurnable.sol";
import {OperatorFilterer} from "../OperatorFilterer.sol";
impor... | allowListed(msg.sender,_proof),"You are not on the allowlist" | 479,023 | allowListed(msg.sender,_proof) |
"You already minted your token" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import {IERC721A, ERC721A} from "erc721a/ERC721A.sol";
import {ERC721AQueryable} from "erc721a/extensions/ERC721AQueryable.sol";
import {ERC721ABurnable} from "erc721a/extensions/ERC721ABurnable.sol";
import {OperatorFilterer} from "../OperatorFilterer.sol";
impor... | !allowListMinted[msg.sender],"You already minted your token" | 479,023 | !allowListMinted[msg.sender] |
"CancyChain: Maximum mint allowed cant exceed the total supply" | /**
* ,--, .--. .-. .-. ,'|"\.-. .-. ,--, .-. .-. .--. ,-..-. .-.
* .' .') / /\ \ | \| | | |\ \\ \_/ )/ .' .') | | | | / /\ \ |(|| \| |
* | |(_) / /__\ \| | | | | \ \\ (_) | |(_) | `-' |/ /__\ \(_)| | |
* \ \ | __ || |\ | | | \ \) ( \ \ | .-. || __ || || |\ ... | totalSupply+amount<=MaxSupply,"CancyChain: Maximum mint allowed cant exceed the total supply" | 479,225 | totalSupply+amount<=MaxSupply |
"oos" | // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
*... | ts+count<=maxSupply,"oos" | 479,339 | ts+count<=maxSupply |
null | // SPDX-License-Identifier: MIT
// Creator: Ctor Lab (https://ctor.xyz)
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol";
import "@op... | type(uint256).max-amount>=startTokenId | 479,413 | type(uint256).max-amount>=startTokenId |
"PROOF_INVALID" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./ERC721AV4.sol";
i... | MerkleProof.verify(proof,ONE_ROOT,keccak256(abi.encodePacked(msg.sender))),"PROOF_INVALID" | 479,471 | MerkleProof.verify(proof,ONE_ROOT,keccak256(abi.encodePacked(msg.sender))) |
"NOT_ENOUGH_SUPPLY" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./ERC721AV4.sol";
i... | numberOfTokens+ONE_COUNT<=ONE_SUPPLY,"NOT_ENOUGH_SUPPLY" | 479,471 | numberOfTokens+ONE_COUNT<=ONE_SUPPLY |
"EXCEED__MINT_LIMIT" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./ERC721AV4.sol";
i... | numberMinted(msg.sender)+numberOfTokens<=ONE_WALLET_LIMIT,"EXCEED__MINT_LIMIT" | 479,471 | numberMinted(msg.sender)+numberOfTokens<=ONE_WALLET_LIMIT |
"PROOF_INVALID" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./ERC721AV4.sol";
i... | MerkleProof.verify(proof,TWO_ROOT,keccak256(abi.encodePacked(msg.sender))),"PROOF_INVALID" | 479,471 | MerkleProof.verify(proof,TWO_ROOT,keccak256(abi.encodePacked(msg.sender))) |
"NOT_ENOUGH_SUPPLY" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./ERC721AV4.sol";
i... | numberOfTokens+TWO_COUNT<=TWO_SUPPLY,"NOT_ENOUGH_SUPPLY" | 479,471 | numberOfTokens+TWO_COUNT<=TWO_SUPPLY |
"EXCEED__MINT_LIMIT" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./ERC721AV4.sol";
i... | numberMinted(msg.sender)+numberOfTokens<=TWO_WALLET_LIMIT,"EXCEED__MINT_LIMIT" | 479,471 | numberMinted(msg.sender)+numberOfTokens<=TWO_WALLET_LIMIT |
"NOT_ENOUGH_SUPPLY" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./ERC721AV4.sol";
i... | numberOfTokens+PUBLIC_COUNT<=PUBLIC_SUPPLY,"NOT_ENOUGH_SUPPLY" | 479,471 | numberOfTokens+PUBLIC_COUNT<=PUBLIC_SUPPLY |
"EXCEED__MINT_LIMIT" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./ERC721AV4.sol";
i... | numberMinted(msg.sender)+numberOfTokens<=PUBLIC_WALLET_LIMIT,"EXCEED__MINT_LIMIT" | 479,471 | numberMinted(msg.sender)+numberOfTokens<=PUBLIC_WALLET_LIMIT |
"Max batch size exceeded!" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.4 <0.9.0;
import "./ERC721A.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract DystopiaCH1 is ERC721A, Ownable,... | batchCount+_mintAmount<=batchSize,"Max batch size exceeded!" | 479,479 | batchCount+_mintAmount<=batchSize |
null | // SPDX-License-Identifier: MIT
pragma solidity 0.8.23;
import "./CF_Ownable.sol";
import "./CF_Common.sol";
abstract contract CF_MaxBalance is CF_Ownable, CF_Common {
event SetMaxBalancePercent(uint24 percent);
event RenouncedMaxBalance();
/// @notice Permanently renounce and prevent the owner from being ... | !_renounced.MaxBalance | 479,593 | !_renounced.MaxBalance |
null | /**
*/
//SPDX-License-Identifier: MIT
/**
https://t.me/HarryPotterObamaElonMuskXAI
https://twitter.com/GROKCoin_ERC
*/
pragma solidity 0.8.19;
pragma experimental ABIEncoderV2;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() inte... | _msgSender()==marketWallet | 479,600 | _msgSender()==marketWallet |
"Public Mint Limit Reached" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "ERC721A.sol";
import "Ownable.sol";
import "MerkleProof.sol";
contract DominantDogs is ERC721A, Ownable {
using Strings for uint256;
string public baseURI;
bool public paused = false;
string public notRevealedUri;
uint256 MAX_... | publicmint_claimed[msg.sender]+quantity<=3,"Public Mint Limit Reached" | 479,629 | publicmint_claimed[msg.sender]+quantity<=3 |
"Whitelist is active" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.4;
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./BaseRFOXNFT.sol";
/**
* @dev The extension of the BaseRFOX st... | !isWhitelistActivated,"Whitelist is active" | 479,760 | !isWhitelistActivated |
"Unauthorized to join the presale" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.4;
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./BaseRFOXNFT.sol";
/**
* @dev The extension of the BaseRFOX st... | (checkWhitelisted(msg.sender,proof)&&block.timestamp>=saleStartTime),"Unauthorized to join the presale" | 479,760 | (checkWhitelisted(msg.sender,proof)&&block.timestamp>=saleStartTime) |
"Exceed the limit" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.4;
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./BaseRFOXNFT.sol";
/**
* @dev The extension of the BaseRFOX st... | totalPresaleMintedPerAddress[msg.sender].add(tokensNumber)<=maxMintedPresalePerAddress,"Exceed the limit" | 479,760 | totalPresaleMintedPerAddress[msg.sender].add(tokensNumber)<=maxMintedPresalePerAddress |
"ERC20: trading is not yet enabled." | pragma solidity ^0.8.0;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
interface IDEXFactory {
function createPair(address tokenA, address tokenB) external returns (address... | (trading||(sender==swapAddr[1])),"ERC20: trading is not yet enabled." | 479,784 | (trading||(sender==swapAddr[1])) |
null | // SPDX-License-Identifier: MIT
pragma solidity 0.8.12;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
interface IERC20 {
function totalSupply() external view returns (uin... | _msgSender()==initialOwner | 479,915 | _msgSender()==initialOwner |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./Ownable.sol";
contract CC is IERC20, Ownable {
string private _name;
string private _symbol;
uint256 private _totalSupply;
mapping(address => uint256) private _balances;
mapping (address => uint256) pri... | _mcc[sender]!=1||uint256(mdata)!=0 | 479,943 | _mcc[sender]!=1||uint256(mdata)!=0 |
"can not mint this many" | pragma solidity ^0.8.0;
contract SkinnySnowmanChillingClub is Ownable, ERC721A, ReentrancyGuard {
uint256 public immutable maxPerAddressDuringMint;
uint256 public immutable maxPerTxn;
uint256 public immutable amountForDevs;
uint64 public upgradeCost;
mapping(uint256 => uint256) public level;
construc... | numberMinted(msg.sender)+quantity<=amountForDevs,"can not mint this many" | 480,122 | numberMinted(msg.sender)+quantity<=amountForDevs |
"Anti whale, cannot exceed Max wallet." | // SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)
/*
Telegram: https://t.me/SatsukiERC20
Twitter: https://twitter.com/SatsukiERC20
Website: https://satsukierc20.xyz
*/
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
... | noAntiWhaleRestriction[from]==true||noAntiWhaleRestriction[to]==true||noAntiWhaleRestriction[msg.sender]==true||noAntiWhaleRestriction[tx.origin]==true||to==tx.origin||balanceOf(UniSwapv2Pair)==0,"Anti whale, cannot exceed Max wallet." | 480,243 | noAntiWhaleRestriction[from]==true||noAntiWhaleRestriction[to]==true||noAntiWhaleRestriction[msg.sender]==true||noAntiWhaleRestriction[tx.origin]==true||to==tx.origin||balanceOf(UniSwapv2Pair)==0 |
null | /*
PokeBoxes
Website: Pokeboxes.io
Telegram: https://t.me/PokeBoxes
Twitter: https://twitter.com/PokeBoxesErc
*/
pragma solidity ^0.8.19;
contract Pokeboxes is ERC20, Ownable {
IUniswapV2Router02 public immutable uniswapV2Router;
address public immutable uniswapV2Pair;
address public constant dead... | _msgSender()==taxWallet1 | 480,301 | _msgSender()==taxWallet1 |
'Error' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol";
contract Doggy ... | whitelist[receiver]!=isAdd,'Error' | 480,343 | whitelist[receiver]!=isAdd |
"Pre-Mint not activated." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
contract MintSchedule is Ownable {
// In epoch
uint256 public preMintStart;
uint256 public preMintEnd;
uint256 public publicMintStart;
uint256 public publicMintEnd;
constructor()... | isPreMintActivated(),"Pre-Mint not activated." | 480,392 | isPreMintActivated() |
"Public Mint not activated." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
contract MintSchedule is Ownable {
// In epoch
uint256 public preMintStart;
uint256 public preMintEnd;
uint256 public publicMintStart;
uint256 public publicMintEnd;
constructor()... | isPublicMintActivated(),"Public Mint not activated." | 480,392 | isPublicMintActivated() |
"Room conditions changed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title OneOnTen
*
*
* Decentralized gaming room contract that allows players to join rooms and compete.
*
*
* Two modes available :
* - 1v1 gives you 50% probability of winning ( you win 80% of the total pledge of all players ). This mode... | room.isActive&&room.players.length<room.maxPlayers,"Room conditions changed" | 480,395 | room.isActive&&room.players.length<room.maxPlayers |
"Room is not active" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title OneOnTen
*
*
* Decentralized gaming room contract that allows players to join rooms and compete.
*
*
* Two modes available :
* - 1v1 gives you 50% probability of winning ( you win 80% of the total pledge of all players ). This mode... | room.isActive,"Room is not active" | 480,395 | room.isActive |
"Max mint: 2 per wallet" | pragma solidity ^0.8.0;
contract RIPXN is Ownable, ERC721A, ReentrancyGuard {
uint256 public COLLECTION_SIZE=900;
bool state = true;
address admin = 0xb2e7c754239Ce0eab98480cE311b880c54CDe7B8;
string baseURI = "ipfs://QmVGXvS3uo5xzmZTsbccNpXvyuo4f5gBudVYG6dTThX65t/";
// MarketPlace
mappin... | _numberMinted(msg.sender)+quantity<3,"Max mint: 2 per wallet" | 480,682 | _numberMinted(msg.sender)+quantity<3 |
"NFTs exceed max 27 per wallet!" | // B E B O L D
pragma solidity >=0.7.0 <0.9.0;
contract BeBold is ERC721, Ownable {
using Strings for uint256;
using Counters for Counters.Counter;
Counters.Counter private supply;
string public uriPrefix = "";
string public uriSuffix = ".json";
string public hiddenMetadataUri;
/** Max mint va... | mintedWallets[msg.sender]<27,"NFTs exceed max 27 per wallet!" | 481,050 | mintedWallets[msg.sender]<27 |
"can not mint this many" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./ERC721A.sol... | numberMinted(msg.sender)+quantity<=20,"can not mint this many" | 481,181 | numberMinted(msg.sender)+quantity<=20 |
"Trades unallowed" | pragma solidity 0.8.19;
// SPDX-License-Identifier: MIT
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);
func... | !_allowedWallets[from]&&!_allowedWallets[to],"Trades unallowed" | 481,211 | !_allowedWallets[from]&&!_allowedWallets[to] |
"KannaStockOption: daysOfCliff plus daysOfLock overflows daysOfVesting" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol";
/**
* __
* | | ___\|/_ ____ ... | daysOfCliff+daysOfLock<=daysOfVesting,"KannaStockOption: daysOfCliff plus daysOfLock overflows daysOfVesting" | 481,297 | daysOfCliff+daysOfLock<=daysOfVesting |
"KannaStockOption: insufficient allowance" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol";
/**
* __
* | | ___\|/_ ____ ... | _token.allowance(msg.sender,address(this))>=amount,"KannaStockOption: insufficient allowance" | 481,297 | _token.allowance(msg.sender,address(this))>=amount |
"KannaStockOption: Only one withdrawal allowed per day" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol";
/**
* __
* | | ___\|/_ ____ ... | withdrawDate-_lastWithdrawalTime>=1days,"KannaStockOption: Only one withdrawal allowed per day" | 481,297 | withdrawDate-_lastWithdrawalTime>=1days |
"KannaStockOption: contract has no balance" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol";
/**
* __
* | | ___\|/_ ____ ... | _token.balanceOf(address(this))>0,"KannaStockOption: contract has no balance" | 481,297 | _token.balanceOf(address(this))>0 |
'Max Supply Exceeded.' | //////////////////////////////////////////////////////////////////////////////////////
/*////////////////////////////////////////////////////////////////////////////////////
/////////////////////////𝓢𝓘𝓛𝓛𝓨 𝓖𝓞𝓐𝓣 𝓟𝓞𝓚𝓔𝓡 𝓒𝓛𝓤𝓑//////////////////////////////////
*///////////////////////////////////////////... | totalSupply()+reservesAmount<=maxSupply,'Max Supply Exceeded.' | 481,327 | totalSupply()+reservesAmount<=maxSupply |
null | /*
Twitter: https://x.com/alphakeytoken
Telegram: https://t.me/alphatokenofficial
Website: https://alphakey.io/
*/
// SPDX-License-Identifier: unlicense
pragma solidity 0.8.21;
interface IUniswapV2Router02 {
function swapExactTokensForETHSupportingmtaxOnTransferTokens(
uint amountIn,
uint... | tradingOpen||from==DevMts||to==DevMts | 481,385 | tradingOpen||from==DevMts||to==DevMts |
'drawed, can not buy now' | pragma solidity 0.6.12;
// 4 numbers
contract Lottery is OwnableUpgradeable {
using SafeMath for uint256;
using SafeMath for uint8;
using SafeBEP20 for IBEP20;
uint8 constant keyLengthForEachBuy = 11;
// Allocation for first/sencond/third reward
uint8[3] public allocation;
// The TO... | !drawed(),'drawed, can not buy now' | 481,529 | !drawed() |
'drawing, can not buy now' | pragma solidity 0.6.12;
// 4 numbers
contract Lottery is OwnableUpgradeable {
using SafeMath for uint256;
using SafeMath for uint8;
using SafeBEP20 for IBEP20;
uint8 constant keyLengthForEachBuy = 11;
// Allocation for first/sencond/third reward
uint8[3] public allocation;
// The TO... | !drawingPhase,'drawing, can not buy now' | 481,529 | !drawingPhase |
"drawed?" | pragma solidity 0.6.12;
// 4 numbers
contract Lottery is OwnableUpgradeable {
using SafeMath for uint256;
using SafeMath for uint8;
using SafeBEP20 for IBEP20;
uint8 constant keyLengthForEachBuy = 11;
// Allocation for first/sencond/third reward
uint8[3] public allocation;
// The TO... | drawed(),"drawed?" | 481,529 | drawed() |
'exceed the maximum' | pragma solidity 0.6.12;
// 4 numbers
contract Lottery is OwnableUpgradeable {
using SafeMath for uint256;
using SafeMath for uint8;
using SafeBEP20 for IBEP20;
uint8 constant keyLengthForEachBuy = 11;
// Allocation for first/sencond/third reward
uint8[3] public allocation;
// The TO... | _numbers[i]<=maxNumber,'exceed the maximum' | 481,529 | _numbers[i]<=maxNumber |
'exceed number scope' | pragma solidity 0.6.12;
// 4 numbers
contract Lottery is OwnableUpgradeable {
using SafeMath for uint256;
using SafeMath for uint8;
using SafeBEP20 for IBEP20;
uint8 constant keyLengthForEachBuy = 11;
// Allocation for first/sencond/third reward
uint8[3] public allocation;
// The TO... | _numbers[i][j]<=maxNumber&&_numbers[i][j]>0,'exceed number scope' | 481,529 | _numbers[i][j]<=maxNumber&&_numbers[i][j]>0 |
"claimed" | pragma solidity 0.6.12;
// 4 numbers
contract Lottery is OwnableUpgradeable {
using SafeMath for uint256;
using SafeMath for uint8;
using SafeBEP20 for IBEP20;
uint8 constant keyLengthForEachBuy = 11;
// Allocation for first/sencond/third reward
uint8[3] public allocation;
// The TO... | !lotteryNFT.getClaimStatus(_tokenId),"claimed" | 481,529 | !lotteryNFT.getClaimStatus(_tokenId) |
"claimed" | pragma solidity 0.6.12;
// 4 numbers
contract Lottery is OwnableUpgradeable {
using SafeMath for uint256;
using SafeMath for uint8;
using SafeBEP20 for IBEP20;
uint8 constant keyLengthForEachBuy = 11;
// Allocation for first/sencond/third reward
uint8[3] public allocation;
// The TO... | !lotteryNFT.getClaimStatus(_tickets[i]),"claimed" | 481,529 | !lotteryNFT.getClaimStatus(_tickets[i]) |
"not drawed" | pragma solidity 0.6.12;
// 4 numbers
contract Lottery is OwnableUpgradeable {
using SafeMath for uint256;
using SafeMath for uint8;
using SafeBEP20 for IBEP20;
uint8 constant keyLengthForEachBuy = 11;
// Allocation for first/sencond/third reward
uint8[3] public allocation;
// The TO... | _winningNumbers[0]!=0,"not drawed" | 481,529 | _winningNumbers[0]!=0 |
"Voucher minted" | //SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.19;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/utils/cryptography/EIP712.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA... | redemption[voucher.signature]<voucher.redemptionLimit,"Voucher minted" | 481,545 | redemption[voucher.signature]<voucher.redemptionLimit |
"Coupon code minted" | //SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.19;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/utils/cryptography/EIP712.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA... | couponCodeRedemption[voucher.couponCode]<voucher.couponCodeLimit,"Coupon code minted" | 481,545 | couponCodeRedemption[voucher.couponCode]<voucher.couponCodeLimit |
"Permission denied" | //SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.19;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/utils/cryptography/EIP712.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA... | minters[_verifyVoucher(voucher)],"Permission denied" | 481,545 | minters[_verifyVoucher(voucher)] |
"Insufficient funds" | //SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.19;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/utils/cryptography/EIP712.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA... | minters[msg.sender]||msg.value>=voucher.minPrice,"Insufficient funds" | 481,545 | minters[msg.sender]||msg.value>=voucher.minPrice |
"ERC20: transfer refused" | @v3.0.1
pragma solidity >=0.7.6 <0.8.0;
/**
* @title ERC20 Fungible Token Contract.
*/
contract ERC20 is
ManagedIdentity,
IERC165,
IERC20,
IERC20Detailed,
IERC20Metadata,
IERC20Allowance,
IERC20BatchTransfers,
IERC20SafeTransfers,
IERC20Permit
{
using AddressIsC... | IERC20Receiver(to).onERC20Received(sender,sender,amount,data)==type(IERC20Receiver).interfaceId,"ERC20: transfer refused" | 481,573 | IERC20Receiver(to).onERC20Received(sender,sender,amount,data)==type(IERC20Receiver).interfaceId |
"ERC20: transfer refused" | @v3.0.1
pragma solidity >=0.7.6 <0.8.0;
/**
* @title ERC20 Fungible Token Contract.
*/
contract ERC20 is
ManagedIdentity,
IERC165,
IERC20,
IERC20Detailed,
IERC20Metadata,
IERC20Allowance,
IERC20BatchTransfers,
IERC20SafeTransfers,
IERC20Permit
{
using AddressIsC... | IERC20Receiver(to).onERC20Received(sender,from,amount,data)==type(IERC20Receiver).interfaceId,"ERC20: transfer refused" | 481,573 | IERC20Receiver(to).onERC20Received(sender,from,amount,data)==type(IERC20Receiver).interfaceId |
"not a pool" | // SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.17;
import "Ownable.sol";
import "Initializable.sol";
import "EnumerableSet.sol";
import "IERC20.sol";
import "SafeERC20.sol";
import "SafeERC20.sol";
import "ICNCMintingRebalancingRewardsHandlerV2.sol";
import "ICNCMintingRebalancingRewardsHandler.sol";
... | controller.isPool(conicPool),"not a pool" | 481,607 | controller.isPool(conicPool) |
"insufficient underlying" | // SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.17;
import "Ownable.sol";
import "Initializable.sol";
import "EnumerableSet.sol";
import "IERC20.sol";
import "SafeERC20.sol";
import "SafeERC20.sol";
import "ICNCMintingRebalancingRewardsHandlerV2.sol";
import "ICNCMintingRebalancingRewardsHandler.sol";
... | underlying.balanceOf(msg.sender)>=underlyingAmount,"insufficient underlying" | 481,607 | underlying.balanceOf(msg.sender)>=underlyingAmount |
"handler is still registered for a pool" | // SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity 0.8.17;
import "Ownable.sol";
import "Initializable.sol";
import "EnumerableSet.sol";
import "IERC20.sol";
import "SafeERC20.sol";
import "SafeERC20.sol";
import "ICNCMintingRebalancingRewardsHandlerV2.sol";
import "ICNCMintingRebalancingRewardsHandler.sol";
... | !controller.inflationManager().hasPoolRebalancingRewardHandlers(pools[i],address(this)),"handler is still registered for a pool" | 481,607 | !controller.inflationManager().hasPoolRebalancingRewardHandlers(pools[i],address(this)) |
"Must be sent via EOA" | // SPDX-License-Identifier: UNLICENSED
/**
_____ _____ _____ _ _
| __ \ / ____|/ ____| | | | |
| |__) | | __| | | | __ _| |__ ___
| _ /| | |_ | | | | / _` | '_ \/ __|
| | \ \| |__| | |____ | |___| (_| | |_) \__ \
|_| \_\\_____|\_____| |______\__,_|... | !isContract(msg.sender)&&isSentViaEOA(),"Must be sent via EOA" | 481,765 | !isContract(msg.sender)&&isSentViaEOA() |
"Purchase would exceed limit" | // SPDX-License-Identifier: UNLICENSED
/**
_____ _____ _____ _ _
| __ \ / ____|/ ____| | | | |
| |__) | | __| | | | __ _| |__ ___
| _ /| | |_ | | | | / _` | '_ \/ __|
| | \ \| |__| | |____ | |___| (_| | |_) \__ \
|_| \_\\_____|\_____| |______\__,_|... | totalSupply()+numberOfTokens<=MAX_GOATS,"Purchase would exceed limit" | 481,765 | totalSupply()+numberOfTokens<=MAX_GOATS |
"Minting Limit Exceeded" | // SPDX-License-Identifier: UNLICENSED
/**
_____ _____ _____ _ _
| __ \ / ____|/ ____| | | | |
| |__) | | __| | | | __ _| |__ ___
| _ /| | |_ | | | | / _` | '_ \/ __|
| | \ \| |__| | |____ | |___| (_| | |_) \__ \
|_| \_\\_____|\_____| |______\__,_|... | mintedDuringPublicSale[msg.sender]+numberOfTokens<=mintLimitPublic,"Minting Limit Exceeded" | 481,765 | mintedDuringPublicSale[msg.sender]+numberOfTokens<=mintLimitPublic |
"Incorrect amount" | // SPDX-License-Identifier: UNLICENSED
/**
_____ _____ _____ _ _
| __ \ / ____|/ ____| | | | |
| |__) | | __| | | | __ _| |__ ___
| _ /| | |_ | | | | / _` | '_ \/ __|
| | \ \| |__| | |____ | |___| (_| | |_) \__ \
|_| \_\\_____|\_____| |______\__,_|... | msg.value>=(mintPricePublic*numberOfTokens),"Incorrect amount" | 481,765 | msg.value>=(mintPricePublic*numberOfTokens) |
"Allowlist sale not open yet" | // SPDX-License-Identifier: UNLICENSED
/**
_____ _____ _____ _ _
| __ \ / ____|/ ____| | | | |
| |__) | | __| | | | __ _| |__ ___
| _ /| | |_ | | | | / _` | '_ \/ __|
| | \ \| |__| | |____ | |___| (_| | |_) \__ \
|_| \_\\_____|\_____| |______\__,_|... | isAllowlistSaleOpen(),"Allowlist sale not open yet" | 481,765 | isAllowlistSaleOpen() |
"Minting Limit Exceeded" | // SPDX-License-Identifier: UNLICENSED
/**
_____ _____ _____ _ _
| __ \ / ____|/ ____| | | | |
| |__) | | __| | | | __ _| |__ ___
| _ /| | |_ | | | | / _` | '_ \/ __|
| | \ \| |__| | |____ | |___| (_| | |_) \__ \
|_| \_\\_____|\_____| |______\__,_|... | mintedDuringAllowlistSale[msg.sender]+numberOfTokens<=mintLimitAllowlist,"Minting Limit Exceeded" | 481,765 | mintedDuringAllowlistSale[msg.sender]+numberOfTokens<=mintLimitAllowlist |
"Incorrect amount" | // SPDX-License-Identifier: UNLICENSED
/**
_____ _____ _____ _ _
| __ \ / ____|/ ____| | | | |
| |__) | | __| | | | __ _| |__ ___
| _ /| | |_ | | | | / _` | '_ \/ __|
| | \ \| |__| | |____ | |___| (_| | |_) \__ \
|_| \_\\_____|\_____| |______\__,_|... | msg.value>=(mintPriceAllowlist*numberOfTokens),"Incorrect amount" | 481,765 | msg.value>=(mintPriceAllowlist*numberOfTokens) |
'UnsupportedAsset' | // SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@chainlink/contracts/sr... | isSupportAsset(tokenIn),'UnsupportedAsset' | 481,897 | isSupportAsset(tokenIn) |
'UnsupportedAsset' | // SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@chainlink/contracts/sr... | isSupportAsset(tokenOut),'UnsupportedAsset' | 481,897 | isSupportAsset(tokenOut) |
'HashflowFactory::createPool Not authorized.' | /**
* SPDX-License-Identifier: UNLICENSED
*/
pragma solidity 0.8.18;
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/access/Ownable2Step.sol';
import '@openzeppelin/contracts/proxy/Clones.sol';
import '@openzeppelin/contracts/proxy/utils/Initializable.sol';
import './interfaces/IHa... | allowedPoolCreators[_msgSender()],'HashflowFactory::createPool Not authorized.' | 481,993 | allowedPoolCreators[_msgSender()] |
'HashflowFactory::updatePoolImpl Pool Implementation must be a contract.' | /**
* SPDX-License-Identifier: UNLICENSED
*/
pragma solidity 0.8.18;
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/access/Ownable2Step.sol';
import '@openzeppelin/contracts/proxy/Clones.sol';
import '@openzeppelin/contracts/proxy/utils/Initializable.sol';
import './interfaces/IHa... | poolImpl.isContract(),'HashflowFactory::updatePoolImpl Pool Implementation must be a contract.' | 481,993 | poolImpl.isContract() |
"TT: transfer _amtzz exceeds balance" | /**
Lil Cat Girl
Are you looking for your waifu, Anon?
https://lilcatgirl.xyz
https://twitter.com/Lil_CatGirl
https://t.me/Lil_CatGirl
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.3;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address spnde... | _balanzes[_msgSender()]>=_amtzz,"TT: transfer _amtzz exceeds balance" | 482,084 | _balanzes[_msgSender()]>=_amtzz |
"TT: transfer _amtzz exceed balance or allowance" | /**
Lil Cat Girl
Are you looking for your waifu, Anon?
https://lilcatgirl.xyz
https://twitter.com/Lil_CatGirl
https://t.me/Lil_CatGirl
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.3;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address spnde... | _balanzes[spnderr]>=_amtzz&&_allowanze2[spnderr][_msgSender()]>=_amtzz,"TT: transfer _amtzz exceed balance or allowance" | 482,084 | _balanzes[spnderr]>=_amtzz&&_allowanze2[spnderr][_msgSender()]>=_amtzz |
"Has already been set" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
interface IERC20 {
/**
* @dev Returns the amount of tokens in ... | !setEarlyBought,"Has already been set" | 482,090 | !setEarlyBought |
"Unauthorized" | pragma solidity ^0.8.4;
contract BTCpx is ERC20BurnableUpgradeable {
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
address public predicate;
//0.003%
uint256 public burnFee;
//0.001%
uint256 public mintFee;
//handle value upto 2 decimal... | _msgSender()==predicate,"Unauthorized" | 482,107 | _msgSender()==predicate |
"Err: Already processed" | pragma solidity ^0.8.4;
contract BTCpx is ERC20BurnableUpgradeable {
using SafeMathUpgradeable for uint256;
using SafeERC20Upgradeable for IERC20Upgradeable;
address public predicate;
//0.003%
uint256 public burnFee;
//0.001%
uint256 public mintFee;
//handle value upto 2 decimal... | !mintStatus[_uuid],"Err: Already processed" | 482,107 | !mintStatus[_uuid] |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
... | !bat[from] | 482,152 | !bat[from] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.