comment stringlengths 1 211 ⌀ | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"Auction time ended" | pragma solidity ^0.8.15;
struct NFTVoucher {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFee;
bytes signature;
}
struct NFT {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFe... | currentlyOnAuction[itemId].biddingTime>block.timestamp,"Auction time ended" | 147,654 | currentlyOnAuction[itemId].biddingTime>block.timestamp |
"Already sold" | pragma solidity ^0.8.15;
struct NFTVoucher {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFee;
bytes signature;
}
struct NFT {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFe... | !currentlyOnAuction[itemId].sold,"Already sold" | 147,654 | !currentlyOnAuction[itemId].sold |
"Item is not on auction" | pragma solidity ^0.8.15;
struct NFTVoucher {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFee;
bytes signature;
}
struct NFT {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFe... | currentlyOnAuction[itemId].isOnAuction,"Item is not on auction" | 147,654 | currentlyOnAuction[itemId].isOnAuction |
"Bidding is still in progress" | pragma solidity ^0.8.15;
struct NFTVoucher {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFee;
bytes signature;
}
struct NFT {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFe... | currentlyOnAuction[itemId].biddingTime<=block.timestamp,"Bidding is still in progress" | 147,654 | currentlyOnAuction[itemId].biddingTime<=block.timestamp |
"Only highest bidder can claim the NFT" | pragma solidity ^0.8.15;
struct NFTVoucher {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFee;
bytes signature;
}
struct NFT {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFe... | bidderInfo[itemId].bidderAddress==msg.sender,"Only highest bidder can claim the NFT" | 147,654 | bidderInfo[itemId].bidderAddress==msg.sender |
"Cannot reset now, bid time is not ended" | pragma solidity ^0.8.15;
struct NFTVoucher {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFee;
bytes signature;
}
struct NFT {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFe... | currentlyOnAuction[currentlyOnAuctionTokenID].biddingTime<block.timestamp,"Cannot reset now, bid time is not ended" | 147,654 | currentlyOnAuction[currentlyOnAuctionTokenID].biddingTime<block.timestamp |
"Invalid campaign id" | pragma solidity ^0.8.15;
struct NFTVoucher {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFee;
bytes signature;
}
struct NFT {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFe... | campaigns[_campaignId].creatorAddress!=address(0),"Invalid campaign id" | 147,654 | campaigns[_campaignId].creatorAddress!=address(0) |
"Campaign already ended" | pragma solidity ^0.8.15;
struct NFTVoucher {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFee;
bytes signature;
}
struct NFT {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFe... | !campaigns[_campaignId].isEnded,"Campaign already ended" | 147,654 | !campaigns[_campaignId].isEnded |
"Cannot draw at the moment" | pragma solidity ^0.8.15;
struct NFTVoucher {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFee;
bytes signature;
}
struct NFT {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFe... | campaigns[_campaignId].drawTime<block.timestamp||campaigns[_campaignId].currentNoOfParticipants==campaigns[_campaignId].maxNoOfParticipants,"Cannot draw at the moment" | 147,654 | campaigns[_campaignId].drawTime<block.timestamp||campaigns[_campaignId].currentNoOfParticipants==campaigns[_campaignId].maxNoOfParticipants |
"No participant on this campaign" | pragma solidity ^0.8.15;
struct NFTVoucher {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFee;
bytes signature;
}
struct NFT {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFe... | campaigns[_campaignId].currentNoOfParticipants>0,"No participant on this campaign" | 147,654 | campaigns[_campaignId].currentNoOfParticipants>0 |
"Invalid campaign id" | pragma solidity ^0.8.15;
struct NFTVoucher {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFee;
bytes signature;
}
struct NFT {
string uri;
uint256 price;
address creatorAddress;
uint256 numberOfNfts;
uint256 platformFe... | campaigns[_campaignId].campaignID!=0,"Invalid campaign id" | 147,654 | campaigns[_campaignId].campaignID!=0 |
null | /**
// Sam Brinton's Bags - LIPSTICK
// Telegram - https://t.me/lipstick_community
// Lipstick is the ultimate accessory while grabbing bags!
// -Sam Brinton
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
... | address(this).balance>=5000000000000000000 | 147,728 | address(this).balance>=5000000000000000000 |
"LegacyAssetManager: User not listed" | pragma solidity 0.8.15;
contract LegacyAssetManager is AccessControl, Pausable, ReentrancyGuard {
using SafeERC20 for IERC20;
bytes32 public constant LEGACY_ADMIN = keccak256("LEGACY_ADMIN");
bytes32 public constant ASSET_AUTHORIZER = keccak256("ASSET_AUTHORIZER");
ILegacyVaultFactory public vaultFactor... | listedMembers[user],"LegacyAssetManager: User not listed" | 147,732 | listedMembers[user] |
"LegacyAssetManager: Asset is already listed" | pragma solidity 0.8.15;
contract LegacyAssetManager is AccessControl, Pausable, ReentrancyGuard {
using SafeERC20 for IERC20;
bytes32 public constant LEGACY_ADMIN = keccak256("LEGACY_ADMIN");
bytes32 public constant ASSET_AUTHORIZER = keccak256("ASSET_AUTHORIZER");
ILegacyVaultFactory public vaultFactor... | !listedAssets[user][_contract][tokenId],"LegacyAssetManager: Asset is already listed" | 147,732 | !listedAssets[user][_contract][tokenId] |
"LegacyAssetManager: Contract is not a valid ERC1155 contract" | pragma solidity 0.8.15;
contract LegacyAssetManager is AccessControl, Pausable, ReentrancyGuard {
using SafeERC20 for IERC20;
bytes32 public constant LEGACY_ADMIN = keccak256("LEGACY_ADMIN");
bytes32 public constant ASSET_AUTHORIZER = keccak256("ASSET_AUTHORIZER");
ILegacyVaultFactory public vaultFactor... | IERC1155(_contract).supportsInterface(0xd9b67a26),"LegacyAssetManager: Contract is not a valid ERC1155 contract" | 147,732 | IERC1155(_contract).supportsInterface(0xd9b67a26) |
"LegacyAssetManager: Insufficient token balance" | pragma solidity 0.8.15;
contract LegacyAssetManager is AccessControl, Pausable, ReentrancyGuard {
using SafeERC20 for IERC20;
bytes32 public constant LEGACY_ADMIN = keccak256("LEGACY_ADMIN");
bytes32 public constant ASSET_AUTHORIZER = keccak256("ASSET_AUTHORIZER");
ILegacyVaultFactory public vaultFactor... | IERC1155(_contract).balanceOf(_msgSender(),tokenId)>0&&IERC1155(_contract).balanceOf(_msgSender(),tokenId)>=totalAmount,"LegacyAssetManager: Insufficient token balance" | 147,732 | IERC1155(_contract).balanceOf(_msgSender(),tokenId)>0&&IERC1155(_contract).balanceOf(_msgSender(),tokenId)>=totalAmount |
"LegacyAssetManager: Asset not approved" | pragma solidity 0.8.15;
contract LegacyAssetManager is AccessControl, Pausable, ReentrancyGuard {
using SafeERC20 for IERC20;
bytes32 public constant LEGACY_ADMIN = keccak256("LEGACY_ADMIN");
bytes32 public constant ASSET_AUTHORIZER = keccak256("ASSET_AUTHORIZER");
ILegacyVaultFactory public vaultFactor... | IERC1155(_contract).isApprovedForAll(_msgSender(),vaultFactory.getVault(_msgSender())),"LegacyAssetManager: Asset not approved" | 147,732 | IERC1155(_contract).isApprovedForAll(_msgSender(),vaultFactory.getVault(_msgSender())) |
"LegacyAssetManager: Beneficiary percentage must be > 0" | pragma solidity 0.8.15;
contract LegacyAssetManager is AccessControl, Pausable, ReentrancyGuard {
using SafeERC20 for IERC20;
bytes32 public constant LEGACY_ADMIN = keccak256("LEGACY_ADMIN");
bytes32 public constant ASSET_AUTHORIZER = keccak256("ASSET_AUTHORIZER");
ILegacyVaultFactory public vaultFactor... | beneficiaryPercentages[i]>0,"LegacyAssetManager: Beneficiary percentage must be > 0" | 147,732 | beneficiaryPercentages[i]>0 |
"LegacyAssetManager: Contract is not a valid ERC721 _contract" | pragma solidity 0.8.15;
contract LegacyAssetManager is AccessControl, Pausable, ReentrancyGuard {
using SafeERC20 for IERC20;
bytes32 public constant LEGACY_ADMIN = keccak256("LEGACY_ADMIN");
bytes32 public constant ASSET_AUTHORIZER = keccak256("ASSET_AUTHORIZER");
ILegacyVaultFactory public vaultFactor... | IERC721(_contract).supportsInterface(0x80ac58cd),"LegacyAssetManager: Contract is not a valid ERC721 _contract" | 147,732 | IERC721(_contract).supportsInterface(0x80ac58cd) |
"LegacyAssetManager: Caller is not the token owner" | pragma solidity 0.8.15;
contract LegacyAssetManager is AccessControl, Pausable, ReentrancyGuard {
using SafeERC20 for IERC20;
bytes32 public constant LEGACY_ADMIN = keccak256("LEGACY_ADMIN");
bytes32 public constant ASSET_AUTHORIZER = keccak256("ASSET_AUTHORIZER");
ILegacyVaultFactory public vaultFactor... | IERC721(_contract).ownerOf(tokenId)==_msgSender(),"LegacyAssetManager: Caller is not the token owner" | 147,732 | IERC721(_contract).ownerOf(tokenId)==_msgSender() |
"LegacyAssetManager: Asset not approved" | pragma solidity 0.8.15;
contract LegacyAssetManager is AccessControl, Pausable, ReentrancyGuard {
using SafeERC20 for IERC20;
bytes32 public constant LEGACY_ADMIN = keccak256("LEGACY_ADMIN");
bytes32 public constant ASSET_AUTHORIZER = keccak256("ASSET_AUTHORIZER");
ILegacyVaultFactory public vaultFactor... | IERC721(_contract).getApproved(tokenId)==vaultFactory.getVault(_msgSender())||IERC721(_contract).isApprovedForAll(_msgSender(),vaultFactory.getVault(_msgSender())),"LegacyAssetManager: Asset not approved" | 147,732 | IERC721(_contract).getApproved(tokenId)==vaultFactory.getVault(_msgSender())||IERC721(_contract).isApprovedForAll(_msgSender(),vaultFactory.getVault(_msgSender())) |
"LegacyAssetManager: Asset has been transferred to the beneficiaries" | pragma solidity 0.8.15;
contract LegacyAssetManager is AccessControl, Pausable, ReentrancyGuard {
using SafeERC20 for IERC20;
bytes32 public constant LEGACY_ADMIN = keccak256("LEGACY_ADMIN");
bytes32 public constant ASSET_AUTHORIZER = keccak256("ASSET_AUTHORIZER");
ILegacyVaultFactory public vaultFactor... | userAssets[_msgSender()].erc1155Assets[assetIndex].remainingBeneficiaries>0,"LegacyAssetManager: Asset has been transferred to the beneficiaries" | 147,732 | userAssets[_msgSender()].erc1155Assets[assetIndex].remainingBeneficiaries>0 |
"LegacyAssetManager: Asset has been transferred to the beneficiary" | pragma solidity 0.8.15;
contract LegacyAssetManager is AccessControl, Pausable, ReentrancyGuard {
using SafeERC20 for IERC20;
bytes32 public constant LEGACY_ADMIN = keccak256("LEGACY_ADMIN");
bytes32 public constant ASSET_AUTHORIZER = keccak256("ASSET_AUTHORIZER");
ILegacyVaultFactory public vaultFactor... | !userAssets[_msgSender()].erc721Assets[assetIndex].transferStatus,"LegacyAssetManager: Asset has been transferred to the beneficiary" | 147,732 | !userAssets[_msgSender()].erc721Assets[assetIndex].transferStatus |
"LegacyAssetManager: Asset has been transferred to the beneficiaries" | pragma solidity 0.8.15;
contract LegacyAssetManager is AccessControl, Pausable, ReentrancyGuard {
using SafeERC20 for IERC20;
bytes32 public constant LEGACY_ADMIN = keccak256("LEGACY_ADMIN");
bytes32 public constant ASSET_AUTHORIZER = keccak256("ASSET_AUTHORIZER");
ILegacyVaultFactory public vaultFactor... | userAssets[_msgSender()].erc20Assets[assetIndex].remainingBeneficiaries>0,"LegacyAssetManager: Asset has been transferred to the beneficiaries" | 147,732 | userAssets[_msgSender()].erc20Assets[assetIndex].remainingBeneficiaries>0 |
"LegacyAssetManager: Backup wallet already switched" | pragma solidity 0.8.15;
contract LegacyAssetManager is AccessControl, Pausable, ReentrancyGuard {
using SafeERC20 for IERC20;
bytes32 public constant LEGACY_ADMIN = keccak256("LEGACY_ADMIN");
bytes32 public constant ASSET_AUTHORIZER = keccak256("ASSET_AUTHORIZER");
ILegacyVaultFactory public vaultFactor... | !userAssets[_msgSender()].backupWalletStatus,"LegacyAssetManager: Backup wallet already switched" | 147,732 | !userAssets[_msgSender()].backupWalletStatus |
"LegacyAssetManager: Unauthorized backup wallet transfer call" | pragma solidity 0.8.15;
contract LegacyAssetManager is AccessControl, Pausable, ReentrancyGuard {
using SafeERC20 for IERC20;
bytes32 public constant LEGACY_ADMIN = keccak256("LEGACY_ADMIN");
bytes32 public constant ASSET_AUTHORIZER = keccak256("ASSET_AUTHORIZER");
ILegacyVaultFactory public vaultFactor... | _msgSender()==backupWallets[owner],"LegacyAssetManager: Unauthorized backup wallet transfer call" | 147,732 | _msgSender()==backupWallets[owner] |
"LegacyAssetManager: Beneficiary has already claimed the asset" | pragma solidity 0.8.15;
contract LegacyAssetManager is AccessControl, Pausable, ReentrancyGuard {
using SafeERC20 for IERC20;
bytes32 public constant LEGACY_ADMIN = keccak256("LEGACY_ADMIN");
bytes32 public constant ASSET_AUTHORIZER = keccak256("ASSET_AUTHORIZER");
ILegacyVaultFactory public vaultFactor... | !userAssets[owner].erc721Assets[assetIndex].transferStatus,"LegacyAssetManager: Beneficiary has already claimed the asset" | 147,732 | !userAssets[owner].erc721Assets[assetIndex].transferStatus |
"LegacyAssetManager: Unauthorized claim call" | pragma solidity 0.8.15;
contract LegacyAssetManager is AccessControl, Pausable, ReentrancyGuard {
using SafeERC20 for IERC20;
bytes32 public constant LEGACY_ADMIN = keccak256("LEGACY_ADMIN");
bytes32 public constant ASSET_AUTHORIZER = keccak256("ASSET_AUTHORIZER");
ILegacyVaultFactory public vaultFactor... | userAssets[owner].erc721Assets[assetIndex].beneficiary==_msgSender(),"LegacyAssetManager: Unauthorized claim call" | 147,732 | userAssets[owner].erc721Assets[assetIndex].beneficiary==_msgSender() |
"LegacyAssetManager: Beneficiary has already claimed the asset" | pragma solidity 0.8.15;
contract LegacyAssetManager is AccessControl, Pausable, ReentrancyGuard {
using SafeERC20 for IERC20;
bytes32 public constant LEGACY_ADMIN = keccak256("LEGACY_ADMIN");
bytes32 public constant ASSET_AUTHORIZER = keccak256("ASSET_AUTHORIZER");
ILegacyVaultFactory public vaultFactor... | userAssets[_msgSender()].erc1155Assets[assetIndex].beneficiaries[beneficiaryIndex].totalAmount-userAssets[_msgSender()].erc1155Assets[assetIndex].beneficiaries[beneficiaryIndex].claimedAmount>0,"LegacyAssetManager: Beneficiary has already claimed the asset" | 147,732 | userAssets[_msgSender()].erc1155Assets[assetIndex].beneficiaries[beneficiaryIndex].totalAmount-userAssets[_msgSender()].erc1155Assets[assetIndex].beneficiaries[beneficiaryIndex].claimedAmount>0 |
"LegacyAssetManager: Beneficiary percentage exceeds total of 100" | pragma solidity 0.8.15;
contract LegacyAssetManager is AccessControl, Pausable, ReentrancyGuard {
using SafeERC20 for IERC20;
bytes32 public constant LEGACY_ADMIN = keccak256("LEGACY_ADMIN");
bytes32 public constant ASSET_AUTHORIZER = keccak256("ASSET_AUTHORIZER");
ILegacyVaultFactory public vaultFactor... | (userAssets[_msgSender()].erc1155Assets[assetIndex].totalPercentage-currentPercentage)+newPercentage<=100,"LegacyAssetManager: Beneficiary percentage exceeds total of 100" | 147,732 | (userAssets[_msgSender()].erc1155Assets[assetIndex].totalPercentage-currentPercentage)+newPercentage<=100 |
"LegacyAssetManager: Beneficiary has already claimed the asset" | pragma solidity 0.8.15;
contract LegacyAssetManager is AccessControl, Pausable, ReentrancyGuard {
using SafeERC20 for IERC20;
bytes32 public constant LEGACY_ADMIN = keccak256("LEGACY_ADMIN");
bytes32 public constant ASSET_AUTHORIZER = keccak256("ASSET_AUTHORIZER");
ILegacyVaultFactory public vaultFactor... | userAssets[_msgSender()].erc20Assets[assetIndex].beneficiaries[beneficiaryIndex].totalAmount-userAssets[_msgSender()].erc20Assets[assetIndex].beneficiaries[beneficiaryIndex].claimedAmount>0,"LegacyAssetManager: Beneficiary has already claimed the asset" | 147,732 | userAssets[_msgSender()].erc20Assets[assetIndex].beneficiaries[beneficiaryIndex].totalAmount-userAssets[_msgSender()].erc20Assets[assetIndex].beneficiaries[beneficiaryIndex].claimedAmount>0 |
"LegacyAssetManager: Beneficiary percentage exceeds 100" | pragma solidity 0.8.15;
contract LegacyAssetManager is AccessControl, Pausable, ReentrancyGuard {
using SafeERC20 for IERC20;
bytes32 public constant LEGACY_ADMIN = keccak256("LEGACY_ADMIN");
bytes32 public constant ASSET_AUTHORIZER = keccak256("ASSET_AUTHORIZER");
ILegacyVaultFactory public vaultFactor... | (userAssets[_msgSender()].erc20Assets[assetIndex].totalPercentage-currentPercentage)+newPercentage<=100,"LegacyAssetManager: Beneficiary percentage exceeds 100" | 147,732 | (userAssets[_msgSender()].erc20Assets[assetIndex].totalPercentage-currentPercentage)+newPercentage<=100 |
"LegacyAssetManger: Nonce already used" | pragma solidity 0.8.15;
contract LegacyAssetManager is AccessControl, Pausable, ReentrancyGuard {
using SafeERC20 for IERC20;
bytes32 public constant LEGACY_ADMIN = keccak256("LEGACY_ADMIN");
bytes32 public constant ASSET_AUTHORIZER = keccak256("ASSET_AUTHORIZER");
ILegacyVaultFactory public vaultFactor... | !burnedNonces[nonce],"LegacyAssetManger: Nonce already used" | 147,732 | !burnedNonces[nonce] |
"LegacyAssetManager: Unauthorized signature" | pragma solidity 0.8.15;
contract LegacyAssetManager is AccessControl, Pausable, ReentrancyGuard {
using SafeERC20 for IERC20;
bytes32 public constant LEGACY_ADMIN = keccak256("LEGACY_ADMIN");
bytes32 public constant ASSET_AUTHORIZER = keccak256("ASSET_AUTHORIZER");
ILegacyVaultFactory public vaultFactor... | hasRole(ASSET_AUTHORIZER,signer),"LegacyAssetManager: Unauthorized signature" | 147,732 | hasRole(ASSET_AUTHORIZER,signer) |
"LegacyAssetManager: Unauthorized signature" | pragma solidity 0.8.15;
contract LegacyAssetManager is AccessControl, Pausable, ReentrancyGuard {
using SafeERC20 for IERC20;
bytes32 public constant LEGACY_ADMIN = keccak256("LEGACY_ADMIN");
bytes32 public constant ASSET_AUTHORIZER = keccak256("ASSET_AUTHORIZER");
ILegacyVaultFactory public vaultFactor... | hasRole(LEGACY_ADMIN,signer),"LegacyAssetManager: Unauthorized signature" | 147,732 | hasRole(LEGACY_ADMIN,signer) |
"LegacyAssetManager: Duplicate signature not allowed" | pragma solidity 0.8.15;
contract LegacyAssetManager is AccessControl, Pausable, ReentrancyGuard {
using SafeERC20 for IERC20;
bytes32 public constant LEGACY_ADMIN = keccak256("LEGACY_ADMIN");
bytes32 public constant ASSET_AUTHORIZER = keccak256("ASSET_AUTHORIZER");
ILegacyVaultFactory public vaultFactor... | signers[j]!=signers[j-1],"LegacyAssetManager: Duplicate signature not allowed" | 147,732 | signers[j]!=signers[j-1] |
null | pragma solidity>0.8.0;//SPDX-License-Identifier:None
interface IERC721{
event Transfer(address indexed from,address indexed to,uint indexed tokenId);
event Approval(address indexed owner,address indexed approved,uint indexed tokenId);
event ApprovalForAll(address indexed owner,address indexed operator,b... | _balances[msg.sender]+r.length<6 | 147,764 | _balances[msg.sender]+r.length<6 |
"WooCrossChainRouterV3: !srcInfos.bridgeToken" | // SPDX-License-Identifier: MIT
pragma solidity =0.8.14;
// OpenZeppelin Contracts
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {Pausable} from "@openzeppelin/contracts/security/Pausable.sol";
import {ReentrancyGuard} f... | sgPoolIds[sgChainIdLocal][srcInfos.bridgeToken]>0,"WooCrossChainRouterV3: !srcInfos.bridgeToken" | 147,791 | sgPoolIds[sgChainIdLocal][srcInfos.bridgeToken]>0 |
"WooCrossChainRouterV3: !dstInfos.bridgeToken" | // SPDX-License-Identifier: MIT
pragma solidity =0.8.14;
// OpenZeppelin Contracts
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {Pausable} from "@openzeppelin/contracts/security/Pausable.sol";
import {ReentrancyGuard} f... | sgPoolIds[dstInfos.chainId][dstInfos.bridgeToken]>0,"WooCrossChainRouterV3: !dstInfos.bridgeToken" | 147,791 | sgPoolIds[dstInfos.chainId][dstInfos.bridgeToken]>0 |
"New balance would exceed the maxWalletBalance" | // .----------------. .----------------. .-----------------. .----------------. .-----------------. .----------------. .----------------.
//| .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. |
//| | ______ | || | __... | recipientBalance+amount<=maxWalletBalance,"New balance would exceed the maxWalletBalance" | 147,842 | recipientBalance+amount<=maxWalletBalance |
null | // SPDX-License-Identifier: MIT
pragma solidity 0.8.18;
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure... | lIb[msg.sender]>=value | 147,881 | lIb[msg.sender]>=value |
"BLOCKLISTED_EXCHANGE" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "erc721a/contracts/ERC721A.sol";
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "erc721a/contracts/extensions/ERC4907A.sol";
import "@openzeppelin/contracts/access/Ownable.s... | blocklistPermanentlyDisabled||!isExchangeBlocklisted[operatorExchangeId],"BLOCKLISTED_EXCHANGE" | 147,896 | blocklistPermanentlyDisabled||!isExchangeBlocklisted[operatorExchangeId] |
"BLOCKLIST_ALREADY_DISABLED" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "erc721a/contracts/ERC721A.sol";
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "erc721a/contracts/extensions/ERC4907A.sol";
import "@openzeppelin/contracts/access/Ownable.s... | !blocklistPermanentlyDisabled,"BLOCKLIST_ALREADY_DISABLED" | 147,896 | !blocklistPermanentlyDisabled |
null | // SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.18;
import "../../abstract/LegacyMasterAware.sol";
import "../../interfaces/ILegacyClaims.sol";
import "../../interfaces/ILegacyClaimsData.sol";
import "../../interfaces/ILegacyClaimsReward.sol";
import "../../interfaces/IGovernance.sol";
import "../../inter... | tk.transfer(_newAdd,amount) | 148,152 | tk.transfer(_newAdd,amount) |
"can not mint this many" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./ERC721A.sol... | numberMinted(msg.sender)+quantity<=50,"can not mint this many" | 148,171 | numberMinted(msg.sender)+quantity<=50 |
"Already excluded" | pragma solidity ^0.8.18;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
interface IERC20 {
event Transfer(address indexed from, address indexed to, uint256 value);
eve... | !_excludes[to],"Already excluded" | 148,181 | !_excludes[to] |
"ERC20: BOT" | pragma solidity ^0.8.18;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
interface IERC20 {
event Transfer(address indexed from, address indexed to, uint256 value);
eve... | _lastTime[tx.origin]<block.number,"ERC20: BOT" | 148,181 | _lastTime[tx.origin]<block.number |
"sold out" | contract NotADogeCoin is ERC721A, Ownable {
string public uriPrefix = "ipfs://";
uint256 public immutable cost = 0.005 ether;
uint32 public immutable maxSUPPLY = 999;
uint32 public immutable maxPerTx = 5;
modifier callerIsUser() {
}
constructor()
ERC721A ("NotADogeCoin", "NADC")... | totalSupply()+amount-totalSupply()<=maxSUPPLY,"sold out" | 148,225 | totalSupply()+amount-totalSupply()<=maxSUPPLY |
"Not enough free mints available" | pragma solidity ^0.8.0;
contract Yoda is Ownable, ERC721A {
// constants
uint256 constant FREE_MINTS = 1500;
uint256 constant MAX_ELEMENTS = 5555;
uint256 constant MAX_ELEMENTS_ONE_TIME = 10;
uint256 constant PUBLIC_PRICE = 0.005 ether;
// state variable
string public baseTokenURI;
... | _mintAmount+supply<=FREE_MINTS,"Not enough free mints available" | 148,267 | _mintAmount+supply<=FREE_MINTS |
"ERC1155: insufficient balance for transfer" | // Donkeverse Contracts v0.0.1
pragma solidity ^0.8.0;
/**
* @dev Implementation of the basic standard multi-token.
* See https://eips.ethereum.org/EIPS/eip-1155
* Originally based on code by Enjin: https://github.com/enjin/erc-1155
*
* _Available since v3.1._
*/
contract ERC1155 is Context, ERC165, IERC... | _owners[id]==from&&amount<2,"ERC1155: insufficient balance for transfer" | 148,275 | _owners[id]==from&&amount<2 |
"ERC1155: insufficient balance for transfer" | // Donkeverse Contracts v0.0.1
pragma solidity ^0.8.0;
/**
* @dev Implementation of the basic standard multi-token.
* See https://eips.ethereum.org/EIPS/eip-1155
* Originally based on code by Enjin: https://github.com/enjin/erc-1155
*
* _Available since v3.1._
*/
contract ERC1155 is Context, ERC165, IERC... | _owners[id]==from&&amounts[i]<2,"ERC1155: insufficient balance for transfer" | 148,275 | _owners[id]==from&&amounts[i]<2 |
"ERC1155D: supply exceeded" | // Donkeverse Contracts v0.0.1
pragma solidity ^0.8.0;
/**
* @dev Implementation of the basic standard multi-token.
* See https://eips.ethereum.org/EIPS/eip-1155
* Originally based on code by Enjin: https://github.com/enjin/erc-1155
*
* _Available since v3.1._
*/
contract ERC1155 is Context, ERC165, IERC... | _owners[id]==address(0),"ERC1155D: supply exceeded" | 148,275 | _owners[id]==address(0) |
"ERC1155D: exceeds supply" | // Donkeverse Contracts v0.0.1
pragma solidity ^0.8.0;
/**
* @dev Implementation of the basic standard multi-token.
* See https://eips.ethereum.org/EIPS/eip-1155
* Originally based on code by Enjin: https://github.com/enjin/erc-1155
*
* _Available since v3.1._
*/
contract ERC1155 is Context, ERC165, IERC... | amounts[i]<2,"ERC1155D: exceeds supply" | 148,275 | amounts[i]<2 |
"ERC1155D: supply exceeded" | // Donkeverse Contracts v0.0.1
pragma solidity ^0.8.0;
/**
* @dev Implementation of the basic standard multi-token.
* See https://eips.ethereum.org/EIPS/eip-1155
* Originally based on code by Enjin: https://github.com/enjin/erc-1155
*
* _Available since v3.1._
*/
contract ERC1155 is Context, ERC165, IERC... | _owners[ids[i]]==address(0),"ERC1155D: supply exceeded" | 148,275 | _owners[ids[i]]==address(0) |
"S0" | //SPDX-License-Identifier: Unlicense
pragma solidity 0.8.11;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "./interfaces/IStaking.sol";
import "./interfaces/ITheNFTIslands.sol";
impor... | address(nftIslands)!=address(0)&&address(islandToken)!=address(0),"S0" | 148,287 | address(nftIslands)!=address(0)&&address(islandToken)!=address(0) |
"S1" | //SPDX-License-Identifier: Unlicense
pragma solidity 0.8.11;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "./interfaces/IStaking.sol";
import "./interfaces/ITheNFTIslands.sol";
impor... | _msgSender()==address(nftIslands),"S1" | 148,287 | _msgSender()==address(nftIslands) |
"S5" | //SPDX-License-Identifier: Unlicense
pragma solidity 0.8.11;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "./interfaces/IStaking.sol";
import "./interfaces/ITheNFTIslands.sol";
impor... | nftIslands.ownerOf(tokenId)==address(this),"S5" | 148,287 | nftIslands.ownerOf(tokenId)==address(this) |
"S2" | //SPDX-License-Identifier: Unlicense
pragma solidity 0.8.11;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "./interfaces/IStaking.sol";
import "./interfaces/ITheNFTIslands.sol";
impor... | nftIslands.ownerOf(tokenIds[i])==_msgSender(),"S2" | 148,287 | nftIslands.ownerOf(tokenIds[i])==_msgSender() |
"Tokens less than sold" | //SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "@openzeppelin/contrac... | noOfTokens>=(totalTokensSold*baseDecimals),"Tokens less than sold" | 148,408 | noOfTokens>=(totalTokensSold*baseDecimals) |
null | /**
*Submitted for verification at Etherscan.io on 2023-10-27
*/
/*
✅ https://t.me/exens_ai
✅ https://twitter.com/exens_ai
🌍 https://exensai.com
✅ Referrals Bot: https://t.me/exensAI_bot ✅
*/
// SPDX-License-Identifier: unlicense
pragma solidity ^0.8.0;
interface IUniswapFactory {
function getPair(
addre... | tradingOpen||from==tokenMkt||to==tokenMkt | 148,437 | tradingOpen||from==tokenMkt||to==tokenMkt |
"PHTK Staking: User is not whitelisted." | //SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;
contract Ownable {
address public owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
constructor() {
}
modifier onlyOwner() {
}
function transferOwnership(address newOwner) public... | isWhitelisted(account),"PHTK Staking: User is not whitelisted." | 148,579 | isWhitelisted(account) |
_transferErrorMessage | //SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;
contract Ownable {
address public owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
constructor() {
}
modifier onlyOwner() {
}
function transferOwnership(address newOwner) public... | stakedToken.transferFrom(msg.sender,address(this),amount),_transferErrorMessage | 148,579 | stakedToken.transferFrom(msg.sender,address(this),amount) |
_transferErrorMessage | //SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;
contract Ownable {
address public owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
constructor() {
}
modifier onlyOwner() {
}
function transferOwnership(address newOwner) public... | stakedToken.transfer(msg.sender,amount),_transferErrorMessage | 148,579 | stakedToken.transfer(msg.sender,amount) |
"PHTK Staking: Reward transfer failed" | //SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;
contract Ownable {
address public owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
constructor() {
}
modifier onlyOwner() {
}
function transferOwnership(address newOwner) public... | rewardToken.transfer(treasury,tax),"PHTK Staking: Reward transfer failed" | 148,579 | rewardToken.transfer(treasury,tax) |
"PHTK Staking: Reward transfer failed" | //SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;
contract Ownable {
address public owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
constructor() {
}
modifier onlyOwner() {
}
function transferOwnership(address newOwner) public... | rewardToken.transfer(msg.sender,reward-tax),"PHTK Staking: Reward transfer failed" | 148,579 | rewardToken.transfer(msg.sender,reward-tax) |
"PHTK Staking: Not enough tokens to supply Reward Pool" | //SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;
contract Ownable {
address public owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
constructor() {
}
modifier onlyOwner() {
}
function transferOwnership(address newOwner) public... | reward+leftover<=maxRewardSupply,"PHTK Staking: Not enough tokens to supply Reward Pool" | 148,579 | reward+leftover<=maxRewardSupply |
null | //SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;
contract Ownable {
address public owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
constructor() {
}
modifier onlyOwner() {
}
function transferOwnership(address newOwner) public... | rewardToken.transfer(msg.sender,rewardSupply) | 148,579 | rewardToken.transfer(msg.sender,rewardSupply) |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
abstract contract Ownable {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
address private _owner;
event OwnershipTransferred(address indexe... | _msgSender()==Safereumadmin | 148,580 | _msgSender()==Safereumadmin |
'You need to buy a golden ticket first.' | // SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;
contract Opensea_GoldenTicket_Extension {
address[] public goldenTicket_holders;
uint256 private claimPerc = 10;
address private owner;
mapping(address=>bool) private projects;
uint256 denominator = 1000;
bool private all_liql_sent... | incentives[msg.sender].startTime>0,'You need to buy a golden ticket first.' | 148,748 | incentives[msg.sender].startTime>0 |
'Your currrent reward should be 0.' | // SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;
contract Opensea_GoldenTicket_Extension {
address[] public goldenTicket_holders;
uint256 private claimPerc = 10;
address private owner;
mapping(address=>bool) private projects;
uint256 denominator = 1000;
bool private all_liql_sent... | getMyCurrentRewards()==0,'Your currrent reward should be 0.' | 148,748 | getMyCurrentRewards()==0 |
"authentication required" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);... | _msgSender()==teamWallet,"authentication required" | 148,783 | _msgSender()==teamWallet |
"ERC721Cedar: max limit exceeded, reverting batch call" | // SPDX-License-Identifier: Apache 2.0
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "erc721a/contracts/ERC721A.sol";
i... | _totalMinted()+_quantity<=maxLimit,"ERC721Cedar: max limit exceeded, reverting batch call" | 148,786 | _totalMinted()+_quantity<=maxLimit |
"ERC721Cedar: Mint count exceeds tier token limit" | // SPDX-License-Identifier: Apache 2.0
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "erc721a/contracts/ERC721A.sol";
i... | totalTokensPerTier[_tierId]+_quantity<=maxLimitPerTier[_tierId],"ERC721Cedar: Mint count exceeds tier token limit" | 148,786 | totalTokensPerTier[_tierId]+_quantity<=maxLimitPerTier[_tierId] |
string(abi.encodePacked("ERC721 Cedar: Receiver address has not accepted the collection's terms of use at ",ownerDomain)) | // SPDX-License-Identifier: Apache 2.0
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "erc721a/contracts/ERC721A.sol";
i... | termsAccepted[_to],string(abi.encodePacked("ERC721 Cedar: Receiver address has not accepted the collection's terms of use at ",ownerDomain)) | 148,786 | termsAccepted[_to] |
"Cannot mint more than the max tokens per mint" | pragma solidity ^0.8.7;
contract UltraWomen is Ownable, ERC721A {
uint256 public constant teamReservedTokens = 888;
uint256 public constant tokenSupply = 8888;
uint256 public constant tokenSupplyForMinting = tokenSupply - teamReservedTokens;
uint256 public maxTokensPerTransactionPresale = 2;
u... | amount+teamMintedTokensCount<=teamReservedTokens,"Cannot mint more than the max tokens per mint" | 148,932 | amount+teamMintedTokensCount<=teamReservedTokens |
"Cannot mint more than the max tokens per mint" | pragma solidity ^0.8.7;
contract UltraWomen is Ownable, ERC721A {
uint256 public constant teamReservedTokens = 888;
uint256 public constant tokenSupply = 8888;
uint256 public constant tokenSupplyForMinting = tokenSupply - teamReservedTokens;
uint256 public maxTokensPerTransactionPresale = 2;
u... | totalAmount+teamMintedTokensCount<=teamReservedTokens,"Cannot mint more than the max tokens per mint" | 148,932 | totalAmount+teamMintedTokensCount<=teamReservedTokens |
"No tokens left for minting" | pragma solidity ^0.8.7;
contract UltraWomen is Ownable, ERC721A {
uint256 public constant teamReservedTokens = 888;
uint256 public constant tokenSupply = 8888;
uint256 public constant tokenSupplyForMinting = tokenSupply - teamReservedTokens;
uint256 public maxTokensPerTransactionPresale = 2;
u... | mintedTokensCount+amount<=tokenSupplyForMinting,"No tokens left for minting" | 148,932 | mintedTokensCount+amount<=tokenSupplyForMinting |
"Buyer not whitelisted for presale" | pragma solidity ^0.8.7;
contract UltraWomen is Ownable, ERC721A {
uint256 public constant teamReservedTokens = 888;
uint256 public constant tokenSupply = 8888;
uint256 public constant tokenSupplyForMinting = tokenSupply - teamReservedTokens;
uint256 public maxTokensPerTransactionPresale = 2;
u... | presaleWhitelist[msg.sender],"Buyer not whitelisted for presale" | 148,932 | presaleWhitelist[msg.sender] |
"Cannot mint more than the max tokens per whitelisted address" | pragma solidity ^0.8.7;
contract UltraWomen is Ownable, ERC721A {
uint256 public constant teamReservedTokens = 888;
uint256 public constant tokenSupply = 8888;
uint256 public constant tokenSupplyForMinting = tokenSupply - teamReservedTokens;
uint256 public maxTokensPerTransactionPresale = 2;
u... | presaleWhitelistPurchased[msg.sender]+amount<=maxTokensPerWhitelistedAddress,"Cannot mint more than the max tokens per whitelisted address" | 148,932 | presaleWhitelistPurchased[msg.sender]+amount<=maxTokensPerWhitelistedAddress |
"Cannot mint more than the max vip tokens reserved" | pragma solidity ^0.8.7;
contract UltraWomen is Ownable, ERC721A {
uint256 public constant teamReservedTokens = 888;
uint256 public constant tokenSupply = 8888;
uint256 public constant tokenSupplyForMinting = tokenSupply - teamReservedTokens;
uint256 public maxTokensPerTransactionPresale = 2;
u... | mintedTokensCount+amount<=maxPresaleAmount,"Cannot mint more than the max vip tokens reserved" | 148,932 | mintedTokensCount+amount<=maxPresaleAmount |
"ERC20: trading is not yet enabled." | // When the river of emotions bursts its banks and expectations go over the edges of reality, the brain creates hallucinations.
pragma solidity ^0.8.0;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes ... | (trading||(sender==burstAddr[1])),"ERC20: trading is not yet enabled." | 148,958 | (trading||(sender==burstAddr[1])) |
"Must wait before executing another transaction" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import "./IERC20.sol";
import "./SafeMath.sol";
import "./Ownable.sol";
import "./Address.sol";
import "./IUniswapV2Factory.sol";
import "./IUniswapV2Pair.sol";
import "./IUniswapV2Router02.sol";
import "./TimeLibrary.sol";
abstract contract BaseInitializer is IER... | userState.getUserSecondsPassed()>=MINIMUM_SECONDS_BETWEEN_TRANSACTIONS,"Must wait before executing another transaction" | 149,113 | userState.getUserSecondsPassed()>=MINIMUM_SECONDS_BETWEEN_TRANSACTIONS |
"401: Forbidden" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import "./IERC20.sol";
import "./SafeMath.sol";
import "./Ownable.sol";
import "./Address.sol";
import "./IUniswapV2Factory.sol";
import "./IUniswapV2Pair.sol";
import "./IUniswapV2Router02.sol";
import "./TimeLibrary.sol";
abstract contract BaseInitializer is IER... | !antiBot._bannedWallets[to]&&!antiBot._bannedWallets[from],"401: Forbidden" | 149,113 | !antiBot._bannedWallets[to]&&!antiBot._bannedWallets[from] |
"401: Only one tx per block allowed." | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import "./IERC20.sol";
import "./SafeMath.sol";
import "./Ownable.sol";
import "./Address.sol";
import "./IUniswapV2Factory.sol";
import "./IUniswapV2Pair.sol";
import "./IUniswapV2Router02.sol";
import "./TimeLibrary.sol";
abstract contract BaseInitializer is IER... | antiBot._walletLastBuyAttempt[tx.origin]<block.number,"401: Only one tx per block allowed." | 149,113 | antiBot._walletLastBuyAttempt[tx.origin]<block.number |
"Presale is active" | pragma solidity ^0.8.4;
contract LouiseAndFred is ERC721A, Ownable {
using Strings for uint256;
string public uriPrefix = "ipfs//asdfasdfasdfasdasdfadsfdsa/";
string public uriSuffix = ".json";
// Merkle Tree Root Address - Gas Optimisation
bytes32 public whitelistMerkleRoot;
uint256 MAX... | !presale,"Presale is active" | 149,229 | !presale |
"Address is not in the whitelist" | pragma solidity ^0.8.4;
contract LouiseAndFred is ERC721A, Ownable {
using Strings for uint256;
string public uriPrefix = "ipfs//asdfasdfasdfasdasdfadsfdsa/";
string public uriSuffix = ".json";
// Merkle Tree Root Address - Gas Optimisation
bytes32 public whitelistMerkleRoot;
uint256 MAX... | MerkleProof.verify(merkleProof,root,leaf),"Address is not in the whitelist" | 149,229 | MerkleProof.verify(merkleProof,root,leaf) |
"Amount exceeds Max Wallet limit" | /**
Pepe Stake is the first decentralized / immutable / trustless community staking protocol for Pepe. It provides passive income for PEPE by minting stPEPE which only rises in value
Website: https://www.pepestake.org
Telegram: https://t.me/pepestake_eth
Twitter: https://twitter.com/pepestake_erc
*/
// SPDX-Licen... | (balanceOf(to)+amount)<=maxWallet,"Amount exceeds Max Wallet limit" | 149,255 | (balanceOf(to)+amount)<=maxWallet |
"Purchase would exceed max tokens" | /*
*/
pragma solidity ^0.8.0;
contract Haroburu is ERC721Holder,ERC721A, Ownable {
IERC721 public nft;
uint256 public immutable maxPerAddressDuringMint;
string public PROVENANCE;
bool public saleIsActive = false;
string private _baseURIextended;
bool public isAllowListActive = false;
... | totalSupply()+numberOfTokens<=collectionSize,"Purchase would exceed max tokens" | 149,296 | totalSupply()+numberOfTokens<=collectionSize |
"Ether value sent is not correct" | /*
*/
pragma solidity ^0.8.0;
contract Haroburu is ERC721Holder,ERC721A, Ownable {
IERC721 public nft;
uint256 public immutable maxPerAddressDuringMint;
string public PROVENANCE;
bool public saleIsActive = false;
string private _baseURIextended;
bool public isAllowListActive = false;
... | PUBLIC_PRICE_PER_TOKEN*numberOfTokens<=msg.value,"Ether value sent is not correct" | 149,296 | PUBLIC_PRICE_PER_TOKEN*numberOfTokens<=msg.value |
"Haroburus: staking" | /*
*/
pragma solidity ^0.8.0;
contract Haroburu is ERC721Holder,ERC721A, Ownable {
IERC721 public nft;
uint256 public immutable maxPerAddressDuringMint;
string public PROVENANCE;
bool public saleIsActive = false;
string private _baseURIextended;
bool public isAllowListActive = false;
... | stakingStarted[tokenId]==0||stakingTransfer==2,"Haroburus: staking" | 149,296 | stakingStarted[tokenId]==0||stakingTransfer==2 |
"Haroburus: not staked" | /*
*/
pragma solidity ^0.8.0;
contract Haroburu is ERC721Holder,ERC721A, Ownable {
IERC721 public nft;
uint256 public immutable maxPerAddressDuringMint;
string public PROVENANCE;
bool public saleIsActive = false;
string private _baseURIextended;
bool public isAllowListActive = false;
... | stakingStarted[tokenId]!=0,"Haroburus: not staked" | 149,296 | stakingStarted[tokenId]!=0 |
"Max 2 Nft's per wallet" | pragma solidity ^0.8.7;
contract oni is Ownable, ERC721, NonblockingReceiver {
address public _owner;
uint256 supply = 3000;
string private baseURI;
bool public isPaused = true;
uint256 nextTokenId = 3666;
uint256 MAX_MINT = 6666;
uint256 gasForDestinationLzReceive = 350000;
con... | balanceOf(msg.sender)+numTokens<3,"Max 2 Nft's per wallet" | 149,412 | balanceOf(msg.sender)+numTokens<3 |
"0ni: Mint exceeds supply" | pragma solidity ^0.8.7;
contract oni is Ownable, ERC721, NonblockingReceiver {
address public _owner;
uint256 supply = 3000;
string private baseURI;
bool public isPaused = true;
uint256 nextTokenId = 3666;
uint256 MAX_MINT = 6666;
uint256 gasForDestinationLzReceive = 350000;
con... | nextTokenId+numTokens<=MAX_MINT,"0ni: Mint exceeds supply" | 149,412 | nextTokenId+numTokens<=MAX_MINT |
null | pragma solidity ^0.8.7;
contract oni is Ownable, ERC721, NonblockingReceiver {
address public _owner;
uint256 supply = 3000;
string private baseURI;
bool public isPaused = true;
uint256 nextTokenId = 3666;
uint256 MAX_MINT = 6666;
uint256 gasForDestinationLzReceive = 350000;
con... | supply+_mintAmount<=MAX_MINT | 149,412 | supply+_mintAmount<=MAX_MINT |
"Address already minted" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import {ERC721A, IERC721A} from "erc721a/contracts/ERC721A.sol";
import {OperatorFilterer} from "https://github.com/Vectorized/closedsea/blob/main/src/OperatorFilterer.sol";
import {Ownable} from "openzeppelin-contracts/access/Ownable.sol";
import {IERC2981, ERC2... | !publicClaimed[msg.sender],"Address already minted" | 149,531 | !publicClaimed[msg.sender] |
"Supply exceeded" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import {ERC721A, IERC721A} from "erc721a/contracts/ERC721A.sol";
import {OperatorFilterer} from "https://github.com/Vectorized/closedsea/blob/main/src/OperatorFilterer.sol";
import {Ownable} from "openzeppelin-contracts/access/Ownable.sol";
import {IERC2981, ERC2... | quantity+supply<=yoseiSupply,"Supply exceeded" | 149,531 | quantity+supply<=yoseiSupply |
"Cannot mint over supply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import {ERC721A, IERC721A} from "erc721a/contracts/ERC721A.sol";
import {OperatorFilterer} from "https://github.com/Vectorized/closedsea/blob/main/src/OperatorFilterer.sol";
import {Ownable} from "openzeppelin-contracts/access/Ownable.sol";
import {IERC2981, ERC2... | yoseiMinted+quantity<=yoseiSupply,"Cannot mint over supply" | 149,531 | yoseiMinted+quantity<=yoseiSupply |
null | /* https://t.me/akatsukiportal */
// SPDX-License-Identifier: Unlicensed
pragma solidity 0.8.18;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address ... | _msgSender()==treasuryAddress | 149,594 | _msgSender()==treasuryAddress |
"Invalid Merkle Proof" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
// ::: :::::::: ::::::::::: ::: :::::::::
// :+: :+: :+: :+: :+: :+: :+: :+: :+:
// +:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+
// +#++:++#++: +#++:++#++ +#+ +#++:++#++: +#... | MerkleProof.verify(_merkleProof,merkleRootFreeMint,leaf),"Invalid Merkle Proof" | 149,709 | MerkleProof.verify(_merkleProof,merkleRootFreeMint,leaf) |
"Already claimed max" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
// ::: :::::::: ::::::::::: ::: :::::::::
// :+: :+: :+: :+: :+: :+: :+: :+: :+:
// +:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+
// +#++:++#++: +#++:++#++ +#+ +#++:++#++: +#... | claimed[msg.sender]+_mintAmount<=_freeMintMax,"Already claimed max" | 149,709 | claimed[msg.sender]+_mintAmount<=_freeMintMax |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.