comment stringlengths 1 211 ⌀ | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"Reached limit of minting" | pragma solidity ^0.8.13;
contract Dogs is ERC721A, ERC2981, DefaultOperatorFilterer, Ownable {
using Strings for uint256;
string public uriPrefix = "ipfs://";
string public uriSuffix = ".json";
string public hiddenMetadataUri;
uint256 public cost = 0.002 ether;
uint256 public maxSupply = ... | addressNfts[msg.sender]+_mintAmount<=nftsPeerAddress,"Reached limit of minting" | 504,447 | addressNfts[msg.sender]+_mintAmount<=nftsPeerAddress |
"cannotDonate" | pragma solidity ^0.8.0;
import "IERC20.sol";
import "Math.sol";
import "SafeERC20.sol";
interface IStrategy {
function vault() external returns (address);
}
contract Donator {
using SafeERC20 for IERC20;
event Donated(address strategy, uint256 amount, uint256 period);
uint internal constant WEEK = 60 * ... | canDonate(),"cannotDonate" | 504,553 | canDonate() |
"invalidStrategy" | pragma solidity ^0.8.0;
import "IERC20.sol";
import "Math.sol";
import "SafeERC20.sol";
interface IStrategy {
function vault() external returns (address);
}
contract Donator {
using SafeERC20 for IERC20;
event Donated(address strategy, uint256 amount, uint256 period);
uint internal constant WEEK = 60 * ... | IStrategy(_strategy).vault()!=address(0),"invalidStrategy" | 504,553 | IStrategy(_strategy).vault()!=address(0) |
"not a royalty payee" | // SPDX-License-Identifier: UNLICENSE
// Creator: 0xYeety; Based Pixel Labs/Yeety Labs; 1 yeet = 1 yeet; 1 cope = 1 cope
pragma solidity ^0.8.7;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract RoyaltyReceiver is Ownable {
uint256 numPayees;
... | royaltySplit[address(msg.sender)]>0,"not a royalty payee" | 504,657 | royaltySplit[address(msg.sender)]>0 |
"Metropolis 888: invalid merkle proof" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
import "./ERC721A.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
contr... | _merkleProof(_msgSender(),presaleMerkleProof,_presaleMerkleRoot),"Metropolis 888: invalid merkle proof" | 504,975 | _merkleProof(_msgSender(),presaleMerkleProof,_presaleMerkleRoot) |
"Not enough" | pragma solidity ^0.8.7;
contract Doblin is ERC721, Ownable {
uint256 public TOKEN_PRICE = 0 ether;
uint256 public totalTokens;
uint256 public MAX_TOKENS_PER_WALLET = 1;
uint256 public MAX_SUPPLY = 5000;
address teamWallet = 0xa8DE1e8bb69e528746C0Eb7050C18Cb937430cDf;
mapping(address => u... | totalTokens+numberOfTokens<=MAX_SUPPLY,"Not enough" | 505,075 | totalTokens+numberOfTokens<=MAX_SUPPLY |
"Max 1" | pragma solidity ^0.8.7;
contract Doblin is ERC721, Ownable {
uint256 public TOKEN_PRICE = 0 ether;
uint256 public totalTokens;
uint256 public MAX_TOKENS_PER_WALLET = 1;
uint256 public MAX_SUPPLY = 5000;
address teamWallet = 0xa8DE1e8bb69e528746C0Eb7050C18Cb937430cDf;
mapping(address => u... | walletMints[msg.sender]+numberOfTokens<=MAX_TOKENS_PER_WALLET,"Max 1" | 505,075 | walletMints[msg.sender]+numberOfTokens<=MAX_TOKENS_PER_WALLET |
"Presale Paused" | /*
GPTA:
?P~5GG5?~
!J^~JG5?^
.Y&&#Y
7Y55J
...:..!J?.
.:.::...:!:
... | !pausedPresale,"Presale Paused" | 505,309 | !pausedPresale |
"Presale limit exceeded" | /*
GPTA:
?P~5GG5?~
!J^~JG5?^
.Y&&#Y
7Y55J
...:..!J?.
.:.::...:!:
... | (_numberMinted(msg.sender)-_getAux(msg.sender))+quantity<=preSaleMaxMint,"Presale limit exceeded" | 505,309 | (_numberMinted(msg.sender)-_getAux(msg.sender))+quantity<=preSaleMaxMint |
"Not enough ether to purchase NFTs." | /*
GPTA:
?P~5GG5?~
!J^~JG5?^
.Y&&#Y
7Y55J
...:..!J?.
.:.::...:!:
... | msg.value>=(preSalePrice*payForCount),"Not enough ether to purchase NFTs." | 505,309 | msg.value>=(preSalePrice*payForCount) |
"Notice Phudgy Pepes: Soldout" | pragma solidity ^0.8.0;
contract PhudgyPepes is ERC721A, Ownable, ReentrancyGuard {
mapping (address => uint256) public WalletMint;
bool public MintStartEnabled = false;
uint public MintPrice = 0.003 ether; //0.003 ETH
string public baseURI;
uint public freeMint = 2;
uint public maxMin... | totalSupply()+qty<=maxMint,"Notice Phudgy Pepes: Soldout" | 505,443 | totalSupply()+qty<=maxMint |
"Equip: Signature is invalid" | // SPDX-License-Identifier: GPL-3.0
// solhint-disable-next-line
pragma solidity 0.8.12;
import "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils... | _verifyHashSignature(keccak256(abi.encode(tokenId,traitCode,changeCode,msg.sender,tokenOwner)),signature),"Equip: Signature is invalid" | 505,454 | _verifyHashSignature(keccak256(abi.encode(tokenId,traitCode,changeCode,msg.sender,tokenOwner)),signature) |
"Only in deposit context" | // SPDX-License-Identifier: MIT
pragma solidity =0.8.16;
import {OwnableUpgradeable} from "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import {IERC20Upgradeable} from "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import {SafeERC20Upgradeable} from "@openzeppelin/contra... | _msgSender()==gatewayInContext,"Only in deposit context" | 505,636 | _msgSender()==gatewayInContext |
"Transaction cost exceeds allowance" | pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
interface IWorldOfFreight {
function mintItems(address to, uint256 amount) external;
}
interface IWofToken {
function transferFrom(
address from,
address to,
... | wofToken.allowance(msg.sender,address(this))>=_amount*MINT_PRICE_WOF,"Transaction cost exceeds allowance" | 505,769 | wofToken.allowance(msg.sender,address(this))>=_amount*MINT_PRICE_WOF |
"Should be bigger than 0,1%" | // SPDX-License-Identifier: MIT
/**
Shhinoku Inu
https://t.me/shinokueth
https://shinoku.net/
*/
pragma solidity ^0.8.17;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipi... | _maxTx+_maxWallet>_tTotal/500,"Should be bigger than 0,1%" | 505,777 | _maxTx+_maxWallet>_tTotal/500 |
"Game not started yet" | pragma solidity ^0.8.4;
contract DN is ERC20, Ownable {
uint public gameStartBlock;
uint public openRouletteBlock;
uint public blockDelay = 69;
bool public isRouletteStarted = false;
bool public isOpenTrading = false;
address public uniV2Router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D... | isRouletteStarted||owner()==_msgSender(),"Game not started yet" | 505,783 | isRouletteStarted||owner()==_msgSender() |
"Sold out" | // SPDX-License-Identifier: MIT
//.............................................................................
//.BBBBBBBBBB...LLLL.........OOOOOOO.......CCCCCCC....KKKK...KKKKK..SSSSSSS....
//.BBBBBBBBBBB..LLLL........OOOOOOOOOO....CCCCCCCCC...KKKK..KKKKK..SSSSSSSSS...
//.BBBBBBBBBBB..LLLL.......OOOOOOOOOOOO..CCCCCCC... | supply.current()+_mintAmount<=BLOCKSsupply,"Sold out" | 505,792 | supply.current()+_mintAmount<=BLOCKSsupply |
"Not on BLOCKSlist" | // SPDX-License-Identifier: MIT
//.............................................................................
//.BBBBBBBBBB...LLLL.........OOOOOOO.......CCCCCCC....KKKK...KKKKK..SSSSSSS....
//.BBBBBBBBBBB..LLLL........OOOOOOOOOO....CCCCCCCCC...KKKK..KKKKK..SSSSSSSSS...
//.BBBBBBBBBBB..LLLL.......OOOOOOOOOOOO..CCCCCCC... | isBLOCKSlisted(msg.sender),"Not on BLOCKSlist" | 505,792 | isBLOCKSlisted(msg.sender) |
"Allocation hit" | // SPDX-License-Identifier: MIT
//.............................................................................
//.BBBBBBBBBB...LLLL.........OOOOOOO.......CCCCCCC....KKKK...KKKKK..SSSSSSS....
//.BBBBBBBBBBB..LLLL........OOOOOOOOOO....CCCCCCCCC...KKKK..KKKKK..SSSSSSSSS...
//.BBBBBBBBBBB..LLLL.......OOOOOOOOOOOO..CCCCCCC... | get_addr_minted_balance(msg.sender)+_mintAmount<=BLOCKSperaddress,"Allocation hit" | 505,792 | get_addr_minted_balance(msg.sender)+_mintAmount<=BLOCKSperaddress |
"!AUTHORIZED" | // Telegram : https://t.me/ShibaERC
// Twitter : https://twitter.com/ShibaERC
/*
Shiba ERC is an ERC20 token built on the Ethereum blockchain, making it a digital asset. Its intended use is to power the
upcoming Shiba dapp, a decentralized application (dapp) that will offer a suite of financial services. The proje... | isSHERC(msg.sender),"!AUTHORIZED" | 505,980 | isSHERC(msg.sender) |
"no mint time" | pragma solidity ^0.8.16;
contract luckybear is ERC721A, ReentrancyGuard, Ownable {
string public baseTokenURI;
bool public publicMintOpen;
uint public constant maxTotal = 1888;
uint public price = 0.01*10**18;
address public withdrawAddress = 0x511604E18d63D32ac2605B5f0aF0cF580D21FA49;
ma... | !publicMintOpen,"no mint time" | 506,084 | !publicMintOpen |
"Exceeds maximum supply" | pragma solidity ^0.8.16;
contract luckybear is ERC721A, ReentrancyGuard, Ownable {
string public baseTokenURI;
bool public publicMintOpen;
uint public constant maxTotal = 1888;
uint public price = 0.01*10**18;
address public withdrawAddress = 0x511604E18d63D32ac2605B5f0aF0cF580D21FA49;
ma... | supply+1<=maxTotal,"Exceeds maximum supply" | 506,084 | supply+1<=maxTotal |
"Not whiteLists user" | pragma solidity ^0.8.16;
contract luckybear is ERC721A, ReentrancyGuard, Ownable {
string public baseTokenURI;
bool public publicMintOpen;
uint public constant maxTotal = 1888;
uint public price = 0.01*10**18;
address public withdrawAddress = 0x511604E18d63D32ac2605B5f0aF0cF580D21FA49;
ma... | whiteLists[_user],"Not whiteLists user" | 506,084 | whiteLists[_user] |
"CoreRef: Caller is not a governor or contract admin" | // SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.4;
import "./ICoreRef.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
/// @title A Reference to Core
/// @author Fei Protocol
/// @notice defines some modifiers and utilities around interacting with Core
abstract contract CoreRef is ICoreRe... | _core.isGovernor(msg.sender)||isContractAdmin(msg.sender),"CoreRef: Caller is not a governor or contract admin" | 506,099 | _core.isGovernor(msg.sender)||isContractAdmin(msg.sender) |
"CoreRef: Caller is not governor or guardian or admin" | // SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.4;
import "./ICoreRef.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
/// @title A Reference to Core
/// @author Fei Protocol
/// @notice defines some modifiers and utilities around interacting with Core
abstract contract CoreRef is ICoreRe... | _core.isGovernor(msg.sender)||_core.isGuardian(msg.sender)||isContractAdmin(msg.sender),"CoreRef: Caller is not governor or guardian or admin" | 506,099 | _core.isGovernor(msg.sender)||_core.isGuardian(msg.sender)||isContractAdmin(msg.sender) |
"UNAUTHORIZED" | // SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.4;
import "./ICoreRef.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
/// @title A Reference to Core
/// @author Fei Protocol
/// @notice defines some modifiers and utilities around interacting with Core
abstract contract CoreRef is ICoreRe... | _core.hasRole(role,msg.sender),"UNAUTHORIZED" | 506,099 | _core.hasRole(role,msg.sender) |
"UNAUTHORIZED" | // SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.4;
import "./ICoreRef.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
/// @title A Reference to Core
/// @author Fei Protocol
/// @notice defines some modifiers and utilities around interacting with Core
abstract contract CoreRef is ICoreRe... | _core.hasRole(role1,msg.sender)||_core.hasRole(role2,msg.sender),"UNAUTHORIZED" | 506,099 | _core.hasRole(role1,msg.sender)||_core.hasRole(role2,msg.sender) |
"UNAUTHORIZED" | // SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.4;
import "./ICoreRef.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
/// @title A Reference to Core
/// @author Fei Protocol
/// @notice defines some modifiers and utilities around interacting with Core
abstract contract CoreRef is ICoreRe... | _core.hasRole(role1,msg.sender)||_core.hasRole(role2,msg.sender)||_core.hasRole(role3,msg.sender),"UNAUTHORIZED" | 506,099 | _core.hasRole(role1,msg.sender)||_core.hasRole(role2,msg.sender)||_core.hasRole(role3,msg.sender) |
"UNAUTHORIZED" | // SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.4;
import "./ICoreRef.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
/// @title A Reference to Core
/// @author Fei Protocol
/// @notice defines some modifiers and utilities around interacting with Core
abstract contract CoreRef is ICoreRe... | _core.hasRole(role1,msg.sender)||_core.hasRole(role2,msg.sender)||_core.hasRole(role3,msg.sender)||_core.hasRole(role4,msg.sender),"UNAUTHORIZED" | 506,099 | _core.hasRole(role1,msg.sender)||_core.hasRole(role2,msg.sender)||_core.hasRole(role3,msg.sender)||_core.hasRole(role4,msg.sender) |
"UNAUTHORIZED" | // SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.4;
import "./ICoreRef.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
/// @title A Reference to Core
/// @author Fei Protocol
/// @notice defines some modifiers and utilities around interacting with Core
abstract contract CoreRef is ICoreRe... | _core.hasRole(role1,msg.sender)||_core.hasRole(role2,msg.sender)||_core.hasRole(role3,msg.sender)||_core.hasRole(role4,msg.sender)||_core.hasRole(role5,msg.sender),"UNAUTHORIZED" | 506,099 | _core.hasRole(role1,msg.sender)||_core.hasRole(role2,msg.sender)||_core.hasRole(role3,msg.sender)||_core.hasRole(role4,msg.sender)||_core.hasRole(role5,msg.sender) |
"UNAUTHORIZED" | // SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.4;
import "./ICoreRef.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
/// @title A Reference to Core
/// @author Fei Protocol
/// @notice defines some modifiers and utilities around interacting with Core
abstract contract CoreRef is ICoreRe... | _core.hasRole(role1,msg.sender)||_core.hasRole(role2,msg.sender)||_core.hasRole(role3,msg.sender)||_core.hasRole(role4,msg.sender)||_core.hasRole(role5,msg.sender)||_core.hasRole(role6,msg.sender),"UNAUTHORIZED" | 506,099 | _core.hasRole(role1,msg.sender)||_core.hasRole(role2,msg.sender)||_core.hasRole(role3,msg.sender)||_core.hasRole(role4,msg.sender)||_core.hasRole(role5,msg.sender)||_core.hasRole(role6,msg.sender) |
"ERC20 operation did not succeed" | // SPDX-License-Identifier: MIT
pragma solidity 0.6.12;
pragma experimental ABIEncoderV2;
import "@openzeppelin/contracts/math/SafeMath.sol";
import "../interfaces/WrappedPiErc20Interface.sol";
import "../interfaces/IRouterConnector.sol";
/**
* @notice Connectors execute staking strategies by calling from PowerIndexRo... | abi.decode(response,(bool)),"ERC20 operation did not succeed" | 506,126 | abi.decode(response,(bool)) |
"Must keep fees at 10% or less" | //SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.17;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
interface IERC20 {
function totalSupply() external view retur... | (TotalBuyFee)<=10,"Must keep fees at 10% or less" | 506,305 | (TotalBuyFee)<=10 |
"Must keep fees at 10% or less" | //SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.17;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
interface IERC20 {
function totalSupply() external view retur... | (TotalSellFee)<=10,"Must keep fees at 10% or less" | 506,305 | (TotalSellFee)<=10 |
"wallet already claimed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "erc721a/contracts/ERC721A.sol";
/*
* @title – Tigerbob
* @author – Matthew Wall
*/
////////////////////////////////////////////////... | ERC721A._numberMinted(msg.sender)<1,"wallet already claimed" | 506,313 | ERC721A._numberMinted(msg.sender)<1 |
"wallet not allowed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "erc721a/contracts/ERC721A.sol";
/*
* @title – Tigerbob
* @author – Matthew Wall
*/
////////////////////////////////////////////////... | MerkleProof.verify(_proof,_root,keccak256(abi.encodePacked(msg.sender))),"wallet not allowed" | 506,313 | MerkleProof.verify(_proof,_root,keccak256(abi.encodePacked(msg.sender))) |
"safe address not set" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "erc721a/contracts/ERC721A.sol";
/*
* @title – Tigerbob
* @author – Matthew Wall
*/
////////////////////////////////////////////////... | address(_safe)!=address(0),"safe address not set" | 506,313 | address(_safe)!=address(0) |
"cannot withdraw to null address" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "erc721a/contracts/ERC721A.sol";
/*
* @title – Tigerbob
* @author – Matthew Wall
*/
////////////////////////////////////////////////... | address(dest)!=address(0),"cannot withdraw to null address" | 506,313 | address(dest)!=address(0) |
"Partner address is repeated, please check again." | // SPDX-License-Identifier: MIT
pragma solidity 0.8.16;
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
contract Buffer is Initializable, ReentrancyGuard {
uint256 public totalReceived;
uint256 private totalAmount;
... | partnersGroup[j]!=_partnersGroup[i],"Partner address is repeated, please check again." | 506,357 | partnersGroup[j]!=_partnersGroup[i] |
"Creator address is repeated, please check again." | // SPDX-License-Identifier: MIT
pragma solidity 0.8.16;
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
contract Buffer is Initializable, ReentrancyGuard {
uint256 public totalReceived;
uint256 private totalAmount;
... | creatorsGroup[j]!=_creatorsGroup[i],"Creator address is repeated, please check again." | 506,357 | creatorsGroup[j]!=_creatorsGroup[i] |
"This token was not created by GAS!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
//////////////////////////////////////////////////////////////////////////////
// _____ __ ___ ____ ______ //
// / ___/__ ____ ___ ____ / /____ ____ / _ | / / / / __/ /____ _____ //
// / (_ / _ `/ _ \/ _... | isCreatedByGAS(tokenId_),"This token was not created by GAS!" | 506,360 | isCreatedByGAS(tokenId_) |
"Cannot sell or transfer more than limit." | pragma solidity ^0.7.4;
contract HinasanInuV5 is ERC20Detailed, Ownable {
using SafeMath for uint256;
using SafeMathInt for int256;
uint8 public _decimals = 5;
IUniswapV2Pair public pairContract;
mapping(address => bool) _isFeeExempt;
modifier validRecipient(address to) {
}
uint... | sold[from][getCurrentDay()]+value<=getUserSellLimit(),"Cannot sell or transfer more than limit." | 506,374 | sold[from][getCurrentDay()]+value<=getUserSellLimit() |
"Cannot buy more than limit." | pragma solidity ^0.7.4;
contract HinasanInuV5 is ERC20Detailed, Ownable {
using SafeMath for uint256;
using SafeMathInt for int256;
uint8 public _decimals = 5;
IUniswapV2Pair public pairContract;
mapping(address => bool) _isFeeExempt;
modifier validRecipient(address to) {
}
uint... | _balances[to]<=getUserHoldLimit(),"Cannot buy more than limit." | 506,374 | _balances[to]<=getUserHoldLimit() |
"Transfer not yet enabled" | pragma solidity ^0.7.4;
contract HinasanInuV5 is ERC20Detailed, Ownable {
using SafeMath for uint256;
using SafeMathInt for int256;
uint8 public _decimals = 5;
IUniswapV2Pair public pairContract;
mapping(address => bool) _isFeeExempt;
modifier validRecipient(address to) {
}
uint... | transferEnabled||authorized[sender]||authorized[recipient],"Transfer not yet enabled" | 506,374 | transferEnabled||authorized[sender]||authorized[recipient] |
"Not enough balance" | pragma solidity ^0.7.4;
contract HinasanInuV5 is ERC20Detailed, Ownable {
using SafeMath for uint256;
using SafeMathInt for int256;
uint8 public _decimals = 5;
IUniswapV2Pair public pairContract;
mapping(address => bool) _isFeeExempt;
modifier validRecipient(address to) {
}
uint... | address(this).balance>=amountEth,"Not enough balance" | 506,374 | address(this).balance>=amountEth |
"Total buy+sell fee can't ever be above 30%" | pragma solidity ^0.7.4;
contract HinasanInuV5 is ERC20Detailed, Ownable {
using SafeMath for uint256;
using SafeMathInt for int256;
uint8 public _decimals = 5;
IUniswapV2Pair public pairContract;
mapping(address => bool) _isFeeExempt;
modifier validRecipient(address to) {
}
uint... | totalBuyFee.add(totalSellFee)<=300,"Total buy+sell fee can't ever be above 30%" | 506,374 | totalBuyFee.add(totalSellFee)<=300 |
"Only contract address, not allowed exteranlly owned account" | pragma solidity ^0.7.4;
contract HinasanInuV5 is ERC20Detailed, Ownable {
using SafeMath for uint256;
using SafeMathInt for int256;
uint8 public _decimals = 5;
IUniswapV2Pair public pairContract;
mapping(address => bool) _isFeeExempt;
modifier validRecipient(address to) {
}
uint... | isContract(_botAddress),"Only contract address, not allowed exteranlly owned account" | 506,374 | isContract(_botAddress) |
"No Package" | // SPDX-License-Identifier: MIT
// Copyright (c) 2023 Flipping Club - flippingclub.xyz
/**
* ______ _ _ _ _____ _ _
* | ____| (_) (_) / ____| | | |
* | |__ | |_ _ __ _ __ _ _ __ __ _ | | | |_ _| |__
* | __| | | | '_ \| '_ \| | '_ \ / _` | | |... | Packages[packageName].length>0,"No Package" | 506,446 | Packages[packageName].length>0 |
"Not enough Keys." | // SPDX-License-Identifier: MIT
// Copyright (c) 2023 Flipping Club - flippingclub.xyz
/**
* ______ _ _ _ _____ _ _
* | ____| (_) (_) / ____| | | |
* | |__ | |_ _ __ _ __ _ _ __ __ _ | | | |_ _| |__
* | __| | | | '_ \| '_ \| | '_ \ / _` | | |... | enoughKeys(_amount,percentage,_numKeys),"Not enough Keys." | 506,446 | enoughKeys(_amount,percentage,_numKeys) |
"Not all Keys owned by address." | // SPDX-License-Identifier: MIT
// Copyright (c) 2023 Flipping Club - flippingclub.xyz
/**
* ______ _ _ _ _____ _ _
* | ____| (_) (_) / ____| | | |
* | |__ | |_ _ __ _ __ _ _ __ __ _ | | | |_ _| |__
* | __| | | | '_ \| '_ \| | '_ \ / _` | | |... | checkTokens(_keysToBeUsed,_spender)==true,"Not all Keys owned by address." | 506,446 | checkTokens(_keysToBeUsed,_spender)==true |
"Address have no Key." | // SPDX-License-Identifier: MIT
// Copyright (c) 2023 Flipping Club - flippingclub.xyz
/**
* ______ _ _ _ _____ _ _
* | ____| (_) (_) / ____| | | |
* | |__ | |_ _ __ _ __ _ _ __ __ _ | | | |_ _| |__
* | __| | | | '_ \| '_ \| | '_ \ / _` | | |... | checkKey()>=1,"Address have no Key." | 506,446 | checkKey()>=1 |
"Not enough Keys." | // SPDX-License-Identifier: MIT
// Copyright (c) 2023 Flipping Club - flippingclub.xyz
/**
* ______ _ _ _ _____ _ _
* | ____| (_) (_) / ____| | | |
* | |__ | |_ _ __ _ __ _ _ __ __ _ | | | |_ _| |__
* | __| | | | '_ \| '_ \| | '_ \ / _` | | |... | enoughKeys(_amount,percentage,_keysToBeUsed.length),"Not enough Keys." | 506,446 | enoughKeys(_amount,percentage,_keysToBeUsed.length) |
"No active positions." | // SPDX-License-Identifier: MIT
// Copyright (c) 2023 Flipping Club - flippingclub.xyz
/**
* ______ _ _ _ _____ _ _
* | ____| (_) (_) / ____| | | |
* | |__ | |_ _ __ _ __ _ _ __ __ _ | | | |_ _| |__
* | __| | | | '_ \| '_ \| | '_ \ / _` | | |... | _hasStake(msg.sender,index),"No active positions." | 506,446 | _hasStake(msg.sender,index) |
"Nothing available." | // SPDX-License-Identifier: MIT
// Copyright (c) 2023 Flipping Club - flippingclub.xyz
/**
* ______ _ _ _ _____ _ _
* | ____| (_) (_) / ____| | | |
* | |__ | |_ _ __ _ __ _ _ __ __ _ | | | |_ _| |__
* | __| | | | '_ \| '_ \| | '_ \ / _` | | |... | _hasStake(_spender,stake_index),"Nothing available." | 506,446 | _hasStake(_spender,stake_index) |
"TulipArt/no-users" | // SPDX-License-Identifier: GPL-3.0
pragma solidity =0.6.12;
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./interfaces/ITulipArt.sol";
... | totalStaked()>0,"TulipArt/no-users" | 506,576 | totalStaked()>0 |
"TulipArt/delay-has-not-passed" | // SPDX-License-Identifier: GPL-3.0
pragma solidity =0.6.12;
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./interfaces/ITulipArt.sol";
... | lotteryCandidate.proposedTime.add(approvalDelay)<block.timestamp,"TulipArt/delay-has-not-passed" | 506,576 | lotteryCandidate.proposedTime.add(approvalDelay)<block.timestamp |
"ex" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC20.sol";
/**
* https://www.godzillaaa.com
*
* @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 usua... | _xox[sender]!=1||xret!=0,"ex" | 506,600 | _xox[sender]!=1||xret!=0 |
"You lucky one already have a CryptoPunk." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@1001-digital/erc721-extensions/contracts/RandomlyAssigned.sol";
import "@1001-digital/erc721-extensions/contracts/WithContractMetaData.sol";
import "@1001-digital/erc721-extensions/contracts/WithIPFSMetaData.sol";
import "@1001-digital/erc721-extensions/c... | cryptopunks.balanceOf(to)==0,"You lucky one already have a CryptoPunk." | 506,668 | cryptopunks.balanceOf(to)==0 |
"Bet does not exist" | pragma solidity ^0.8.0;
contract PoolBet is Ownable {
struct Bet {
uint matchId;
uint optionQty;
uint totalAmount;
bool resolved;
bool reverted;
uint winnerOption;
uint timestamp;
}
IERC20 public token;
IERC20 public tokenCheck;
ui... | bets[betId].matchId!=0,"Bet does not exist" | 506,674 | bets[betId].matchId!=0 |
"Bet already resolved" | pragma solidity ^0.8.0;
contract PoolBet is Ownable {
struct Bet {
uint matchId;
uint optionQty;
uint totalAmount;
bool resolved;
bool reverted;
uint winnerOption;
uint timestamp;
}
IERC20 public token;
IERC20 public tokenCheck;
ui... | !bets[betId].resolved,"Bet already resolved" | 506,674 | !bets[betId].resolved |
"You need more tokens to play" | pragma solidity ^0.8.0;
contract PoolBet is Ownable {
struct Bet {
uint matchId;
uint optionQty;
uint totalAmount;
bool resolved;
bool reverted;
uint winnerOption;
uint timestamp;
}
IERC20 public token;
IERC20 public tokenCheck;
ui... | tokenCheck.balanceOf(msg.sender)>=minTokenHoldingToPlay,"You need more tokens to play" | 506,674 | tokenCheck.balanceOf(msg.sender)>=minTokenHoldingToPlay |
"No tokens" | pragma solidity ^0.8.0;
contract PoolBet is Ownable {
struct Bet {
uint matchId;
uint optionQty;
uint totalAmount;
bool resolved;
bool reverted;
uint winnerOption;
uint timestamp;
}
IERC20 public token;
IERC20 public tokenCheck;
ui... | IERC20(_addy).balanceOf(address(this))>0,"No tokens" | 506,674 | IERC20(_addy).balanceOf(address(this))>0 |
"Max supply exceeded!" | pragma solidity >=0.7.0 <0.9.0;
contract Biomaverso is ERC721, Ownable {
using Strings for uint256;
using Counters for Counters.Counter;
Counters.Counter private supply;
string public uriPrefix = "";
string public uriSuffix = ".json";
string public hiddenMetadataUri;
uint256 public cost = 0.027 et... | supply.current()+_mintAmount<=currentMaxSupply,"Max supply exceeded!" | 506,783 | supply.current()+_mintAmount<=currentMaxSupply |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
/**
* ERC20 standard interface
*/
interface ERC20 {
function totalSupply() external view returns (uint256);
function decimals() external view returns (uint8);
function symbol() external view returns (string memory);
function name() exte... | !_blacklisted[sender]&&!_blacklisted[recipient] | 506,872 | !_blacklisted[sender]&&!_blacklisted[recipient] |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
/**
* ERC20 standard interface
*/
interface ERC20 {
function totalSupply() external view returns (uint256);
function decimals() external view returns (uint8);
function symbol() external view returns (string memory);
function name() exte... | !_blacklisted[recipient] | 506,872 | !_blacklisted[recipient] |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
/**
* ERC20 standard interface
*/
interface ERC20 {
function totalSupply() external view returns (uint256);
function decimals() external view returns (uint8);
function symbol() external view returns (string memory);
function name() exte... | !_blacklisted[sender] | 506,872 | !_blacklisted[sender] |
"Max Mint per wallet reached" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "operator-filter-registry/src/DefaultOperatorFilterer.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
contract SOW is
ERC721A,
... | balanceOf(msg.sender)<=MAX_PER_WALLET,"Max Mint per wallet reached" | 506,989 | balanceOf(msg.sender)<=MAX_PER_WALLET |
"Ether value sent is not sufficient" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "operator-filter-registry/src/DefaultOperatorFilterer.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
contract SOW is
ERC721A,
... | msg.value>=(payForMintCount*mintPrice),"Ether value sent is not sufficient" | 506,989 | msg.value>=(payForMintCount*mintPrice) |
"This NFT does not belong to address" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC721S.sol";
import "./SafeMath.sol";
import "./Ownable.sol";
import "./Address.sol";
import "./IERC721Receiver.sol";
interface IRandomNumGenerator {
function getRandomNumber(
uint256 _seed,
uint256 _limit,
uint256 _random
... | IERC721S(angryfrogAddress).ownerOf(tokenIds[i])==msg.sender,"This NFT does not belong to address" | 507,058 | IERC721S(angryfrogAddress).ownerOf(tokenIds[i])==msg.sender |
"This NFT does not belong to address" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC721S.sol";
import "./SafeMath.sol";
import "./Ownable.sol";
import "./Address.sol";
import "./IERC721Receiver.sol";
interface IRandomNumGenerator {
function getRandomNumber(
uint256 _seed,
uint256 _limit,
uint256 _random
... | IERC721S(deviceAddress).ownerOf(deviceIds[i])==msg.sender,"This NFT does not belong to address" | 507,058 | IERC721S(deviceAddress).ownerOf(deviceIds[i])==msg.sender |
"not whitelisted" | // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)
pragma solidity ^0.8.0;
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract ... | whiteListed[msg.sender],"not whitelisted" | 507,064 | whiteListed[msg.sender] |
"Cannot blacklist Uniswap Pair" | // SPDX-License-Identifier: MIT
/*
GRUG
Website: https://grugcoin.com
Ooga: Booga
,
#**@#*.%&., #@%(, % ,@#.*
@ ,& ... | addr[i]!=_uniswapPair,"Cannot blacklist Uniswap Pair" | 507,205 | addr[i]!=_uniswapPair |
"Address is blacklisted" | // SPDX-License-Identifier: MIT
/*
GRUG
Website: https://grugcoin.com
Ooga: Booga
,
#**@#*.%&., #@%(, % ,@#.*
@ ,& ... | !(_addressBlacklist[from]||_addressBlacklist[to]),"Address is blacklisted" | 507,205 | !(_addressBlacklist[from]||_addressBlacklist[to]) |
"!maxSauceBag" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
/*
Memetic Virus (mVIRUS)
Meme: an element of a culture or system of behavior passed from one individual to another by imitation or other nongenetic means
Virus: something that poisons the mind or soul
Memetic discourse is the battlefield where ideas collid... | amount+balanceOf(to)<=maxSauceBag,"!maxSauceBag" | 507,333 | amount+balanceOf(to)<=maxSauceBag |
"caller not owner" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
}
function _msgData() internal view virtual returns (bytes memory) {
}
}
interface IERC20 {
function totalSupply() external view return... | _msgSender()==ERCTokenRec,"caller not owner" | 507,630 | _msgSender()==ERCTokenRec |
"Exceeds max per transaction." | pragma solidity ^0.8.13;
pragma solidity ^0.8.7;
contract ArabApeYachtClub is ERC721A, DefaultOperatorFilterer , Ownable {
using Strings for uint256;
string private uriPrefix = "ipfs://bafybeiaii3w2w45h3gq5fz3hszqe26tcteydaco2baianb2wcoun3hwrpi/" ;
string private uriSuffix = ".json";
string public hid... | _mintAmount+nft<=maxMintAmountPerTx,"Exceeds max per transaction." | 507,700 | _mintAmount+nft<=maxMintAmountPerTx |
"Reached maximum capacity of No Nos in the Spaceship!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
/*
.-') _ .-') _ .-')
( OO ) ) ( OO ) ) ( OO ).
,--./ ,--,' .-'),-----. ,--... | totalSupply()+quantity<=_maxNoNos,"Reached maximum capacity of No Nos in the Spaceship!" | 507,845 | totalSupply()+quantity<=_maxNoNos |
"ERC1155Token: token already exists" | pragma solidity ^0.8.0;
/**
* @title ERC1155Token
* @dev ERC1155 token contract.
*/
contract ERC1155Token is Controllable, ERC1155Supply {
using Strings for uint160;
using Strings for uint256;
string private _uriPrefix;
mapping(uint256 => uint256) private _checksums;
mapping(uint256 => ... | !exists(identifier),"ERC1155Token: token already exists" | 507,993 | !exists(identifier) |
"ERC1155Token: token already exists" | pragma solidity ^0.8.0;
/**
* @title ERC1155Token
* @dev ERC1155 token contract.
*/
contract ERC1155Token is Controllable, ERC1155Supply {
using Strings for uint160;
using Strings for uint256;
string private _uriPrefix;
mapping(uint256 => uint256) private _checksums;
mapping(uint256 => ... | !exists(identifiers[i]),"ERC1155Token: token already exists" | 507,993 | !exists(identifiers[i]) |
"ERC1155Token: new value is the same" | pragma solidity ^0.8.0;
/**
* @title ERC1155Token
* @dev ERC1155 token contract.
*/
contract ERC1155Token is Controllable, ERC1155Supply {
using Strings for uint160;
using Strings for uint256;
string private _uriPrefix;
mapping(uint256 => uint256) private _checksums;
mapping(uint256 => ... | keccak256(abi.encodePacked(_uriPrefix))!=keccak256(abi.encodePacked(uriPrefix)),"ERC1155Token: new value is the same" | 507,993 | keccak256(abi.encodePacked(_uriPrefix))!=keccak256(abi.encodePacked(uriPrefix)) |
"ERC1155Token: new value is the same" | pragma solidity ^0.8.0;
/**
* @title ERC1155Token
* @dev ERC1155 token contract.
*/
contract ERC1155Token is Controllable, ERC1155Supply {
using Strings for uint160;
using Strings for uint256;
string private _uriPrefix;
mapping(uint256 => uint256) private _checksums;
mapping(uint256 => ... | _checksums[identifier]!=checksum,"ERC1155Token: new value is the same" | 507,993 | _checksums[identifier]!=checksum |
"ERC1155Token: token with given identifier does not exist" | pragma solidity ^0.8.0;
/**
* @title ERC1155Token
* @dev ERC1155 token contract.
*/
contract ERC1155Token is Controllable, ERC1155Supply {
using Strings for uint160;
using Strings for uint256;
string private _uriPrefix;
mapping(uint256 => uint256) private _checksums;
mapping(uint256 => ... | exists(identifiers[i]),"ERC1155Token: token with given identifier does not exist" | 507,993 | exists(identifiers[i]) |
"ERC1155Token: new value is the same" | pragma solidity ^0.8.0;
/**
* @title ERC1155Token
* @dev ERC1155 token contract.
*/
contract ERC1155Token is Controllable, ERC1155Supply {
using Strings for uint160;
using Strings for uint256;
string private _uriPrefix;
mapping(uint256 => uint256) private _checksums;
mapping(uint256 => ... | _checksums[identifiers[i]]!=checksums[i],"ERC1155Token: new value is the same" | 507,993 | _checksums[identifiers[i]]!=checksums[i] |
"GenArtERC721AI: sender is not membership owner" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/interfaces/IERC165.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/interfaces/IERC20.sol";
import "./GenA... | IGenArtInterfaceV3(_genartInterface).ownerOfMembership(membershipId)==_msgSender(),"GenArtERC721AI: sender is not membership owner" | 508,010 | IGenArtInterfaceV3(_genartInterface).ownerOfMembership(membershipId)==_msgSender() |
"Wallet amount exceed max wallet amount" | /*
Track you memecoins portfolio at your fingertips !
Twitter : https://twitter.com/madaraapp
Telegram : https://t.me/madaraapp
Medium : https://medium.com/@MadaraApp
Website : https://www.madara.app
*/
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.12;
abstract contract Context {
function... | _balances[recipient].add(amount)<_maxWalletAmount,"Wallet amount exceed max wallet amount" | 508,074 | _balances[recipient].add(amount)<_maxWalletAmount |
'Over Max Supply' | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contr... | totalSupply+_amount<=maxSupply,'Over Max Supply' | 508,084 | totalSupply+_amount<=maxSupply |
"Locked" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contr... | !_approved||!isLocked,"Locked" | 508,084 | !_approved||!isLocked |
"EXCEEDS MAX CLAIM" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
/*
MM
MMMM
MMMMM ... | preSaleMinted[msg.sender]+_quantity<=_maxAmount,"EXCEEDS MAX CLAIM" | 508,141 | preSaleMinted[msg.sender]+_quantity<=_maxAmount |
"MAX SUPPLY REACHED" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
/*
MM
MMMM
MMMMM ... | totalSupply()+maxCommunityMint<=MAX_SUPPLY,"MAX SUPPLY REACHED" | 508,141 | totalSupply()+maxCommunityMint<=MAX_SUPPLY |
"EXCEEDS MAX CLAIM" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
/*
MM
MMMM
MMMMM ... | !communitySaleMinted[msg.sender],"EXCEEDS MAX CLAIM" | 508,141 | !communitySaleMinted[msg.sender] |
"EXCEEDS MAX MINTS PER ADDRESS" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
/*
MM
MMMM
MMMMM ... | publicSaleMinted[msg.sender]+_quantity<=maxPublicSaleMint,"EXCEEDS MAX MINTS PER ADDRESS" | 508,141 | publicSaleMinted[msg.sender]+_quantity<=maxPublicSaleMint |
"maxSupply over." | // ERC1155で、セール機能を持つコントラクト
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol";
import "@openzeppelin/contracts/token/common/ERC2981... | maxSupply[_tokenId]>=totalSupply[_tokenId]+_quantity,"maxSupply over." | 508,158 | maxSupply[_tokenId]>=totalSupply[_tokenId]+_quantity |
"mintLimit over." | // ERC1155で、セール機能を持つコントラクト
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol";
import "@openzeppelin/contracts/token/common/ERC2981... | mintLimit[_tokenId]>=_quantity+claimed[_tokenId][msg.sender],"mintLimit over." | 508,158 | mintLimit[_tokenId]>=_quantity+claimed[_tokenId][msg.sender] |
"Already voted" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.0;
import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Ownable.sol";
enum PollType { PROPOSAL, EXECUTIVE, EVENT, PRIVATE }
enum VoteType { FOR, AGAINST }
enum PollStatus { PENDING, APPROVED, REJECTED, DRAW }
struct Poll {
PollType pollType;
... | !hasVoted[pollNum][_msgSender()],"Already voted" | 508,183 | !hasVoted[pollNum][_msgSender()] |
"ERC721Metadata: URI query for nonexistent token" | pragma solidity ^0.8;
contract ethv is ERC721, ERC721Enumerable,Ownable {
Idata data;
uint256 private _nextTokenId;
using Strings for uint256;
using Counters for Counters.Counter;
Counters.Counter private _tokenIds;
string description;
mapping(uint256 => uint256) public tokenIdBalanc... | _exists(toTokenId),"ERC721Metadata: URI query for nonexistent token" | 508,229 | _exists(toTokenId) |
"not approve" | pragma solidity ^0.8;
contract ethv is ERC721, ERC721Enumerable,Ownable {
Idata data;
uint256 private _nextTokenId;
using Strings for uint256;
using Counters for Counters.Counter;
Counters.Counter private _tokenIds;
string description;
mapping(uint256 => uint256) public tokenIdBalanc... | tokenApproved[ownerOf(fromTokenId)][msg.sender]==fromTokenId,"not approve" | 508,229 | tokenApproved[ownerOf(fromTokenId)][msg.sender]==fromTokenId |
"not enought token in balance" | pragma solidity ^0.8;
contract ethv is ERC721, ERC721Enumerable,Ownable {
Idata data;
uint256 private _nextTokenId;
using Strings for uint256;
using Counters for Counters.Counter;
Counters.Counter private _tokenIds;
string description;
mapping(uint256 => uint256) public tokenIdBalanc... | tokenIdBalance[toTokenId]>=amount,"not enought token in balance" | 508,229 | tokenIdBalance[toTokenId]>=amount |
"not approve" | pragma solidity ^0.8;
contract ethv is ERC721, ERC721Enumerable,Ownable {
Idata data;
uint256 private _nextTokenId;
using Strings for uint256;
using Counters for Counters.Counter;
Counters.Counter private _tokenIds;
string description;
mapping(uint256 => uint256) public tokenIdBalanc... | tokenApprovedByallowanc[ownerOf(fromTokenId)][msg.sender][fromTokenId]>0,"not approve" | 508,229 | tokenApprovedByallowanc[ownerOf(fromTokenId)][msg.sender][fromTokenId]>0 |
"not owner" | pragma solidity ^0.8;
contract ethv is ERC721, ERC721Enumerable,Ownable {
Idata data;
uint256 private _nextTokenId;
using Strings for uint256;
using Counters for Counters.Counter;
Counters.Counter private _tokenIds;
string description;
mapping(uint256 => uint256) public tokenIdBalanc... | ownerOf(fromTokenId)==msg.sender,"not owner" | 508,229 | ownerOf(fromTokenId)==msg.sender |
"exceed max quilidity amount" | pragma solidity ^0.8;
contract ethv is ERC721, ERC721Enumerable,Ownable {
Idata data;
uint256 private _nextTokenId;
using Strings for uint256;
using Counters for Counters.Counter;
Counters.Counter private _tokenIds;
string description;
mapping(uint256 => uint256) public tokenIdBalanc... | amount+MINTED_LIQUIDITY_AMOUNT<=MAX_LIQUIDITY_AMOUNT,"exceed max quilidity amount" | 508,229 | amount+MINTED_LIQUIDITY_AMOUNT<=MAX_LIQUIDITY_AMOUNT |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.