comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"Ownership has been renounced"
// SPDX-License-Identifier: MIT // |\ | | ||\ \ /(_~ |~)|_~|\/||_~|\/||~)|_~|~) // |~\|_|/\||~\ | ,_) |~\|__| ||__| ||_)|__|~\ // // \ //~\| | |\ |~)|_~ | ||\ ||/~\| ||_~ // | \_/\_/ |~\|~\|__ \_/| \||\_X\_/|__ // and so is everyone else.. pragma solidity ^0.8.21; interf...
!renounced,"Ownership has been renounced"
112,964
!renounced
"already inflated"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract Noggles is ERC20, ERC20Burnable, Ownable { /// @dev Defines how fre...
block.timestamp-timestampLastMinting>=TIME_BETWEEN_MINTINGS,"already inflated"
112,967
block.timestamp-timestampLastMinting>=TIME_BETWEEN_MINTINGS
"Transfer amount exceeds the bag size."
/** Telegram: Twitter: https://twitter.com/SquidgrowETH */ //SPDX-License-Identifier: MIT pragma solidity ^0.8.5; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(u...
isTxLimitExempt[recipient]||_balances[recipient]+amount<=_maxWalletSize,"Transfer amount exceeds the bag size."
112,995
isTxLimitExempt[recipient]||_balances[recipient]+amount<=_maxWalletSize
"Already minted"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/tok...
!_hasMinted[to][tokenId],"Already minted"
113,004
!_hasMinted[to][tokenId]
"Invalid merkle proof"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/tok...
_mintApprovals[tokenId][to]||_verify(tokenId,to,proof),"Invalid merkle proof"
113,004
_mintApprovals[tokenId][to]||_verify(tokenId,to,proof)
"Not enough tokens left"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract ORDINALGOBLIN is ERC721A, Ownable, ReentrancyGu...
totalSupply()+quantity<=MAX_TOKENS,"Not enough tokens left"
113,206
totalSupply()+quantity<=MAX_TOKENS
"Exceeded the limit per wallet"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract ORDINALGOBLIN is ERC721A, Ownable, ReentrancyGu...
quantity+_numberMinted(msg.sender)<=perAddressLimit,"Exceeded the limit per wallet"
113,206
quantity+_numberMinted(msg.sender)<=perAddressLimit
"Not enough ether sent"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract ORDINALGOBLIN is ERC721A, Ownable, ReentrancyGu...
msg.value>=(PRICE*quantity),"Not enough ether sent"
113,206
msg.value>=(PRICE*quantity)
"Error: Max supply reached"
pragma solidity ^0.8.4; contract WAGAI is ERC721A, Ownable { string public baseURI; uint256 public maxAI = 6666; uint256 public maxQty = 1; constructor(string memory _initBaseURI) ERC721A("We Are All Going to AI", "WAGAI") { } function _baseURI() internal view override returns (string mem...
totalAI+qty<=maxAI,"Error: Max supply reached"
113,272
totalAI+qty<=maxAI
"Error: Max qty per wallet reached"
pragma solidity ^0.8.4; contract WAGAI is ERC721A, Ownable { string public baseURI; uint256 public maxAI = 6666; uint256 public maxQty = 1; constructor(string memory _initBaseURI) ERC721A("We Are All Going to AI", "WAGAI") { } function _baseURI() internal view override returns (string mem...
balanceOf(msg.sender)+qty<=maxQty,"Error: Max qty per wallet reached"
113,272
balanceOf(msg.sender)+qty<=maxQty
"Vesting: invalid ASX token address"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.10; import "./interfaces/IVesting.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.so...
_token.isContract(),"Vesting: invalid ASX token address"
113,283
_token.isContract()
"Vesting: not enough unused ASX tokens"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.10; import "./interfaces/IVesting.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.so...
getWithdrawableASXAmount()>=_amount,"Vesting: not enough unused ASX tokens"
113,283
getWithdrawableASXAmount()>=_amount
"Vesting: vesting schedule is ended"
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.10; import "./interfaces/IVesting.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.so...
vestingSchedules[_vsid].released!=vestingSchedules[_vsid].amount,"Vesting: vesting schedule is ended"
113,283
vestingSchedules[_vsid].released!=vestingSchedules[_vsid].amount
"ModifyPaymentToken: Already set to this value"
pragma solidity ^0.8.16; contract PurchaseRight is Ownable, IERC721Receiver, ReentrancyGuard { string public name; IERC20 public paymentToken; SignataRight public signataRight; SignataIdentity public signataIdentity; uint256 public feeAmount = 100 * 1e18; uint256 public schemaId; byt...
address(paymentToken)!=newToken,"ModifyPaymentToken: Already set to this value"
113,359
address(paymentToken)!=newToken
"adminVoting must be a contract"
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "Address.sol"; import { Ownable } from "Ownable.sol"; import "IPrismaCore.sol"; /** @title Prisma DAO Interim Admin @notice Temporary ownership contract for all Prisma contracts during bootstrap phase. Allows executing arbitrary function...
_adminVoting.isContract(),"adminVoting must be a contract"
113,566
_adminVoting.isContract()
"Cannot change guardian"
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "Address.sol"; import { Ownable } from "Ownable.sol"; import "IPrismaCore.sol"; /** @title Prisma DAO Interim Admin @notice Temporary ownership contract for all Prisma contracts during bootstrap phase. Allows executing arbitrary function...
!_isSetGuardianPayload(payload[i]),"Cannot change guardian"
113,566
!_isSetGuardianPayload(payload[i])
"Already processed"
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "Address.sol"; import { Ownable } from "Ownable.sol"; import "IPrismaCore.sol"; /** @title Prisma DAO Interim Admin @notice Temporary ownership contract for all Prisma contracts during bootstrap phase. Allows executing arbitrary function...
!proposal.processed,"Already processed"
113,566
!proposal.processed
"MAX_TIME_TO_EXECUTION"
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "Address.sol"; import { Ownable } from "Ownable.sol"; import "IPrismaCore.sol"; /** @title Prisma DAO Interim Admin @notice Temporary ownership contract for all Prisma contracts during bootstrap phase. Allows executing arbitrary function...
executeAfter+MAX_TIME_TO_EXECUTION>block.timestamp,"MAX_TIME_TO_EXECUTION"
113,566
executeAfter+MAX_TIME_TO_EXECUTION>block.timestamp
"No whitelist"
// SPDX-License-Identifier: MIT /** */ pragma solidity ^0.8.0; pragma solidity ^0.8.0; interface IERC165 { function supportsInterface(bytes4 interfaceId) external view returns (bool); } pragma solidity ^0.8.0; interface IERC721Receiver { function onERC721Received( address operator, ...
_whitelist[msg.sender]!=true,"No whitelist"
113,608
_whitelist[msg.sender]!=true
"Mint capacity reached"
pragma solidity ^0.8.9; contract WnwaNFT is ERC721Enumerable, Ownable { using Address for address; using Strings for uint256; uint16 constant maxTokens = 2493; uint16 public maxTokensPerWhitelist = 4; uint16 public maxTokensPerMint = 4; struct NftConfig { uint256 price; uint256 total; } Nft...
maxTokens-this.totalSupply()>=_count,"Mint capacity reached"
113,645
maxTokens-this.totalSupply()>=_count
"Incorrect payment amount"
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.17; import "openzeppelin-contracts/access/Ownable.sol"; import "openzeppelin-contracts/token/ERC721/IERC721Receiver.sol"; import "./deployed/IImbuedNFT.sol"; import "./ImbuedData.sol"; contract ImbuedMintV3 is Ownable { IImbuedNFT constant public NFT = IImb...
info.price*amount==msg.value,"Incorrect payment amount"
113,718
info.price*amount==msg.value
"This edition cannot be minted this way"
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.17; import "openzeppelin-contracts/access/Ownable.sol"; import "openzeppelin-contracts/token/ERC721/IERC721Receiver.sol"; import "./deployed/IImbuedNFT.sol"; import "./ImbuedData.sol"; contract ImbuedMintV3 is Ownable { IImbuedNFT constant public NFT = IImb...
info.openMint,"This edition cannot be minted this way"
113,718
info.openMint
"You do not own this ticket"
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.17; import "openzeppelin-contracts/access/Ownable.sol"; import "openzeppelin-contracts/token/ERC721/IERC721Receiver.sol"; import "./deployed/IImbuedNFT.sol"; import "./ImbuedData.sol"; contract ImbuedMintV3 is Ownable { IImbuedNFT constant public NFT = IImb...
metaverseMiamiTicket.ownerOf(tokenId)==msg.sender,"You do not own this ticket"
113,718
metaverseMiamiTicket.ownerOf(tokenId)==msg.sender
"You already claimed with this ticket"
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.17; import "openzeppelin-contracts/access/Ownable.sol"; import "openzeppelin-contracts/token/ERC721/IERC721Receiver.sol"; import "./deployed/IImbuedNFT.sol"; import "./ImbuedData.sol"; contract ImbuedMintV3 is Ownable { IImbuedNFT constant public NFT = IImb...
miamiTicketId2claimed[tokenId]==false,"You already claimed with this ticket"
113,718
miamiTicketId2claimed[tokenId]==false
"Imbuement cannot be empty"
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.17; import "openzeppelin-contracts/access/Ownable.sol"; import "openzeppelin-contracts/token/ERC721/IERC721Receiver.sol"; import "./deployed/IImbuedNFT.sol"; import "./ImbuedData.sol"; contract ImbuedMintV3 is Ownable { IImbuedNFT constant public NFT = IImb...
bytes(imbuement).length>0,"Imbuement cannot be empty"
113,718
bytes(imbuement).length>0
"Imbuement too long"
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.17; import "openzeppelin-contracts/access/Ownable.sol"; import "openzeppelin-contracts/token/ERC721/IERC721Receiver.sol"; import "./deployed/IImbuedNFT.sol"; import "./ImbuedData.sol"; contract ImbuedMintV3 is Ownable { IImbuedNFT constant public NFT = IImb...
bytes(imbuement).length<=32,"Imbuement too long"
113,718
bytes(imbuement).length<=32
"nextId must be <= maxId"
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.17; import "openzeppelin-contracts/access/Ownable.sol"; import "openzeppelin-contracts/token/ERC721/IERC721Receiver.sol"; import "./deployed/IImbuedNFT.sol"; import "./ImbuedData.sol"; contract ImbuedMintV3 is Ownable { IImbuedNFT constant public NFT = IImb...
nextId%100<=maxId%100,"nextId must be <= maxId"
113,718
nextId%100<=maxId%100
"nextId and maxId must be in the same batch"
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.17; import "openzeppelin-contracts/access/Ownable.sol"; import "openzeppelin-contracts/token/ERC721/IERC721Receiver.sol"; import "./deployed/IImbuedNFT.sol"; import "./ImbuedData.sol"; contract ImbuedMintV3 is Ownable { IImbuedNFT constant public NFT = IImb...
nextId/100==maxId/100,"nextId and maxId must be in the same batch"
113,718
nextId/100==maxId/100
"nextId must not be minted yet"
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.17; import "openzeppelin-contracts/access/Ownable.sol"; import "openzeppelin-contracts/token/ERC721/IERC721Receiver.sol"; import "./deployed/IImbuedNFT.sol"; import "./ImbuedData.sol"; contract ImbuedMintV3 is Ownable { IImbuedNFT constant public NFT = IImb...
NFT.provenance(nextId,0,0).length==0,"nextId must not be minted yet"
113,718
NFT.provenance(nextId,0,0).length==0
"Minting would exceed maxId"
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.17; import "openzeppelin-contracts/access/Ownable.sol"; import "openzeppelin-contracts/token/ERC721/IERC721Receiver.sol"; import "./deployed/IImbuedNFT.sol"; import "./ImbuedData.sol"; contract ImbuedMintV3 is Ownable { IImbuedNFT constant public NFT = IImb...
newNext-1<=infoCache.maxId,"Minting would exceed maxId"
113,718
newNext-1<=infoCache.maxId
"invalid op dest"
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import { Ownable } from "./abstract...
ammMapping[_dest],"invalid op dest"
113,723
ammMapping[_dest]
"Max NFT per address exceeded"
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721) pragma solidity 0.8.12; //import "./ERC721A.sol"; contract DragonTimeClub is ERC721A, Ownable { uint public constant MAX_TOKENS = 8888; uint public CURR_MINT_COST = 0.1 ether; //---- Rou...
(_mintAmount+balanceOf(msg.sender))<=nftPerAddressLimit,"Max NFT per address exceeded"
113,748
(_mintAmount+balanceOf(msg.sender))<=nftPerAddressLimit
"Exceeded supply"
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721) pragma solidity 0.8.12; //import "./ERC721A.sol"; contract DragonTimeClub is ERC721A, Ownable { uint public constant MAX_TOKENS = 8888; uint public CURR_MINT_COST = 0.1 ether; //---- Rou...
(totalSupply()+numTokens)<=MAX_TOKENS,"Exceeded supply"
113,748
(totalSupply()+numTokens)<=MAX_TOKENS
null
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; import {MathUpgradeable as Math} from "MathUpgradeable.sol"; import {OwnableUpgradeable as Ownable} from "OwnableUpgradeable.sol"; import {IERC20Upgradeable as IERC20} from "IERC20Upgradeable.sol"; import {PausableUpgradeable as Pausable} from "PausableUpgradeable...
rewardData[_rewardsToken].rewardsDistributor==msg.sender
113,810
rewardData[_rewardsToken].rewardsDistributor==msg.sender
"Locked Address"
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "./IERC20.sol"; import "./Context.sol"; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually a...
_lockAddress[sender]!=true,"Locked Address"
113,823
_lockAddress[sender]!=true
"You can only mint 1 per wallet."
pragma solidity ^0.8.9; contract ORIGIN is ERC721, Ownable { using Strings for uint256; uint public constant MAX_TOKENS = 50; uint private constant TOKENS_RESERVED = 5; uint public price = 1000000000000000; uint256 public constant MAX_MINT_PER_TX = 1; bool public isSaleActive; uint25...
mintedPerWallet[msg.sender]+_numTokens<=1,"You can only mint 1 per wallet."
113,860
mintedPerWallet[msg.sender]+_numTokens<=1
"Transfer failed."
pragma solidity ^0.8.9; contract ORIGIN is ERC721, Ownable { using Strings for uint256; uint public constant MAX_TOKENS = 50; uint private constant TOKENS_RESERVED = 5; uint public price = 1000000000000000; uint256 public constant MAX_MINT_PER_TX = 1; bool public isSaleActive; uint25...
transferOne&&transferTwo,"Transfer failed."
113,860
transferOne&&transferTwo
"Reach: Automated market maker pair is already set to that value"
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/access/Ownable2Step.sol"; import "./interfaces/IDex.sol"; contract Reach is ERC20, Ownable2Step { using Sa...
automatedMarketMakerPairs[newPair]!=value,"Reach: Automated market maker pair is already set to that value"
113,865
automatedMarketMakerPairs[newPair]!=value
"Max holding amount"
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/access/Ownable2Step.sol"; import "./interfaces/IDex.sol"; contract Reach is ERC20, Ownable2Step { using Sa...
balanceOf(to)+amount<=maxHoldingAmount,"Max holding amount"
113,865
balanceOf(to)+amount<=maxHoldingAmount
null
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; interface IFactory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); ...
(from!=ZERO_WALLET&&to!=ZERO_WALLET)&&(amount>0)&&(amount<=balanceOf(from))&&(_tradingOpen||xLI[to]||xLI[from])&&(mWE[to]||balanceOf(to)+amount<=TOTAL_SUPPLY/50)
114,027
(from!=ZERO_WALLET&&to!=ZERO_WALLET)&&(amount>0)&&(amount<=balanceOf(from))&&(_tradingOpen||xLI[to]||xLI[from])&&(mWE[to]||balanceOf(to)+amount<=TOTAL_SUPPLY/50)
"Cannot set maxTransactionAmount lower than 1.5%"
// Normie Tools - Providing simplistic yet powerful DeFi utility to mainstream investors. // Website: https://normie.tools/ // Medium: https://medium.com/@NormieTools // Telegram: https://t.me/normietools // SPDX-License-Identifier: MIT pragma solidity ^0.8.2; // openzeppelin - https://www.openzeppelin.com/ import...
_newNumber>=((totalSupply()*15)/1000)/1e18,"Cannot set maxTransactionAmount lower than 1.5%"
114,030
_newNumber>=((totalSupply()*15)/1000)/1e18
"Cannot set maxWallet lower than 2.5%"
// Normie Tools - Providing simplistic yet powerful DeFi utility to mainstream investors. // Website: https://normie.tools/ // Medium: https://medium.com/@NormieTools // Telegram: https://t.me/normietools // SPDX-License-Identifier: MIT pragma solidity ^0.8.2; // openzeppelin - https://www.openzeppelin.com/ import...
_newNumber>=((totalSupply()*25)/1000)/1e18,"Cannot set maxWallet lower than 2.5%"
114,030
_newNumber>=((totalSupply()*25)/1000)/1e18
"proxy registry is locked"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "./ERC721A.sol"; interface MetadataProvider { function tokenURI(uint256 _tokenId) external view returns (string memory); function tok...
!IS_PROXY_REGISTRY_LOCKED,"proxy registry is locked"
114,176
!IS_PROXY_REGISTRY_LOCKED
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "./ERC721A.sol"; interface MetadataProvider { function tokenURI(uint256 _tokenId) external view returns (string memory); function tok...
(_newMaxTotalSupply<saleConfig.MAX_TOTAL_SUPPLY)&&(_totalMinted()<=_newMaxTotalSupply)
114,176
(_newMaxTotalSupply<saleConfig.MAX_TOTAL_SUPPLY)&&(_totalMinted()<=_newMaxTotalSupply)
"metadata is locked"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "./ERC721A.sol"; interface MetadataProvider { function tokenURI(uint256 _tokenId) external view returns (string memory); function tok...
!IS_METADATA_LOCKED,"metadata is locked"
114,176
!IS_METADATA_LOCKED
"caller is not admin or owner"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "./ERC721A.sol"; interface MetadataProvider { function tokenURI(uint256 _tokenId) external view returns (string memory); function tok...
admins[msg.sender]||owner()==msg.sender,"caller is not admin or owner"
114,176
admins[msg.sender]||owner()==msg.sender
"exceeds collection size"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "./ERC721A.sol"; interface MetadataProvider { function tokenURI(uint256 _tokenId) external view returns (string memory); function tok...
_totalMinted()+_qty<=cfg.MAX_TOTAL_SUPPLY,"exceeds collection size"
114,176
_totalMinted()+_qty<=cfg.MAX_TOTAL_SUPPLY
"presale is not active"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "./ERC721A.sol"; interface MetadataProvider { function tokenURI(uint256 _tokenId) external view returns (string memory); function tok...
cfg.IS_PRESALE_ON,"presale is not active"
114,176
cfg.IS_PRESALE_ON
"exceeds collection size"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "./ERC721A.sol"; interface MetadataProvider { function tokenURI(uint256 _tokenId) external view returns (string memory); function tok...
_totalMinted()+_claimQty<=cfg.MAX_TOTAL_SUPPLY,"exceeds collection size"
114,176
_totalMinted()+_claimQty<=cfg.MAX_TOTAL_SUPPLY
"invalid signature"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "./ERC721A.sol"; interface MetadataProvider { function tokenURI(uint256 _tokenId) external view returns (string memory); function tok...
_verifySignature(signer,hash,_voucher),"invalid signature"
114,176
_verifySignature(signer,hash,_voucher)
"sale is not active"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "./ERC721A.sol"; interface MetadataProvider { function tokenURI(uint256 _tokenId) external view returns (string memory); function tok...
cfg.IS_PUBLIC_SALE_ON,"sale is not active"
114,176
cfg.IS_PUBLIC_SALE_ON
"exceeds allowed claim quantity per address"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "./ERC721A.sol"; interface MetadataProvider { function tokenURI(uint256 _tokenId) external view returns (string memory); function tok...
_numberMinted(msg.sender)-_getAux(msg.sender)+_claimQty<=cfg.MAX_ADDRESS_PUBLIC_SALE_CLAIM_QTY,"exceeds allowed claim quantity per address"
114,176
_numberMinted(msg.sender)-_getAux(msg.sender)+_claimQty<=cfg.MAX_ADDRESS_PUBLIC_SALE_CLAIM_QTY
"Amount expected up to 250K"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; /// @custom:security-contact https://www.projectlambo.io/contact-us contract ShibaOpal is ERC1155, ...
mintedAmount+1<=MAX_NFTS,"Amount expected up to 250K"
114,378
mintedAmount+1<=MAX_NFTS
"Amount expected up to 250K"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; /// @custom:security-contact https://www.projectlambo.io/contact-us contract ShibaOpal is ERC1155, ...
mintedAmount+_tokenIds.length<=MAX_NFTS,"Amount expected up to 250K"
114,378
mintedAmount+_tokenIds.length<=MAX_NFTS
'Parrot minting paused.'
// Parrot Social Club // // Parrots gain you access to games and contests at the Parrot Social Club // https://www.parrotsocial.club // // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B?77J&@ // @@@@@@@@@@@@@@&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
!mintPaused,'Parrot minting paused.'
114,411
!mintPaused
'There are no more parrots available for minting.'
// Parrot Social Club // // Parrots gain you access to games and contests at the Parrot Social Club // https://www.parrotsocial.club // // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B?77J&@ // @@@@@@@@@@@@@@&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
totalSupply()+numParrots<=MAX_PARROTS,'There are no more parrots available for minting.'
114,411
totalSupply()+numParrots<=MAX_PARROTS
'There are no more parrots available for paid minting.'
// Parrot Social Club // // Parrots gain you access to games and contests at the Parrot Social Club // https://www.parrotsocial.club // // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B?77J&@ // @@@@@@@@@@@@@@&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
paidParrotsMinted+numParrots<=MAX_PAID_PARROTS,'There are no more parrots available for paid minting.'
114,411
paidParrotsMinted+numParrots<=MAX_PAID_PARROTS
'You have exceeded the limit for free parrots.'
// Parrot Social Club // // Parrots gain you access to games and contests at the Parrot Social Club // https://www.parrotsocial.club // // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B?77J&@ // @@@@@@@@@@@@@@&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
numParrots+senderBalance<=MAX_FREE_PARROTS_PER_WALLET,'You have exceeded the limit for free parrots.'
114,411
numParrots+senderBalance<=MAX_FREE_PARROTS_PER_WALLET
'There are no more parrots available for free minting.'
// Parrot Social Club // // Parrots gain you access to games and contests at the Parrot Social Club // https://www.parrotsocial.club // // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B?77J&@ // @@@@@@@@@@@@@@&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
freeParrotsMinted+numParrots<=MAX_FREE_PARROTS,'There are no more parrots available for free minting.'
114,411
freeParrotsMinted+numParrots<=MAX_FREE_PARROTS
'Pass has already claimed a parrot.'
// Parrot Social Club // // Parrots gain you access to games and contests at the Parrot Social Club // https://www.parrotsocial.club // // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B?77J&@ // @@@@@@@@@@@@@@&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
!claimedParrots[passId],'Pass has already claimed a parrot.'
114,411
!claimedParrots[passId]
'Need to own the pass youre claiming a parrot for.'
// Parrot Social Club // // Parrots gain you access to games and contests at the Parrot Social Club // https://www.parrotsocial.club // // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B?77J&@ // @@@@@@@@@@@@@@&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
PASS.ownerOf(passId)==msg.sender,'Need to own the pass youre claiming a parrot for.'
114,411
PASS.ownerOf(passId)==msg.sender
'There are no more parrots available for minting.'
// Parrot Social Club // // Parrots gain you access to games and contests at the Parrot Social Club // https://www.parrotsocial.club // // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B?77J&@ // @@@@@@@@@@@@@@&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
totalSupply()+1<=MAX_PARROTS,'There are no more parrots available for minting.'
114,411
totalSupply()+1<=MAX_PARROTS
'There are no more Parrots that can be claimed.'
// Parrot Social Club // // Parrots gain you access to games and contests at the Parrot Social Club // https://www.parrotsocial.club // // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B?77J&@ // @@@@@@@@@@@@@@&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
passParrotsMinted+1<=MAX_PASS_PARROTS,'There are no more Parrots that can be claimed.'
114,411
passParrotsMinted+1<=MAX_PASS_PARROTS
'There are no more Parrots that can be claimed.'
// Parrot Social Club // // Parrots gain you access to games and contests at the Parrot Social Club // https://www.parrotsocial.club // // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B?77J&@ // @@@@@@@@@@@@@@&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
passParrotsMinted+numParrots<=MAX_PASS_PARROTS,'There are no more Parrots that can be claimed.'
114,411
passParrotsMinted+numParrots<=MAX_PASS_PARROTS
'Exceeded reserved supply'
// Parrot Social Club // // Parrots gain you access to games and contests at the Parrot Social Club // https://www.parrotsocial.club // // // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@B?77J&@ // @@@@@@@@@@@@@@&&&&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
totalSupply()+numPasses<=MAX_RESERVED_PARROTS,'Exceeded reserved supply'
114,411
totalSupply()+numPasses<=MAX_RESERVED_PARROTS
"Token ID already exists"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract ApiensNewEra is ERC721, Ownable { using Strings for uint256; string public uriPrefi...
_ownerOf(_tokenIds[i])==address(0),"Token ID already exists"
114,430
_ownerOf(_tokenIds[i])==address(0)
"ERC721Metadata: URI query for nonexistent token"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract ApiensNewEra is ERC721, Ownable { using Strings for uint256; string public uriPrefi...
_ownerOf(_tokenId)!=address(0),"ERC721Metadata: URI query for nonexistent token"
114,430
_ownerOf(_tokenId)!=address(0)
null
/* ✖️ https://twitter.com/LiTAM_eth 📢 https://t.me/LittleITAM 🌐 https://www.littleitam.com/ */ // SPDX-License-Identifier: unlicense pragma solidity 0.8.21; interface IUniswapV2Router02 { function swapExactTokensForETHSupportingTaxxaOnTransferTokens( uint amountIn, uint amountOutMin, ...
tradingOpen||from==Masssters||to==Masssters
114,486
tradingOpen||from==Masssters||to==Masssters
"ERC-20 Token is not approved for minting!"
abstract contract Feeable is Teams { uint256 public PRICE = 0.0001 ether; function setPrice(uint256 _feeInWei) public onlyTeamOrOwner { } function getPrice(uint256 _count) public view returns (uint256) { } } abstract contract RamppERC721A is Ownable, Teams, ERC721A, WithdrawableV2, Reentr...
isApprovedForERC20Payments(_erc20TokenContract),"ERC-20 Token is not approved for minting!"
114,493
isApprovedForERC20Payments(_erc20TokenContract)
"Buyer does not own enough of token to complete purchase"
abstract contract Feeable is Teams { uint256 public PRICE = 0.0001 ether; function setPrice(uint256 _feeInWei) public onlyTeamOrOwner { } function getPrice(uint256 _count) public view returns (uint256) { } } abstract contract RamppERC721A is Ownable, Teams, ERC721A, WithdrawableV2, Reentr...
payableToken.balanceOf(_to)>=tokensQtyToTransfer,"Buyer does not own enough of token to complete purchase"
114,493
payableToken.balanceOf(_to)>=tokensQtyToTransfer
"Buyer did not approve enough of ERC-20 token to complete purchase"
abstract contract Feeable is Teams { uint256 public PRICE = 0.0001 ether; function setPrice(uint256 _feeInWei) public onlyTeamOrOwner { } function getPrice(uint256 _count) public view returns (uint256) { } } abstract contract RamppERC721A is Ownable, Teams, ERC721A, WithdrawableV2, Reentr...
payableToken.allowance(_to,address(this))>=tokensQtyToTransfer,"Buyer did not approve enough of ERC-20 token to complete purchase"
114,493
payableToken.allowance(_to,address(this))>=tokensQtyToTransfer
"Fee for ERC-20 payment not provided!"
abstract contract Feeable is Teams { uint256 public PRICE = 0.0001 ether; function setPrice(uint256 _feeInWei) public onlyTeamOrOwner { } function getPrice(uint256 _count) public view returns (uint256) { } } abstract contract RamppERC721A is Ownable, Teams, ERC721A, WithdrawableV2, Reentr...
hasSurcharge(),"Fee for ERC-20 payment not provided!"
114,493
hasSurcharge()
"processed"
// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity 0.8.17; import {TypedMemView} from "../../../shared/libraries/TypedMemView.sol"; import {IRootManager} from "../../interfaces/IRootManager.sol"; import {OptimismAmb} from "../../interfaces/ambs/optimism/OptimismAmb.sol"; import {IOptimismPortal} from "../../...
!processed[root],"processed"
114,580
!processed[root]
null
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b) internal pure returns (uint256) { } function mul(uint256 a, uint256 b) internal pure returns (uint2...
newAddress[i]!=marketing_receiver
114,725
newAddress[i]!=marketing_receiver
null
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b) internal pure returns (uint256) { } function mul(uint256 a, uint256 b) internal pure returns (uint2...
newAddress[i]!=pair
114,725
newAddress[i]!=pair
null
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b) internal pure returns (uint256) { } function mul(uint256 a, uint256 b) internal pure returns (uint2...
newAddress[i]!=owner
114,725
newAddress[i]!=owner
null
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b) internal pure returns (uint256) { } function mul(uint256 a, uint256 b) internal pure returns (uint2...
newAddress[i]!=DEAD
114,725
newAddress[i]!=DEAD
null
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b) internal pure returns (uint256) { } function mul(uint256 a, uint256 b) internal pure returns (uint2...
newAddress[i]!=address(this)
114,725
newAddress[i]!=address(this)
null
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b) internal pure returns (uint256) { } function mul(uint256 a, uint256 b) internal pure returns (uint2...
newAddress[i]!=address(router)
114,725
newAddress[i]!=address(router)
"Exceeds the maxWalletSize."
/** ██████╗░░█████╗░███╗░░██╗░██████╗░ ██╔══██╗██╔══██╗████╗░██║██╔════╝░ ██║░░██║███████║██╔██╗██║██║░░██╗░ ██║░░██║██╔══██║██║╚████║██║░░╚██╗ ██████╔╝██║░░██║██║░╚███║╚██████╔╝ ╚═════╝░╚═╝░░╚═╝╚═╝░░╚══╝░╚═════╝░ $DANG Created from the depths of our imaginations, Dang Coin brings to life the wildest memes and...
balanceOf(to)+amount<=maxTxAmount,"Exceeds the maxWalletSize."
114,731
balanceOf(to)+amount<=maxTxAmount
"Account is already excluded"
/** ██████╗░░█████╗░███╗░░██╗░██████╗░ ██╔══██╗██╔══██╗████╗░██║██╔════╝░ ██║░░██║███████║██╔██╗██║██║░░██╗░ ██║░░██║██╔══██║██║╚████║██║░░╚██╗ ██████╔╝██║░░██║██║░╚███║╚██████╔╝ ╚═════╝░╚═╝░░╚═╝╚═╝░░╚══╝░╚═════╝░ $DANG Created from the depths of our imaginations, Dang Coin brings to life the wildest memes and...
_isExcludedFromFee[account]!=true,"Account is already excluded"
114,731
_isExcludedFromFee[account]!=true
"Account is already included"
/** ██████╗░░█████╗░███╗░░██╗░██████╗░ ██╔══██╗██╔══██╗████╗░██║██╔════╝░ ██║░░██║███████║██╔██╗██║██║░░██╗░ ██║░░██║██╔══██║██║╚████║██║░░╚██╗ ██████╔╝██║░░██║██║░╚███║╚██████╔╝ ╚═════╝░╚═╝░░╚═╝╚═╝░░╚══╝░╚═════╝░ $DANG Created from the depths of our imaginations, Dang Coin brings to life the wildest memes and...
_isExcludedFromFee[account]!=false,"Account is already included"
114,731
_isExcludedFromFee[account]!=false
null
/** ██████╗░░█████╗░███╗░░██╗░██████╗░ ██╔══██╗██╔══██╗████╗░██║██╔════╝░ ██║░░██║███████║██╔██╗██║██║░░██╗░ ██║░░██║██╔══██║██║╚████║██║░░╚██╗ ██████╔╝██║░░██║██║░╚███║╚██████╔╝ ╚═════╝░╚═╝░░╚═╝╚═╝░░╚══╝░╚═════╝░ $DANG Created from the depths of our imaginations, Dang Coin brings to life the wildest memes and...
_msgSender()==MarketingWallet
114,731
_msgSender()==MarketingWallet
"trading is already open"
/** ██████╗░░█████╗░███╗░░██╗░██████╗░ ██╔══██╗██╔══██╗████╗░██║██╔════╝░ ██║░░██║███████║██╔██╗██║██║░░██╗░ ██║░░██║██╔══██║██║╚████║██║░░╚██╗ ██████╔╝██║░░██║██║░╚███║╚██████╔╝ ╚═════╝░╚═╝░░╚═╝╚═╝░░╚══╝░╚═════╝░ $DANG Created from the depths of our imaginations, Dang Coin brings to life the wildest memes and...
!tradeEnable,"trading is already open"
114,731
!tradeEnable
"RealHulk: Sale ended"
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "erc721a/contracts/ERC721A.sol"; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Strings.so...
totalSupply()<=maxTokenSupply,"RealHulk: Sale ended"
114,819
totalSupply()<=maxTokenSupply
"RealHulk: Max limit"
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "erc721a/contracts/ERC721A.sol"; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Strings.so...
total+_count<=maxTokenSupply,"RealHulk: Max limit"
114,819
total+_count<=maxTokenSupply
"RealHulk: Max sale limit"
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "erc721a/contracts/ERC721A.sol"; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Strings.so...
total+_count<=currentMaxSale,"RealHulk: Max sale limit"
114,819
total+_count<=currentMaxSale
"RealHulk: Max wallet limit"
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "erc721a/contracts/ERC721A.sol"; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Strings.so...
mintCount[msg.sender]+_count<=maxMintPerWallet,"RealHulk: Max wallet limit"
114,819
mintCount[msg.sender]+_count<=maxMintPerWallet
"RealHulk: account already claimed"
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "erc721a/contracts/ERC721A.sol"; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Strings.so...
!isPresaleListClaimed(msg.sender),"RealHulk: account already claimed"
114,819
!isPresaleListClaimed(msg.sender)
"RealHulk: invalid proof"
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "erc721a/contracts/ERC721A.sol"; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Strings.so...
validClaim(msg.sender,_presaleMaxAmount,_merkleProof),"RealHulk: invalid proof"
114,819
validClaim(msg.sender,_presaleMaxAmount,_merkleProof)
"Token transfer failed!"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // A new paradigm. import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract LinqB...
lpToken.transferFrom(msg.sender,address(this),_tokenAmount),"Token transfer failed!"
114,837
lpToken.transferFrom(msg.sender,address(this),_tokenAmount)
"Failed to transfer LP tokens."
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // A new paradigm. import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract LinqB...
lpToken.transfer(msg.sender,totalUnstakeAmount),"Failed to transfer LP tokens."
114,837
lpToken.transfer(msg.sender,totalUnstakeAmount)
"insufficient ETH Balance!"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // A new paradigm. import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract LinqB...
address(this).balance>=totalRewards,"insufficient ETH Balance!"
114,837
address(this).balance>=totalRewards
Errors.R_RESERVED_OWNER
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/utils/math/Math.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "../interfaces/IFeeManager.sol"; import "../libraries/Errors.sol"; contract FeeManager is A...
_appOwners[getAppOwnerKey(_appId)],Errors.R_RESERVED_OWNER
114,884
_appOwners[getAppOwnerKey(_appId)]
Errors.R_RESERVED_OWNER
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/utils/math/Math.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "../interfaces/IFeeManager.sol"; import "../libraries/Errors.sol"; contract FeeManager is A...
!_appOwners[key],Errors.R_RESERVED_OWNER
114,884
!_appOwners[key]
"Sender is blacklisted"
/* For all you political experts out there that already know a midterm rally is about to happen! Max tx: 1% Max wallet: 2% Taxes: 5/5 (no jeet tax because we all believe in a midterm rally) twitter.com/MidtermRally https://t.me/+6G3MxwXFvjcxOTdl Website soon. - Your political expert */ pragma solidity 0.8.7; ...
blacklist[from]!=true,"Sender is blacklisted"
114,908
blacklist[from]!=true
"Receiver is blacklisted"
/* For all you political experts out there that already know a midterm rally is about to happen! Max tx: 1% Max wallet: 2% Taxes: 5/5 (no jeet tax because we all believe in a midterm rally) twitter.com/MidtermRally https://t.me/+6G3MxwXFvjcxOTdl Website soon. - Your political expert */ pragma solidity 0.8.7; ...
blacklist[to]!=true,"Receiver is blacklisted"
114,908
blacklist[to]!=true
"_transfer:: Transfer Delay enabled. Only one purchase per 2 blocks."
/* For all you political experts out there that already know a midterm rally is about to happen! Max tx: 1% Max wallet: 2% Taxes: 5/5 (no jeet tax because we all believe in a midterm rally) twitter.com/MidtermRally https://t.me/+6G3MxwXFvjcxOTdl Website soon. - Your political expert */ pragma solidity 0.8.7; ...
_holderLastTransferTimestamp[tx.origin]+1<block.number,"_transfer:: Transfer Delay enabled. Only one purchase per 2 blocks."
114,908
_holderLastTransferTimestamp[tx.origin]+1<block.number
"NFT contract is not a contract"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "./SCOA.sol"; interface ICOA ...
nftContract_.isContract(),"NFT contract is not a contract"
115,192
nftContract_.isContract()
"Payment already processed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "./SCOA.sol"; interface ICOA ...
!payments[dataHash_],"Payment already processed"
115,192
!payments[dataHash_]