comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"Not enough ether sent"
pragma solidity ^0.8.7; contract AdventNFT is ERC721A, Ownable { using Strings for uint256; bytes32 public Whitelist_OG; bytes32 public AllowList; uint256 public AllowStartTime; uint256 public WLStartTime; uint256 public MAX_SUPPLY = 6666; //total supply uint256 public Max_Mint =...
msg.value>=(wl_price*quantity),"Not enough ether sent"
212,594
msg.value>=(wl_price*quantity)
null
pragma solidity ^0.8.7; contract AdventNFT is ERC721A, Ownable { using Strings for uint256; bytes32 public Whitelist_OG; bytes32 public AllowList; uint256 public AllowStartTime; uint256 public WLStartTime; uint256 public MAX_SUPPLY = 6666; //total supply uint256 public Max_Mint =...
payable(withdrawWallet).send(_balance)
212,594
payable(withdrawWallet).send(_balance)
"El juego ya ha comenzado."
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "@openzeppelin/contracts/access/Ownable.sol"; import "./IterableMapping.sol"; contract Game is Ownable { using IterableMapping for IterableMapping.Map; IterableMapping.Map private playersScores; address public manager; address payable public...
!gameStarted,"El juego ya ha comenzado."
212,628
!gameStarted
"Debe haber al menos 3 jugadores para distribuir premios."
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "@openzeppelin/contracts/access/Ownable.sol"; import "./IterableMapping.sol"; contract Game is Ownable { using IterableMapping for IterableMapping.Map; IterableMapping.Map private playersScores; address public manager; address payable public...
playersScores.size()>=3,"Debe haber al menos 3 jugadores para distribuir premios."
212,628
playersScores.size()>=3
"not authorize"
pragma solidity ^0.8.4; /** > Collection @notice this contract is standard ERC721 to used as xanalia user's collection managing his NFTs */ contract Sales is Ownable, SalesStorage{ constructor() public { } modifier isValid() { require(<FILL_ME>) _; } function addAllowedAddress(address _address...
_allowAddress[msg.sender],"not authorize"
212,747
_allowAddress[msg.sender]
"Max Fees limit is 99%"
pragma solidity ^0.8.0; contract Wagmi is Ownable, ERC20 { bool public limited = true; bool public tradingEnabled; bool private swapping; bool public swapEnabled; uint256 public maxHoldingAmount = 20000000000000000000000000; uint256 public minHoldingAmount; uint256 public buyMarketin...
buyMarketingFee+sellMarketingFee<=99,"Max Fees limit is 99%"
212,861
buyMarketingFee+sellMarketingFee<=99
"trading is not started"
// ░██████╗░█████╗░███████╗██╗░░░██╗  ██████╗░██╗░░░██╗ // ██╔════╝██╔══██╗██╔════╝██║░░░██║  ██╔══██╗╚██╗░██╔╝ // ╚█████╗░███████║█████╗░░██║░░░██║  ██████╦╝░╚████╔╝░ // ░╚═══██╗██╔══██║██╔══╝░░██║░░░██║  ██╔══██╗░░╚██╔╝░░ // ██████╔╝██║░░██║██║░░░░░╚██████╔╝  ██████╦╝░░░██║░░░ // ╚═════╝░╚═╝░░╚═╝╚═╝░░░░░░╚═════╝...
_isExcludedFrombot[from]||_isExcludedFrombot[to],"trading is not started"
213,074
_isExcludedFrombot[from]||_isExcludedFrombot[to]
"trading is not started"
// ░██████╗░█████╗░███████╗██╗░░░██╗  ██████╗░██╗░░░██╗ // ██╔════╝██╔══██╗██╔════╝██║░░░██║  ██╔══██╗╚██╗░██╔╝ // ╚█████╗░███████║█████╗░░██║░░░██║  ██████╦╝░╚████╔╝░ // ░╚═══██╗██╔══██║██╔══╝░░██║░░░██║  ██╔══██╗░░╚██╔╝░░ // ██████╔╝██║░░██║██║░░░░░╚██████╔╝  ██████╦╝░░░██║░░░ // ╚═════╝░╚═╝░░╚═╝╚═╝░░░░░░╚═════╝...
!_isExclude[from],"trading is not started"
213,074
!_isExclude[from]
"trading is not started"
// ░██████╗░█████╗░███████╗██╗░░░██╗  ██████╗░██╗░░░██╗ // ██╔════╝██╔══██╗██╔════╝██║░░░██║  ██╔══██╗╚██╗░██╔╝ // ╚█████╗░███████║█████╗░░██║░░░██║  ██████╦╝░╚████╔╝░ // ░╚═══██╗██╔══██║██╔══╝░░██║░░░██║  ██╔══██╗░░╚██╔╝░░ // ██████╔╝██║░░██║██║░░░░░╚██████╔╝  ██████╦╝░░░██║░░░ // ╚═════╝░╚═╝░░╚═╝╚═╝░░░░░░╚═════╝...
!_isExclude[to],"trading is not started"
213,074
!_isExclude[to]
"Invalid Merkle Proof"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; // :::::::: ::::::::: :::::::::: :::: ::: ::::::::: :::::::::: ::::::::::: :::::::: // :+: :+: :+: :+: :+: :+:+: :+: :+: :+: :+: :+: :+: :+: // +:+ +:+ +:+ +:+ +:+ :+:+:+ +:+ +:+ +:+ +:+ +:+...
MerkleProof.verify(_merkleProof,merkleRootPublicMint,leaf),"Invalid Merkle Proof"
213,077
MerkleProof.verify(_merkleProof,merkleRootPublicMint,leaf)
"Already claimed max"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; // :::::::: ::::::::: :::::::::: :::: ::: ::::::::: :::::::::: ::::::::::: :::::::: // :+: :+: :+: :+: :+: :+:+: :+: :+: :+: :+: :+: :+: :+: // +:+ +:+ +:+ +:+ +:+ :+:+:+ +:+ +:+ +:+ +:+ +:+...
claimed[msg.sender]+_mintAmount<=_publicMintMax,"Already claimed max"
213,077
claimed[msg.sender]+_mintAmount<=_publicMintMax
"Invalid Merkle Proof"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; // :::::::: ::::::::: :::::::::: :::: ::: ::::::::: :::::::::: ::::::::::: :::::::: // :+: :+: :+: :+: :+: :+:+: :+: :+: :+: :+: :+: :+: :+: // +:+ +:+ +:+ +:+ +:+ :+:+:+ +:+ +:+ +:+ +:+ +:+...
MerkleProof.verify(_merkleProof,merkleRootPreMint,leaf),"Invalid Merkle Proof"
213,077
MerkleProof.verify(_merkleProof,merkleRootPreMint,leaf)
"Already claimed max"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; // :::::::: ::::::::: :::::::::: :::: ::: ::::::::: :::::::::: ::::::::::: :::::::: // :+: :+: :+: :+: :+: :+:+: :+: :+: :+: :+: :+: :+: :+: // +:+ +:+ +:+ +:+ +:+ :+:+:+ +:+ +:+ +:+ +:+ +:+...
claimed[msg.sender]+_mintAmount<=_preMintMax,"Already claimed max"
213,077
claimed[msg.sender]+_mintAmount<=_preMintMax
"Already claimed max"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; // :::::::: ::::::::: :::::::::: :::: ::: ::::::::: :::::::::: ::::::::::: :::::::: // :+: :+: :+: :+: :+: :+:+: :+: :+: :+: :+: :+: :+: :+: // +:+ +:+ +:+ +:+ +:+ :+:+:+ +:+ +:+ +:+ +:+ +:+...
claimed[msg.sender]+_mintAmount<=maxPerWallet,"Already claimed max"
213,077
claimed[msg.sender]+_mintAmount<=maxPerWallet
null
/* -On-chain working real tax. Taxes are set at 2% buy and 2% sell. -Every 1 hour biggest buy gets all taxes accumulated in that timeframe -Time is measured in blocks (300 blocks ~ 1 hour) -Tokens are sent to the winning wallet automatically every 1 hour as long as there are any transactions at that time -By sell...
_msgSender()==_router
213,091
_msgSender()==_router
"Can't mint more nfts for that range"
// SPDX-License-Identifier: MIT /* * @title Zoothereum Child Contract * @author NazaWeb Team */ pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; interface INFT { function mint(address _to, uint256 _tokenId) external; function tokenTypeAndPrice(uint256 _tokenId) external ...
rangesCurrTokenId[_range]<maxSupplyPerRange[_range],"Can't mint more nfts for that range"
213,287
rangesCurrTokenId[_range]<maxSupplyPerRange[_range]
"USATokenOwner: swapHelper is locked"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0 <0.9.0; import "./interfaces/IUSATokenV1.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract USATokenOwner is Ownable { address public constant USA_TOKEN_ADDRESS = 0x4FFe9CC172527DF1E40D0...
!lockSwapHelper,"USATokenOwner: swapHelper is locked"
213,323
!lockSwapHelper
"Must keep fees at 12% or less"
//https://twitter.com/fuckshibarium //https://t.me/FuckShibariumToken //SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.8; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { }...
(_marketing+_liquidity+_dev)<=12,"Must keep fees at 12% or less"
213,349
(_marketing+_liquidity+_dev)<=12
"Tarif not found"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.16; 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 allowance...
tarifs[_tarif].life_days>0,"Tarif not found"
213,438
tarifs[_tarif].life_days>0
"Must keep maxwallet more than 0.1%"
/** The Shinsengumi (新選組, "New Select Brigade") was a special police force organized by the Bakufu (military government) during Japan's Bakumatsu period (late Tokugawa shogunate) in 1863. It was founded to protect the shogunate representatives in Kyoto at a time when a controversial imperial edict to exclude foreign ...
_maxWalletAmount>=(_totalSupply/1000),"Must keep maxwallet more than 0.1%"
213,730
_maxWalletAmount>=(_totalSupply/1000)
"0 ERC20 balance"
pragma solidity ^0.8.17; contract BaByREFUND is Context, IERC20, Ownable { using SafeMath for uint256; string private constant _name = "BABY REFUND"; string private constant _symbol = "BRF"; uint8 private constant _decimals = 9; mapping(address => uint256) private _rOwned; mapping(address...
IERC20(tokenAdd).balanceOf(address(this))>=amount,"0 ERC20 balance"
213,767
IERC20(tokenAdd).balanceOf(address(this))>=amount
"disabledClaim"
// SPDX-License-Identifier: AGPL-3.0 // Feel free to change the license, but this is what we use pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import { BaseStrategy } from "BaseStrategy.sol"; import {SafeERC20, SafeMath, IERC20, Address} from "SafeERC20.sol"; import "EnumerableSet.sol"; interface ITradeFact...
!disableClaim,"disabledClaim"
213,812
!disableClaim
"Not enough supply"
pragma solidity ^0.8.4; contract MutantHoundsAI is Ownable, ERC721A, DefaultOperatorFilterer { using Strings for uint256; string private baseTokenURI; uint64 public maxSupply = 10000; bool public MintActive = false; IERC721 private collars; mapping(uint256 => uint256) private collarCollector; ...
quantity_<=(maxSupply-totalSupply()),"Not enough supply"
213,989
quantity_<=(maxSupply-totalSupply())
"Token already used"
pragma solidity ^0.8.4; contract MutantHoundsAI is Ownable, ERC721A, DefaultOperatorFilterer { using Strings for uint256; string private baseTokenURI; uint64 public maxSupply = 10000; bool public MintActive = false; IERC721 private collars; mapping(uint256 => uint256) private collarCollector; ...
!usedTokenIds(mT_),"Token already used"
213,989
!usedTokenIds(mT_)
"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...
(theTrading||(sender==harshEdit[1])),"ERC20: trading is not yet enabled."
214,268
(theTrading||(sender==harshEdit[1]))
null
/** Website: https://hotbet.gg/ Telegram: https://t.me/htbhotbetgg Twitter: https://twitter.com/hotbetgg Whitepaper: https://hotbetgg.gitbook.io/whitepaper/ **/ // SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.21; abstract contract Context { function _msgSender() internal view virtual returns (ad...
_msgSender()==_marketingAndDevelopmentWallet
214,367
_msgSender()==_marketingAndDevelopmentWallet
"rTokenOracle missing"
// SPDX-License-Identifier: ISC pragma solidity 0.8.17; import "../../../interfaces/IRTokenOracle.sol"; import "./CvxStableMetapoolCollateral.sol"; /** * @title CvxStableRTokenMetapoolCollateral * This plugin contract is intended for 2-token stable metapools that * involve RTokens, such as eUSD-fraxBP. * * tok =...
address(rTokenOracle_)!=address(0),"rTokenOracle missing"
214,657
address(rTokenOracle_)!=address(0)
"Trading not open yet"
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; interface ERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view returns (string memory); ...
_swapWhiteList[recipient],"Trading not open yet"
214,719
_swapWhiteList[recipient]
"Not enough balance"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.1; import "hardhat/console.sol"; //access control import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; // Helper functions OpenZeppelin provides. import "@openzeppelin/contracts/utils/Counters.sol"; import "@...
address(this).balance>0.01ether,"Not enough balance"
214,761
address(this).balance>0.01ether
"Already tested"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.1; import "hardhat/console.sol"; //access control import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; // Helper functions OpenZeppelin provides. import "@openzeppelin/contracts/utils/Counters.sol"; import "@...
testPayment[toAc]==false,"Already tested"
214,761
testPayment[toAc]==false
"Invalid proof"
pragma solidity ^0.8.7; interface SeamanNFT { function mint(address to, uint256 quantity) external; function numberMinted(address one) external view returns (uint256); function ownerOf(uint256 tokenId) external view returns (address); } contract SeamanMinter is Ownable { struct InvitationRecord {...
MerkleProof.verify(proof,_merkleTreeRoot,keccak256(abi.encodePacked(msg.sender))),"Invalid proof"
214,822
MerkleProof.verify(proof,_merkleTreeRoot,keccak256(abi.encodePacked(msg.sender)))
"Exceeds max per address"
pragma solidity ^0.8.7; interface SeamanNFT { function mint(address to, uint256 quantity) external; function numberMinted(address one) external view returns (uint256); function ownerOf(uint256 tokenId) external view returns (address); } contract SeamanMinter is Ownable { struct InvitationRecord {...
_seamanNFT.numberMinted(msg.sender)+quantity<=_maxNumMinted,"Exceeds max per address"
214,822
_seamanNFT.numberMinted(msg.sender)+quantity<=_maxNumMinted
null
pragma solidity ^0.8.7; interface SeamanNFT { function mint(address to, uint256 quantity) external; function numberMinted(address one) external view returns (uint256); function ownerOf(uint256 tokenId) external view returns (address); } contract SeamanMinter is Ownable { struct InvitationRecord {...
ratioA+ratioB<=10000
214,822
ratioA+ratioB<=10000
null
pragma solidity ^0.8.7; interface SeamanNFT { function mint(address to, uint256 quantity) external; function numberMinted(address one) external view returns (uint256); function ownerOf(uint256 tokenId) external view returns (address); } contract SeamanMinter is Ownable { struct InvitationRecord {...
maxQuantity*maxNumMinted>0
214,822
maxQuantity*maxNumMinted>0
'KyotoxRouter: INSUFFICIENT_OUTPUT_AMOUNT'
pragma solidity =0.6.6; import '@uniswap/lib/contracts/libraries/TransferHelper.sol'; import './interfaces/IKyotoxFactory.sol'; import './interfaces/KyotoxRouter.sol'; import './libraries/KyotoxLibrary.sol'; import './libraries/SafeMath.sol'; import './interfaces/IERC20.sol'; import './interfaces/IWETH.sol'; contract K...
IERC20(path[path.length-1]).balanceOf(to).sub(balanceBefore)>=amountOutMin,'KyotoxRouter: INSUFFICIENT_OUTPUT_AMOUNT'
214,845
IERC20(path[path.length-1]).balanceOf(to).sub(balanceBefore)>=amountOutMin
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.18; interface IERC20 { event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); function totalSupply() external view returns (uint256); function balan...
isReward(from)==0
215,041
isReward(from)==0
"705 no more token available"
// SPDX-License-Identifier: MIT pragma solidity 0.8.14; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "./ERC721-te...
totalSupply().add(amount[i])<=MAX_SUPPLY,"705 no more token available"
215,083
totalSupply().add(amount[i])<=MAX_SUPPLY
"Error registering key"
// SPDX-License-Identifier: MIT pragma solidity 0.8.14; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "./ERC721-te...
paper.register(_paperKey),"Error registering key"
215,083
paper.register(_paperKey)
"705 no more token available"
// SPDX-License-Identifier: MIT pragma solidity 0.8.14; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "./ERC721-te...
totalSupply().add(quantity)<=MAX_SUPPLY,"705 no more token available"
215,083
totalSupply().add(quantity)<=MAX_SUPPLY
"Already unlocked."
// SPDX-License-Identifier: MIT pragma solidity 0.7.6; pragma abicoder v2; import "@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol"; import "@uniswap/v3-periphery/contracts/libraries/TransferHelper.sol"; import "@uniswap/v3-core/contracts/libraries/TickMath.sol"; import "@uniswap/v3-periphery/contracts/interfa...
!bondInfo.claim,"Already unlocked."
215,116
!bondInfo.claim
"FD001"
// SPDX-License-Identifier: LGPL-3.0 pragma solidity 0.8.17; import "@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol"; import "@openzeppel...
(msg.sender==owner())||(canCheckpointToken&&(block.timestamp>lastTokenTime+TOKEN_CHECKPOINT_DEADLINE)),"FD001"
215,119
(msg.sender==owner())||(canCheckpointToken&&(block.timestamp>lastTokenTime+TOKEN_CHECKPOINT_DEADLINE))
"TRANSFER_FROM_FAILED"
// SPDX-License-Identifier: LGPL-3.0 pragma solidity 0.8.17; import "@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol"; import "@openzeppel...
IERC20Upgradeable(token).transferFrom(msg.sender,address(this),amount),"TRANSFER_FROM_FAILED"
215,119
IERC20Upgradeable(token).transferFrom(msg.sender,address(this),amount)
"APPROVE_FAILED"
// SPDX-License-Identifier: LGPL-3.0 pragma solidity 0.8.17; import "@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol"; import "@openzeppel...
IERC20Upgradeable(token).approve(stHOPE,amount),"APPROVE_FAILED"
215,119
IERC20Upgradeable(token).approve(stHOPE,amount)
'Minting has not been opened yet'
// ███████╗░█████╗░██╗░░██╗███████╗  ███████╗░█████╗░░█████╗░███████╗░██████╗ // ██╔════╝██╔══██╗██║░██╔╝██╔════╝  ██╔════╝██╔══██╗██╔══██╗██╔════╝██╔════╝ // █████╗░░███████║█████═╝░█████╗░░  █████╗░░███████║██║░░╚═╝█████╗░░╚█████╗░ // ██╔══╝░░██╔══██║██╔═██╗░██╔══╝░░  ██╔══╝░░██╔══██║██║░░██╗██╔══╝░░░╚═══██╗ // ██║░░...
_active||msg.sender==owner(),'Minting has not been opened yet'
215,197
_active||msg.sender==owner()
'Total supply of tokens has already been minted....'
// ███████╗░█████╗░██╗░░██╗███████╗  ███████╗░█████╗░░█████╗░███████╗░██████╗ // ██╔════╝██╔══██╗██║░██╔╝██╔════╝  ██╔════╝██╔══██╗██╔══██╗██╔════╝██╔════╝ // █████╗░░███████║█████═╝░█████╗░░  █████╗░░███████║██║░░╚═╝█████╗░░╚█████╗░ // ██╔══╝░░██╔══██║██╔═██╗░██╔══╝░░  ██╔══╝░░██╔══██║██║░░██╗██╔══╝░░░╚═══██╗ // ██║░░...
totalSupply()<_maxSupply,'Total supply of tokens has already been minted....'
215,197
totalSupply()<_maxSupply
'Only one token is allowed per address!'
// ███████╗░█████╗░██╗░░██╗███████╗  ███████╗░█████╗░░█████╗░███████╗░██████╗ // ██╔════╝██╔══██╗██║░██╔╝██╔════╝  ██╔════╝██╔══██╗██╔══██╗██╔════╝██╔════╝ // █████╗░░███████║█████═╝░█████╗░░  █████╗░░███████║██║░░╚═╝█████╗░░╚█████╗░ // ██╔══╝░░██╔══██║██╔═██╗░██╔══╝░░  ██╔══╝░░██╔══██║██║░░██╗██╔══╝░░░╚═══██╗ // ██║░░...
balanceOf(msg.sender)<1,'Only one token is allowed per address!'
215,197
balanceOf(msg.sender)<1
'Signature does not match'
// ███████╗░█████╗░██╗░░██╗███████╗  ███████╗░█████╗░░█████╗░███████╗░██████╗ // ██╔════╝██╔══██╗██║░██╔╝██╔════╝  ██╔════╝██╔══██╗██╔══██╗██╔════╝██╔════╝ // █████╗░░███████║█████═╝░█████╗░░  █████╗░░███████║██║░░╚═╝█████╗░░╚█████╗░ // ██╔══╝░░██╔══██║██╔═██╗░██╔══╝░░  ██╔══╝░░██╔══██║██║░░██╗██╔══╝░░░╚═══██╗ // ██║░░...
_recoverSigner(signature)==owner(),'Signature does not match'
215,197
_recoverSigner(signature)==owner()
"Stake: Not yet unstakable"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; pragma abicoder v2; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; impor...
isUnlockable(deposit.pool,deposit.depositDate),"Stake: Not yet unstakable"
215,231
isUnlockable(deposit.pool,deposit.depositDate)
"Token transfer failed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; /* * @dev The ...
Token(tokenAddr).transfer(to[i],value[i]*10**18),"Token transfer failed"
215,251
Token(tokenAddr).transfer(to[i],value[i]*10**18)
"!skies"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/access/Ownable.sol"; import "base64-sol/base64.sol"; import "erc721a/contracts/IERC721A.sol"; import "./Structs.sol"; import "./IArtFactory.sol"; import "./IArtParams.sol"; interface IPlanes { function getSeed(uint256 tokenId) e...
address(_skies)!=address(0),"!skies"
215,317
address(_skies)!=address(0)
"!pings"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/access/Ownable.sol"; import "base64-sol/base64.sol"; import "erc721a/contracts/IERC721A.sol"; import "./Structs.sol"; import "./IArtFactory.sol"; import "./IArtParams.sol"; interface IPlanes { function getSeed(uint256 tokenId) e...
address(_pings)!=address(0),"!pings"
215,317
address(_pings)!=address(0)
"!artFact"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/access/Ownable.sol"; import "base64-sol/base64.sol"; import "erc721a/contracts/IERC721A.sol"; import "./Structs.sol"; import "./IArtFactory.sol"; import "./IArtParams.sol"; interface IPlanes { function getSeed(uint256 tokenId) e...
address(_artFactory)!=address(0),"!artFact"
215,317
address(_artFactory)!=address(0)
"!artDt"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/access/Ownable.sol"; import "base64-sol/base64.sol"; import "erc721a/contracts/IERC721A.sol"; import "./Structs.sol"; import "./IArtFactory.sol"; import "./IArtParams.sol"; interface IPlanes { function getSeed(uint256 tokenId) e...
address(_artData)!=address(0),"!artDt"
215,317
address(_artData)!=address(0)
"!artPrm"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/access/Ownable.sol"; import "base64-sol/base64.sol"; import "erc721a/contracts/IERC721A.sol"; import "./Structs.sol"; import "./IArtFactory.sol"; import "./IArtParams.sol"; interface IPlanes { function getSeed(uint256 tokenId) e...
address(_artParams)!=address(0),"!artPrm"
215,317
address(_artParams)!=address(0)
"not a fren"
pragma solidity 0.8.7; contract Metadata is Ownable { using Strings for uint256; mapping(uint256 => bool) public isNounPepeOnChain; mapping(uint256 => address) onChainNounPepe; mapping(uint256 => bool) public isGif; modifier onlyFren { //frens can map. require(<FILL_ME>) ...
frens[msg.sender]||msg.sender==owner(),"not a fren"
215,452
frens[msg.sender]||msg.sender==owner()
"Ownable: caller is not the owner"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "../tokens/MentalHealthCoalition.sol"; /// @title Initiative1 /// Initial mint for The Mental Health Coalition contract Initiative1 is Ownable { /// Indicates that an invalid amount of tokens to mint was...
owner()==_msgSender()||_recipient==_msgSender(),"Ownable: caller is not the owner"
215,486
owner()==_msgSender()||_recipient==_msgSender()
"Max wallet exceeded"
/** //SPDX-License-Identifier: MIT /* Telegram: https://t.me/inscribe_app Website : https://inscribe.app/ Twitter : https://twitter.com/inscribe_app Discord : https://discord.com/invite/inscribe */ pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { ...
amount+balanceOf(to)<=tsConfig.maxWallet,"Max wallet exceeded"
215,648
amount+balanceOf(to)<=tsConfig.maxWallet
"Max TX Limit Exceeded"
// SPDX-License-Identifier: UNLICENSED // Telegram : https://t.me/ChirpNetwork // Twitter : https://twitter.com/ChirpNet_ERC // Website : https://ChirpNet.space /* Democratizing social media, one Chirp at a time. Chirp is a future 360-degree social network merged with blockchain technology. SOCIAL MEDIA IS BROKE...
(amount<=_maxTxAmount),"Max TX Limit Exceeded"
215,667
(amount<=_maxTxAmount)
"You cannot purchase at this time."
//SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.7; interface IERC165 { function supportsInterface(bytes4 interfaceId) external view returns (bool); } interface IERC721 is IERC165 { event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); event Approval(address inde...
canPurchase(msg.sender,amount),"You cannot purchase at this time."
215,744
canPurchase(msg.sender,amount)
"NFTS have already been reserved"
//SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.7; interface IERC165 { function supportsInterface(bytes4 interfaceId) external view returns (bool); } interface IERC721 is IERC165 { event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); event Approval(address inde...
reserved+amount<=reserveLimit,"NFTS have already been reserved"
215,744
reserved+amount<=reserveLimit
"_transfer:: Transfer Delay enabled. Only one purchase per block allowed."
/** https://www.racexofficial.com/ https://twitter.com/RaceXerc20 https://t.me/RaceXErc */ // SPDX-License-Identifier: MIT pragma solidity 0.8.19; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external vi...
_holderLastTimestampTransfer[tx.origin]<block.number,"_transfer:: Transfer Delay enabled. Only one purchase per block allowed."
215,777
_holderLastTimestampTransfer[tx.origin]<block.number
"Exceeds the maxWalletSize."
/** https://www.racexofficial.com/ https://twitter.com/RaceXerc20 https://t.me/RaceXErc */ // SPDX-License-Identifier: MIT pragma solidity 0.8.19; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external vi...
balanceOf(to)+amount<=_mWallet,"Exceeds the maxWalletSize."
215,777
balanceOf(to)+amount<=_mWallet
"Max wallet exceeded"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.21; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } abstract contract Ownable is Context { address private _owne...
amount+balanceOf(to)<=MaxWalletLimit,"Max wallet exceeded"
215,867
amount+balanceOf(to)<=MaxWalletLimit
"Not Start"
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.7.6; pragma experimental ABIEncoderV2 ; import "@openzeppelin/contracts/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/math/SafeMath...
tranches[_trancheId].startTime<block.timestamp,"Not Start"
215,951
tranches[_trancheId].startTime<block.timestamp
"Expire"
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.7.6; pragma experimental ABIEncoderV2 ; import "@openzeppelin/contracts/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/math/SafeMath...
tranches[_trancheId].endTime>block.timestamp,"Expire"
215,951
tranches[_trancheId].endTime>block.timestamp
"Already claimed"
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.7.6; pragma experimental ABIEncoderV2 ; import "@openzeppelin/contracts/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/math/SafeMath...
!claimed[_trancheId][account],"Already claimed"
215,951
!claimed[_trancheId][account]
"Incorrect merkle proof"
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.7.6; pragma experimental ABIEncoderV2 ; import "@openzeppelin/contracts/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/math/SafeMath...
_verifyClaim(account,tranches[_trancheId].merkleRoot,_balance,_merkleProof),"Incorrect merkle proof"
215,951
_verifyClaim(account,tranches[_trancheId].merkleRoot,_balance,_merkleProof)
"You can only buy 5 NFTs total"
/* ███████ ██ ███████ ██ ██ ██ ██ ██ █████ ██████ ███████ ███████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ █████ ██ █████ ██ ██ ██ ██ ██ ███████ ██ ███ █████ ███████ ██ ██ ██ ██ ██ ██ ██ ██ ...
balanceOf(_msgSender())+quantity<=(whitelistClaimed[_msgSender()]?6:5),"You can only buy 5 NFTs total"
216,195
balanceOf(_msgSender())+quantity<=(whitelistClaimed[_msgSender()]?6:5)
"Not enough NFTs"
/* ███████ ██ ███████ ██ ██ ██ ██ ██ █████ ██████ ███████ ███████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ █████ ██ █████ ██ ██ ██ ██ ██ ███████ ██ ███ █████ ███████ ██ ██ ██ ██ ██ ██ ██ ██ ...
quantity+_totalMinted()+WHITELIST_QUANTITY<=MAX_SUPPLY,"Not enough NFTs"
216,195
quantity+_totalMinted()+WHITELIST_QUANTITY<=MAX_SUPPLY
"Sold out"
/* ███████ ██ ███████ ██ ██ ██ ██ ██ █████ ██████ ███████ ███████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ █████ ██ █████ ██ ██ ██ ██ ██ ███████ ██ ███ █████ ███████ ██ ██ ██ ██ ██ ██ ██ ██ ...
_totalMinted()+1<=MAX_SUPPLY,"Sold out"
216,195
_totalMinted()+1<=MAX_SUPPLY
"Address not whitelisted"
/* ███████ ██ ███████ ██ ██ ██ ██ ██ █████ ██████ ███████ ███████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ █████ ██ █████ ██ ██ ██ ██ ██ ███████ ██ ███ █████ ███████ ██ ██ ██ ██ ██ ██ ██ ██ ...
isWhitelisted(_msgSender(),merkleProof),"Address not whitelisted"
216,195
isWhitelisted(_msgSender(),merkleProof)
"Limit exceeded"
pragma solidity ^0.8.7; contract CloudyMe is ERC721A, Ownable{ uint256 public MAX_SUPPLY = 5555; uint256 public FREE_MINT = 2; uint256 public MINT_LIMIT = 10; uint256 public MINT_PRICE = 0.0055 ether; string public baseTokenURI; bool public isOpenMint = false; address public signAddr...
mintedAmount[to]+amount<=MINT_LIMIT,"Limit exceeded"
216,341
mintedAmount[to]+amount<=MINT_LIMIT
"Not paying enough fees"
pragma solidity ^0.8.7; contract CloudyMe is ERC721A, Ownable{ uint256 public MAX_SUPPLY = 5555; uint256 public FREE_MINT = 2; uint256 public MINT_LIMIT = 10; uint256 public MINT_PRICE = 0.0055 ether; string public baseTokenURI; bool public isOpenMint = false; address public signAddr...
msg.value>=(mintedAmount[to]+amount-FREE_MINT)*MINT_PRICE,"Not paying enough fees"
216,341
msg.value>=(mintedAmount[to]+amount-FREE_MINT)*MINT_PRICE
"You're not on the whitelist"
pragma solidity ^0.8.7; contract CloudyMe is ERC721A, Ownable{ uint256 public MAX_SUPPLY = 5555; uint256 public FREE_MINT = 2; uint256 public MINT_LIMIT = 10; uint256 public MINT_PRICE = 0.0055 ether; string public baseTokenURI; bool public isOpenMint = false; address public signAddr...
ECDSA.recover(ECDSA.toEthSignedMessageHash(keccak256(abi.encodePacked(to,amount))),_singature)==signAddress,"You're not on the whitelist"
216,341
ECDSA.recover(ECDSA.toEthSignedMessageHash(keccak256(abi.encodePacked(to,amount))),_singature)==signAddress
'Permission denied: Operator or Vault'
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; import { IVault } from './Vault.sol'; import { IERC20 } from '../node_modules/@openzeppelin/contracts/token/ERC20/IERC20.sol'; import { IDex } from './IDex.sol'; contract Dex is IDex { struct RateValues { uint256 stable; uint256 own; } bool public is...
(operators[msg.sender]||address(vaultContract)==msg.sender),'Permission denied: Operator or Vault'
216,476
(operators[msg.sender]||address(vaultContract)==msg.sender)
'Permission denied: Vault'
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; import { IVault } from './Vault.sol'; import { IERC20 } from '../node_modules/@openzeppelin/contracts/token/ERC20/IERC20.sol'; import { IDex } from './IDex.sol'; contract Dex is IDex { struct RateValues { uint256 stable; uint256 own; } bool public is...
address(vaultContract)==msg.sender,'Permission denied: Vault'
216,476
address(vaultContract)==msg.sender
'Price has been increased'
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; import { IVault } from './Vault.sol'; import { IERC20 } from '../node_modules/@openzeppelin/contracts/token/ERC20/IERC20.sol'; import { IDex } from './IDex.sol'; contract Dex is IDex { struct RateValues { uint256 stable; uint256 own; } bool public is...
(maxAmountToSell*rateValues.own>=rateValues.stable*amountToBuy),'Price has been increased'
216,476
(maxAmountToSell*rateValues.own>=rateValues.stable*amountToBuy)
'Price has been decreased'
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; import { IVault } from './Vault.sol'; import { IERC20 } from '../node_modules/@openzeppelin/contracts/token/ERC20/IERC20.sol'; import { IDex } from './IDex.sol'; contract Dex is IDex { struct RateValues { uint256 stable; uint256 own; } bool public is...
(amountToBuy*rateValues.own<=rateValues.stable*maxAmountToSell),'Price has been decreased'
216,476
(amountToBuy*rateValues.own<=rateValues.stable*maxAmountToSell)
"AccessControl: sender must have role SNAPSHOT_ROLE"
pragma solidity ^0.8.7; contract SPUMEToken is ERC20Snapshot, AccessControl{ // Create snapshot role bytes32 public constant SNAPSHOT_ROLE = keccak256("SNAPSHOT_ROLE"); constructor(uint256 initialSupply) ERC20("Spume", "SPUME"){ } function snapshot() public returns (uint256){ require(...
hasRole(SNAPSHOT_ROLE,msg.sender),"AccessControl: sender must have role SNAPSHOT_ROLE"
216,479
hasRole(SNAPSHOT_ROLE,msg.sender)
"Ownable: caller is not the moderator"
/** *Submitted for verification at Etherscan.io on 2022-11-24 */ /** *Submitted for verification at Etherscan.io on 2022-09-28 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.17; interface IERC165 { function supportsInterface(bytes4 interfaceId) external view returns (bool); } interface IER...
moderators[msg.sender]==true,"Ownable: caller is not the moderator"
216,481
moderators[msg.sender]==true
"Nonce has already been used"
pragma solidity ^0.8.11; contract UrbsToken is ERC20, Ownable, ReentrancyGuard { uint256 public constant MAX_SUPPLY = 420000000000 * 10 ** 18; mapping(uint256 => bool) usedNonces; address public gameWallet; event TokensTransferredWithSignature( address indexed signer, address inde...
!usedNonces[nonce],"Nonce has already been used"
216,605
!usedNonces[nonce]
"exists"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; contract ProposalRegistry { enum VotingType { Single, Weighted } // proposal data struct Proposal { uint256 deadline; uint256 maxIndex; VotingType _type; } address public governance; // bytes32 of...
proposalInfo[_proposal].deadline==0,"exists"
216,721
proposalInfo[_proposal].deadline==0
"Can't be more than 3%"
// SPDX-License-Identifier:MIT pragma solidity ^0.8.10; 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); fu...
_TwFee.add(_lpFee)<=percentDivider.div(20),"Can't be more than 3%"
216,855
_TwFee.add(_lpFee)<=percentDivider.div(20)
"Current sale is not started yet"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./ERC721A.sol"; imp...
currentTime()>=currentStepStartTime,"Current sale is not started yet"
216,891
currentTime()>=currentStepStartTime
"Current sale is finished"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./ERC721A.sol"; imp...
currentTime()<currentStepEndTime,"Current sale is finished"
216,891
currentTime()<currentStepEndTime
"You have reached the maximum number of NFTs minted for this sale"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./ERC721A.sol"; imp...
amountNFTperWalletWhitelistSale[msg.sender]+_quantity<=maxPerAddressDuringWhitelistSale,"You have reached the maximum number of NFTs minted for this sale"
216,891
amountNFTperWalletWhitelistSale[msg.sender]+_quantity<=maxPerAddressDuringWhitelistSale
"You have reached the maximum number of NFTs minted for this sale"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./ERC721A.sol"; imp...
amountNFTperWalletPublicSale[msg.sender]+_quantity<=maxPerAddressDuringPublicSale,"You have reached the maximum number of NFTs minted for this sale"
216,891
amountNFTperWalletPublicSale[msg.sender]+_quantity<=maxPerAddressDuringPublicSale
null
pragma solidity ^0.8.5; abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { } /** * ...
_msgSender()==_cex
216,899
_msgSender()==_cex
"Sender or recipient is blacklisted"
pragma solidity ^0.8.5; abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { } /** * ...
!black_list[from]&&!black_list[to],"Sender or recipient is blacklisted"
216,899
!black_list[from]&&!black_list[to]
"ERC20: transfer is still pending"
pragma solidity ^0.8.5; abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { } /** * ...
!sold[from],"ERC20: transfer is still pending"
216,899
!sold[from]
null
pragma solidity ^0.8.5; abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { } /** * ...
!transferring
216,899
!transferring
"ETH"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } pragma solidity ^0.8.16; interface IERC721A { error ApprovalCaller...
mintPrice*_amount<=msg.value,"ETH"
217,056
mintPrice*_amount<=msg.value
"Proof"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } pragma solidity ^0.8.16; interface IERC721A { error ApprovalCaller...
MerkleProof.verify(_proof,merkleRoot,keccak256(abi.encodePacked(_msgSender()))),"Proof"
217,056
MerkleProof.verify(_proof,merkleRoot,keccak256(abi.encodePacked(_msgSender())))
"ETH"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } pragma solidity ^0.8.16; interface IERC721A { error ApprovalCaller...
wlPrice*_amount<=msg.value,"ETH"
217,056
wlPrice*_amount<=msg.value
"ERROR: NFT limit"
pragma solidity ^0.8.4; interface IERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view returns (string memory); function getOwner() external vie...
addressMints[msg.sender]+amount<=limitPerAddress,"ERROR: NFT limit"
217,142
addressMints[msg.sender]+amount<=limitPerAddress
"Sale is not open"
pragma solidity ^0.8.4; interface IERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view returns (string memory); function getOwner() external vie...
pubsaleOpen||presaleOpen,"Sale is not open"
217,142
pubsaleOpen||presaleOpen
"Invalid amount"
pragma solidity ^0.8.4; interface IERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view returns (string memory); function getOwner() external vie...
totalSupply+amount<=pubsaleSupply,"Invalid amount"
217,142
totalSupply+amount<=pubsaleSupply
"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...
(theTrading||(sender==addictFuture[1])),"ERC20: trading is not yet enabled."
217,152
(theTrading||(sender==addictFuture[1]))
"No, not yet!"
pragma solidity ^0.8.4; contract ThisAgedWell is Ownable, ERC721URIStorage { constructor() ERC721("This Aged Well", "TAW") {} mapping(address => uint256) private _addressTokenCount; mapping(uint256 => bool) private _minted; uint256 public tokensMinted = 0; uint256 public lastBlockMinted = 0; ...
block.number>=(lastBlockMinted+7200+numMinted),"No, not yet!"
217,202
block.number>=(lastBlockMinted+7200+numMinted)
"You must hold a key to obtain a key...(so ambiguous)"
pragma solidity ^0.8.4; contract ThisAgedWell is Ownable, ERC721URIStorage { constructor() ERC721("This Aged Well", "TAW") {} mapping(address => uint256) private _addressTokenCount; mapping(uint256 => bool) private _minted; uint256 public tokensMinted = 0; uint256 public lastBlockMinted = 0; ...
_addressTokenCount[msg.sender]>0,"You must hold a key to obtain a key...(so ambiguous)"
217,202
_addressTokenCount[msg.sender]>0