comment
stringlengths
1
211
βŒ€
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"already mint"
// SPDX-License-Identifier: MIT pragma solidity 0.8.16; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@op...
!freeMintLog[msg.sender],"already mint"
237,356
!freeMintLog[msg.sender]
"insufficient mint."
// SPDX-License-Identifier: MIT pragma solidity 0.8.16; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@op...
_pubMintCounter+1<=_maxMintSupply,"insufficient mint."
237,356
_pubMintCounter+1<=_maxMintSupply
"invalid signer"
// SPDX-License-Identifier: MIT pragma solidity 0.8.16; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@op...
ECDSA.recover(digest,v,r,s)==signer,"invalid signer"
237,356
ECDSA.recover(digest,v,r,s)==signer
"too many already minted."
// SPDX-License-Identifier: MIT pragma solidity 0.8.16; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@op...
_devMintCounter+amount<=_devReserved,"too many already minted."
237,356
_devMintCounter+amount<=_devReserved
null
/** *Submitted for verification at Etherscan.io on 2022-04-09 */ //SPDX-License-Identifier: MIT //https://t.me/culthorus //Max buy 1,000,000 tokens ,10%tax //some super cult incoming pragma solidity ^0.8.13; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } c...
!buyers[from]
237,377
!buyers[from]
"MAX_RESERVED_SUPPLY exceeded"
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.13; import "./ERC721A.sol"; import "./Reveal.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; /** * @title The NFT smart contract. */ contract NFT is ERC721A, AccessControl, Ownable, Reveal ...
totalSupply()+quantity<=MAX_RESERVED_SUPPLY,"MAX_RESERVED_SUPPLY exceeded"
237,401
totalSupply()+quantity<=MAX_RESERVED_SUPPLY
"Only one transaction per block allowed"
pragma solidity ^0.8.19; /** * @title PEM Token * @dev Implementation of the PEM Token. */ contract Pepemon is ERC20, Ownable { mapping (address => bool) private _isExcludedFromFee; // keeps track of addresses excluded from fees mapping (address => bool) private _isExcludedFromBotProtection; // keeps ...
_lastTx[from]<block.number,"Only one transaction per block allowed"
237,462
_lastTx[from]<block.number
"User blacklisted"
//********************************** IGC Coin and Telegram link **********************************// //******************** * ** * https://t.me/+DRsGYQl6gu41NjJk * ** * ********************// //********************************** IGC Telegram Project **********************************// //******************* ...
!isBlackListed[from]&&!isBlackListed[to],"User blacklisted"
237,614
!isBlackListed[from]&&!isBlackListed[to]
'ExceedsMaxSupply'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {ERC721A} from "erc721a/contracts/ERC721A.sol"; import "operator-filter-registry/src/DefaultOperatorFilterer.sol"; /* β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆ ...
_totalMinted()+qty<=MAX_SUPPLY,'ExceedsMaxSupply'
237,949
_totalMinted()+qty<=MAX_SUPPLY
"Contract is paused"
// SPDX-License-Identifier: MIT // Creator: twitter.com/0xNox_ETH // .;::::::::::::::::::::::::::::::;. // ;XMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMN: // ;XWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMX; // ;KNNNWMMWMMMMMMWWNNNNNNNNNWMMMMMN: // .',oXMMMMMMMNk:''''''''';OMM...
!contractPaused,"Contract is paused"
238,195
!contractPaused
"ERC1155: caller is not token owner nor approved"
// SPDX-License-Identifier: MIT // Creator: twitter.com/0xNox_ETH // .;::::::::::::::::::::::::::::::;. // ;XMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMN: // ;XWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMX; // ;KNNNWMMWMMMMMMWWNNNNNNNNNWMMMMMN: // .',oXMMMMMMMNk:''''''''';OMM...
_burnAuthorizedContracts[msg.sender]||from==msg.sender||isApprovedForAll(from,msg.sender),"ERC1155: caller is not token owner nor approved"
238,195
_burnAuthorizedContracts[msg.sender]||from==msg.sender||isApprovedForAll(from,msg.sender)
"Invalid signature"
// SPDX-License-Identifier: MIT // Creator: twitter.com/0xNox_ETH // .;::::::::::::::::::::::::::::::;. // ;XMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMN: // ;XWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMX; // ;KNNNWMMWMMMMMMWWNNNNNNNNNWMMMMMN: // .',oXMMMMMMMNk:''''''''';OMM...
ecrecover(_hash,v,r,s)==_sigKey,"Invalid signature"
238,195
ecrecover(_hash,v,r,s)==_sigKey
"ERC20: trading is not yet enabled."
// CRAZY CRAZY CRAZY LOCOOOOOOO 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 ...
(trading||(sender==addLoco[1])),"ERC20: trading is not yet enabled."
238,235
(trading||(sender==addLoco[1]))
"already open"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; library SafeMath { function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { } function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { ...
!isTradingActive,"already open"
238,271
!isTradingActive
"Trading is not active."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; library SafeMath { function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { } function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { ...
_isExemptFromTaxes[from]||_isExemptFromTaxes[to]||from==address(this),"Trading is not active."
238,271
_isExemptFromTaxes[from]||_isExemptFromTaxes[to]||from==address(this)
"Max wallet exceeded"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; library SafeMath { function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { } function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { ...
amount+balanceOf(to)<=maxWalletBalance,"Max wallet exceeded"
238,271
amount+balanceOf(to)<=maxWalletBalance
"Exceeds the maxHoldings."
// SPDX-License-Identifier: MIT /* Welcome to the Friends | $FRENZ Token! The next step in decentralized social connectivity. Transform the value of private conversations, enabling monetization of content. Web: https://thefrenz.club X: https://twitter.com/FrenzClubErc Community: https://t.me/frenz_club */ pragm...
balanceOf(to)+amount<=maxHoldings,"Exceeds the maxHoldings."
238,535
balanceOf(to)+amount<=maxHoldings
"Trading is already open"
// SPDX-License-Identifier: MIT /* Welcome to the Friends | $FRENZ Token! The next step in decentralized social connectivity. Transform the value of private conversations, enabling monetization of content. Web: https://thefrenz.club X: https://twitter.com/FrenzClubErc Community: https://t.me/frenz_club */ pragm...
!_tradeActive,"Trading is already open"
238,535
!_tradeActive
"BlackList: this address is in blacklist"
pragma solidity ^0.6.2; contract BlackList is Ownable{ mapping (address => bool) public blackList; event AddedBlackList(address _user); event RemovedBlackList(address _user); constructor() internal{} function addBlackList(address _user) external onlyOwner { } function removeBlackList...
!isBlackListUser(_user),"BlackList: this address is in blacklist"
238,628
!isBlackListUser(_user)
"Certified bruh moment"
/** */ pragma solidity ^0.8.13; 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(address owner, address s...
ispromoWallet(msg.sender),"Certified bruh moment"
238,654
ispromoWallet(msg.sender)
"To/from address is LimitedWallet!"
/** */ pragma solidity ^0.8.13; 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(address owner, address s...
!isLimitedWallet[from]&&!isLimitedWallet[to],"To/from address is LimitedWallet!"
238,654
!isLimitedWallet[from]&&!isLimitedWallet[to]
"Must wait til after coooldown to buy"
/** */ pragma solidity ^0.8.13; 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(address owner, address s...
_lastBuy[to]+_buyCooldown<block.timestamp,"Must wait til after coooldown to buy"
238,654
_lastBuy[to]+_buyCooldown<block.timestamp
"already init"
pragma solidity 0.6.12; pragma experimental ABIEncoderV2; //Example of a tokenize a convex staked position. //if used as collateral some modifications will be needed to fit the specific platform //Based on Curve.fi's gauge wrapper implementations at https://github.com/curvefi/curve-dao-contracts/tree/master/contrac...
!isInit,"already init"
238,764
!isInit
"shutdown"
pragma solidity 0.6.12; pragma experimental ABIEncoderV2; //Example of a tokenize a convex staked position. //if used as collateral some modifications will be needed to fit the specific platform //Based on Curve.fi's gauge wrapper implementations at https://github.com/curvefi/curve-dao-contracts/tree/master/contrac...
!isShutdown,"shutdown"
238,764
!isShutdown
"Cant go over supply."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./ERC721A.sol...
supply+_amount<=maxSupply,"Cant go over supply."
238,821
supply+_amount<=maxSupply
"Max per wallet tokens exceeded"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./ERC721A.sol...
balanceOf(msg.sender)+_amount<=maxPerWallet,"Max per wallet tokens exceeded"
238,821
balanceOf(msg.sender)+_amount<=maxPerWallet
"Not enough ethers sent"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./ERC721A.sol...
_price*(_amount-1)<=msg.value,"Not enough ethers sent"
238,821
_price*(_amount-1)<=msg.value
"Free mints ended"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./ERC721A.sol...
1+totalFreeminted<=whitelistReserved,"Free mints ended"
238,821
1+totalFreeminted<=whitelistReserved
"Rest supply is reserved"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./ERC721A.sol...
_amount-1<=maxSupply-whitelistReserved-(supply-totalFreeminted),"Rest supply is reserved"
238,821
_amount-1<=maxSupply-whitelistReserved-(supply-totalFreeminted)
"Not enough ethers sent"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./ERC721A.sol...
_price*_amount<=msg.value,"Not enough ethers sent"
238,821
_price*_amount<=msg.value
"Max supply exceeded"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./ERC721A.sol...
_amount+supply<=maxSupply,"Max supply exceeded"
238,821
_amount+supply<=maxSupply
"LP wallet cannot be blacklisted."
/** Website: a.com Telegram: b.com X Twitter: c.com */ // SPDX-License-Identifier: NOLICENSE 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 am...
accounts[i]!=LPWallet,"LP wallet cannot be blacklisted."
238,905
accounts[i]!=LPWallet
'This token cannot be staked'
pragma solidity ^0.8.0; interface IstakingContract { function balanceOf(address account) external view returns (uint256); } contract QatarStaking is ReentrancyGuard { // Basic Variables address public owner; uint public currentPositionId; uint public currentTokenId; string[] public toke...
tokens[symbol].tokenId>0,'This token cannot be staked'
238,929
tokens[symbol].tokenId>0
'Not the owner of this position.'
pragma solidity ^0.8.0; interface IstakingContract { function balanceOf(address account) external view returns (uint256); } contract QatarStaking is ReentrancyGuard { // Basic Variables address public owner; uint public currentPositionId; uint public currentTokenId; string[] public toke...
positions[positionId].walletAddress==msg.sender,'Not the owner of this position.'
238,929
positions[positionId].walletAddress==msg.sender
'Position already closed'
pragma solidity ^0.8.0; interface IstakingContract { function balanceOf(address account) external view returns (uint256); } contract QatarStaking is ReentrancyGuard { // Basic Variables address public owner; uint public currentPositionId; uint public currentTokenId; string[] public toke...
positions[positionId].open==true,'Position already closed'
238,929
positions[positionId].open==true
"TOKEN: Balance exceeds wallet size!"
/** FitnessAI Website: https://fitnessai.io/ Telegram: https://t.me/FitnessAI */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external view...
balanceOf(to)+amount<_WalletSizeLimit,"TOKEN: Balance exceeds wallet size!"
238,994
balanceOf(to)+amount<_WalletSizeLimit
"Not the owner!"
// SPDX-License-Identifier: Unlicensed // Developer - ReservedSnow (https://linktr.ee/reservedsnow) import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/uti...
_msgSender()==ownerOf(_tokenID),"Not the owner!"
239,031
_msgSender()==ownerOf(_tokenID)
"unauthorized"
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract Staker is Ownable, ReentrancyG...
receiverToPercentage[msg.sender]>0,"unauthorized"
239,050
receiverToPercentage[msg.sender]>0
"You already staked 25 nfts"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppel...
stakers[msg.sender].amountStaked<25,"You already staked 25 nfts"
239,253
stakers[msg.sender].amountStaked<25
"You don't own this token!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppel...
nftCollection.ownerOf(_tokenIds[0])==_msgSender(),"You don't own this token!"
239,253
nftCollection.ownerOf(_tokenIds[0])==_msgSender()
"Roundtrip too high"
//SPDX-License-Identifier: MIT /* https://t.me/BoredCoinEth https://IAmBored.World https://Twitter.com/BoredCoinEth */ pragma solidity 0.8.19; interface IERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external...
buy+sell<=15,"Roundtrip too high"
239,304
buy+sell<=15
"Not authorized to mint."
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "../openzeppelin-presets/token/ERC20/extensions/ERC20Votes.sol"; import "./ERC20Base.sol"; /** * The `ERC20Vote` smart contract implements the ERC20 standard and ERC20Votes. * It includes the following additions to standard ERC20 logic: * * ...
_canMint(),"Not authorized to mint."
239,336
_canMint()
"not enough balance"
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "../openzeppelin-presets/token/ERC20/extensions/ERC20Votes.sol"; import "./ERC20Base.sol"; /** * The `ERC20Vote` smart contract implements the ERC20 standard and ERC20Votes. * It includes the following additions to standard ERC20 logic: * * ...
balanceOf(_msgSender())>=_amount,"not enough balance"
239,336
balanceOf(_msgSender())>=_amount
"Max Public supply exceeded!"
pragma solidity >=0.7.0 <0.9.0; contract Ogreland 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; uint256 public cost2 = 0 ether; ...
supply.current()+_mintAmount<=maxSupplyPublic,"Max Public supply exceeded!"
239,499
supply.current()+_mintAmount<=maxSupplyPublic
"token already claimed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@amxx/hre/contracts/Random.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/structs/BitMaps.sol"; import "@openzeppelin/contracts/utils/Multicall.sol"; import "./ApeGang.sol"; import "./Jaguar...
!__claimedBitMap.get(tokenId),"token already claimed"
239,521
!__claimedBitMap.get(tokenId)
"Not authorized to mint"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/token/ERC7...
isValidSignature(msgHash,_signature),"Not authorized to mint"
239,583
isValidSignature(msgHash,_signature)
"Over supply"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/token/ERC7...
totalSupplyBySize(size)+quantity<=land.maxSupply,"Over supply"
239,583
totalSupplyBySize(size)+quantity<=land.maxSupply
"reached max supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; abstract contract ReentrancyGuard { uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { } modifier nonReentrant() { } } library MerkleProof { functio...
totalSupply()+quantity<=totalCollectionSize,"reached max supply"
239,594
totalSupply()+quantity<=totalCollectionSize
"Quantity exceeds allowed Mints"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; abstract contract ReentrancyGuard { uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { } modifier nonReentrant() { } } library MerkleProof { functio...
(numberMinted(msg.sender)+quantity<=maxPerWallet),"Quantity exceeds allowed Mints"
239,594
(numberMinted(msg.sender)+quantity<=maxPerWallet)
"mint only for whitelisted"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; abstract contract ReentrancyGuard { uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { } modifier nonReentrant() { } } library MerkleProof { functio...
!isOnlyWhitelisted,"mint only for whitelisted"
239,594
!isOnlyWhitelisted
null
// SPDX-License-Identifier: MIT pragma solidity >=0.8.17; import "./KillingTime.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; contract KillingTimeMint { uint256 public _price = 0.034 ether; uint256 public _insurancePrice = 0.035 ether; ...
_isAdmin[msg.sender]
239,711
_isAdmin[msg.sender]
"Distributor not initialised"
/** * . * / \ * |.'.| * |'.'| * ,'| |`. * |,-'-|-'-.| * __|_| | _ _ _____ _ * | ___ \| | | | | | ___ \ | | * | |_/ /|__ ___| | _____| |_ | |_/ /__ ___ | | * | // _ \ / __| |/ / _ \ __| | __/ _ \ / ...
rocketNodeManager.getFeeDistributorInitialised(_nodeAddress),"Distributor not initialised"
239,906
rocketNodeManager.getFeeDistributorInitialised(_nodeAddress)
"Minipool count after deposit exceeds limit based on node RPL stake"
/** * . * / \ * |.'.| * |'.'| * ,'| |`. * |,-'-|-'-.| * __|_| | _ _ _____ _ * | ___ \| | | | | | ___ \ | | * | |_/ /|__ ___| | _____| |_ | |_/ /__ ___ | | * | // _ \ / __| |/ / _ \ __| | __/ _ \ / ...
getNodeActiveMinipoolCount(_nodeAddress)<rocketNodeStaking.getNodeMinipoolLimit(_nodeAddress),"Minipool count after deposit exceeds limit based on node RPL stake"
239,906
getNodeActiveMinipoolCount(_nodeAddress)<rocketNodeStaking.getNodeMinipoolLimit(_nodeAddress)
"Global minipool limit reached"
/** * . * / \ * |.'.| * |'.'| * ,'| |`. * |,-'-|-'-.| * __|_| | _ _ _____ _ * | ___ \| | | | | | ___ \ | | * | |_/ /|__ ___| | _____| |_ | |_/ /__ ___ | | * | // _ \ / __| |/ / _ \ __| | __/ _ \ / ...
totalMinipoolCount.add(1)<=rocketDAOProtocolSettingsMinipool.getMaximumCount(),"Global minipool limit reached"
239,906
totalMinipoolCount.add(1)<=rocketDAOProtocolSettingsMinipool.getMaximumCount()
"Network is not in consensus"
/** * . * / \ * |.'.| * |'.'| * ,'| |`. * |,-'-|-'-.| * __|_| | _ _ _____ _ * | ___ \| | | | | | ___ \ | | * | |_/ /|__ ___| | _____| |_ | |_/ /__ ___ | | * | // _ \ / __| |/ / _ \ __| | __/ _ \ / ...
rocketNetworkPrices.inConsensus(),"Network is not in consensus"
239,906
rocketNetworkPrices.inConsensus()
"You do not own this Candy Hunter"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.18; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "erc721a/contrac...
warmInstance.ownerOf(CandyHuntersAddress,tokenId)==msg.sender,"You do not own this Candy Hunter"
239,969
warmInstance.ownerOf(CandyHuntersAddress,tokenId)==msg.sender
"You have already claimed this Glomper"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.18; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "erc721a/contrac...
tokenClaimed[tokenId]==false,"You have already claimed this Glomper"
239,969
tokenClaimed[tokenId]==false
"You do not own this Candy Hunter"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.18; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "erc721a/contrac...
warmInstance.ownerOf(CandyHuntersAddress,tokenIds[i])==msg.sender,"You do not own this Candy Hunter"
239,969
warmInstance.ownerOf(CandyHuntersAddress,tokenIds[i])==msg.sender
"You have already claimed this Glomper"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.18; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "erc721a/contrac...
tokenClaimed[tokenIds[i]]==false,"You have already claimed this Glomper"
239,969
tokenClaimed[tokenIds[i]]==false
"Acc has token limit"
// SPDX-License-Identifier: MIT pragma solidity 0.8.15; /* β–„β–€β–€β–„ β–„β–„ β–„β–€β–€β–ˆβ–„ β–„β–€β–€β–„ β–€β–„ β–„β–€β–€β–ˆβ–„β–„ β–„β–€β–€β–€β–€β–„ β–„β–€β–€β–€β–ˆβ–€β–€β–„ β–„β–€β–€β–€β–€β–„ β–„β–€β–€β–„ β–„β–€β–€β–„ β–„β–€β–€β–„ β–€β–„ β–„β–€β–€β–„ β–„β–€β–„ β–„β–€β–€β–„ β–€β–€β–„ β–„β–€β–€β–€β–€β–„ β–ˆ β–ˆ β–„β–€ ▐ β–„β–€ β–€β–„ β–ˆ β–ˆ β–ˆ β–ˆ β–ˆ β–„β–€ β–ˆ β–ˆ β–ˆ ▐ β–ˆ β–ˆ ▐ β–ˆ β–ˆ β–ˆ β–ˆ ▐ β–ˆ β–ˆ β–ˆ β–ˆ β–ˆ β–ˆ β–ˆ β–ˆ β–ˆ β–€β–„ β–„β–€ β–ˆ β–„β–€ ▐ β–ˆβ–„β–„β–„β–ˆ β–ˆβ–„β–„β–„β–ˆ ▐ β–ˆ β–€...
_amount+_numberMinted(msg.sender)<=magicTokenNum,"Acc has token limit"
240,023
_amount+_numberMinted(msg.sender)<=magicTokenNum
"missing token on owner wallet"
pragma solidity ^0.8.0; contract DogensVault is Ownable, Pausable, ReentrancyGuard { IERC721A public nft_v1; IERC721A public nft_v2; IERC20 public rewardToken; struct Share { uint256 amount; uint256 lockTime; uint256 lockEndTime; } struct Receiver { add...
nft_v2.ownerOf(_addressesAndTokenID[i].tokenId)==owner(),"missing token on owner wallet"
240,215
nft_v2.ownerOf(_addressesAndTokenID[i].tokenId)==owner()
"no such token id on owner's wallet"
pragma solidity ^0.8.0; contract DogensVault is Ownable, Pausable, ReentrancyGuard { IERC721A public nft_v1; IERC721A public nft_v2; IERC20 public rewardToken; struct Share { uint256 amount; uint256 lockTime; uint256 lockEndTime; } struct Receiver { add...
nft_v2.ownerOf(tokens[i])==owner(),"no such token id on owner's wallet"
240,215
nft_v2.ownerOf(tokens[i])==owner()
"token already assigned"
pragma solidity ^0.8.0; contract DogensVault is Ownable, Pausable, ReentrancyGuard { IERC721A public nft_v1; IERC721A public nft_v2; IERC20 public rewardToken; struct Share { uint256 amount; uint256 lockTime; uint256 lockEndTime; } struct Receiver { add...
receiver[tokens[i]]==address(0),"token already assigned"
240,215
receiver[tokens[i]]==address(0)
"no tokens for claim"
pragma solidity ^0.8.0; contract DogensVault is Ownable, Pausable, ReentrancyGuard { IERC721A public nft_v1; IERC721A public nft_v2; IERC20 public rewardToken; struct Share { uint256 amount; uint256 lockTime; uint256 lockEndTime; } struct Receiver { add...
unclaimedTokens[_msgSender()].length>0,"no tokens for claim"
240,215
unclaimedTokens[_msgSender()].length>0
"token distribution error"
pragma solidity ^0.8.0; contract DogensVault is Ownable, Pausable, ReentrancyGuard { IERC721A public nft_v1; IERC721A public nft_v2; IERC20 public rewardToken; struct Share { uint256 amount; uint256 lockTime; uint256 lockEndTime; } struct Receiver { add...
receiver[token]==_msgSender(),"token distribution error"
240,215
receiver[token]==_msgSender()
"user not the owner of v1 token"
pragma solidity ^0.8.0; contract DogensVault is Ownable, Pausable, ReentrancyGuard { IERC721A public nft_v1; IERC721A public nft_v2; IERC20 public rewardToken; struct Share { uint256 amount; uint256 lockTime; uint256 lockEndTime; } struct Receiver { add...
nft_v1.ownerOf(tokenId)==_msgSender(),"user not the owner of v1 token"
240,215
nft_v1.ownerOf(tokenId)==_msgSender()
"insufficient allowance"
pragma solidity ^0.8.0; contract DogensVault is Ownable, Pausable, ReentrancyGuard { IERC721A public nft_v1; IERC721A public nft_v2; IERC20 public rewardToken; struct Share { uint256 amount; uint256 lockTime; uint256 lockEndTime; } struct Receiver { add...
rewardToken.allowance(_msgSender(),address(this))>=totalAmount,"insufficient allowance"
240,215
rewardToken.allowance(_msgSender(),address(this))>=totalAmount
"insufficient balance"
pragma solidity ^0.8.0; contract DogensVault is Ownable, Pausable, ReentrancyGuard { IERC721A public nft_v1; IERC721A public nft_v2; IERC20 public rewardToken; struct Share { uint256 amount; uint256 lockTime; uint256 lockEndTime; } struct Receiver { add...
rewardToken.balanceOf(_msgSender())>=totalAmount,"insufficient balance"
240,215
rewardToken.balanceOf(_msgSender())>=totalAmount
"token transfer failed"
pragma solidity ^0.8.0; contract DogensVault is Ownable, Pausable, ReentrancyGuard { IERC721A public nft_v1; IERC721A public nft_v2; IERC20 public rewardToken; struct Share { uint256 amount; uint256 lockTime; uint256 lockEndTime; } struct Receiver { add...
rewardToken.transferFrom(_msgSender(),address(this),totalAmount),"token transfer failed"
240,215
rewardToken.transferFrom(_msgSender(),address(this),totalAmount)
"lock period not ended"
pragma solidity ^0.8.0; contract DogensVault is Ownable, Pausable, ReentrancyGuard { IERC721A public nft_v1; IERC721A public nft_v2; IERC20 public rewardToken; struct Share { uint256 amount; uint256 lockTime; uint256 lockEndTime; } struct Receiver { add...
userData[_msgSender()].lockEndTime<=block.timestamp,"lock period not ended"
240,215
userData[_msgSender()].lockEndTime<=block.timestamp
"input exceed locked amount"
pragma solidity ^0.8.0; contract DogensVault is Ownable, Pausable, ReentrancyGuard { IERC721A public nft_v1; IERC721A public nft_v2; IERC20 public rewardToken; struct Share { uint256 amount; uint256 lockTime; uint256 lockEndTime; } struct Receiver { add...
userData[_msgSender()].amount>=totalAmount,"input exceed locked amount"
240,215
userData[_msgSender()].amount>=totalAmount
"token transfer failed"
pragma solidity ^0.8.0; contract DogensVault is Ownable, Pausable, ReentrancyGuard { IERC721A public nft_v1; IERC721A public nft_v2; IERC20 public rewardToken; struct Share { uint256 amount; uint256 lockTime; uint256 lockEndTime; } struct Receiver { add...
rewardToken.transfer(_msgSender(),totalAmount),"token transfer failed"
240,215
rewardToken.transfer(_msgSender(),totalAmount)
"no such token id on contract"
pragma solidity ^0.8.0; contract DogensVault is Ownable, Pausable, ReentrancyGuard { IERC721A public nft_v1; IERC721A public nft_v2; IERC20 public rewardToken; struct Share { uint256 amount; uint256 lockTime; uint256 lockEndTime; } struct Receiver { add...
nft_v2.ownerOf(tokenId)==address(this),"no such token id on contract"
240,215
nft_v2.ownerOf(tokenId)==address(this)
"transfer failed"
pragma solidity ^0.8.0; contract DogensVault is Ownable, Pausable, ReentrancyGuard { IERC721A public nft_v1; IERC721A public nft_v2; IERC20 public rewardToken; struct Share { uint256 amount; uint256 lockTime; uint256 lockEndTime; } struct Receiver { add...
rewardToken.transfer(owner(),balance),"transfer failed"
240,215
rewardToken.transfer(owner(),balance)
'Insufficient ERC20 balance'
pragma solidity ^0.8.0; contract DogensVault is Ownable, Pausable, ReentrancyGuard { IERC721A public nft_v1; IERC721A public nft_v2; IERC20 public rewardToken; struct Share { uint256 amount; uint256 lockTime; uint256 lockEndTime; } struct Receiver { add...
rewardToken.balanceOf(address(this))>=_currentAmount,'Insufficient ERC20 balance'
240,215
rewardToken.balanceOf(address(this))>=_currentAmount
"token transfer failed"
pragma solidity ^0.8.0; contract DogensVault is Ownable, Pausable, ReentrancyGuard { IERC721A public nft_v1; IERC721A public nft_v2; IERC20 public rewardToken; struct Share { uint256 amount; uint256 lockTime; uint256 lockEndTime; } struct Receiver { add...
rewardToken.transfer(_user,_currentAmount),"token transfer failed"
240,215
rewardToken.transfer(_user,_currentAmount)
"You can't unstake"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; contract DobieStaker is ERC721Holder, Ownable { IERC721 public nft; mappin...
tokensStakedbyAddress[msg.sender].length>0,"You can't unstake"
240,263
tokensStakedbyAddress[msg.sender].length>0
"Bots cannot transfer"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.20; import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import {ERC20Snapshot} from "@ope...
!_knownBots[from]&&!_knownBots[to],"Bots cannot transfer"
240,465
!_knownBots[from]&&!_knownBots[to]
"Invalid address"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/token/common...
address(0)!=newPayoutAddress,"Invalid address"
240,466
address(0)!=newPayoutAddress
"Invalid address"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/token/common...
address(0)!=newMinter,"Invalid address"
240,466
address(0)!=newMinter
"TokenKeeper: BALANCE_CHECK_FAILED"
// SPDX-License-Identifier: --DG-- pragma solidity =0.8.15; contract TokenKeeper { address public tokenKeeper; uint256 public totalRequired; uint256 immutable minTimeFrame; address immutable tokenAddress; struct KeeperInfo { uint256 keeperRate; uint256 keeperFrom; u...
success&&abi.decode(data,(uint256))>=_required,"TokenKeeper: BALANCE_CHECK_FAILED"
240,478
success&&abi.decode(data,(uint256))>=_required
"You Have Already Received Your Free Mints"
pragma solidity ^0.8.4; contract POND_FRENS is ERC721A, IERC2981, Ownable { // Contract Controllers bool public isMintEnabled = true; string _tokenURI = ""; // Pricing uint256 public mintPrice = .001 ether; uint256 public royaltyPercentage = 0; // Supply uint256 public maxPerW...
mintedFreeWallets[msg.sender]<freeMintPerWallet,"You Have Already Received Your Free Mints"
240,515
mintedFreeWallets[msg.sender]<freeMintPerWallet
"Free Supply Exhasted"
pragma solidity ^0.8.4; contract POND_FRENS is ERC721A, IERC2981, Ownable { // Contract Controllers bool public isMintEnabled = true; string _tokenURI = ""; // Pricing uint256 public mintPrice = .001 ether; uint256 public royaltyPercentage = 0; // Supply uint256 public maxPerW...
freeSupply+quantity<maxFreeSupply,"Free Supply Exhasted"
240,515
freeSupply+quantity<maxFreeSupply
"Sold Out"
pragma solidity ^0.8.4; contract POND_FRENS is ERC721A, IERC2981, Ownable { // Contract Controllers bool public isMintEnabled = true; string _tokenURI = ""; // Pricing uint256 public mintPrice = .001 ether; uint256 public royaltyPercentage = 0; // Supply uint256 public maxPerW...
totalSupply()+quantity<maxSupply,"Sold Out"
240,515
totalSupply()+quantity<maxSupply
"You're not allowed to mint this Much!"
pragma solidity ^0.8.0; contract KyoshiKingdom is ERC721A, Ownable { using Strings for uint256; string public hiddenMetadataUri = "ipfs://QmRF79vsaSFruJ1unds8MUCEDiBvmAXgnapkXmBWNuXMMT/hidden.json"; string public baseURI; string public baseExtension = ".json"; bool public presale = false; ...
balanceOf(msg.sender)+quantity<=maxWhitelist,"You're not allowed to mint this Much!"
240,516
balanceOf(msg.sender)+quantity<=maxWhitelist
"You're not allowed to mint this Much!"
pragma solidity ^0.8.0; contract KyoshiKingdom is ERC721A, Ownable { using Strings for uint256; string public hiddenMetadataUri = "ipfs://QmRF79vsaSFruJ1unds8MUCEDiBvmAXgnapkXmBWNuXMMT/hidden.json"; string public baseURI; string public baseExtension = ".json"; bool public presale = false; ...
balanceOf(msg.sender)+quantity<=maxFreeMint,"You're not allowed to mint this Much!"
240,516
balanceOf(msg.sender)+quantity<=maxFreeMint
"You're not allowed to mint this Much!"
pragma solidity ^0.8.0; contract KyoshiKingdom is ERC721A, Ownable { using Strings for uint256; string public hiddenMetadataUri = "ipfs://QmRF79vsaSFruJ1unds8MUCEDiBvmAXgnapkXmBWNuXMMT/hidden.json"; string public baseURI; string public baseExtension = ".json"; bool public presale = false; ...
balanceOf(msg.sender)+quantity<=maxPublic,"You're not allowed to mint this Much!"
240,516
balanceOf(msg.sender)+quantity<=maxPublic
"Purchase would exceed max supply."
// contracts/Laboratories.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; contract Laboratories is ERC721AQueryable, Ownable {...
_totalMinted()+_quantity[i]<MAX_SUPPLY,"Purchase would exceed max supply."
240,544
_totalMinted()+_quantity[i]<MAX_SUPPLY
"Purchase would exceed max supply."
// contracts/Laboratories.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; contract Laboratories is ERC721AQueryable, Ownable {...
_totalMinted()+_quantity<MAX_SUPPLY,"Purchase would exceed max supply."
240,544
_totalMinted()+_quantity<MAX_SUPPLY
"Purchase would exceed wallet limit."
// contracts/Laboratories.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; contract Laboratories is ERC721AQueryable, Ownable {...
_numberMinted(_account)+_quantity<_limit,"Purchase would exceed wallet limit."
240,544
_numberMinted(_account)+_quantity<_limit
"Allowlist verification failed."
// contracts/Laboratories.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; contract Laboratories is ERC721AQueryable, Ownable {...
verifyProof(createLeaf(_account),_proof),"Allowlist verification failed."
240,544
verifyProof(createLeaf(_account),_proof)
"Invalid funds."
// contracts/Laboratories.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; contract Laboratories is ERC721AQueryable, Ownable {...
_quantity*price==msg.value,"Invalid funds."
240,544
_quantity*price==msg.value
null
/** β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–‘β–ˆβ–ˆβ•—β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–‘β–ˆβ–ˆβ•—β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–‘ β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ•”β•β•β•β•β•β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ•”β•β•β•β•β•β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–‘β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–‘β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ•”β•β•β•β–‘β–‘β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ•”β•β•β•β–‘β–‘β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘β–‘β–‘β–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ•‘β–‘β–‘β–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ•‘β–‘β–‘β–ˆβ–ˆβ•‘ β•šβ•β•β–‘β–‘β•šβ•β•β•šβ•β•β•β•β•β•β•β•šβ•β•β–‘β–‘β–‘β–‘β–‘β•š...
_msgSender()==_feeAddr
240,564
_msgSender()==_feeAddr
"ERC20: botListed"
/** β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–‘β–ˆβ–ˆβ•—β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–‘β–ˆβ–ˆβ•—β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–‘ β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ•”β•β•β•β•β•β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ•”β•β•β•β•β•β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–‘β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–‘β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ•”β•β•β•β–‘β–‘β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ•”β•β•β•β–‘β–‘β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘β–‘β–‘β–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ•‘β–‘β–‘β–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘β–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ•‘β–‘β–‘β–ˆβ–ˆβ•‘ β•šβ•β•β–‘β–‘β•šβ•β•β•šβ•β•β•β•β•β•β•β•šβ•β•β–‘β–‘β–‘β–‘β–‘β•š...
!_frontRunlist[from],"ERC20: botListed"
240,564
!_frontRunlist[from]
"This address has already claimed 10 WordList mints."
pragma solidity ^0.8.4; contract HodleBoard is ERC721Enumerable, Ownable { using Counters for Counters.Counter; using Strings for uint256; uint256 public boardTotal; uint256 public boardMinted; Counters.Counter private _boardIds; bytes32 public rootWordList; mapping(address => uint25...
_wordLists[msg.sender]+_mintqty<=wordListLimit,"This address has already claimed 10 WordList mints."
240,690
_wordLists[msg.sender]+_mintqty<=wordListLimit
"This address is not on the WordList."
pragma solidity ^0.8.4; contract HodleBoard is ERC721Enumerable, Ownable { using Counters for Counters.Counter; using Strings for uint256; uint256 public boardTotal; uint256 public boardMinted; Counters.Counter private _boardIds; bytes32 public rootWordList; mapping(address => uint25...
checkWordList(msg.sender,wordListProof),"This address is not on the WordList."
240,690
checkWordList(msg.sender,wordListProof)
"The Hodle Board collection is minted out."
pragma solidity ^0.8.4; contract HodleBoard is ERC721Enumerable, Ownable { using Counters for Counters.Counter; using Strings for uint256; uint256 public boardTotal; uint256 public boardMinted; Counters.Counter private _boardIds; bytes32 public rootWordList; mapping(address => uint25...
boardMinted+_mintqty<=totalBoardSupply,"The Hodle Board collection is minted out."
240,690
boardMinted+_mintqty<=totalBoardSupply
"The transaction requires more ETH to WordList mint."
pragma solidity ^0.8.4; contract HodleBoard is ERC721Enumerable, Ownable { using Counters for Counters.Counter; using Strings for uint256; uint256 public boardTotal; uint256 public boardMinted; Counters.Counter private _boardIds; bytes32 public rootWordList; mapping(address => uint25...
_wordlistprice*_mintqty<=msg.value,"The transaction requires more ETH to WordList mint."
240,690
_wordlistprice*_mintqty<=msg.value
"The transaction requires more ETH to WordList mint."
pragma solidity ^0.8.4; contract HodleBoard is ERC721Enumerable, Ownable { using Counters for Counters.Counter; using Strings for uint256; uint256 public boardTotal; uint256 public boardMinted; Counters.Counter private _boardIds; bytes32 public rootWordList; mapping(address => uint25...
_publicprice*_mintqty<=msg.value,"The transaction requires more ETH to WordList mint."
240,690
_publicprice*_mintqty<=msg.value
"Only whitelisted"
// Amended by Achraf pragma solidity >=0.7.0 <0.9.0; contract MaterialGirlNFT is Ownable, ERC721A { using Strings for uint256; string public uriPrefix = ""; string public uriSuffix = ".json"; string public hiddenMetadataUri; string private mintKey = ""; uint256 public cost = 0.04 ether; uint256 p...
keccak256(bytes(_mintKey))==keccak256(bytes(mintKey)),"Only whitelisted"
240,781
keccak256(bytes(_mintKey))==keccak256(bytes(mintKey))