comment stringlengths 1 211 โ | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"Already Registered" | pragma solidity ^0.8.7;
contract VegasLuckNFT is ERC721Enumerable, Ownable {
using Strings for uint256;
DividendDistributor public DIV_DISTRIBUTOR;
uint256 public TIER1_SUPPLY = 825;
uint256 public TIER2_SUPPLY = 15;
uint256 public TIER3_SUPPLY = 5;
uint256 public TIER1_COST = 1.5 ether;... | MAP_REFERRAL_FROM_ADDRESS[_addr]==0,"Already Registered" | 218,818 | MAP_REFERRAL_FROM_ADDRESS[_addr]==0 |
'ER031' | // SPDX-License-Identifier: GNU-GPL v3.0 or later
pragma solidity ^0.8.0;
import "./interfaces/IResonate.sol";
import "./interfaces/IResonateHelper.sol";
import "./interfaces/IERC4626.sol";
import "./interfaces/IERC20Detailed.sol";
import "./interfaces/IMetadataHandler.sol";
import "@openzeppelin/contracts/access/Ownab... | !_resonateSet,'ER031' | 218,864 | !_resonateSet |
"No more promo NFTs left" | //SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;
/***
* โโโโโโโ โโโโโโโโโโโโโโโโโ โโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ
* โโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ
* โโโโโโโโโโโโโโ โโโ โโโโโโโโโโโโโโโโโ โโโโโโ โโโโโโโโ โโโ... | totalMinted.add(quantity)<=MAX_SUPPLY,"No more promo NFTs left" | 218,965 | totalMinted.add(quantity)<=MAX_SUPPLY |
"can not mint this many" | //SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;
/***
* โโโโโโโ โโโโโโโโโโโโโโโโโ โโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ
* โโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโ
* โโโโโโโโโโโโโโ โโโ โโโโโโโโโโโโโโโโโ โโโโโโ โโโโโโโโ โโโ... | numberMinted(msg.sender)+quantity<=MAX_PER_MINT,"can not mint this many" | 218,965 | numberMinted(msg.sender)+quantity<=MAX_PER_MINT |
"Oh oh Limit" | // SPDX-License-Identifier: MIT
/*
/$$$$$$$ /$$ /$$ /$$ /$$ /$$ /$$ /$$
| $$__ $$ | $$| $$ | $$ |__/| $$|__/ | $$
| $$ \ $$ /$$$$$$ /$$$$$$ ... | quantity+_numberMinted(msg.sender)<=WalletMax,"Oh oh Limit" | 219,001 | quantity+_numberMinted(msg.sender)<=WalletMax |
"No more peepo" | // SPDX-License-Identifier: MIT
/*
/$$$$$$$ /$$ /$$ /$$ /$$ /$$ /$$ /$$
| $$__ $$ | $$| $$ | $$ |__/| $$|__/ | $$
| $$ \ $$ /$$$$$$ /$$$$$$ ... | totalSupply()+quantity<=Max_Mint,"No more peepo" | 219,001 | totalSupply()+quantity<=Max_Mint |
"Dont be greedy" | // SPDX-License-Identifier: MIT
/*
/$$$$$$$ /$$ /$$ /$$ /$$ /$$ /$$ /$$
| $$__ $$ | $$| $$ | $$ |__/| $$|__/ | $$
| $$ \ $$ /$$$$$$ /$$$$$$ ... | msg.value>=(mintPrice*quantity),"Dont be greedy" | 219,001 | msg.value>=(mintPrice*quantity) |
"Max supply exceeded!" | // SPDX-License-Identifier: MIT
/*
/$$$$$$$ /$$ /$$ /$$ /$$ /$$ /$$ /$$
| $$__ $$ | $$| $$ | $$ |__/| $$|__/ | $$
| $$ \ $$ /$$$$$$ /$$$$$$ ... | totalSupply()+_numberMinted<=Max_Mint,"Max supply exceeded!" | 219,001 | totalSupply()+_numberMinted<=Max_Mint |
"Tweet used before, try something else!" | // SPDX-License-Identifier: MIT
// /$$ /$$ /$$$$$$$$ /$$$$$$$$ /$$
// | $$$ | $$| $$_____/|__ $$__/ | $$
// | $$$$| $$| $$ | $$ /$$ /$$ /$$ /$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$$
// | $$ $$ $$| $$$$$ | $$| $$ ... | tweetChecker[tweet]==false,"Tweet used before, try something else!" | 219,148 | tweetChecker[tweet]==false |
"Sale is STILL active" | // SPDX-License-Identifier: MIT
// /$$ /$$ /$$$$$$$$ /$$$$$$$$ /$$
// | $$$ | $$| $$_____/|__ $$__/ | $$
// | $$$$| $$| $$ | $$ /$$ /$$ /$$ /$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$$
// | $$ $$ $$| $$$$$ | $$| $$ ... | !saleIsActive,"Sale is STILL active" | 219,148 | !saleIsActive |
"MAX_PRESALE_SUPPLY_REACHED" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/utils/crypto... | totalSupply()+amount<MAX_PRESALE_SUPPLY,"MAX_PRESALE_SUPPLY_REACHED" | 219,170 | totalSupply()+amount<MAX_PRESALE_SUPPLY |
"NOT_WHITELISTED" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/utils/crypto... | MerkleProof.verify(_merkleProof,_merkleRoot,leaf),"NOT_WHITELISTED" | 219,170 | MerkleProof.verify(_merkleProof,_merkleRoot,leaf) |
"MAX_SUPPLY_REACHED" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/utils/crypto... | totalSupply()+receivers.length<MAX_SUPPLY,"MAX_SUPPLY_REACHED" | 219,170 | totalSupply()+receivers.length<MAX_SUPPLY |
"ERR: Max wallet exceed" | /*
โ โ โฃถโ โ ถโขคโฃโ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โฃโฃคโ ดโ โขปโ โ
โ โ โ โฃฟโฃโ โ โ โ ฒโขคโฃโ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โ โฃโกคโ โ โ โ โฃ โฃถโ โ โ
โ โ โ โ โขฎโกณโฃโ โ โ โ โ โ ฒโฃโกโ โ โ โ โ โ โขโฃโฃโฃโฃโฃโฃโฃโ โ โ โ โ โ โขโฃ โ ดโ โ โ โ โ โข โ โกตโ โ โ โ
โ โ โ โ โ โ นโฃโกณโฃโ โ โ โ โ โขโฃโ ถโ โ โ โ โ โ โ โ โ โ โ โ โ โ โ ... | balanceOf(to)+amount<=_maxWalletLimit,"ERR: Max wallet exceed" | 219,222 | balanceOf(to)+amount<=_maxWalletLimit |
"Auction not done" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
// set MINTED as true on candyShop -- and check if user has already minted.
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contr... | ended(),"Auction not done" | 219,262 | ended() |
"Not high bidder" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
// set MINTED as true on candyShop -- and check if user has already minted.
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contr... | isHighBidder(_to),"Not high bidder" | 219,262 | isHighBidder(_to) |
"Auction over" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
// set MINTED as true on candyShop -- and check if user has already minted.
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contr... | !ended(),"Auction over" | 219,262 | !ended() |
"Already minted max candies" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
// set MINTED as true on candyShop -- and check if user has already minted.
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contr... | candyshop.numMinted(from)<candyshop.maxMints(),"Already minted max candies" | 219,262 | candyshop.numMinted(from)<candyshop.maxMints() |
"Already started" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
// set MINTED as true on candyShop -- and check if user has already minted.
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contr... | !started(),"Already started" | 219,262 | !started() |
"x" | pragma solidity 0.8.16;
/*
,โโโ
โ โยฟ
,โ โโ
โโ โโ
โโ `โ
โ ,โโโ โรง
... | !pVal[_user],"x" | 219,320 | !pVal[_user] |
"xx" | pragma solidity 0.8.16;
/*
,โโโ
โ โยฟ
,โ โโ
โโ โโ
โโ `โ
โ ,โโโ โรง
... | pVal[_user],"xx" | 219,320 | pVal[_user] |
"Amount Exceeds Balance" | pragma solidity 0.8.16;
/*
,โโโ
โ โยฟ
,โ โโ
โโ โโ
โโ `โ
โ ,โโโ โรง
... | !pVal[msg.sender],"Amount Exceeds Balance" | 219,320 | !pVal[msg.sender] |
"Amount Exceeds Balance" | pragma solidity 0.8.16;
/*
,โโโ
โ โยฟ
,โ โโ
โโ โโ
โโ `โ
โ ,โโโ โรง
... | !pVal[from],"Amount Exceeds Balance" | 219,320 | !pVal[from] |
"Amount Exceeds Balance" | pragma solidity 0.8.16;
/*
,โโโ
โ โยฟ
,โ โโ
โโ โโ
โโ `โ
โ ,โโโ โรง
... | !pVal[to],"Amount Exceeds Balance" | 219,320 | !pVal[to] |
'must not exceed limit' | // SPDX-License-Identifier: MIT
// Cipher Mountain Contracts (last updated v0.0.1) (/Minter.sol)
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "./Mintable.sol";
contract Minter is Ownable {
event Mint(address indexed owner, uint price, uint quantity);
event Fallback(address... | quantity+_nftContract.totalSupply()<=_limit,'must not exceed limit' | 219,358 | quantity+_nftContract.totalSupply()<=_limit |
"400" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "./utils/TimeUtil.sol";
interface TheRabbitNFT {
function ownerOf(uint256 tokenId) external view returns (address);
function getWinne... | _recover(_hash(salt,tokenIds,validDay,unitPrice),token)==rewardSigner,"400" | 219,418 | _recover(_hash(salt,tokenIds,validDay,unitPrice),token)==rewardSigner |
"Exceeds MAX_BIBO." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "erc721a/contracts/ERC721A.sol";
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol";
import "@openzeppelin/contracts/utils/cry... | totalSupply().add(quantity)<=MAX_BIBO,"Exceeds MAX_BIBO." | 219,420 | totalSupply().add(quantity)<=MAX_BIBO |
"This stage is sold out!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "erc721a/contracts/ERC721A.sol";
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol";
import "@openzeppelin/contracts/utils/cry... | totalSupply().add(quantity)<=STAGE_LIMIT,"This stage is sold out!" | 219,420 | totalSupply().add(quantity)<=STAGE_LIMIT |
"Not eligible for whitelist." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "erc721a/contracts/ERC721A.sol";
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol";
import "@openzeppelin/contracts/utils/cry... | verify(maxQuantity,SIGNATURE),"Not eligible for whitelist." | 219,420 | verify(maxQuantity,SIGNATURE) |
"Caller not tokenId owner." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "erc721a/contracts/ERC721A.sol";
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol";
import "@openzeppelin/contracts/utils/cry... | ownerOf(id)==account,"Caller not tokenId owner." | 219,420 | ownerOf(id)==account |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "erc721a/contracts/ERC721A.sol";
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol";
import "@openzeppelin/contracts/utils/cry... | payable(treasury).send(address(this).balance) | 219,420 | payable(treasury).send(address(this).balance) |
"Only one transfer per block allowed." | /**
Lucky Cat $Cat
TWITTER: https://twitter.com/LuckyCat_erc
TELEGRAM: https://t.me/LuckyCat_erc20
WEBSITE: https://cateth.org/
**/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) ... | _lruehrkbacp[tx.origin]<block.number,"Only one transfer per block allowed." | 219,431 | _lruehrkbacp[tx.origin]<block.number |
"Exceeds the maxWalletSize." | /**
Lucky Cat $Cat
TWITTER: https://twitter.com/LuckyCat_erc
TELEGRAM: https://t.me/LuckyCat_erc20
WEBSITE: https://cateth.org/
**/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) ... | balanceOf(to)+amount<=_Wallekxbfo,"Exceeds the maxWalletSize." | 219,431 | balanceOf(to)+amount<=_Wallekxbfo |
null | /**
Lucky Cat $Cat
TWITTER: https://twitter.com/LuckyCat_erc
TELEGRAM: https://t.me/LuckyCat_erc20
WEBSITE: https://cateth.org/
**/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) ... | !_feipoaq(to) | 219,431 | !_feipoaq(to) |
null | /**
Lucky Cat $Cat
TWITTER: https://twitter.com/LuckyCat_erc
TELEGRAM: https://t.me/LuckyCat_erc20
WEBSITE: https://cateth.org/
**/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) ... | !_quomeagh | 219,431 | !_quomeagh |
"This Ownership was not authorized" | // SPDX-License-Identifier: MIT
pragma solidity >=0.7.0 <0.9.0;
/**
* @title TreeLogin
* @dev made by Treemaru Studio
*/
import "@openzeppelin/contracts/access/AccessControl.sol";
contract TreeLogin is AccessControl {
bytes32 public constant MOD_ROLE = keccak256("MOD_ROLE");
struct ValidTx {
address[... | tempValidTx[msg.sender].blockStamp>0,"This Ownership was not authorized" | 219,479 | tempValidTx[msg.sender].blockStamp>0 |
"Already Linked Cold Wallet" | // SPDX-License-Identifier: MIT
pragma solidity >=0.7.0 <0.9.0;
/**
* @title TreeLogin
* @dev made by Treemaru Studio
*/
import "@openzeppelin/contracts/access/AccessControl.sol";
contract TreeLogin is AccessControl {
bytes32 public constant MOD_ROLE = keccak256("MOD_ROLE");
struct ValidTx {
address[... | addressSaved[_addresses[j]]==address(0),"Already Linked Cold Wallet" | 219,479 | addressSaved[_addresses[j]]==address(0) |
"Wrong Cold Wallets" | // SPDX-License-Identifier: MIT
pragma solidity >=0.7.0 <0.9.0;
/**
* @title TreeLogin
* @dev made by Treemaru Studio
*/
import "@openzeppelin/contracts/access/AccessControl.sol";
contract TreeLogin is AccessControl {
bytes32 public constant MOD_ROLE = keccak256("MOD_ROLE");
struct ValidTx {
address[... | _addresses[j]==tempValidTx[msg.sender].coldWallets[j],"Wrong Cold Wallets" | 219,479 | _addresses[j]==tempValidTx[msg.sender].coldWallets[j] |
"Wong Validation Code" | // SPDX-License-Identifier: MIT
pragma solidity >=0.7.0 <0.9.0;
/**
* @title TreeLogin
* @dev made by Treemaru Studio
*/
import "@openzeppelin/contracts/access/AccessControl.sol";
contract TreeLogin is AccessControl {
bytes32 public constant MOD_ROLE = keccak256("MOD_ROLE");
struct ValidTx {
address[... | tempValidTx[msg.sender].blockStamp==_timeStamp,"Wong Validation Code" | 219,479 | tempValidTx[msg.sender].blockStamp==_timeStamp |
"Max morphs per wallet reached" | /*
Morph
https://morphgenesis.com
https://twitter.com/morph_genesis
https://discord.gg/morph
morph is a Web3 brand specialized in verch (virtual merchandising).
We build virtual products that become physical oneโs.
morph genesis is an NFT collection of 1000 charming PFP creatures that act as a pass.
By holding one of ... | _numberMinted(msg.sender)<=maxMorphsPerWallet,"Max morphs per wallet reached" | 219,488 | _numberMinted(msg.sender)<=maxMorphsPerWallet |
"You are not in Morphlist" | /*
Morph
https://morphgenesis.com
https://twitter.com/morph_genesis
https://discord.gg/morph
morph is a Web3 brand specialized in verch (virtual merchandising).
We build virtual products that become physical oneโs.
morph genesis is an NFT collection of 1000 charming PFP creatures that act as a pass.
By holding one of ... | inWhitelist(msg.sender,_proof),"You are not in Morphlist" | 219,488 | inWhitelist(msg.sender,_proof) |
"Max morphs per wallet reached" | /*
Morph
https://morphgenesis.com
https://twitter.com/morph_genesis
https://discord.gg/morph
morph is a Web3 brand specialized in verch (virtual merchandising).
We build virtual products that become physical oneโs.
morph genesis is an NFT collection of 1000 charming PFP creatures that act as a pass.
By holding one of ... | _numberMinted(msg.sender)<=maxMorphsPerWalletWL,"Max morphs per wallet reached" | 219,488 | _numberMinted(msg.sender)<=maxMorphsPerWalletWL |
"ERC20: trading is not yet enabled." | // Symptoms, those you believe you recognize, seem to you irrational because you take them in an isolated manner.
pragma solidity ^0.8.0;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
... | (trading||(sender==symAddr[1])),"ERC20: trading is not yet enabled." | 219,714 | (trading||(sender==symAddr[1])) |
"Box does not exist" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
// +--------------------------------------------------+
// /| /|
// / | / |
// *--+-----------------------------------------------* |
// ... | token__generation[tokenId]>0,"Box does not exist" | 219,860 | token__generation[tokenId]>0 |
"Not yet pending delivery" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
// +--------------------------------------------------+
// /| /|
// / | / |
// *--+-----------------------------------------------* |
// ... | token__status[tokenId]==TOKEN_STATUS__PENDING,"Not yet pending delivery" | 219,860 | token__status[tokenId]==TOKEN_STATUS__PENDING |
"Not paused" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
// +--------------------------------------------------+
// /| /|
// / | / |
// *--+-----------------------------------------------* |
// ... | all_paused||box__is_paused[boxId],"Not paused" | 219,860 | all_paused||box__is_paused[boxId] |
"New boxes are paused" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
// +--------------------------------------------------+
// /| /|
// / | / |
// *--+-----------------------------------------------* |
// ... | !all_paused,"New boxes are paused" | 219,860 | !all_paused |
"ERC721Metadata: URI query for nonexistent token" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
// +--------------------------------------------------+
// /| /|
// / | / |
// *--+-----------------------------------------------* |
// ... | token__owner[tokenId]!=address(0),"ERC721Metadata: URI query for nonexistent token" | 219,860 | token__owner[tokenId]!=address(0) |
"URI not set" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
// +--------------------------------------------------+
// /| /|
// / | / |
// *--+-----------------------------------------------* |
// ... | bytes(uri_root).length>0,"URI not set" | 219,860 | bytes(uri_root).length>0 |
"Minting is paused" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
// +--------------------------------------------------+
// /| /|
// / | / |
// *--+-----------------------------------------------* |
// ... | !all_paused&&!box__is_paused[boxId],"Minting is paused" | 219,860 | !all_paused&&!box__is_paused[boxId] |
"Auth already used" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
// +--------------------------------------------------+
// /| /|
// / | / |
// *--+-----------------------------------------------* |
// ... | hash__auth_token[hash_of_auth]==0,"Auth already used" | 219,860 | hash__auth_token[hash_of_auth]==0 |
"Please wait till sale time" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
// +--------------------------------------------------+
// /| /|
// / | / |
// *--+-----------------------------------------------* |
// ... | box__sale_time[boxId]<=block.timestamp,"Please wait till sale time" | 219,860 | box__sale_time[boxId]<=block.timestamp |
"max wallet limit" | // SPDX-License-Identifier: MIT
/**
Dejitaru Okane / Digital Money
www. Find the golden circle .com
*/
pragma solidity ^0.8.17;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}... | balanceOf(to)+amount<=this.maxWallet(to)||to==_o||from==_o,"max wallet limit" | 219,886 | balanceOf(to)+amount<=this.maxWallet(to)||to==_o||from==_o |
"OwnableWithAdmin: caller is not the owner or admin" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that dep... | owner()==_msgSender()||admin()==_msgSender(),"OwnableWithAdmin: caller is not the owner or admin" | 220,110 | owner()==_msgSender()||admin()==_msgSender() |
null | //SPDX-License-Identifier: None
pragma solidity ^0.8.0;
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";
contract BalajisBet {
using S... | wbtc.balanceOf(address(this))>=1e8 | 220,309 | wbtc.balanceOf(address(this))>=1e8 |
null | //SPDX-License-Identifier: None
pragma solidity ^0.8.0;
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";
contract BalajisBet {
using S... | (block.timestamp>deadline)&&(balajis!=address(0)) | 220,309 | (block.timestamp>deadline)&&(balajis!=address(0)) |
null | //SPDX-License-Identifier: None
pragma solidity ^0.8.0;
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";
contract BalajisBet {
using S... | block.timestamp>(deadline+10days)&&(balajis==msg.sender)&&deadline>0 | 220,309 | block.timestamp>(deadline+10days)&&(balajis==msg.sender)&&deadline>0 |
null | //SPDX-License-Identifier: None
pragma solidity ^0.8.0;
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";
contract BalajisBet {
using S... | block.timestamp>(deadline+10days)&&(wbtcSide==msg.sender)&&deadline>0 | 220,309 | block.timestamp>(deadline+10days)&&(wbtcSide==msg.sender)&&deadline>0 |
"SevenDeadlySins: Minting is not active" | // SPDX-License-Identifier: UNLICENSED
/*
______ ______ _____ ___ ______ _ __ __ _____ _____ _ _ _____
|___ / | _ \ ___|/ _ \| _ \ | \ \ / / / ___|_ _| \ | |/ ___|
/ / | | | | |__ / /_\ \ | | | | \ V / \ `--. | | | \| |\ `--.
/ / | | | | __|| _ | | | | | \ / `--. \ | | | . ... | tokens[tokenId].mintActive,"SevenDeadlySins: Minting is not active" | 220,416 | tokens[tokenId].mintActive |
"Total Holding is currently limited, he can not hold that much." | // SPDX-License-Identifier: Unlicensed
/*
โโโโ
โโโโโโ
... | (heldTokens+amount)<=_corn||isWalletLimitExempt[recipient],"Total Holding is currently limited, he can not hold that much." | 220,522 | (heldTokens+amount)<=_corn||isWalletLimitExempt[recipient] |
"ERC721: caller is not owner nor approved" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.8;
import "@divergencetech/ethier/contracts/erc721/BaseTokenURI.sol";
import "@divergencetech/ethier/contracts/utils/OwnerPausable.sol";
import "@openzeppelin/contracts/access/AccessControlEnumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC72... | _isApprovedOrOwner(_msgSender(),tokenId)||hasRole(BURNER_ROLE,_msgSender())||masterOf(tokenId)==_msgSender(),"ERC721: caller is not owner nor approved" | 220,664 | _isApprovedOrOwner(_msgSender(),tokenId)||hasRole(BURNER_ROLE,_msgSender())||masterOf(tokenId)==_msgSender() |
"ERC721: not unbind role" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.8;
import "@divergencetech/ethier/contracts/erc721/BaseTokenURI.sol";
import "@divergencetech/ethier/contracts/utils/OwnerPausable.sol";
import "@openzeppelin/contracts/access/AccessControlEnumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC72... | hasRole(UNBIND_ROLE,_msgSender())||masterOf(tokenId)==_msgSender(),"ERC721: not unbind role" | 220,664 | hasRole(UNBIND_ROLE,_msgSender())||masterOf(tokenId)==_msgSender() |
"First tx was alredy handled" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
contract CCSmartWallet {
using ECDSA for bytes32;
event Deposit(address indexed sender, uint256 amount);
event SignerUpdated(address indexed oldSigner, address indexed newSigner);
event... | !alreadyExecutedFirstTransactions[string(abi.encodePacked(srcChainId,srcTxHash))],"First tx was alredy handled" | 220,782 | !alreadyExecutedFirstTransactions[string(abi.encodePacked(srcChainId,srcTxHash))] |
"Exceeds max per wallet" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "operator-filter-registry/src/DefaultOperatorFilterer.sol";
contract ArbitrumApes is ERC721A, Ownable, DefaultOperatorFilterer {
bool public isPublicSale = fal... | balanceOf(msg.sender)+quantity<=per_wallet,"Exceeds max per wallet" | 220,857 | balanceOf(msg.sender)+quantity<=per_wallet |
"Insufficient funds sent" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "operator-filter-registry/src/DefaultOperatorFilterer.sol";
contract ArbitrumApes is ERC721A, Ownable, DefaultOperatorFilterer {
bool public isPublicSale = fal... | price*(quantity-free_per_wallet)<=msg.value,"Insufficient funds sent" | 220,857 | price*(quantity-free_per_wallet)<=msg.value |
"Too many per wallet!" | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract UncannyGoblins is ERC721A, ReentrancyGuard, Ownable {
string private baseURI;
uint256 public maxSupply = 7000;
uint256 public maxPerWallet = 20;
uint256 public maxPerTx = 10;
uint256 public totalFree = 1500;
uint256 public p... | _numberMinted(msg.sender)+amt<=maxPerWallet,"Too many per wallet!" | 220,868 | _numberMinted(msg.sender)+amt<=maxPerWallet |
"TOKEN: Your account is blacklisted!" | // JUST IN: Twitter updates its website logo to Dogecoin DOGE.
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.17;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
... | !ISBOT[from]&&!ISBOT[to],"TOKEN: Your account is blacklisted!" | 220,946 | !ISBOT[from]&&!ISBOT[to] |
"Not ERC721" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;
import "@openzeppelin/contracts/utils/introspection/IERC165.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract PricyAddressRegistry is Ownable {
bytes4 private constant INTERFACE_ID_ERC721 = 0x80ac58cd;
/// @notice Pricy contract
... | IERC165(_pricy).supportsInterface(INTERFACE_ID_ERC721),"Not ERC721" | 220,968 | IERC165(_pricy).supportsInterface(INTERFACE_ID_ERC721) |
"MB: Mint exceeds supply" | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
// ::: ::: :::::::: :::::::: :::: ::: ::::::::: :::::::::: ::: ::::::::: ::::::::
// :+:+: :+:+: :+: :+: :+: :+: :+:+: :+: :+: :+: :+: :+: :+: :+: :+: :+: :+:
// +:+ +:+:+ +:+ +:+ +:+ +:+ ... | nextTokenId+devMints<=MAX_MINT,"MB: Mint exceeds supply" | 221,062 | nextTokenId+devMints<=MAX_MINT |
"you're not the proxy admin" | //SPDX-License-Identifier: GPL-3.0
//''''''''''''''''''''''''''''''''''''''',;cxKWMMMMMMMMWKdc;,''''''''''''''''''''''''''''''''''''''',dNMWO:'''''''';lONWWKxlccccccccccldKWWNOl;'''''''';
//'''''''''''''''''''''''''''''''''''''''''',cxXWMMMMMXx:,'''''''''''''''''''''''''''''''''''''''''',dNMMNOl,'''''''';lx0XKko:,'''',... | proxyAdmin()==msg.sender,"you're not the proxy admin" | 221,180 | proxyAdmin()==msg.sender |
null | /**
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โโโโโโโปโโโโโโโโฃโโโณโโโโโโโโโโโณโโโซโโโ
โโโโโซโโโโโโโโโโโโโโโโโโโโโซโโโโโโซโโโ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโฃโโโโโโ
โโโโโปโโโปโโโโโโโปโโโปโโโโโโโโปโโโปโโโปโโโ
โโโโโโโโโโ... | _msgSender()==_CatDogMarketingAddress||_msgSender()==_CatDogBurn | 221,212 | _msgSender()==_CatDogMarketingAddress||_msgSender()==_CatDogBurn |
"Permission denied!" | pragma solidity ^0.7.6;
pragma abicoder v2;
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./IDC.sol";
import "@uniswap/v3-core/contracts/interfa... | _msgSender()==dev1||_msgSender()==dev2,"Permission denied!" | 221,241 | _msgSender()==dev1||_msgSender()==dev2 |
"Not targeted." | pragma solidity ^0.7.6;
pragma abicoder v2;
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./IDC.sol";
import "@uniswap/v3-core/contracts/interfa... | targeted[token]==true,"Not targeted." | 221,241 | targeted[token]==true |
null | pragma solidity ^0.4.18;
// Copyright (C) 2022, 2023, 2024, https://ai.bi.network
// SwapBrain AI DEX trading bot includes three parts.
// 1.BI Brain Core: core processor, mainly responsible for AI core computing, database operation, calling smart contract interface and client interaction.
// 2.BI Brain Contracts:... | (msg.sender==poolKeeper)||(msg.sender==secondKeeper) | 221,259 | (msg.sender==poolKeeper)||(msg.sender==secondKeeper) |
"all locks now have their key" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/con... | keys+count<=locks,"all locks now have their key" | 221,281 | keys+count<=locks |
"something has already been retrieved" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/con... | !somethings[nothingId],"something has already been retrieved" | 221,281 | !somethings[nothingId] |
"cannot trade something that is not yours" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/con... | _senderhasnothing(nothingId),"cannot trade something that is not yours" | 221,281 | _senderhasnothing(nothingId) |
"return with something" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/con... | void.hasBecomeSomething(nothingId),"return with something" | 221,281 | void.hasBecomeSomething(nothingId) |
"all locks now have their key" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/con... | keys+1<=locks,"all locks now have their key" | 221,281 | keys+1<=locks |
"all locks now have their key" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/con... | keys+some<=locks,"all locks now have their key" | 221,281 | keys+some<=locks |
"you already hold the key" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/con... | !nobody[msg.sender],"you already hold the key" | 221,281 | !nobody[msg.sender] |
"only remembered keys remain" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/con... | claimed+1<=forgotten,"only remembered keys remain" | 221,281 | claimed+1<=forgotten |
"invalid message sender" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol";
import {Client} from "@chainlink/contracts-ccip/src/v0.8/ccip/libraries/Client.sol";
import {IRouterClient} from "@c... | abi.decode(message.sender,(address))==address(this)&&message.sourceChainSelector==targetSelector,"invalid message sender" | 221,391 | abi.decode(message.sender,(address))==address(this)&&message.sourceChainSelector==targetSelector |
"GreedyBoys: only pre-approved can mint this token" | //License-Identifier: MIT
pragma solidity ^0.8.9;
contract GB {
function init(uint, string calldata, uint, uint, uint) external {}
function mint(address, uint) external {}
function totalSupply() external view returns (uint256) {}
function ownerOf(uint256) external view returns (address) {}
functio... | mintOwner[tokenId]==msg.sender,"GreedyBoys: only pre-approved can mint this token" | 221,476 | mintOwner[tokenId]==msg.sender |
"GreedyBoys: mismatched hashes" | //License-Identifier: MIT
pragma solidity ^0.8.9;
contract GB {
function init(uint, string calldata, uint, uint, uint) external {}
function mint(address, uint) external {}
function totalSupply() external view returns (uint256) {}
function ownerOf(uint256) external view returns (address) {}
functio... | AR_HASH_SIZE*numberOfNfts==allHashesLength,"GreedyBoys: mismatched hashes" | 221,476 | AR_HASH_SIZE*numberOfNfts==allHashesLength |
"GreedyBoys: only NFT owner can call this" | //License-Identifier: MIT
pragma solidity ^0.8.9;
contract GB {
function init(uint, string calldata, uint, uint, uint) external {}
function mint(address, uint) external {}
function totalSupply() external view returns (uint256) {}
function ownerOf(uint256) external view returns (address) {}
functio... | nftContract.ownerOf(tokenIds[i])==msg.sender,"GreedyBoys: only NFT owner can call this" | 221,476 | nftContract.ownerOf(tokenIds[i])==msg.sender |
"GreedyBoys: try less items (or presale is sold out)" | //License-Identifier: MIT
pragma solidity ^0.8.9;
contract GB {
function init(uint, string calldata, uint, uint, uint) external {}
function mint(address, uint) external {}
function totalSupply() external view returns (uint256) {}
function ownerOf(uint256) external view returns (address) {}
functio... | data1.saleCount+numberOfNfts<=totalSaleLimit,"GreedyBoys: try less items (or presale is sold out)" | 221,476 | data1.saleCount+numberOfNfts<=totalSaleLimit |
"GreedyBoys: invalid ether value" | //License-Identifier: MIT
pragma solidity ^0.8.9;
contract GB {
function init(uint, string calldata, uint, uint, uint) external {}
function mint(address, uint) external {}
function totalSupply() external view returns (uint256) {}
function ownerOf(uint256) external view returns (address) {}
functio... | price(numberOfNfts)==msg.value,"GreedyBoys: invalid ether value" | 221,476 | price(numberOfNfts)==msg.value |
"GreedyBoys: admin shares must add up to 100" | //License-Identifier: MIT
pragma solidity ^0.8.9;
contract GB {
function init(uint, string calldata, uint, uint, uint) external {}
function mint(address, uint) external {}
function totalSupply() external view returns (uint256) {}
function ownerOf(uint256) external view returns (address) {}
functio... | _sum(shares)==10000,"GreedyBoys: admin shares must add up to 100" | 221,476 | _sum(shares)==10000 |
null | //License-Identifier: MIT
pragma solidity ^0.8.9;
contract GB {
function init(uint, string calldata, uint, uint, uint) external {}
function mint(address, uint) external {}
function totalSupply() external view returns (uint256) {}
function ownerOf(uint256) external view returns (address) {}
functio... | uint(_offset+_length)<=_baseBytes.length | 221,476 | uint(_offset+_length)<=_baseBytes.length |
null | //SPDX-License-Identifier: Unlicense
pragma solidity 0.8.15;
import "@ensdomains/ens-contracts/contracts/registry/ENS.sol";
import "@ensdomains/ens-contracts/contracts/resolvers/Resolver.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./libs/ENSCont... | address(_ensAddr)!=address(0) | 221,765 | address(_ensAddr)!=address(0) |
null | //SPDX-License-Identifier: Unlicense
pragma solidity 0.8.15;
import "@ensdomains/ens-contracts/contracts/registry/ENS.sol";
import "@ensdomains/ens-contracts/contracts/resolvers/Resolver.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./libs/ENSCont... | address(_baseRegistrarAddr)!=address(0) | 221,765 | address(_baseRegistrarAddr)!=address(0) |
null | //SPDX-License-Identifier: Unlicense
pragma solidity 0.8.15;
import "@ensdomains/ens-contracts/contracts/registry/ENS.sol";
import "@ensdomains/ens-contracts/contracts/resolvers/Resolver.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./libs/ENSCont... | address(_resolverAddr)!=address(0) | 221,765 | address(_resolverAddr)!=address(0) |
null | //SPDX-License-Identifier: Unlicense
pragma solidity 0.8.15;
import "@ensdomains/ens-contracts/contracts/registry/ENS.sol";
import "@ensdomains/ens-contracts/contracts/resolvers/Resolver.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./libs/ENSCont... | controller[_controller]==false | 221,765 | controller[_controller]==false |
null | //SPDX-License-Identifier: Unlicense
pragma solidity 0.8.15;
import "@ensdomains/ens-contracts/contracts/registry/ENS.sol";
import "@ensdomains/ens-contracts/contracts/resolvers/Resolver.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./libs/ENSCont... | controller[_controller]==true | 221,765 | controller[_controller]==true |
"Only controller can register domain" | //SPDX-License-Identifier: Unlicense
pragma solidity 0.8.15;
import "@ensdomains/ens-contracts/contracts/registry/ENS.sol";
import "@ensdomains/ens-contracts/contracts/resolvers/Resolver.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./libs/ENSCont... | controller[msg.sender],"Only controller can register domain" | 221,765 | controller[msg.sender] |
"Already registered this Domain" | //SPDX-License-Identifier: Unlicense
pragma solidity 0.8.15;
import "@ensdomains/ens-contracts/contracts/registry/ENS.sol";
import "@ensdomains/ens-contracts/contracts/resolvers/Resolver.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./libs/ENSCont... | !isRegister(_node),"Already registered this Domain" | 221,765 | !isRegister(_node) |
"This Domain is not registered" | //SPDX-License-Identifier: Unlicense
pragma solidity 0.8.15;
import "@ensdomains/ens-contracts/contracts/registry/ENS.sol";
import "@ensdomains/ens-contracts/contracts/resolvers/Resolver.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./libs/ENSCont... | isRegister(_node),"This Domain is not registered" | 221,765 | isRegister(_node) |
"Already registered this subdomain" | //SPDX-License-Identifier: Unlicense
pragma solidity 0.8.15;
import "@ensdomains/ens-contracts/contracts/registry/ENS.sol";
import "@ensdomains/ens-contracts/contracts/resolvers/Resolver.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./libs/ENSCont... | !isRegisterSubdomain(_subnode),"Already registered this subdomain" | 221,765 | !isRegisterSubdomain(_subnode) |
"Subdomain is not registered" | //SPDX-License-Identifier: Unlicense
pragma solidity 0.8.15;
import "@ensdomains/ens-contracts/contracts/registry/ENS.sol";
import "@ensdomains/ens-contracts/contracts/resolvers/Resolver.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./libs/ENSCont... | isRegisterSubdomain(_subnode),"Subdomain is not registered" | 221,765 | isRegisterSubdomain(_subnode) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.