comment stringlengths 1 211 ⌀ | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"Resource already exists" | /*
Copyright 2020 Set Labs Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in wr... | !isResource[_resource],"Resource already exists" | 118,230 | !isResource[_resource] |
"Resource ID already exists" | /*
Copyright 2020 Set Labs Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in wr... | resourceId[_id]==address(0),"Resource ID already exists" | 118,230 | resourceId[_id]==address(0) |
"Fee type already exists on module" | /*
Copyright 2020 Set Labs Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in wr... | fees[_module][_feeType]==0,"Fee type already exists on module" | 118,230 | fees[_module][_feeType]==0 |
"Fee type does not exist on module" | /*
Copyright 2020 Set Labs Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in wr... | fees[_module][_feeType]!=0,"Fee type does not exist on module" | 118,230 | fees[_module][_feeType]!=0 |
'FudFrogForce: Ribbit.. Purchase would exceed max supply' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import 'erc721a/contracts/extensions/ERC721AQueryable.sol';
/*
FUD Frog Force
Fighting the FUD
2022
https://fudfrogs.wtf
*/
contract FudFrogForce is ERC721AQu... | _totalMinted()+_quantity<=TOTAL_MAX_SUPPLY-teamAmount,'FudFrogForce: Ribbit.. Purchase would exceed max supply' | 118,262 | _totalMinted()+_quantity<=TOTAL_MAX_SUPPLY-teamAmount |
"FudFrogForce: Caller's token amount exceeds the limit." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import 'erc721a/contracts/extensions/ERC721AQueryable.sol';
/*
FUD Frog Force
Fighting the FUD
2022
https://fudfrogs.wtf
*/
contract FudFrogForce is ERC721AQu... | balanceOf(msg.sender)<maxPublicMintPerWallet,"FudFrogForce: Caller's token amount exceeds the limit." | 118,262 | balanceOf(msg.sender)<maxPublicMintPerWallet |
'FudFrogForce: Ribbit.. Need send more ETH!' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import 'erc721a/contracts/extensions/ERC721AQueryable.sol';
/*
FUD Frog Force
Fighting the FUD
2022
https://fudfrogs.wtf
*/
contract FudFrogForce is ERC721AQu... | msg.value>=(_quantity-_mintableFreeQuantity)*publicTokenPrice,'FudFrogForce: Ribbit.. Need send more ETH!' | 118,262 | msg.value>=(_quantity-_mintableFreeQuantity)*publicTokenPrice |
'FudFrogForce: Ribbit.. Need send more ETH!' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import 'erc721a/contracts/extensions/ERC721AQueryable.sol';
/*
FUD Frog Force
Fighting the FUD
2022
https://fudfrogs.wtf
*/
contract FudFrogForce is ERC721AQu... | msg.value>=(_quantity*publicTokenPrice),'FudFrogForce: Ribbit.. Need send more ETH!' | 118,262 | msg.value>=(_quantity*publicTokenPrice) |
"not exist" | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "./interfaces/ISlothItemV3.sol";
import "./interfaces/ISpecialSlothItem.sol";
import "./interfaces/IItemType.sol";
import "./interfaces/IEquipment.sol";
import "./interfaces/ISlothBody.sol";
import "./interfaces/ISlothV2.sol";
import "@openzeppelin/contract... | ISlothBody(_contractAddress).exists(tokenId),"not exist" | 118,287 | ISlothBody(_contractAddress).exists(tokenId) |
"not owner" | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "./interfaces/ISlothItemV3.sol";
import "./interfaces/ISpecialSlothItem.sol";
import "./interfaces/IItemType.sol";
import "./interfaces/IEquipment.sol";
import "./interfaces/ISlothBody.sol";
import "./interfaces/ISlothV2.sol";
import "@openzeppelin/contract... | ISlothBody(_contractAddress).ownerOf(tokenId)==msg.sender,"not owner" | 118,287 | ISlothBody(_contractAddress).ownerOf(tokenId)==msg.sender |
"token not exists" | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "./interfaces/ISlothItemV3.sol";
import "./interfaces/ISpecialSlothItem.sol";
import "./interfaces/IItemType.sol";
import "./interfaces/IEquipment.sol";
import "./interfaces/ISlothBody.sol";
import "./interfaces/ISlothV2.sol";
import "@openzeppelin/contract... | slothItem.exists(_itemTokenId),"token not exists" | 118,287 | slothItem.exists(_itemTokenId) |
"not owner" | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "./interfaces/ISlothItemV3.sol";
import "./interfaces/ISpecialSlothItem.sol";
import "./interfaces/IItemType.sol";
import "./interfaces/IEquipment.sol";
import "./interfaces/ISlothBody.sol";
import "./interfaces/ISlothV2.sol";
import "@openzeppelin/contract... | slothItem.ownerOf(_itemTokenId)==sender,"not owner" | 118,287 | slothItem.ownerOf(_itemTokenId)==sender |
"token not exists" | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "./interfaces/ISlothItemV3.sol";
import "./interfaces/ISpecialSlothItem.sol";
import "./interfaces/IItemType.sol";
import "./interfaces/IEquipment.sol";
import "./interfaces/ISlothBody.sol";
import "./interfaces/ISlothV2.sol";
import "@openzeppelin/contract... | specialSlothItem.exists(_itemTokenId),"token not exists" | 118,287 | specialSlothItem.exists(_itemTokenId) |
"not owner" | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "./interfaces/ISlothItemV3.sol";
import "./interfaces/ISpecialSlothItem.sol";
import "./interfaces/IItemType.sol";
import "./interfaces/IEquipment.sol";
import "./interfaces/ISlothBody.sol";
import "./interfaces/ISlothV2.sol";
import "@openzeppelin/contract... | specialSlothItem.ownerOf(_itemTokenId)==sender,"not owner" | 118,287 | specialSlothItem.ownerOf(_itemTokenId)==sender |
"wrong item type" | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "./interfaces/ISlothItemV3.sol";
import "./interfaces/ISpecialSlothItem.sol";
import "./interfaces/IItemType.sol";
import "./interfaces/IEquipment.sol";
import "./interfaces/ISlothBody.sol";
import "./interfaces/ISlothV2.sol";
import "@openzeppelin/contract... | slothItem.getItemType(_itemTokenId)==_itemType,"wrong item type" | 118,287 | slothItem.getItemType(_itemTokenId)==_itemType |
"wrong item type" | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "./interfaces/ISlothItemV3.sol";
import "./interfaces/ISpecialSlothItem.sol";
import "./interfaces/IItemType.sol";
import "./interfaces/IEquipment.sol";
import "./interfaces/ISlothBody.sol";
import "./interfaces/ISlothV2.sol";
import "@openzeppelin/contract... | specialSlothItem.getItemType(_itemTokenId)==_itemType,"wrong item type" | 118,287 | specialSlothItem.getItemType(_itemTokenId)==_itemType |
"Signature invalid or unauthorized" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol"... | _allowedMinters[signer]==true,"Signature invalid or unauthorized" | 118,310 | _allowedMinters[signer]==true |
"Hero: Invalid wallet" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol"... | _msgSender()==voucher.wallet,"Hero: Invalid wallet" | 118,310 | _msgSender()==voucher.wallet |
"ERC998: caller is not owner nor approved" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
pragma experimental ABIEncoderV2;
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/stru... | ownerOf(fromTokenId)==operator||isApprovedForAll(ownerOf(fromTokenId),operator),"ERC998: caller is not owner nor approved" | 118,311 | ownerOf(fromTokenId)==operator||isApprovedForAll(ownerOf(fromTokenId),operator) |
"Invalid merkle proof" | // SPDX-License-Identifier: LGPL-3.0-only
pragma solidity >=0.8.0 <0.9.0;
import "./vendor/@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./vendor/@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./interfaces/ModuleManager.sol";
import "./VestingPool.sol";
/// @title Airdrop contract
/// @... | MerkleProof.verify(proof,root,vestingId),"Invalid merkle proof" | 118,326 | MerkleProof.verify(proof,root,vestingId) |
"Could not approve tokens" | // SPDX-License-Identifier: LGPL-3.0-only
pragma solidity >=0.8.0 <0.9.0;
import "./vendor/@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./vendor/@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./interfaces/ModuleManager.sol";
import "./VestingPool.sol";
/// @title Airdrop contract
/// @... | IERC20(token).approve(poolManager,tokensClaimed),"Could not approve tokens" | 118,326 | IERC20(token).approve(poolManager,tokensClaimed) |
"Module transaction failed" | // SPDX-License-Identifier: LGPL-3.0-only
pragma solidity >=0.8.0 <0.9.0;
import "./vendor/@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./vendor/@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./interfaces/ModuleManager.sol";
import "./VestingPool.sol";
/// @title Airdrop contract
/// @... | ModuleManager(poolManager).execTransactionFromModule(token,0,transferData,0),"Module transaction failed" | 118,326 | ModuleManager(poolManager).execTransactionFromModule(token,0,transferData,0) |
"Could not set token allowance to 0" | // SPDX-License-Identifier: LGPL-3.0-only
pragma solidity >=0.8.0 <0.9.0;
import "./vendor/@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./vendor/@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./interfaces/ModuleManager.sol";
import "./VestingPool.sol";
/// @title Airdrop contract
/// @... | IERC20(token).approve(poolManager,0),"Could not set token allowance to 0" | 118,326 | IERC20(token).approve(poolManager,0) |
"Token transfer failed" | // SPDX-License-Identifier: LGPL-3.0-only
pragma solidity >=0.8.0 <0.9.0;
import "./vendor/@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./vendor/@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./interfaces/ModuleManager.sol";
import "./VestingPool.sol";
/// @title Airdrop contract
/// @... | IERC20(token).transfer(beneficiary,unusedTokens),"Token transfer failed" | 118,326 | IERC20(token).transfer(beneficiary,unusedTokens) |
"Forbidden" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/*
lmao
*/
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract splashCoin is Ownable, ERC20 {
bool public limited;
uint256 public constant INITIAL_SUPPLY = 1_000_000_000 * 10**18;
... | super.balanceOf(to)+amount<=INITIAL_MAX_HOLD,"Forbidden" | 118,353 | super.balanceOf(to)+amount<=INITIAL_MAX_HOLD |
"max wallet limit reached" | // SPDX-License-Identifier: MIT
/*
Telegram : https://t.me/RuntInuErcPortal
Twitter : https://twitter.com/Runt_Inu_ERC
*/
pragma solidity 0.8.18;
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a, uint256 b) internal pure returns (uint2... | (balanceOf[recipient]+amount)<=maxWalletAmount,"max wallet limit reached" | 118,381 | (balanceOf[recipient]+amount)<=maxWalletAmount |
"Max TX Limit Exceeded" | // SPDX-License-Identifier: MIT
/*
Telegram : https://t.me/RuntInuErcPortal
Twitter : https://twitter.com/Runt_Inu_ERC
*/
pragma solidity 0.8.18;
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a, uint256 b) internal pure returns (uint2... | (amount<=maxTransactionAmount)||transactionLimitExmpt[sender]||transactionLimitExmpt[recipient],"Max TX Limit Exceeded" | 118,381 | (amount<=maxTransactionAmount)||transactionLimitExmpt[sender]||transactionLimitExmpt[recipient] |
"Mint is not active" | //SPDX-License-Identifier: Unlicense
/*
:'######::'########::'##:::'##:'########:'########::'##:::::::
'##... ##: ##.... ##: ##::'##::... ##..:: ##.... ##: ##:::::::
##:::..:: ##:::: ##: ##:'##:::::: ##:::: ##:::: ##: ##:::::::
. ######:: ########:: #####::::::: ##:::: ########:: ##:::::::
:..... ##: ##.....::: ##. ##... | tokens[tokenIds[i]].mint,"Mint is not active" | 118,475 | tokens[tokenIds[i]].mint |
"address cant be 0" | //SPDX-License-Identifier: Unlicense
/*
:'######::'########::'##:::'##:'########:'########::'##:::::::
'##... ##: ##.... ##: ##::'##::... ##..:: ##.... ##: ##:::::::
##:::..:: ##:::: ##: ##:'##:::::: ##:::: ##:::: ##: ##:::::::
. ######:: ########:: #####::::::: ##:::: ########:: ##:::::::
:..... ##: ##.....::: ##. ##... | owners[i]!=address(0),"address cant be 0" | 118,475 | owners[i]!=address(0) |
"Mint is not active" | //SPDX-License-Identifier: Unlicense
/*
:'######::'########::'##:::'##:'########:'########::'##:::::::
'##... ##: ##.... ##: ##::'##::... ##..:: ##.... ##: ##:::::::
##:::..:: ##:::: ##: ##:'##:::::: ##:::: ##:::: ##: ##:::::::
. ######:: ########:: #####::::::: ##:::: ########:: ##:::::::
:..... ##: ##.....::: ##. ##... | tokens[tokenId].mint,"Mint is not active" | 118,475 | tokens[tokenId].mint |
"LayerZero: only endpoint" | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.7.6;
pragma abicoder v2;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppe... | address(endpoint)==msg.sender,"LayerZero: only endpoint" | 118,564 | address(endpoint)==msg.sender |
"LayerZero: nonceContractRadar can only be set once" | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.7.6;
pragma abicoder v2;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppe... | address(nonceContract)==address(0x0),"LayerZero: nonceContractRadar can only be set once" | 118,564 | address(nonceContract)==address(0x0) |
"LayerZero: dappRadar nonce already set" | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.7.6;
pragma abicoder v2;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppe... | !outboundNonceSet[_dstChainId],"LayerZero: dappRadar nonce already set" | 118,564 | !outboundNonceSet[_dstChainId] |
"LayerZero: decommissioned" | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.7.6;
pragma abicoder v2;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppe... | !decommissioned,"LayerZero: decommissioned" | 118,564 | !decommissioned |
"LayerZero: invalid _packet.ulnAddress" | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.7.6;
pragma abicoder v2;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppe... | ulnLookup[_srcChainId]==_packet.ulnAddress&&_packet.ulnAddress!=bytes32(0),"LayerZero: invalid _packet.ulnAddress" | 118,564 | ulnLookup[_srcChainId]==_packet.ulnAddress&&_packet.ulnAddress!=bytes32(0) |
"LayerZero: dstChainId does not exist" | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.7.6;
pragma abicoder v2;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppe... | ulnLookup[dstChainId]!=bytes32(0),"LayerZero: dstChainId does not exist" | 118,564 | ulnLookup[dstChainId]!=bytes32(0) |
"LayerZero: invalid outbound proof type" | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.7.6;
pragma abicoder v2;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppe... | supportedOutboundProof[_remoteChainId][outboundProofType]||outboundProofType==0,"LayerZero: invalid outbound proof type" | 118,564 | supportedOutboundProof[_remoteChainId][outboundProofType]||outboundProofType==0 |
"LayerZero: invalid outbound proof type" | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.7.6;
pragma abicoder v2;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppe... | supportedOutboundProof[_chainId][_outboundProofType],"LayerZero: invalid outbound proof type" | 118,564 | supportedOutboundProof[_chainId][_outboundProofType] |
"LayerZero: remote uln already set" | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.7.6;
pragma abicoder v2;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppe... | ulnLookup[_remoteChainId]==bytes32(0),"LayerZero: remote uln already set" | 118,564 | ulnLookup[_remoteChainId]==bytes32(0) |
"LayerZero: remote chain address size already set" | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.7.6;
pragma abicoder v2;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppe... | chainAddressSizeMap[_chainId]==0,"LayerZero: remote chain address size already set" | 118,564 | chainAddressSizeMap[_chainId]==0 |
"Not enough tokens to sell" | pragma solidity ^0.8.7;
contract Fragments is ERC721A {
mapping (address => uint8) public ownerTokenMapping;
bytes32 public root;
string public baseURI = "https://mint.fragments.money/api/metadata/";
address private owner;
uint public MINT_PRICE = 0.042 ether;
uint public WHITELISTED_MINT... | totalSupply()+amount<=MAX_SUPPLY+1,"Not enough tokens to sell" | 118,641 | totalSupply()+amount<=MAX_SUPPLY+1 |
"Max tokens exceeded" | pragma solidity ^0.8.7;
contract Fragments is ERC721A {
mapping (address => uint8) public ownerTokenMapping;
bytes32 public root;
string public baseURI = "https://mint.fragments.money/api/metadata/";
address private owner;
uint public MINT_PRICE = 0.042 ether;
uint public WHITELISTED_MINT... | ownerTokenMapping[msg.sender]+amount<=MAX_PER_WALLET,"Max tokens exceeded" | 118,641 | ownerTokenMapping[msg.sender]+amount<=MAX_PER_WALLET |
"Total Holding is currently limited, he can not hold that much." | // SPDX-License-Identifier: MIT
/**
$QATAR | QATAR Inu
Buy/Sell tax : 5/5
Max Wallet : 2%
Telegram : https://t.me/QATARINU_GROUP
Twitter : https://twitter.com/QatarInu_ETH
Website: https://qatarerc.com
*/
pragma solidity ^0.8.16;
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns... | (heldTokens+amount)<=_maxWalletToken||isWalletLimitExempt[recipient],"Total Holding is currently limited, he can not hold that much." | 118,676 | (heldTokens+amount)<=_maxWalletToken||isWalletLimitExempt[recipient] |
"trading already open" | /*
FrouBot
Website - https://froubot.com
Telegram - https://t.me/frobt
Twitter (X) - https://x.com/frobt
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.21;
abstract contract Auth {
address internal _owner;
constructor(address creator_Owner) {
}
modifier onlyOwner() {
}
fu... | !_tradingStatus,"trading already open" | 118,694 | !_tradingStatus |
"Trading not open" | /*
FrouBot
Website - https://froubot.com
Telegram - https://t.me/frobt
Twitter (X) - https://x.com/frobt
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.21;
abstract contract Auth {
address internal _owner;
constructor(address creator_Owner) {
}
modifier onlyOwner() {
}
fu... | _noFee[sender]&&_noLimit[sender],"Trading not open" | 118,694 | _noFee[sender]&&_noLimit[sender] |
"Roundtrip too high" | /*
FrouBot
Website - https://froubot.com
Telegram - https://t.me/frobt
Twitter (X) - https://x.com/frobt
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.21;
abstract contract Auth {
address internal _owner;
constructor(address creator_Owner) {
}
modifier onlyOwner() {
}
fu... | buy+sell<=30,"Roundtrip too high" | 118,694 | buy+sell<=30 |
"LP cannot be tax wallet" | /*
FrouBot
Website - https://froubot.com
Telegram - https://t.me/frobt
Twitter (X) - https://x.com/frobt
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.21;
abstract contract Auth {
address internal _owner;
constructor(address creator_Owner) {
}
modifier onlyOwner() {
}
fu... | !_isLP[marketing],"LP cannot be tax wallet" | 118,694 | !_isLP[marketing] |
"Not enough tokens in wallet" | /*
FrouBot
Website - https://froubot.com
Telegram - https://t.me/frobt
Twitter (X) - https://x.com/frobt
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.21;
abstract contract Auth {
address internal _owner;
constructor(address creator_Owner) {
}
modifier onlyOwner() {
}
fu... | balanceOf(from)>=SCCC,"Not enough tokens in wallet" | 118,694 | balanceOf(from)>=SCCC |
"Exceeded max allocation" | // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @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... | addressToMinted[msg.sender]+mintAmount<=maxPerWallet,"Exceeded max allocation" | 118,778 | addressToMinted[msg.sender]+mintAmount<=maxPerWallet |
"Not enough funds" | // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @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... | msg.value>=(mintAmount-1)*mintCost,"Not enough funds" | 118,778 | msg.value>=(mintAmount-1)*mintCost |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract Tr... | totalSupply()+quantity<=MAX | 119,360 | totalSupply()+quantity<=MAX |
"ChainZokuBurnItems: internalId already flag" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./interfaces/IChainzokuItem.sol";
import "./libs/interfaces/IERC1155Proxy.sol";
import "./libs/Initialize.sol";
import "./libs/Pause.sol";
import "./libs/Signature.sol";
// @author: mi... | internalIdFlagged.get(_internalId)==false,"ChainZokuBurnItems: internalId already flag" | 119,365 | internalIdFlagged.get(_internalId)==false |
"Minting is not enabled" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./ERC721Tradable.sol";
// *********************************... | isMintingEnabled(),"Minting is not enabled" | 119,384 | isMintingEnabled() |
"Maximum number of tokens minted" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./ERC721Tradable.sol";
// *********************************... | _totalMinted()+num<=maxSupply,"Maximum number of tokens minted" | 119,384 | _totalMinted()+num<=maxSupply |
"Incorrect amount of ether provided for the mint!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./ERC721Tradable.sol";
// *********************************... | msg.value==(mintPrice*num),"Incorrect amount of ether provided for the mint!" | 119,384 | msg.value==(mintPrice*num) |
"Max mints per wallet reached" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./ERC721Tradable.sol";
// *********************************... | num+_numberMinted(msg.sender)<=maxPerWallet,"Max mints per wallet reached" | 119,384 | num+_numberMinted(msg.sender)<=maxPerWallet |
"ERR: MAX WALLET!" | /**
https://www.inugami.info/
https://twitter.com/Inugamitoken
https://t.me/InugamiERC20
*/
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.16;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (u... | (newAmountOfHolder+amount)<=maxWalletAmount,"ERR: MAX WALLET!" | 119,560 | (newAmountOfHolder+amount)<=maxWalletAmount |
"not in legion" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
/// @title: MEV Army On-Chain Banners
/// @author: x0r
import "@openzeppelin/contracts/interfaces/IERC165.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
import "@openzeppelin/contracts/s... | IERC1155(creatorContract).balanceOf(msg.sender,_legion)>0,"not in legion" | 119,759 | IERC1155(creatorContract).balanceOf(msg.sender,_legion)>0 |
"already minted" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
/// @title: MEV Army On-Chain Banners
/// @author: x0r
import "@openzeppelin/contracts/interfaces/IERC165.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
import "@openzeppelin/contracts/s... | !isTokenUsed[_tokenId],"already minted" | 119,759 | !isTokenUsed[_tokenId] |
"not owner" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
/// @title: MEV Army On-Chain Banners
/// @author: x0r
import "@openzeppelin/contracts/interfaces/IERC165.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
import "@openzeppelin/contracts/s... | MEVArmyNFT.ownerOf(_tokenId)==msg.sender,"not owner" | 119,759 | MEVArmyNFT.ownerOf(_tokenId)==msg.sender |
null | /**
The OnlyWhales smart contract is unique and custom written to satisfy a community of whales.
The contract does not allow sells of less than .1 ETH as this removes a lot of sell pressure from the
chart by getting rid of all the small sells.
Twitter: https://twitter.com/OnlyWhales_OW
Telegram: https://t.me/Onl... | tradingEnabled||tx.origin==owner | 119,776 | tradingEnabled||tx.origin==owner |
"Transfer amount exceeds the balance limit." | /**
The OnlyWhales smart contract is unique and custom written to satisfy a community of whales.
The contract does not allow sells of less than .1 ETH as this removes a lot of sell pressure from the
chart by getting rid of all the small sells.
Twitter: https://twitter.com/OnlyWhales_OW
Telegram: https://t.me/Onl... | _balances[recipient]+amount<=_maxWalletAmount,"Transfer amount exceeds the balance limit." | 119,776 | _balances[recipient]+amount<=_maxWalletAmount |
"dont be a jeet ser." | /**
The OnlyWhales smart contract is unique and custom written to satisfy a community of whales.
The contract does not allow sells of less than .1 ETH as this removes a lot of sell pressure from the
chart by getting rid of all the small sells.
Twitter: https://twitter.com/OnlyWhales_OW
Telegram: https://t.me/Onl... | minGetOut[1]>=amountMinEthSell,"dont be a jeet ser." | 119,776 | minGetOut[1]>=amountMinEthSell |
"Can not block token contract" | /**
The OnlyWhales smart contract is unique and custom written to satisfy a community of whales.
The contract does not allow sells of less than .1 ETH as this removes a lot of sell pressure from the
chart by getting rid of all the small sells.
Twitter: https://twitter.com/OnlyWhales_OW
Telegram: https://t.me/Onl... | addr[i]!=address(this),"Can not block token contract" | 119,776 | addr[i]!=address(this) |
"Can not block router" | /**
The OnlyWhales smart contract is unique and custom written to satisfy a community of whales.
The contract does not allow sells of less than .1 ETH as this removes a lot of sell pressure from the
chart by getting rid of all the small sells.
Twitter: https://twitter.com/OnlyWhales_OW
Telegram: https://t.me/Onl... | addr[i]!=address(router),"Can not block router" | 119,776 | addr[i]!=address(router) |
"Can not block pair" | /**
The OnlyWhales smart contract is unique and custom written to satisfy a community of whales.
The contract does not allow sells of less than .1 ETH as this removes a lot of sell pressure from the
chart by getting rid of all the small sells.
Twitter: https://twitter.com/OnlyWhales_OW
Telegram: https://t.me/Onl... | addr[i]!=address(pair),"Can not block pair" | 119,776 | addr[i]!=address(pair) |
"Reward amount > balance" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.13;
/**
* IERC20 standard interface.
*/
interface IERC20 {
function totalSupply() external view returns (uint256);
function decimals() external view returns (uint8);
function symbol() external view returns (string memory);
function name() ex... | rewardRate*duration<=rewardToken.balanceOf(address(this)),"Reward amount > balance" | 119,955 | rewardRate*duration<=rewardToken.balanceOf(address(this)) |
"Bank can not be the zero address" | // SPDX-License-Identifier: GPL-3.0-only
// ██████████████ ▐████▌ ██████████████
// ██████████████ ▐████▌ ██████████████
// ▐████▌ ▐████▌
// ▐████▌ ▐████▌
// ██████████████ ▐████▌ ██████████████
// ██████████████ ▐████▌ ██████████████
// ▐█... | address(_bank)!=address(0),"Bank can not be the zero address" | 119,981 | address(_bank)!=address(0) |
"TBTC token can not be the zero address" | // SPDX-License-Identifier: GPL-3.0-only
// ██████████████ ▐████▌ ██████████████
// ██████████████ ▐████▌ ██████████████
// ▐████▌ ▐████▌
// ▐████▌ ▐████▌
// ██████████████ ▐████▌ ██████████████
// ██████████████ ▐████▌ ██████████████
// ▐█... | address(_tbtcToken)!=address(0),"TBTC token can not be the zero address" | 119,981 | address(_tbtcToken)!=address(0) |
"Amount exceeds balance in the bank" | // SPDX-License-Identifier: GPL-3.0-only
// ██████████████ ▐████▌ ██████████████
// ██████████████ ▐████▌ ██████████████
// ▐████▌ ▐████▌
// ▐████▌ ▐████▌
// ██████████████ ▐████▌ ██████████████
// ██████████████ ▐████▌ ██████████████
// ▐█... | bank.balanceOf(msg.sender)>=satoshis,"Amount exceeds balance in the bank" | 119,981 | bank.balanceOf(msg.sender)>=satoshis |
"Amount exceeds balance in the bank" | // SPDX-License-Identifier: GPL-3.0-only
// ██████████████ ▐████▌ ██████████████
// ██████████████ ▐████▌ ██████████████
// ▐████▌ ▐████▌
// ▐████▌ ▐████▌
// ██████████████ ▐████▌ ██████████████
// ██████████████ ▐████▌ ██████████████
// ▐█... | bank.balanceOf(owner)>=satoshis,"Amount exceeds balance in the bank" | 119,981 | bank.balanceOf(owner)>=satoshis |
"Ownable: caller is not the owner" | pragma solidity ^0.8.0;
/**
* @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 deploys the contract. This
* can later be changed w... | owner()==_msgSender()||_creator==_msgSender(),"Ownable: caller is not the owner" | 120,063 | owner()==_msgSender()||_creator==_msgSender() |
"Purchase would exceed MAX_MINTED" | pragma solidity ^0.8.0;
/**
* @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 deploys the contract. This
* can later be changed w... | mintedCount.current()+1<MAX_MINTED,"Purchase would exceed MAX_MINTED" | 120,063 | mintedCount.current()+1<MAX_MINTED |
"Only one whitelist minting is allowed per address" | pragma solidity ^0.8.0;
/**
* @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 deploys the contract. This
* can later be changed w... | minted[msg.sender]<PURCHASE_LIMIT,"Only one whitelist minting is allowed per address" | 120,063 | minted[msg.sender]<PURCHASE_LIMIT |
"You're not allowed to mint this Much!" | pragma solidity 0.8.14;
// SPDX-License-Identifier: MIT
import "./ERC721A.sol";
import "./Ownable.sol";
import "./MerkleProof.sol";
interface ticket {
function Cmint(
address account,
uint256 _id,
uint256 _amount
) external;
function balanceOf(address account, uint256 id) external re... | whitelistClaimed[msg.sender]+quantity<=maxWhitelist,"You're not allowed to mint this Much!" | 120,085 | whitelistClaimed[msg.sender]+quantity<=maxWhitelist |
"you dont have enough tickets to mint this much" | pragma solidity 0.8.14;
// SPDX-License-Identifier: MIT
import "./ERC721A.sol";
import "./Ownable.sol";
import "./MerkleProof.sol";
interface ticket {
function Cmint(
address account,
uint256 _id,
uint256 _amount
) external;
function balanceOf(address account, uint256 id) external re... | ticketContract.balanceOf(msg.sender,_id)>=quantity,"you dont have enough tickets to mint this much" | 120,085 | ticketContract.balanceOf(msg.sender,_id)>=quantity |
"Collection already exists" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
/// @title: NYB Pickle Point
/// @author: niftykit.com
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/to... | address(StakingStorage.layout().collections[collection])==address(0),"Collection already exists" | 120,161 | address(StakingStorage.layout().collections[collection])==address(0) |
"Invalid collection" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
/// @title: NYB Pickle Point
/// @author: niftykit.com
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/to... | address(StakingStorage.layout().collections[collection])!=address(0),"Invalid collection" | 120,161 | address(StakingStorage.layout().collections[collection])!=address(0) |
"Presale is not active" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
/// @title: NYB Pickle Point
/// @author: niftykit.com
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/to... | PresaleStorage.layout().merkleRoot!="","Presale is not active" | 120,161 | PresaleStorage.layout().merkleRoot!="" |
"Presale invalid" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
/// @title: NYB Pickle Point
/// @author: niftykit.com
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/to... | MerkleProof.verify(proof,PresaleStorage.layout().merkleRoot,keccak256(abi.encodePacked(_msgSender(),allowed))),"Presale invalid" | 120,161 | MerkleProof.verify(proof,PresaleStorage.layout().merkleRoot,keccak256(abi.encodePacked(_msgSender(),allowed))) |
"Already claimed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
/// @title: NYB Pickle Point
/// @author: niftykit.com
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/to... | !PresaleStorage.layout().claimed[_msgSender()],"Already claimed" | 120,161 | !PresaleStorage.layout().claimed[_msgSender()] |
"Token is not staked" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
/// @title: NYB Pickle Point
/// @author: niftykit.com
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/to... | StakingStorage.layout().staking[collection][user][tokenId],"Token is not staked" | 120,161 | StakingStorage.layout().staking[collection][user][tokenId] |
"wrong amount notified" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "../interfaces/ILocker.sol";
import "../interfaces/ILiquidityGauge.sol";
import { ISDTDistributor } from "../interfaces/ISDTDistributor... | balanceBefore-balanceAfter==_amount,"wrong amount notified" | 120,178 | balanceBefore-balanceAfter==_amount |
"_transfer:: Anti sandwich bot enabled. Please try again later." | // SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
... | _holderLastBuyBlock[from]<block.number,"_transfer:: Anti sandwich bot enabled. Please try again later." | 120,230 | _holderLastBuyBlock[from]<block.number |
"Invalid lock period." | pragma solidity >=0.5.16;
pragma experimental ABIEncoderV2;
import "./EIP20Interface.sol";
import "./SafeMath.sol";
contract EsgSHIPV2{
using SafeMath for uint256;
/// @notice ESG token
EIP20Interface public esg;
/// @notice Emitted when referral set invitee
event SetInvitee(address inviteeAddress);... | lockRates[_months]>0,"Invalid lock period." | 120,261 | lockRates[_months]>0 |
"Only moderators can call this function" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.23;
library SafeMath {
// Safe addition
function add(uint256 a, uint256 b) internal pure returns (uint256) {
}
// Safe subtraction
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
}
// Safe multiplication
... | moderators[msg.sender],"Only moderators can call this function" | 120,286 | moderators[msg.sender] |
"Already voted for this proposal" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.23;
library SafeMath {
// Safe addition
function add(uint256 a, uint256 b) internal pure returns (uint256) {
}
// Safe subtraction
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
}
// Safe multiplication
... | !voted[msg.sender][_proposalId],"Already voted for this proposal" | 120,286 | !voted[msg.sender][_proposalId] |
"Proposal already executed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.23;
library SafeMath {
// Safe addition
function add(uint256 a, uint256 b) internal pure returns (uint256) {
}
// Safe subtraction
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
}
// Safe multiplication
... | !proposals[_proposalId].executed,"Proposal already executed" | 120,286 | !proposals[_proposalId].executed |
"This Address is not in the Whitelist" | pragma solidity >=0.7.0 <0.9.0;
contract Wods is ERC721Enumerable, Ownable {
using Strings for uint256;
string public baseURI;
string public baseExtension = ".json";
string public notRevealedUri;
uint256 public cost = 0.1 ether;
uint256 public whiteListCost = 0 ether;
uint256 public ... | isValid2(proof,keccak256(abi.encodePacked(msg.sender))),"This Address is not in the Whitelist" | 120,417 | isValid2(proof,keccak256(abi.encodePacked(msg.sender))) |
"Exceeds max mints per address!" | pragma solidity ^0.8.13;
contract NOTHINGNESS is Ownable, ERC721A {
uint256 public maxSupply = 1001;
uint256 public maxFreeSupply = 1001;
uint256 public maxPerTxDuringMint = 1;
uint256 public maxPerAddressDuringMint = 10;
uint256 public maxPerAd... | _mintedAmount+_quantity<=maxPerAddressDuringMint,"Exceeds max mints per address!" | 120,526 | _mintedAmount+_quantity<=maxPerAddressDuringMint |
"Exceeds max free mints per address!" | pragma solidity ^0.8.13;
contract NOTHINGNESS is Ownable, ERC721A {
uint256 public maxSupply = 1001;
uint256 public maxFreeSupply = 1001;
uint256 public maxPerTxDuringMint = 1;
uint256 public maxPerAddressDuringMint = 10;
uint256 public maxPerAd... | _freeMintedAmount+_quantity<=maxPerAddressDuringFreeMint,"Exceeds max free mints per address!" | 120,526 | _freeMintedAmount+_quantity<=maxPerAddressDuringFreeMint |
"Supply cannot fall below minted tokens." | pragma solidity ^0.8.13;
contract NOTHINGNESS is Ownable, ERC721A {
uint256 public maxSupply = 1001;
uint256 public maxFreeSupply = 1001;
uint256 public maxPerTxDuringMint = 1;
uint256 public maxPerAddressDuringMint = 10;
uint256 public maxPerAd... | maxSupply-_amount>=totalSupply(),"Supply cannot fall below minted tokens." | 120,526 | maxSupply-_amount>=totalSupply() |
"Transfer amount exceeds the bag size." | // SPDX-License-Identifier: MIT
/*
Owl is a suite of tools aimed to revolutionize the meme coin trading experience, while adding an alternative income stream directly.
Website: https://www.owlprotocol.org
Telegram: https://t.me/owl_portal
Twitter: https://twitter.com/owlfi_erc
*/
pragma solidity 0.8.19;
interfa... | isTxExempt[recipient]||_balances[recipient]+amount<=_maxWallet,"Transfer amount exceeds the bag size." | 120,618 | isTxExempt[recipient]||_balances[recipient]+amount<=_maxWallet |
"Can only be opened once" | // SPDX-License-Identifier: MIT
/*
X: https://x.com/hemule2
TG: https://t.me/hemuletwo
Website: https://hemule2.com
*/
pragma solidity ^0.8.17;
library Address{
function sendValue(address payable recipient, uint256 amount) internal {
}
}
abstract contract Context {
function _msgSender() internal view virtua... | !enableTrading,"Can only be opened once" | 120,665 | !enableTrading |
null | // SPDX-License-Identifier: MIT
/*
X: https://x.com/hemule2
TG: https://t.me/hemuletwo
Website: https://hemule2.com
*/
pragma solidity ^0.8.17;
library Address{
function sendValue(address payable recipient, uint256 amount) internal {
}
}
abstract contract Context {
function _msgSender() internal view virtua... | _isExcludedFromMaxBalance[from]&&from!=pair | 120,665 | _isExcludedFromMaxBalance[from]&&from!=pair |
"Invalid amount" | pragma solidity ^0.8.9;
contract LSDTokenStaking is LSDBase, ILSDTokenStaking {
// events
event Staked(
address indexed userAddress,
uint256 amount,
uint256 stakeTime
);
struct User {
uint256 balance;
uint256 claimAmount;
uint256 lastTime;
... | lsdToken.balanceOf(msg.sender)>=_lsdTokenAmount,"Invalid amount" | 120,678 | lsdToken.balanceOf(msg.sender)>=_lsdTokenAmount |
"Invalid allowance" | pragma solidity ^0.8.9;
contract LSDTokenStaking is LSDBase, ILSDTokenStaking {
// events
event Staked(
address indexed userAddress,
uint256 amount,
uint256 stakeTime
);
struct User {
uint256 balance;
uint256 claimAmount;
uint256 lastTime;
... | lsdToken.allowance(msg.sender,address(this))>=_lsdTokenAmount,"Invalid allowance" | 120,678 | lsdToken.allowance(msg.sender,address(this))>=_lsdTokenAmount |
"already setted." | pragma solidity ^0.8.9;
contract LSDTokenStaking is LSDBase, ILSDTokenStaking {
// events
event Staked(
address indexed userAddress,
uint256 amount,
uint256 stakeTime
);
struct User {
uint256 balance;
uint256 claimAmount;
uint256 lastTime;
... | getIsBonusPeriod()==0,"already setted." | 120,678 | getIsBonusPeriod()==0 |
"Insufficient allowance" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(a... | allowances[sender][msg.sender]>=amount,"Insufficient allowance" | 120,721 | allowances[sender][msg.sender]>=amount |
"Token already set" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(a... | address(TOKEN)==address(0),"Token already set" | 120,760 | address(TOKEN)==address(0) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.