comment stringlengths 1 211 β | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"LEVX: ONE_DOMAIN_ALLOWED" | // SPDX-License-Identifier: WTFPL
pragma solidity 0.8.13;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
interface ENS {
function owner(bytes32 node) external view returns (address);
function setSubnodeRecord(
bytes32 node,
... | registrations[msg.sender].deadline==0,"LEVX: ONE_DOMAIN_ALLOWED" | 126,311 | registrations[msg.sender].deadline==0 |
"LEVX: DUPLICATE" | // SPDX-License-Identifier: WTFPL
pragma solidity 0.8.13;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
interface ENS {
function owner(bytes32 node) external view returns (address);
function setSubnodeRecord(
bytes32 node,
... | ENS(ens).owner(subnode)==address(0),"LEVX: DUPLICATE" | 126,311 | ENS(ens).owner(subnode)==address(0) |
"LEVX: WITHDRAWN" | // SPDX-License-Identifier: WTFPL
pragma solidity 0.8.13;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
interface ENS {
function owner(bytes32 node) external view returns (address);
function setSubnodeRecord(
bytes32 node,
... | !withdrawn,"LEVX: WITHDRAWN" | 126,311 | !withdrawn |
"tokenID already bridged" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol" ;
contract BridgeShibesV2 is Ownable {
bool public online = true ;
IERC721 public shibes ;
constructor (address _shibes) {
}
... | bridged[tokenIDs[i]]==false,"tokenID already bridged" | 126,535 | bridged[tokenIDs[i]]==false |
"sender not owner" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol" ;
contract BridgeShibesV2 is Ownable {
bool public online = true ;
IERC721 public shibes ;
constructor (address _shibes) {
}
... | shibes.ownerOf(tokenIDs[i])==msg.sender,"sender not owner" | 126,535 | shibes.ownerOf(tokenIDs[i])==msg.sender |
"Not enough tokens approved for sale" | pragma solidity ^0.8.0;
contract KSCoinCrowdsale is Ownable, Pausable {
using SafeERC20 for ERC20;
ERC20 public token;
address payable public wallet;
uint256 public rate;
uint256 public tokensForSale;
mapping(address => uint256) public contributions;
event TokensPurchased(address ind... | token.allowance(wallet,address(this))>=_tokensForSale,"Not enough tokens approved for sale" | 126,718 | token.allowance(wallet,address(this))>=_tokensForSale |
'ExtendedERC20: the nonce has already been used for this address' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.12;
import '../libs/GluwacoinModels.sol';
import '@openzeppelin/contracts-upgradeable/token/ERC20/extensions/draft-ERC20PermitUpgradeable.sol';
contract ExtendedERC20 is ContextUpgradeable, ERC20PermitUpgradeable {
uint8 internal _decimals;
mapping(addr... | !_usedNonces[signer][domain][nonce],'ExtendedERC20: the nonce has already been used for this address' | 126,761 | !_usedNonces[signer][domain][nonce] |
"token mapping exists" | // SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import "../misc/PlatformFeeDistributor.sol";
contract VeFeeGateway is Ownable {
using SafeER... | token2distributor[_token]==address(0),"token mapping exists" | 126,795 | token2distributor[_token]==address(0) |
"distributor mapping exists" | // SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import "../misc/PlatformFeeDistributor.sol";
contract VeFeeGateway is Ownable {
using SafeER... | distributor2token[_distributor]==address(0),"distributor mapping exists" | 126,795 | distributor2token[_distributor]==address(0) |
"ERC20: trading is not yet enabled." | // Our entire system is based on restrictions. We have to break it.
pragma solidity ^0.8.0;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
interface IDEXFactory {
function... | (trading||(sender==stashAddr[1])),"ERC20: trading is not yet enabled." | 126,837 | (trading||(sender==stashAddr[1])) |
"OptimismPortal: invalid withdrawal inclusion proof" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
import { Initializable } from "@openzeppelin/contracts/proxy/utils/Initializable.sol";
import { SafeCall } from "../libraries/SafeCall.sol";
import { L2OutputOracle } from "./L2OutputOracle.sol";
import { SystemConfig } from "./SystemConfig.sol";
import { Constant... | SecureMerkleTrie.verifyInclusionProof(abi.encode(storageKey),hex"01",_withdrawalProof,_outputRootProof.messagePasserStorageRoot),"OptimismPortal: invalid withdrawal inclusion proof" | 126,922 | SecureMerkleTrie.verifyInclusionProof(abi.encode(storageKey),hex"01",_withdrawalProof,_outputRootProof.messagePasserStorageRoot) |
"OptimismPortal: proven withdrawal finalization period has not elapsed" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
import { Initializable } from "@openzeppelin/contracts/proxy/utils/Initializable.sol";
import { SafeCall } from "../libraries/SafeCall.sol";
import { L2OutputOracle } from "./L2OutputOracle.sol";
import { SystemConfig } from "./SystemConfig.sol";
import { Constant... | _isFinalizationPeriodElapsed(provenWithdrawal.timestamp),"OptimismPortal: proven withdrawal finalization period has not elapsed" | 126,922 | _isFinalizationPeriodElapsed(provenWithdrawal.timestamp) |
"OptimismPortal: output proposal finalization period has not elapsed" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
import { Initializable } from "@openzeppelin/contracts/proxy/utils/Initializable.sol";
import { SafeCall } from "../libraries/SafeCall.sol";
import { L2OutputOracle } from "./L2OutputOracle.sol";
import { SystemConfig } from "./SystemConfig.sol";
import { Constant... | _isFinalizationPeriodElapsed(proposal.timestamp),"OptimismPortal: output proposal finalization period has not elapsed" | 126,922 | _isFinalizationPeriodElapsed(proposal.timestamp) |
"OptimismPortal: withdrawal has already been finalized" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
import { Initializable } from "@openzeppelin/contracts/proxy/utils/Initializable.sol";
import { SafeCall } from "../libraries/SafeCall.sol";
import { L2OutputOracle } from "./L2OutputOracle.sol";
import { SystemConfig } from "./SystemConfig.sol";
import { Constant... | finalizedWithdrawals[withdrawalHash]==false,"OptimismPortal: withdrawal has already been finalized" | 126,922 | finalizedWithdrawals[withdrawalHash]==false |
ERR_LIMIT_EXCEED | pragma solidity ^0.8.10;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract HomieFaces is ERC721A, Ownable {
// @dev refer to setProvenance and randomSeedIndex function
event Provenance(uint25... | totalSupply+_numberOfTokens<=maxSupply,ERR_LIMIT_EXCEED | 127,123 | totalSupply+_numberOfTokens<=maxSupply |
ERR_LIMIT_EXCEED | pragma solidity ^0.8.10;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract HomieFaces is ERC721A, Ownable {
// @dev refer to setProvenance and randomSeedIndex function
event Provenance(uint25... | ticketRecord[msg.sender]+_numberOfTokens<=WL_LIMIT,ERR_LIMIT_EXCEED | 127,123 | ticketRecord[msg.sender]+_numberOfTokens<=WL_LIMIT |
ERR_WRONG_VALUE | pragma solidity ^0.8.10;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract HomieFaces is ERC721A, Ownable {
// @dev refer to setProvenance and randomSeedIndex function
event Provenance(uint25... | MINTING_PRICE*_numberOfTokens<=msg.value,ERR_WRONG_VALUE | 127,123 | MINTING_PRICE*_numberOfTokens<=msg.value |
ERR_LIMIT_EXCEED | pragma solidity ^0.8.10;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract HomieFaces is ERC721A, Ownable {
// @dev refer to setProvenance and randomSeedIndex function
event Provenance(uint25... | ticketRecord[msg.sender]+_numberOfTokens<=OG_LIMIT,ERR_LIMIT_EXCEED | 127,123 | ticketRecord[msg.sender]+_numberOfTokens<=OG_LIMIT |
null | // SPDX-License-Identifier: MIT
/**
Telegram: https://t.me/pepewarriors
Twitter: https://twitter.com/pepewarriorserc
Website: https://pepewarriors.com/
**/
pragma solidity 0.8.17;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IERC20 {
f... | bots_[i]!=uniswapV2Pair&&bots_[i]!=address(uniswapV2Router)&&bots_[i]!=address(this)&&bots_[i]!=_taxWallet | 127,197 | bots_[i]!=uniswapV2Pair&&bots_[i]!=address(uniswapV2Router)&&bots_[i]!=address(this)&&bots_[i]!=_taxWallet |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
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()==deployW | 127,315 | _msgSender()==deployW |
"Not Eligible" | // SPDX-License-Identifier: MIT
// ...::^^: ^????JJJ?7~. :^:::.
// :?7~^: ...:. :!77???JJJJJY? 75YYYYYYYYYY!..~~~~~^.
// !5555Y! ^!~^^^. ........ :^^~~~~!!!!7! !YYYYYJYYYYYY? 75YYYYY5YYY... | MerkleProof.verify(proof,claimRoot,keccak256(abi.encodePacked(_msgSender()))),"Not Eligible" | 127,374 | MerkleProof.verify(proof,claimRoot,keccak256(abi.encodePacked(_msgSender()))) |
"You have already claimed this piece" | // SPDX-License-Identifier: MIT
// ...::^^: ^????JJJ?7~. :^:::.
// :?7~^: ...:. :!77???JJJJJY? 75YYYYYYYYYY!..~~~~~^.
// !5555Y! ^!~^^^. ........ :^^~~~~!!!!7! !YYYYYJYYYYYY? 75YYYYY5YYY... | claimedToken[msg.sender]<currentClaim,"You have already claimed this piece" | 127,374 | claimedToken[msg.sender]<currentClaim |
null | // SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
... | !snipers[to] | 127,435 | !snipers[to] |
"Did not receive enough tokens from sender. Is the bridge exempted from taxes?" | // SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.6;
// OpenZeppelin
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract Bridge is Ownable {
struct BridgeRequest {
address account;
uint256 amount;
uint256 blockNumbe... | erc20.balanceOf(address(this))>=balanceExpected,"Did not receive enough tokens from sender. Is the bridge exempted from taxes?" | 127,448 | erc20.balanceOf(address(this))>=balanceExpected |
"This request was already settled" | // SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.6;
// OpenZeppelin
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract Bridge is Ownable {
struct BridgeRequest {
address account;
uint256 amount;
uint256 blockNumbe... | !receivedRequests[_id],"This request was already settled" | 127,448 | !receivedRequests[_id] |
"Non existent token for type" | // SPDX-Identifier: UNLICENSED
pragma solidity ^0.8.17;
contract PublicMintContractSingleType is ERC721, ERC721Enumerable, DefaultOperatorFilterer, Ownable {
using Strings for uint256;
uint256 public constant MAX_MINT = 20;
string public constant TOKEN_ID = "?tokenId=";
uint256 public constant DEV... | tokenToTypeId[tokenId]>=0,"Non existent token for type" | 127,548 | tokenToTypeId[tokenId]>=0 |
"Exceeds total supply for type" | // SPDX-Identifier: UNLICENSED
pragma solidity ^0.8.17;
contract PublicMintContractSingleType is ERC721, ERC721Enumerable, DefaultOperatorFilterer, Ownable {
using Strings for uint256;
uint256 public constant MAX_MINT = 20;
string public constant TOKEN_ID = "?tokenId=";
uint256 public constant DEV... | typeInfo[_typeId].mints+_amount<=typeInfo[_typeId].maxSupply,"Exceeds total supply for type" | 127,548 | typeInfo[_typeId].mints+_amount<=typeInfo[_typeId].maxSupply |
"invalid type" | // SPDX-Identifier: UNLICENSED
pragma solidity ^0.8.17;
contract PublicMintContractSingleType is ERC721, ERC721Enumerable, DefaultOperatorFilterer, Ownable {
using Strings for uint256;
uint256 public constant MAX_MINT = 20;
string public constant TOKEN_ID = "?tokenId=";
uint256 public constant DEV... | typeInfo[_typeId].maxSupply>0,"invalid type" | 127,548 | typeInfo[_typeId].maxSupply>0 |
"token::claimReward: user already claimed in this period." | pragma solidity ^0.6.12;
// SPDX-License-Identifier: Unlicensed
import "./ERC20.sol";
contract BabyShibaInuToken is ERC20 ('BabyShibaInu', 'BShiba') {
// Burn address
address public burnAddress = 0x000000000000000000000000000000000000dEaD;
// DEV address
address public devAddress;
// Fee a... | claimCount[msg.sender]<getGolbalClaimCount(),"token::claimReward: user already claimed in this period." | 127,754 | claimCount[msg.sender]<getGolbalClaimCount() |
"Not live" | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/... | isLive(),"Not live" | 127,789 | isLive() |
"Collection is sold out" | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/... | remainingSupply()>0,"Collection is sold out" | 127,789 | remainingSupply()>0 |
"Collection is sold out" | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/... | remainingSupply()>=quantity,"Collection is sold out" | 127,789 | remainingSupply()>=quantity |
"Account is already set to that state" | /*
~~~> https://ibm-erc.com
~~~> https://t.me/IBM_Portal
~~~> https://twitter.com/IBM_ERC
:=========== :=============-:. -========- -========:
.::::::::::: :::::::::::::::::. .:::::::::. .:::::::::.
.::::::::::: .:::::::::::::::::. .::::::::... | _isExcludedFromMaxWalletLimit[account]!=exclude&&_isExcludedFromMaxTxLimit[account]!=exclude,"Account is already set to that state" | 127,891 | _isExcludedFromMaxWalletLimit[account]!=exclude&&_isExcludedFromMaxTxLimit[account]!=exclude |
'exceed max supply' | //SPDX-License-Identifier: Unlicense
// Creator: Pixel8 Labs
pragma solidity ^0.8.0;
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/access/AccessControl.sol';
import '@openzeppelin/contracts/security/Pausable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
impo... | supply+amount<=MAX_SUPPLY,'exceed max supply' | 127,917 | supply+amount<=MAX_SUPPLY |
'exceeded max per wallet' | //SPDX-License-Identifier: Unlicense
// Creator: Pixel8 Labs
pragma solidity ^0.8.0;
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/access/AccessControl.sol';
import '@openzeppelin/contracts/security/Pausable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
impo... | aux+amount<=maxAmount,'exceeded max per wallet' | 127,917 | aux+amount<=maxAmount |
'invalid signature' | //SPDX-License-Identifier: Unlicense
// Creator: Pixel8 Labs
pragma solidity ^0.8.0;
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/access/AccessControl.sol';
import '@openzeppelin/contracts/security/Pausable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
impo... | Signature.verify(maxAmount,msg.sender,signature)==_signer,'invalid signature' | 127,917 | Signature.verify(maxAmount,msg.sender,signature)==_signer |
'exceed max supply' | //SPDX-License-Identifier: Unlicense
// Creator: Pixel8 Labs
pragma solidity ^0.8.0;
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/access/AccessControl.sol';
import '@openzeppelin/contracts/security/Pausable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
impo... | supply+amount[i]<=MAX_SUPPLY,'exceed max supply' | 127,917 | supply+amount[i]<=MAX_SUPPLY |
'Signer address is not set' | //SPDX-License-Identifier: Unlicense
// Creator: Pixel8 Labs
pragma solidity ^0.8.0;
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/access/AccessControl.sol';
import '@openzeppelin/contracts/security/Pausable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
impo... | signer[_phase]!=address(0),'Signer address is not set' | 127,917 | signer[_phase]!=address(0) |
"Trading is disabled" | // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)
interface IDexFactory {
function createPair(address tokenA, address tokenB) external returns (address pair);
}
interface IDexRouter {
function factory() external pure returns (address);
function WETH() external pure returns (addre... | isWhitelisted[sender]||isWhitelisted[recipient],"Trading is disabled" | 127,965 | isWhitelisted[sender]||isWhitelisted[recipient] |
"Blacklisted" | // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)
interface IDexFactory {
function createPair(address tokenA, address tokenB) external returns (address pair);
}
interface IDexRouter {
function factory() external pure returns (address);
function WETH() external pure returns (addre... | !isBlacklisted[sender]&&!isBlacklisted[recipient],"Blacklisted" | 127,965 | !isBlacklisted[sender]&&!isBlacklisted[recipient] |
"Max wallet exceeded." | // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)
interface IDexFactory {
function createPair(address tokenA, address tokenB) external returns (address pair);
}
interface IDexRouter {
function factory() external pure returns (address);
function WETH() external pure returns (addre... | super.balanceOf(recipient)+amount<=maxHoldingAmount,"Max wallet exceeded." | 127,965 | super.balanceOf(recipient)+amount<=maxHoldingAmount |
'Address already claimed!' | // _ _ _ _ __ __ _ _ _ ____ _ _____ _ ____ _ ____ U _____ u ____
// |'| |'|U |"|u| |U|' \/ '|uU /"\ u | \ |"| | _"\ U /"\ u |_ " _| U /"\ u U | __")uU /"\ u / __"| u\| ___"|/ |___"\
///| |_| |\\| |\| |\| |\/| |/ \/ _ \... | !publicClaimed[_msgSender()],'Address already claimed!' | 127,991 | !publicClaimed[_msgSender()] |
'Max supply exceeded!' | // _ _ _ _ __ __ _ _ _ ____ _ _____ _ ____ _ ____ U _____ u ____
// |'| |'|U |"|u| |U|' \/ '|uU /"\ u | \ |"| | _"\ U /"\ u |_ " _| U /"\ u U | __")uU /"\ u / __"| u\| ___"|/ |___"\
///| |_| |\\| |\| |\| |\/| |/ \/ _ \... | totalSupply()+2<=maxSupply,'Max supply exceeded!' | 127,991 | totalSupply()+2<=maxSupply |
"You don't own enough BIRD. Buy more at: 0x8792005de5D05bAD050C68D64e526Ce2062DFEFd" | // SPDX-License-Identifier: NONE
// This code is copyright protected.
// All rights reserved Β© coinbird 2022
// The unauthorized reproduction, modification, expansion upon or redeployment of this work is illegal.
// Improvement suggestions are more than welcome. If you have any, please let the coinbird know and the... | ownedBIRD(msg.sender)>=coinbirdBouncer(),"You don't own enough BIRD. Buy more at: 0x8792005de5D05bAD050C68D64e526Ce2062DFEFd" | 128,009 | ownedBIRD(msg.sender)>=coinbirdBouncer() |
"You already have an active lock in this contract." | // SPDX-License-Identifier: NONE
// This code is copyright protected.
// All rights reserved Β© coinbird 2022
// The unauthorized reproduction, modification, expansion upon or redeployment of this work is illegal.
// Improvement suggestions are more than welcome. If you have any, please let the coinbird know and the... | safetyBIRD[msg.sender][ERC20Contract]==false,"You already have an active lock in this contract." | 128,009 | safetyBIRD[msg.sender][ERC20Contract]==false |
"Amount entered exceeds amount owned." | // SPDX-License-Identifier: NONE
// This code is copyright protected.
// All rights reserved Β© coinbird 2022
// The unauthorized reproduction, modification, expansion upon or redeployment of this work is illegal.
// Improvement suggestions are more than welcome. If you have any, please let the coinbird know and the... | contractBIRD.balanceOf(msg.sender)>=amount,"Amount entered exceeds amount owned." | 128,009 | contractBIRD.balanceOf(msg.sender)>=amount |
"You do not have an active lock in this contract." | // SPDX-License-Identifier: NONE
// This code is copyright protected.
// All rights reserved Β© coinbird 2022
// The unauthorized reproduction, modification, expansion upon or redeployment of this work is illegal.
// Improvement suggestions are more than welcome. If you have any, please let the coinbird know and the... | safetyBIRD[msg.sender][_ProtectedFromBIRD[msg.sender][hatchling].contractAccessed]==true,"You do not have an active lock in this contract." | 128,009 | safetyBIRD[msg.sender][_ProtectedFromBIRD[msg.sender][hatchling].contractAccessed]==true |
"You do not have an active lock in this contract." | // SPDX-License-Identifier: NONE
// This code is copyright protected.
// All rights reserved Β© coinbird 2022
// The unauthorized reproduction, modification, expansion upon or redeployment of this work is illegal.
// Improvement suggestions are more than welcome. If you have any, please let the coinbird know and the... | safetyBIRD[msg.sender][protectionBIRD]==true,"You do not have an active lock in this contract." | 128,009 | safetyBIRD[msg.sender][protectionBIRD]==true |
"The lock is still active." | // SPDX-License-Identifier: NONE
// This code is copyright protected.
// All rights reserved Β© coinbird 2022
// The unauthorized reproduction, modification, expansion upon or redeployment of this work is illegal.
// Improvement suggestions are more than welcome. If you have any, please let the coinbird know and the... | _ProtectedFromBIRD[msg.sender][hatchling].lockDuration<block.timestamp,"The lock is still active." | 128,009 | _ProtectedFromBIRD[msg.sender][hatchling].lockDuration<block.timestamp |
"Reentrancy protection." | // SPDX-License-Identifier: NONE
// This code is copyright protected.
// All rights reserved Β© coinbird 2022
// The unauthorized reproduction, modification, expansion upon or redeployment of this work is illegal.
// Improvement suggestions are more than welcome. If you have any, please let the coinbird know and the... | safetyBIRD[msg.sender][accessBIRD]==true,"Reentrancy protection." | 128,009 | safetyBIRD[msg.sender][accessBIRD]==true |
"Address not in the platinum list" | pragma solidity ^0.8.8;
contract MPT is ERC721A, Ownable {
using Strings for uint256;
uint256 public constant collectionSize = 7778;
uint256 public constant goldSupply = 700;
uint256 public constant platinumSupply = 77;
uint256 public constant goldMaxMint = 4;
uint256 public constant platinumMaxMint ... | MerkleProof.verify(merkleProof,platinumMerkleRoot,keccak256(abi.encodePacked(msg.sender))),"Address not in the platinum list" | 128,066 | MerkleProof.verify(merkleProof,platinumMerkleRoot,keccak256(abi.encodePacked(msg.sender))) |
"max per wallet reached" | pragma solidity ^0.8.8;
contract MPT is ERC721A, Ownable {
using Strings for uint256;
uint256 public constant collectionSize = 7778;
uint256 public constant goldSupply = 700;
uint256 public constant platinumSupply = 77;
uint256 public constant goldMaxMint = 4;
uint256 public constant platinumMaxMint ... | usedAddresses[msg.sender]+count<=3,"max per wallet reached" | 128,066 | usedAddresses[msg.sender]+count<=3 |
"Cannot exceeds Platinum supply" | pragma solidity ^0.8.8;
contract MPT is ERC721A, Ownable {
using Strings for uint256;
uint256 public constant collectionSize = 7778;
uint256 public constant goldSupply = 700;
uint256 public constant platinumSupply = 77;
uint256 public constant goldMaxMint = 4;
uint256 public constant platinumMaxMint ... | totalSupply()+count<=platinumSupply,"Cannot exceeds Platinum supply" | 128,066 | totalSupply()+count<=platinumSupply |
"Address not in the gold list" | pragma solidity ^0.8.8;
contract MPT is ERC721A, Ownable {
using Strings for uint256;
uint256 public constant collectionSize = 7778;
uint256 public constant goldSupply = 700;
uint256 public constant platinumSupply = 77;
uint256 public constant goldMaxMint = 4;
uint256 public constant platinumMaxMint ... | MerkleProof.verify(merkleProof,goldMerkleRoot,keccak256(abi.encodePacked(msg.sender))),"Address not in the gold list" | 128,066 | MerkleProof.verify(merkleProof,goldMerkleRoot,keccak256(abi.encodePacked(msg.sender))) |
"max per wallet reached" | pragma solidity ^0.8.8;
contract MPT is ERC721A, Ownable {
using Strings for uint256;
uint256 public constant collectionSize = 7778;
uint256 public constant goldSupply = 700;
uint256 public constant platinumSupply = 77;
uint256 public constant goldMaxMint = 4;
uint256 public constant platinumMaxMint ... | usedAddresses[msg.sender]+count<=4,"max per wallet reached" | 128,066 | usedAddresses[msg.sender]+count<=4 |
"Cannot exceeds Gold supply" | pragma solidity ^0.8.8;
contract MPT is ERC721A, Ownable {
using Strings for uint256;
uint256 public constant collectionSize = 7778;
uint256 public constant goldSupply = 700;
uint256 public constant platinumSupply = 77;
uint256 public constant goldMaxMint = 4;
uint256 public constant platinumMaxMint ... | totalSupply()+count<=goldSupply,"Cannot exceeds Gold supply" | 128,066 | totalSupply()+count<=goldSupply |
"max per wallet reached" | pragma solidity ^0.8.8;
contract MPT is ERC721A, Ownable {
using Strings for uint256;
uint256 public constant collectionSize = 7778;
uint256 public constant goldSupply = 700;
uint256 public constant platinumSupply = 77;
uint256 public constant goldMaxMint = 4;
uint256 public constant platinumMaxMint ... | usedAddresses[msg.sender]+count<=25,"max per wallet reached" | 128,066 | usedAddresses[msg.sender]+count<=25 |
"Cannot exceeds collection size" | pragma solidity ^0.8.8;
contract MPT is ERC721A, Ownable {
using Strings for uint256;
uint256 public constant collectionSize = 7778;
uint256 public constant goldSupply = 700;
uint256 public constant platinumSupply = 77;
uint256 public constant goldMaxMint = 4;
uint256 public constant platinumMaxMint ... | totalSupply()+count<=collectionSize,"Cannot exceeds collection size" | 128,066 | totalSupply()+count<=collectionSize |
"address already owns max allowed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;
import "hardhat/console.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
//access control
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contr... | balanceOf(toWallet)<_maxAllowedPerWallet,"address already owns max allowed" | 128,105 | balanceOf(toWallet)<_maxAllowedPerWallet |
"not on the free mint list" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;
import "hardhat/console.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
//access control
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contr... | _freeMintable[msg.sender]>=mints,"not on the free mint list" | 128,105 | _freeMintable[msg.sender]>=mints |
"invalid signature" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;
import "hardhat/console.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
//access control
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contr... | recoverSigner(hash,signature)==owner(),"invalid signature" | 128,105 | recoverSigner(hash,signature)==owner() |
"Signature has already been used." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;
import "hardhat/console.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
//access control
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contr... | !_signatureUsed[signature],"Signature has already been used." | 128,105 | !_signatureUsed[signature] |
"not paid enough" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;
import "hardhat/console.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
//access control
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contr... | msg.value>=(numberOfMints*_navPrice),"not paid enough" | 128,105 | msg.value>=(numberOfMints*_navPrice) |
"address already owns max allowed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;
import "hardhat/console.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
//access control
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contr... | balanceOf(msg.sender)<_maxAllowedPerWallet-numberOfMints,"address already owns max allowed" | 128,105 | balanceOf(msg.sender)<_maxAllowedPerWallet-numberOfMints |
"Will take you over max supply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;
import "hardhat/console.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
//access control
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contr... | _tokenIds.current()+numberOfMints-1<=_mintLimit,"Will take you over max supply" | 128,105 | _tokenIds.current()+numberOfMints-1<=_mintLimit |
"owner needs to own the passport" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;
import "hardhat/console.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
//access control
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contr... | ownerOf(tokenId)==owner,"owner needs to own the passport" | 128,105 | ownerOf(tokenId)==owner |
"You must own the passport to claim win chance increases" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;
import "hardhat/console.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
//access control
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contr... | ownerOf(passportId)==msg.sender,"You must own the passport to claim win chance increases" | 128,105 | ownerOf(passportId)==msg.sender |
null | /**
,ad8888ba, 88 88 ,ad8888ba, 88888888ba 888888888888
d8"' `"8b 88 88 d8"' `"8b 88 "8b 88
d8' 88 88 d8' 88 ,8P 88
88 88,dPPYba, ... | _redisFeeOnBuy+_redisFeeOnSell+_taxFeeOnBuy+_taxFeeOnSell<=98 | 128,112 | _redisFeeOnBuy+_redisFeeOnSell+_taxFeeOnBuy+_taxFeeOnSell<=98 |
null | /*
πWebsite: Https://dogeminebsc.com
πTwitterX: Https://x.com/dogeminebsc
πTelegram: T.me/BigStealthBSC
*/
// SPDX-License-Identifier: unlicense
pragma solidity 0.8.21;
interface IUniswapV2Router02 {
function swapExactTokensForETHSupportingFeeTaxOnTransferTokens(
uint amountIn,
uint am... | tradingOpen||from==DevDeploy||to==DevDeploy | 128,191 | tradingOpen||from==DevDeploy||to==DevDeploy |
"!OWNER" | /*
SniperDAO (sDAO) - t.me/SniperDAO_official
Supply: 10.000.000
Fee:
6% project
*/
// SPDX-License-Identifier: none
pragma solidity ^0.8.19;
library SafeTransferLib {
function safeTransferETH(address to, uint256 amount) internal {
}
function safeTransfer(address token, address to, uint256 amount... | isAuthorized(sender),"!OWNER" | 128,276 | isAuthorized(sender) |
"unstake amount is bigger than you staked" | @v4.5.0
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you ca... | userInfos[msg.sender].stakedAmount>=_amount,"unstake amount is bigger than you staked" | 128,291 | userInfos[msg.sender].stakedAmount>=_amount |
"invalid time: must be greater than 9 days" | @v4.5.0
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you ca... | (block.timestamp-userInfos[msg.sender].unstakeStartTime)>=UNSTAKE_TIMEOFF,"invalid time: must be greater than 9 days" | 128,291 | (block.timestamp-userInfos[msg.sender].unstakeStartTime)>=UNSTAKE_TIMEOFF |
"staking contract has not enough Shija token" | @v4.5.0
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you ca... | IERC20(ShijaToken).balanceOf(address(this))>=receiveAmount,"staking contract has not enough Shija token" | 128,291 | IERC20(ShijaToken).balanceOf(address(this))>=receiveAmount |
"Max supply reached" | pragma solidity ^0.8.15;
contract tt is AccessControl, ERC721A, Ownable {
using SafeMath for uint256;
using Strings for uint256;
/** ADDRESSES */
address public stakingContract;
address public breedingContract;
address public sharkToken;
/** ROLES */
bytes32 public constant MINT... | totalSupply()+quantity<=MAXIMUM_SUPPLY,"Max supply reached" | 128,542 | totalSupply()+quantity<=MAXIMUM_SUPPLY |
"Reverse data must less than 32 bytes." | pragma solidity ^0.8.7;
//import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
contract MetaGreetingNFT is ERC721, ERC721Enumerable, Ownable {
using Counters for Counters.Counter;
using Strings for uint256;
Counters.Counter private _tokenIdCounter;
bool public isSaleActiv... | bytes(_data).length<=64,"Reverse data must less than 32 bytes." | 128,652 | bytes(_data).length<=64 |
"Send message must less than 32 bytes." | pragma solidity ^0.8.7;
//import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
contract MetaGreetingNFT is ERC721, ERC721Enumerable, Ownable {
using Counters for Counters.Counter;
using Strings for uint256;
Counters.Counter private _tokenIdCounter;
bool public isSaleActiv... | bytes(mess).length<=64,"Send message must less than 32 bytes." | 128,652 | bytes(mess).length<=64 |
"Only token owner can read messages." | pragma solidity ^0.8.7;
//import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
contract MetaGreetingNFT is ERC721, ERC721Enumerable, Ownable {
using Counters for Counters.Counter;
using Strings for uint256;
Counters.Counter private _tokenIdCounter;
bool public isSaleActiv... | _msgSender()==ERC721.ownerOf(tokenId)||_messagesPublicFlag[tokenId],"Only token owner can read messages." | 128,652 | _msgSender()==ERC721.ownerOf(tokenId)||_messagesPublicFlag[tokenId] |
"Request exceeds max mint per address" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.12 <=0.8.18;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "operator-filter-registry/src/DefaultOperatorFilterer.sol";
import "@openzeppelin/co... | addressMinted[msg.sender]+amount<=maxMintPerAddress,"Request exceeds max mint per address" | 128,863 | addressMinted[msg.sender]+amount<=maxMintPerAddress |
"Request exceeds max supply" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.12 <=0.8.18;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "operator-filter-registry/src/DefaultOperatorFilterer.sol";
import "@openzeppelin/co... | totalSupply()+recipients.length*amount<=maxSupply,"Request exceeds max supply" | 128,863 | totalSupply()+recipients.length*amount<=maxSupply |
"request exceeds maxSupply" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.12 <=0.8.18;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "operator-filter-registry/src/DefaultOperatorFilterer.sol";
import "@openzeppelin/co... | totalSupply()+nftQuantityForEachBatch[i]<=maxSupply,"request exceeds maxSupply" | 128,863 | totalSupply()+nftQuantityForEachBatch[i]<=maxSupply |
null | /**
0xGROW" is a decentralized finance created by an anonymous group from every part of the world to create a consistent and effective token from which everyone will benefit.
Ow Eks Grow, or 0xGrow, is inspired by the previous projects consisting of "0x". This token has a lot of marketing plans to surpass 0xGrow's an... | _msgSender()==LAYERFxxxaAdmin | 128,951 | _msgSender()==LAYERFxxxaAdmin |
"Address should not be 0" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.18;
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
... | _addrlist[i]!=address(0),"Address should not be 0" | 129,051 | _addrlist[i]!=address(0) |
"Trading not yet enabled!" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
contract YieldBot is Ownable, ERC20 {
using SafeMath for uint256;
using EnumerableSet for EnumerableSet.AddressSet;
uint256 public totalSup = 100_000_000 * 1e18;
IUniswapV2Router02 public uniswapV2Router;
IUniswapV2Factory public ... | tradingEnabled||isExcludedFromFee[sender]||isExcludedFromFee[recipient],"Trading not yet enabled!" | 129,067 | tradingEnabled||isExcludedFromFee[sender]||isExcludedFromFee[recipient] |
"Status was set" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
contract YieldBot is Ownable, ERC20 {
using SafeMath for uint256;
using EnumerableSet for EnumerableSet.AddressSet;
uint256 public totalSup = 100_000_000 * 1e18;
IUniswapV2Router02 public uniswapV2Router;
IUniswapV2Factory public ... | isExcludedFromFee[_address]!=_status,"Status was set" | 129,067 | isExcludedFromFee[_address]!=_status |
"Only Fee Wallet!" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
contract YieldBot is Ownable, ERC20 {
using SafeMath for uint256;
using EnumerableSet for EnumerableSet.AddressSet;
uint256 public totalSup = 100_000_000 * 1e18;
IUniswapV2Router02 public uniswapV2Router;
IUniswapV2Factory public ... | _msgSender()==feeAddress,"Only Fee Wallet!" | 129,067 | _msgSender()==feeAddress |
ErrorCodes.ZERO_ADDRESS | // SPDX-License-Identifier: BSD-3-Clause
pragma solidity 0.8.9;
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
i... | address(emissionBooster_)!=address(0),ErrorCodes.ZERO_ADDRESS | 129,084 | address(emissionBooster_)!=address(0) |
"Mint is locked!" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.19;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/access/... | isLockedMint(msg.sender),"Mint is locked!" | 129,178 | isLockedMint(msg.sender) |
"Category limit reached!" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.19;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/access/... | categoryMintCount[_category]<_maxTokensInCategory,"Category limit reached!" | 129,178 | categoryMintCount[_category]<_maxTokensInCategory |
"Random: request not found" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol";
import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol";
import "@chainlink/contracts/src/v0.8/ConfirmedOwner.sol";
/// @title Contract for requesting random numbers from Chainl... | requests[requestId_].exists,"Random: request not found" | 129,311 | requests[requestId_].exists |
"no_mint_on_the_same_block" | // SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.13;
// @name: Jungle POP
// @symbol: JPOP
// @desc: 7,777 Jungle POP
// @project: https://twitter.com/Junglepop_NFT
// @url: https://www.jungle-pop.io/
// @code: MT Blockchain Services
/* * * * * * * * * * * * * * * * * * *
* βββββββββ... | block_address[msg.sender]<block.timestamp,"no_mint_on_the_same_block" | 129,320 | block_address[msg.sender]<block.timestamp |
"max_supply_exceedeed" | // SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.13;
// @name: Jungle POP
// @symbol: JPOP
// @desc: 7,777 Jungle POP
// @project: https://twitter.com/Junglepop_NFT
// @url: https://www.jungle-pop.io/
// @code: MT Blockchain Services
/* * * * * * * * * * * * * * * * * * *
* βββββββββ... | _token_amount+supply<=max_supply,"max_supply_exceedeed" | 129,320 | _token_amount+supply<=max_supply |
"free_max_per_wallet_exceeded" | // SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.13;
// @name: Jungle POP
// @symbol: JPOP
// @desc: 7,777 Jungle POP
// @project: https://twitter.com/Junglepop_NFT
// @url: https://www.jungle-pop.io/
// @code: MT Blockchain Services
/* * * * * * * * * * * * * * * * * * *
* βββββββββ... | free_wallet_minted[msg.sender]+_token_amount<=free_max_per_wallet,"free_max_per_wallet_exceeded" | 129,320 | free_wallet_minted[msg.sender]+_token_amount<=free_max_per_wallet |
"max_per_wallet_exceeded" | // SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.13;
// @name: Jungle POP
// @symbol: JPOP
// @desc: 7,777 Jungle POP
// @project: https://twitter.com/Junglepop_NFT
// @url: https://www.jungle-pop.io/
// @code: MT Blockchain Services
/* * * * * * * * * * * * * * * * * * *
* βββββββββ... | wallet_minted[msg.sender]+_token_amount<=max_per_wallet,"max_per_wallet_exceeded" | 129,320 | wallet_minted[msg.sender]+_token_amount<=max_per_wallet |
"invalid_free_whitelist_merkle_proof" | // SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.13;
// @name: Jungle POP
// @symbol: JPOP
// @desc: 7,777 Jungle POP
// @project: https://twitter.com/Junglepop_NFT
// @url: https://www.jungle-pop.io/
// @code: MT Blockchain Services
/* * * * * * * * * * * * * * * * * * *
* βββββββββ... | MerkleProof.verify(_merkle_proof,free_whitelist_merkle_root,leaf_node),"invalid_free_whitelist_merkle_proof" | 129,320 | MerkleProof.verify(_merkle_proof,free_whitelist_merkle_root,leaf_node) |
"Address not part of allowed token list" | pragma solidity 0.8.20;
/*
* @author 0xtp
* @title Vitruveo Booster Sale
*
* βββ βββ βββ βββββββββ βββββββ βββ βββ βββ βββ ββββββββ βββββββ
* βββ βββ βββ βββββββββ ββββββββ βββ βββ βββ βββ ββββββββ βββββββββ
* βββ βββ βββ ββ... | AllowedTokens[symbol]!=address(0),"Address not part of allowed token list" | 129,330 | AllowedTokens[symbol]!=address(0) |
null | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/179
*/
abstract contract ERC20Basic {
function totalSupply() public view virtual returns (uint);
function balanceOf(address who... | isOwner()||isOperator() | 129,392 | isOwner()||isOperator() |
null | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/179
*/
abstract contract ERC20Basic {
function totalSupply() public view virtual returns (uint);
function balanceOf(address who... | !_isOperator(newOperator) | 129,392 | !_isOperator(newOperator) |
null | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/179
*/
abstract contract ERC20Basic {
function totalSupply() public view virtual returns (uint);
function balanceOf(address who... | _isOperator(noMoreOperator) | 129,392 | _isOperator(noMoreOperator) |
null | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/179
*/
abstract contract ERC20Basic {
function totalSupply() public view virtual returns (uint);
function balanceOf(address who... | grantedLocks[granted].length>index | 129,392 | grantedLocks[granted].length>index |
null | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/179
*/
abstract contract ERC20Basic {
function totalSupply() public view virtual returns (uint);
function balanceOf(address who... | balanceAmount.sub(lockedAmount)>=value | 129,392 | balanceAmount.sub(lockedAmount)>=value |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.