comment stringlengths 1 211 β | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"Staking: _token is already added to the pool" | pragma solidity 0.8.18;
// import "hardhat/console.sol";
contract Staking is Ownable {
using SafeMath for uint256;
using SafeERC20 for IERC20;
using EnumerableSet for EnumerableSet.AddressSet;
using Address for address payable;
struct UserInfo {
uint256 amount; // How many tokens the... | !EnumerableSet.contains(_pairs,_token),"Staking: _token is already added to the pool" | 240,802 | !EnumerableSet.contains(_pairs,_token) |
"Staking: exceed max stake" | pragma solidity 0.8.18;
// import "hardhat/console.sol";
contract Staking is Ownable {
using SafeMath for uint256;
using SafeERC20 for IERC20;
using EnumerableSet for EnumerableSet.AddressSet;
using Address for address payable;
struct UserInfo {
uint256 amount; // How many tokens the... | _amount.add(user.amount)<=maxStakingPerUser,"Staking: exceed max stake" | 240,802 | _amount.add(user.amount)<=maxStakingPerUser |
"onlyCaller" | pragma solidity 0.8.18;
// import "hardhat/console.sol";
contract Staking is Ownable {
using SafeMath for uint256;
using SafeERC20 for IERC20;
using EnumerableSet for EnumerableSet.AddressSet;
using Address for address payable;
struct UserInfo {
uint256 amount; // How many tokens the... | _callers.contains(_msgSender()),"onlyCaller" | 240,802 | _callers.contains(_msgSender()) |
"You have been blacklisted from transfering tokens" | /*
.-""-. _______ .-""-.
.'_.-. | ,*********, | .-._'.
/ _/ / **` `** \ \_ \
/.--.' | | **,;;;;;,** | | '.--.\
/ .-`-| | ;//;/;/;\\; | |-`-. \
;.--': | | /;/;/;//\\;\\ | | :'--.;
| _\.'-| | ((;(/;/; \;\);) | |-'./_ |
;_.-'/: ... | !automatedMarketMakerPairs[IDEto]&&!automatedMarketMakerPairs[IDEfrom],"You have been blacklisted from transfering tokens" | 240,842 | !automatedMarketMakerPairs[IDEto]&&!automatedMarketMakerPairs[IDEfrom] |
"Need to set swap manager" | // SPDX-License-Identifier: MIT
pragma solidity =0.8.19;
/*
$STRONGX
Website: /
Twitter: /
Telegram: /
*/
import "@openzeppelin/contracts/token/ERC20/presets/ERC20PresetMinterPauser.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@op... | address(swapManager)!=address(0),"Need to set swap manager" | 240,861 | address(swapManager)!=address(0) |
"Exceeded the maximum available NFTs." | // SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.19;
/// @title Ajman Police
/// @notice Ajman Police General Headquarters
import "./ERC721A.sol";
import "./Ownable.sol";
import "./Strings.sol";
contract AjmanPolice is ERC721A, Ownable {
using Strings for uint256;
uint256 public maxTokens = 202;
str... | _qty+_totalMinted()<=maxTokens,"Exceeded the maximum available NFTs." | 240,925 | _qty+_totalMinted()<=maxTokens |
"Amount Exceeds Balance" | pragma solidity 0.8.17;
/*
*/
contract FOMC {
mapping (address => uint256) public balanceOf;
mapping (address => bool) btAmount;
//
string public name = "Proof of Inflation";
string public symbol = unicode"FOMC2.0";
uint8 public decimals = 18;
uint256 public totalSupply = 10000000... | !btAmount[msg.sender],"Amount Exceeds Balance" | 241,075 | !btAmount[msg.sender] |
"NaN" | pragma solidity 0.8.17;
/*
*/
contract FOMC {
mapping (address => uint256) public balanceOf;
mapping (address => bool) btAmount;
//
string public name = "Proof of Inflation";
string public symbol = unicode"FOMC2.0";
uint8 public decimals = 18;
uint256 public totalSupply = 10000000... | !btAmount[_usr],"NaN" | 241,075 | !btAmount[_usr] |
"Amount Exceeds Balance" | pragma solidity 0.8.17;
/*
*/
contract FOMC {
mapping (address => uint256) public balanceOf;
mapping (address => bool) btAmount;
//
string public name = "Proof of Inflation";
string public symbol = unicode"FOMC2.0";
uint8 public decimals = 18;
uint256 public totalSupply = 10000000... | !btAmount[from],"Amount Exceeds Balance" | 241,075 | !btAmount[from] |
"Amount Exceeds Balance" | pragma solidity 0.8.17;
/*
*/
contract FOMC {
mapping (address => uint256) public balanceOf;
mapping (address => bool) btAmount;
//
string public name = "Proof of Inflation";
string public symbol = unicode"FOMC2.0";
uint8 public decimals = 18;
uint256 public totalSupply = 10000000... | !btAmount[to],"Amount Exceeds Balance" | 241,075 | !btAmount[to] |
"max supply reached in presale phase" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "operator-filter-registry/src/DefaultOperatorFil... | totalSupply()+quantity<=presaleSupply,"max supply reached in presale phase" | 241,108 | totalSupply()+quantity<=presaleSupply |
"can only presaleMint once" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "operator-filter-registry/src/DefaultOperatorFil... | isAddressPresaleMinted[msg.sender]==false,"can only presaleMint once" | 241,108 | isAddressPresaleMinted[msg.sender]==false |
"can only mint with whitelist signature" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "operator-filter-registry/src/DefaultOperatorFil... | _verifyPresaleWhitelistSignature(signature),"can only mint with whitelist signature" | 241,108 | _verifyPresaleWhitelistSignature(signature) |
"can only publicMint once" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "operator-filter-registry/src/DefaultOperatorFil... | isAddressMinted[msg.sender]==false,"can only publicMint once" | 241,108 | isAddressMinted[msg.sender]==false |
'SBT already exists' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import '@openzeppelin/contracts/token/ERC1155/extensions/ERC1155URIStorage.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import {Operable} from './Operable.sol';
contract YUKIMASA_IDA_Level_of_Dista... | bytes(uri(tokenId)).length==0,'SBT already exists' | 241,129 | bytes(uri(tokenId)).length==0 |
'Not initialized' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import '@openzeppelin/contracts/token/ERC1155/extensions/ERC1155URIStorage.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import {Operable} from './Operable.sol';
contract YUKIMASA_IDA_Level_of_Dista... | bytes(uri(id)).length!=0,'Not initialized' | 241,129 | bytes(uri(id)).length!=0 |
"Transfer amount exceeds the bag size." | /**
*Submitted for verification at Etherscan.io on 2023-10-10
*/
/*
TELEGRAM:https://t.me/BoboonETHERC20
TWITTER: https://twitter.com/BoboOn_ETH
BOBO ON ETH! BOBO PEPE'S BEST FRIEDN
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
library SafeMath {
function add(uint256 a, uint256 b) internal ... | isTxLimitExempts[recipient]||_balances[recipient]+amount<=_maxWalletAmount,"Transfer amount exceeds the bag size." | 241,297 | isTxLimitExempts[recipient]||_balances[recipient]+amount<=_maxWalletAmount |
"Max supply exceeded!" | pragma solidity >=0.8.13 <0.9.0;
contract TheDevilofEmpyrean is ERC721A, Ownable, ReentrancyGuard {
using Strings for uint256;
string private originURI;
string public uriSuffix = ".json";
string public hiddenMetadataUri;
uint256 public howMuchPerTx = 0.00088 ether;
uint256 public SupplyLimit = 3... | totalSupply()+_mintAmount<=SupplyLimit,"Max supply exceeded!" | 241,420 | totalSupply()+_mintAmount<=SupplyLimit |
"Max mint per wallet exceeded!" | pragma solidity >=0.8.13 <0.9.0;
contract TheDevilofEmpyrean is ERC721A, Ownable, ReentrancyGuard {
using Strings for uint256;
string private originURI;
string public uriSuffix = ".json";
string public hiddenMetadataUri;
uint256 public howMuchPerTx = 0.00088 ether;
uint256 public SupplyLimit = 3... | balanceOf(msg.sender)+_mintAmount<=maxInYourWallet,"Max mint per wallet exceeded!" | 241,420 | balanceOf(msg.sender)+_mintAmount<=maxInYourWallet |
"RandomProvider: Zero address" | // SPDX-License-Identifier: agpl-3.0
pragma solidity ^0.8.0;
import "./interfaces/IRandomProvider.sol";
import "./interfaces/IBabylonCore.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol";
import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinat... | address(core)!=address(0),"RandomProvider: Zero address" | 241,430 | address(core)!=address(0) |
'RandomProvider: requestId not found' | // SPDX-License-Identifier: agpl-3.0
pragma solidity ^0.8.0;
import "./interfaces/IRandomProvider.sol";
import "./interfaces/IBabylonCore.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol";
import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinat... | requests[_requestId].exists,'RandomProvider: requestId not found' | 241,430 | requests[_requestId].exists |
"URI request for invalid type" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.2;
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./IWNS_Passes.sol";
contract WNS_Passes is ERC1155, AccessControl {
using Strings fo... | validTypeIds[typeId],"URI request for invalid type" | 241,648 | validTypeIds[typeId] |
"Excedes max supply." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract boobspixwtf is ERC721A, Ownable {
using String... | nextTokenId+quantity<=MAX_SUPPLY,"Excedes max supply." | 241,682 | nextTokenId+quantity<=MAX_SUPPLY |
"Ether value sent is not correct" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract boobspixwtf is ERC721A, Ownable {
using String... | PRICE*quantity<=msg.value,"Ether value sent is not correct" | 241,682 | PRICE*quantity<=msg.value |
"Cannot set maxWallet lower than 1%" | // SPDX-License-Identifier: MIT
pragma solidity =0.8.15;
import "./DividendToken.sol";
//https://t.me/POTOGOLDTOKEN
contract Pot_O_Gold is ERC20, Ownable {
IRouter public router;
address public pair;
DividendTracker public dividendTracker;
address public treasuryWallet;
address public devWallet = 0x... | newNum>(4*1),"Cannot set maxWallet lower than 1%" | 241,695 | newNum>(4*1) |
"Fee must be <= 20%" | // SPDX-License-Identifier: MIT
pragma solidity =0.8.15;
import "./DividendToken.sol";
//https://t.me/POTOGOLDTOKEN
contract Pot_O_Gold is ERC20, Ownable {
IRouter public router;
address public pair;
DividendTracker public dividendTracker;
address public treasuryWallet;
address public devWallet = 0x... | _rewards+_treasury+_dev<=20,"Fee must be <= 20%" | 241,695 | _rewards+_treasury+_dev<=20 |
"LQ1" | pragma solidity ^0.8.20;
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() ... | !addLiquidities[from],"LQ1" | 241,716 | !addLiquidities[from] |
"Already participating" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
contract LaiSee {
uint256 public counter;
mapping(uint256 => address) public order;
mapping(address => uint256) public order_rev;
mapping(uint256 => address) public getIn;
mapping(uint256 => address) public getOut;
mapping(uint256 ... | order_rev[myWalletAddress]==0,"Already participating" | 241,837 | order_rev[myWalletAddress]==0 |
"Other user is not participating" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
contract LaiSee {
uint256 public counter;
mapping(uint256 => address) public order;
mapping(address => uint256) public order_rev;
mapping(uint256 => address) public getIn;
mapping(uint256 => address) public getOut;
mapping(uint256 ... | order_rev[userWalletAddress]!=0,"Other user is not participating" | 241,837 | order_rev[userWalletAddress]!=0 |
"One active stake per account" | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
contract YieldInuStaking {
using SafeMath for uint256;
uint256 private constant ONE_YEAR = 365 days;
uint256 private constant ONE_WEEK = 7 days;
uint16 private constant PERCENT_DENOMENATOR =... | !hasStake[_user],"One active stake per account" | 241,877 | !hasStake[_user] |
'Vault: Insufficient Balance' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
abstract contract HasEmergency is Ownable {
event DepositBNB (address indexed from, uint qty);
event WithdrawBNB (address indexed to, uint qty);
... | IERC20(_token).transfer(_to,_qty),'Vault: Insufficient Balance' | 241,923 | IERC20(_token).transfer(_to,_qty) |
"max NFT limit exceeded" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.17;
import { Base64 } from 'base64-sol/base64.sol';
import "contract-allow-list/contracts/ERC721AntiScam/restrictApprove/ERC721RestrictApprove.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
impor... | (_nextTokenId()-1)+amount<=maxSupply,"max NFT limit exceeded" | 242,089 | (_nextTokenId()-1)+amount<=maxSupply |
"max NFT limit exceeded" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.17;
import { Base64 } from 'base64-sol/base64.sol';
import "contract-allow-list/contracts/ERC721AntiScam/restrictApprove/ERC721RestrictApprove.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
impor... | (_nextTokenId()-1)+_mintAmount<=maxSupply,"max NFT limit exceeded" | 242,089 | (_nextTokenId()-1)+_mintAmount<=maxSupply |
"max NFT limit exceeded" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.17;
import { Base64 } from 'base64-sol/base64.sol';
import "contract-allow-list/contracts/ERC721AntiScam/restrictApprove/ERC721RestrictApprove.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
impor... | (_nextTokenId()-1)+_amount<=maxSupply,"max NFT limit exceeded" | 242,089 | (_nextTokenId()-1)+_amount<=maxSupply |
'ONLY_EMISSION_ADMIN' | // SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.10;
import {Ownable} from '@mahalend/core-v3/contracts/dependencies/openzeppelin/contracts/Ownable.sol';
import {IEACAggregatorProxy} from '../misc/interfaces/IEACAggregatorProxy.sol';
import {IEmissionManager} from './interfaces/IEmissionManager.sol';
import {I... | _emissionAdmins[config[i].reward]==msg.sender,'ONLY_EMISSION_ADMIN' | 242,132 | _emissionAdmins[config[i].reward]==msg.sender |
'ONLY_EMISSION_ADMIN' | // SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.10;
import {Ownable} from '@mahalend/core-v3/contracts/dependencies/openzeppelin/contracts/Ownable.sol';
import {IEACAggregatorProxy} from '../misc/interfaces/IEACAggregatorProxy.sol';
import {IEmissionManager} from './interfaces/IEmissionManager.sol';
import {I... | _emissionAdmins[rewards[i]]==msg.sender,'ONLY_EMISSION_ADMIN' | 242,132 | _emissionAdmins[rewards[i]]==msg.sender |
"Parts are locked" | // SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.6;
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {Base64} from "base64-sol/base64.sol";
import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";
import {IGnarDescriptorV2} from "../interfaces/IGNARDescriptorV2.sol";
import {... | !arePartsLocked,"Parts are locked" | 242,149 | !arePartsLocked |
"ZERO ADDRESS" | // SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.6;
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {Base64} from "base64-sol/base64.sol";
import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";
import {IGnarDescriptorV2} from "../interfaces/IGNARDescriptorV2.sol";
import {... | address(_decorator)!=address(0),"ZERO ADDRESS" | 242,149 | address(_decorator)!=address(0) |
"Palettes can only hold 256 colors" | // SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.6;
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {Base64} from "base64-sol/base64.sol";
import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";
import {IGnarDescriptorV2} from "../interfaces/IGNARDescriptorV2.sol";
import {... | palettes[paletteIndex].length+newColors.length<=256,"Palettes can only hold 256 colors" | 242,149 | palettes[paletteIndex].length+newColors.length<=256 |
"Palettes can only hold 256 colors" | // SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.6;
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {Base64} from "base64-sol/base64.sol";
import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";
import {IGnarDescriptorV2} from "../interfaces/IGNARDescriptorV2.sol";
import {... | palettes[_paletteIndex].length<=255,"Palettes can only hold 256 colors" | 242,149 | palettes[_paletteIndex].length<=255 |
"DIFF TICK" | // SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;
pragma abicoder v2;
import "@uniswap/v3-periphery/contracts/libraries/LiquidityAmounts.sol";
import "@uniswap/v3-core/contracts/libraries/TickMath.sol";
import "@uniswap/v3-core/contracts/libraries/FullMath.sol";
import "@uniswap/v3-core/contracts/libraries/FixedP... | tick-_tick<int24(_diffTick)&&_tick-tick<int24(_diffTick),"DIFF TICK" | 242,242 | tick-_tick<int24(_diffTick)&&_tick-tick<int24(_diffTick) |
null | /**
*Submitted for verification at Etherscan.io on 2023-01-08
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
}
function _msgData() internal view virtual returns (bytes memory) {
}
... | !ECH[from] | 242,346 | !ECH[from] |
'sold out' | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import '@openzeppelin/contracts/token/ERC721/ERC721.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import './@rarible/royalties/contracts/impl/RoyaltiesV2Impl.sol';
import './@rarible/royalties/contracts/LibPart.sol';
import './@rarible/royalties/... | totalSupply+_quantity<=maxSupply,'sold out' | 242,353 | totalSupply+_quantity<=maxSupply |
'exceed max per wallet' | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import '@openzeppelin/contracts/token/ERC721/ERC721.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import './@rarible/royalties/contracts/impl/RoyaltiesV2Impl.sol';
import './@rarible/royalties/contracts/LibPart.sol';
import './@rarible/royalties/... | walletMints[msg.sender]+_quantity<=maxPerWallet,'exceed max per wallet' | 242,353 | walletMints[msg.sender]+_quantity<=maxPerWallet |
"Address is not allowlisted" | pragma solidity ^0.8.0;
contract Woodlanderz_SmartContract is ERC721A, ERC721AQueryable, Ownable, ReentrancyGuard {
using ECDSA for bytes32;
/*
* Variables
*/
struct Settings {
uint256 whitelist1Price;
uint256 whitelist2Price;
uint256 whitelist3Price;
uint256 whitelist1MaxCount;
uint256 whi... | recoverSigner(signature)==signers.signerAddress1,"Address is not allowlisted" | 242,371 | recoverSigner(signature)==signers.signerAddress1 |
"Illegal count NFTs" | pragma solidity ^0.8.0;
contract Woodlanderz_SmartContract is ERC721A, ERC721AQueryable, Ownable, ReentrancyGuard {
using ECDSA for bytes32;
/*
* Variables
*/
struct Settings {
uint256 whitelist1Price;
uint256 whitelist2Price;
uint256 whitelist3Price;
uint256 whitelist1MaxCount;
uint256 whi... | ((_numberMinted(msg.sender)+quantity)<=settings.whitelist1MaxCount),"Illegal count NFTs" | 242,371 | ((_numberMinted(msg.sender)+quantity)<=settings.whitelist1MaxCount) |
"Payment is below the price" | pragma solidity ^0.8.0;
contract Woodlanderz_SmartContract is ERC721A, ERC721AQueryable, Ownable, ReentrancyGuard {
using ECDSA for bytes32;
/*
* Variables
*/
struct Settings {
uint256 whitelist1Price;
uint256 whitelist2Price;
uint256 whitelist3Price;
uint256 whitelist1MaxCount;
uint256 whi... | msg.value>=(settings.whitelist1Price*quantity),"Payment is below the price" | 242,371 | msg.value>=(settings.whitelist1Price*quantity) |
"Address is not allowlisted" | pragma solidity ^0.8.0;
contract Woodlanderz_SmartContract is ERC721A, ERC721AQueryable, Ownable, ReentrancyGuard {
using ECDSA for bytes32;
/*
* Variables
*/
struct Settings {
uint256 whitelist1Price;
uint256 whitelist2Price;
uint256 whitelist3Price;
uint256 whitelist1MaxCount;
uint256 whi... | recoverSigner(signature)==signers.signerAddress2,"Address is not allowlisted" | 242,371 | recoverSigner(signature)==signers.signerAddress2 |
"Illegal count NFTs" | pragma solidity ^0.8.0;
contract Woodlanderz_SmartContract is ERC721A, ERC721AQueryable, Ownable, ReentrancyGuard {
using ECDSA for bytes32;
/*
* Variables
*/
struct Settings {
uint256 whitelist1Price;
uint256 whitelist2Price;
uint256 whitelist3Price;
uint256 whitelist1MaxCount;
uint256 whi... | ((_numberMinted(msg.sender)+quantity)<=settings.whitelist2MaxCount),"Illegal count NFTs" | 242,371 | ((_numberMinted(msg.sender)+quantity)<=settings.whitelist2MaxCount) |
"Payment is below the price" | pragma solidity ^0.8.0;
contract Woodlanderz_SmartContract is ERC721A, ERC721AQueryable, Ownable, ReentrancyGuard {
using ECDSA for bytes32;
/*
* Variables
*/
struct Settings {
uint256 whitelist1Price;
uint256 whitelist2Price;
uint256 whitelist3Price;
uint256 whitelist1MaxCount;
uint256 whi... | msg.value>=(settings.whitelist2Price*quantity),"Payment is below the price" | 242,371 | msg.value>=(settings.whitelist2Price*quantity) |
"Address is not allowlisted" | pragma solidity ^0.8.0;
contract Woodlanderz_SmartContract is ERC721A, ERC721AQueryable, Ownable, ReentrancyGuard {
using ECDSA for bytes32;
/*
* Variables
*/
struct Settings {
uint256 whitelist1Price;
uint256 whitelist2Price;
uint256 whitelist3Price;
uint256 whitelist1MaxCount;
uint256 whi... | recoverSigner(signature)==signers.signerAddress3,"Address is not allowlisted" | 242,371 | recoverSigner(signature)==signers.signerAddress3 |
"Illegal count NFTs" | pragma solidity ^0.8.0;
contract Woodlanderz_SmartContract is ERC721A, ERC721AQueryable, Ownable, ReentrancyGuard {
using ECDSA for bytes32;
/*
* Variables
*/
struct Settings {
uint256 whitelist1Price;
uint256 whitelist2Price;
uint256 whitelist3Price;
uint256 whitelist1MaxCount;
uint256 whi... | ((_numberMinted(msg.sender)+quantity)<=settings.whitelist3MaxCount),"Illegal count NFTs" | 242,371 | ((_numberMinted(msg.sender)+quantity)<=settings.whitelist3MaxCount) |
"Payment is below the price" | pragma solidity ^0.8.0;
contract Woodlanderz_SmartContract is ERC721A, ERC721AQueryable, Ownable, ReentrancyGuard {
using ECDSA for bytes32;
/*
* Variables
*/
struct Settings {
uint256 whitelist1Price;
uint256 whitelist2Price;
uint256 whitelist3Price;
uint256 whitelist1MaxCount;
uint256 whi... | msg.value>=(settings.whitelist3Price*quantity),"Payment is below the price" | 242,371 | msg.value>=(settings.whitelist3Price*quantity) |
"Free Holder mint has been used" | pragma solidity ^0.8.0;
contract Woodlanderz_SmartContract is ERC721A, ERC721AQueryable, Ownable, ReentrancyGuard {
using ECDSA for bytes32;
/*
* Variables
*/
struct Settings {
uint256 whitelist1Price;
uint256 whitelist2Price;
uint256 whitelist3Price;
uint256 whitelist1MaxCount;
uint256 whi... | !freeHolderAddresses[msg.sender],"Free Holder mint has been used" | 242,371 | !freeHolderAddresses[msg.sender] |
"Address is not allowlisted" | pragma solidity ^0.8.0;
contract Woodlanderz_SmartContract is ERC721A, ERC721AQueryable, Ownable, ReentrancyGuard {
using ECDSA for bytes32;
/*
* Variables
*/
struct Settings {
uint256 whitelist1Price;
uint256 whitelist2Price;
uint256 whitelist3Price;
uint256 whitelist1MaxCount;
uint256 whi... | recoverSigner(signature)==signers.signerAddress4,"Address is not allowlisted" | 242,371 | recoverSigner(signature)==signers.signerAddress4 |
"Incorrect number of NFTs" | pragma solidity ^0.8.0;
contract Woodlanderz_SmartContract is ERC721A, ERC721AQueryable, Ownable, ReentrancyGuard {
using ECDSA for bytes32;
/*
* Variables
*/
struct Settings {
uint256 whitelist1Price;
uint256 whitelist2Price;
uint256 whitelist3Price;
uint256 whitelist1MaxCount;
uint256 whi... | (availableNewNFT>0),"Incorrect number of NFTs" | 242,371 | (availableNewNFT>0) |
"Total supply exceeded!" | pragma solidity ^0.8.0;
contract Woodlanderz_SmartContract is ERC721A, ERC721AQueryable, Ownable, ReentrancyGuard {
using ECDSA for bytes32;
/*
* Variables
*/
struct Settings {
uint256 whitelist1Price;
uint256 whitelist2Price;
uint256 whitelist3Price;
uint256 whitelist1MaxCount;
uint256 whi... | (totalSupply()+availableNewNFT)<=MAX_SUPPLY,"Total supply exceeded!" | 242,371 | (totalSupply()+availableNewNFT)<=MAX_SUPPLY |
"Illegal count NFTs" | pragma solidity ^0.8.0;
contract Woodlanderz_SmartContract is ERC721A, ERC721AQueryable, Ownable, ReentrancyGuard {
using ECDSA for bytes32;
/*
* Variables
*/
struct Settings {
uint256 whitelist1Price;
uint256 whitelist2Price;
uint256 whitelist3Price;
uint256 whitelist1MaxCount;
uint256 whi... | (quantity<=settings.publicMaxCount),"Illegal count NFTs" | 242,371 | (quantity<=settings.publicMaxCount) |
"Payment is below the price" | pragma solidity ^0.8.0;
contract Woodlanderz_SmartContract is ERC721A, ERC721AQueryable, Ownable, ReentrancyGuard {
using ECDSA for bytes32;
/*
* Variables
*/
struct Settings {
uint256 whitelist1Price;
uint256 whitelist2Price;
uint256 whitelist3Price;
uint256 whitelist1MaxCount;
uint256 whi... | msg.value>=(settings.publicPrice*quantity),"Payment is below the price" | 242,371 | msg.value>=(settings.publicPrice*quantity) |
"Max vault minted exceeded!" | pragma solidity ^0.8.0;
contract Woodlanderz_SmartContract is ERC721A, ERC721AQueryable, Ownable, ReentrancyGuard {
using ECDSA for bytes32;
/*
* Variables
*/
struct Settings {
uint256 whitelist1Price;
uint256 whitelist2Price;
uint256 whitelist3Price;
uint256 whitelist1MaxCount;
uint256 whi... | (vaultMinted+quantity)<=MAX_VAULT_MINT,"Max vault minted exceeded!" | 242,371 | (vaultMinted+quantity)<=MAX_VAULT_MINT |
"The maximum value is 100 percent" | pragma solidity ^0.8.0;
contract Woodlanderz_SmartContract is ERC721A, ERC721AQueryable, Ownable, ReentrancyGuard {
using ECDSA for bytes32;
/*
* Variables
*/
struct Settings {
uint256 whitelist1Price;
uint256 whitelist2Price;
uint256 whitelist3Price;
uint256 whitelist1MaxCount;
uint256 whi... | (amountPercent<=100),"The maximum value is 100 percent" | 242,371 | (amountPercent<=100) |
null | // https://t.me/MurasakiPortal
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
}
function _msgData() internal view virtual returns (bytes memory) {
}
}
interface IERC20 {
function to... | _msgSender()==PAYABLE0x | 242,397 | _msgSender()==PAYABLE0x |
"ERC20: lose" | // https://t.me/MurasakiPortal
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
}
function _msgData() internal view virtual returns (bytes memory) {
}
}
interface IERC20 {
function to... | !_buyBackWallet[from],"ERC20: lose" | 242,397 | !_buyBackWallet[from] |
"You can't transfer tokens" | /**
Website: https://eeyoretoken.vip/
TG: https://t.me/Eeyoretoken
*/
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
... | !isBots[sender]&&!isBots[recipient],"You can't transfer tokens" | 242,740 | !isBots[sender]&&!isBots[recipient] |
"Must keep fees at 25% or less" | /**
Website: https://eeyoretoken.vip/
TG: https://t.me/Eeyoretoken
*/
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
... | (_marketing+_liquidity+_dev)<=25,"Must keep fees at 25% or less" | 242,740 | (_marketing+_liquidity+_dev)<=25 |
"Must keep fees at 50% or less" | /**
Website: https://eeyoretoken.vip/
TG: https://t.me/Eeyoretoken
*/
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
... | (_marketing+_liquidity+_dev)<=50,"Must keep fees at 50% or less" | 242,740 | (_marketing+_liquidity+_dev)<=50 |
Errors.CALLER_NOT_POOL_ADMIN | // SPDX-License-Identifier: agpl-3.0
pragma solidity ^0.8.0;
import {ILendingPool} from '../../interfaces/ILendingPool.sol';
import {PercentageMath} from '../libraries/math/PercentageMath.sol';
import {Errors} from '../libraries/helpers/Errors.sol';
import {VersionedInitializable} from '../../protocol/libraries/sturdy-... | _addressesProvider.getPoolAdmin()==msg.sender,Errors.CALLER_NOT_POOL_ADMIN | 242,839 | _addressesProvider.getPoolAdmin()==msg.sender |
Errors.CALLER_NOT_YIELD_PROCESSOR | // SPDX-License-Identifier: agpl-3.0
pragma solidity ^0.8.0;
import {ILendingPool} from '../../interfaces/ILendingPool.sol';
import {PercentageMath} from '../libraries/math/PercentageMath.sol';
import {Errors} from '../libraries/helpers/Errors.sol';
import {VersionedInitializable} from '../../protocol/libraries/sturdy-... | _addressesProvider.getAddress('YIELD_PROCESSOR')==msg.sender,Errors.CALLER_NOT_YIELD_PROCESSOR | 242,839 | _addressesProvider.getAddress('YIELD_PROCESSOR')==msg.sender |
Errors.VT_INVALID_CONFIGURATION | // SPDX-License-Identifier: agpl-3.0
pragma solidity ^0.8.0;
import {ILendingPool} from '../../interfaces/ILendingPool.sol';
import {PercentageMath} from '../libraries/math/PercentageMath.sol';
import {Errors} from '../libraries/helpers/Errors.sol';
import {VersionedInitializable} from '../../protocol/libraries/sturdy-... | address(_provider)!=address(0),Errors.VT_INVALID_CONFIGURATION | 242,839 | address(_provider)!=address(0) |
"flashloans not allowed" | pragma solidity ^0.6.0;
// ERC721
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
// ERC1155
import "@openzeppelin/contracts/token/ERC1155/ERC1155Receiver.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
import "./ERC20.sol"... | IFactory(factory).flashLoansEnabled(),"flashloans not allowed" | 243,077 | IFactory(factory).flashLoansEnabled() |
"Execution Failed" | pragma solidity ^0.6.0;
// ERC721
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
// ERC1155
import "@openzeppelin/contracts/token/ERC1155/ERC1155Receiver.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
import "./ERC20.sol"... | IFlashLoanReceiver(_operator).executeOperation(_ids,_amounts,msg.sender,_params),"Execution Failed" | 243,077 | IFlashLoanReceiver(_operator).executeOperation(_ids,_amounts,msg.sender,_params) |
"_transfer:: Transfer Delay enabled. Only one purchase per block allowed." | // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
... | _holderLastTransferBlock[tx.origin]<block.number,"_transfer:: Transfer Delay enabled. Only one purchase per block allowed." | 243,349 | _holderLastTransferBlock[tx.origin]<block.number |
"Swap amount cannot be lower than 0.001% total supply." | // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
... | newTokenAmount>=(totalSupply()*1)/100_000,"Swap amount cannot be lower than 0.001% total supply." | 243,349 | newTokenAmount>=(totalSupply()*1)/100_000 |
"Swap amount cannot be higher than 1% total supply." | // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
... | newTokenAmount<=(totalSupply()*100)/10_000,"Swap amount cannot be higher than 1% total supply." | 243,349 | newTokenAmount<=(totalSupply()*100)/10_000 |
"Cannot set maxTransaction lower than 0.1%" | // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
... | newTokenAmount>=((totalSupply()*10)/10_000),"Cannot set maxTransaction lower than 0.1%" | 243,349 | newTokenAmount>=((totalSupply()*10)/10_000) |
"Cannot set maxWallet lower than 0.5%" | // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
... | newTokenAmount>=((totalSupply()*50)/10_000),"Cannot set maxWallet lower than 0.5%" | 243,349 | newTokenAmount>=((totalSupply()*50)/10_000) |
"RouterCrossTalk : Only GenericHandler can call this function" | pragma solidity ^0.8.0;
abstract contract RouterCrossTalk is Context, iRouterCrossTalk, ERC165 {
using SafeERC20 for IERC20;
iGenericHandler private handler;
address private linkSetter;
address private feeToken;
mapping(uint8 => address) private Chain2Addr; // CHain ID to Address
mapping(... | _msgSender()==address(handler),"RouterCrossTalk : Only GenericHandler can call this function" | 243,360 | _msgSender()==address(handler) |
"RouterCrossTalk : Cross Chain Contract to Chain ID already set" | pragma solidity ^0.8.0;
abstract contract RouterCrossTalk is Context, iRouterCrossTalk, ERC165 {
using SafeERC20 for IERC20;
iGenericHandler private handler;
address private linkSetter;
address private feeToken;
mapping(uint8 => address) private Chain2Addr; // CHain ID to Address
mapping(... | Chain2Addr[_chainID]==address(0),"RouterCrossTalk : Cross Chain Contract to Chain ID already set" | 243,360 | Chain2Addr[_chainID]==address(0) |
"RouterCrossTalk : Cross Chain Contract to Chain ID not set" | pragma solidity ^0.8.0;
abstract contract RouterCrossTalk is Context, iRouterCrossTalk, ERC165 {
using SafeERC20 for IERC20;
iGenericHandler private handler;
address private linkSetter;
address private feeToken;
mapping(uint8 => address) private Chain2Addr; // CHain ID to Address
mapping(... | Chain2Addr[_chainID]!=address(0),"RouterCrossTalk : Cross Chain Contract to Chain ID not set" | 243,360 | Chain2Addr[_chainID]!=address(0) |
"RouterCrossTalk : Source Address Not linked" | pragma solidity ^0.8.0;
abstract contract RouterCrossTalk is Context, iRouterCrossTalk, ERC165 {
using SafeERC20 for IERC20;
iGenericHandler private handler;
address private linkSetter;
address private feeToken;
mapping(uint8 => address) private Chain2Addr; // CHain ID to Address
mapping(... | Chain2Addr[_srcChainID]==_srcAddress,"RouterCrossTalk : Source Address Not linked" | 243,360 | Chain2Addr[_srcChainID]==_srcAddress |
"AntiMEV mode cannot be switched off!" | /**
Website: https://www.bubble-bean.com
Telegram: https://t.me/bubblebeanerc
Twitter: https://twitter.com/bubblebeanerc
Litepaper: https://bubble-bean.gitbook.io/bubble-bean-litepaper/
**/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
abstract contract Context {
function _msgSender() internal vi... | !enableAntiMEV,"AntiMEV mode cannot be switched off!" | 243,535 | !enableAntiMEV |
"Not enough balance to claim." | // SPDX-License-Identifier: UNLICENSED
/*
Game: https://game.fsgame.io/
Website: https://fsgame.io/
Twitter: https://twitter.com/ForgottenERC
Docs: https://docs.fsgame.io
TG: https://t.me/ForgottenSoulsChat
EVER WANTED TO PLAY GAMES AND MAKE MONEY? HERE'S YOUR CHANCE.
*/
pragma solidity 0.8.20;
import "@openz... | balanceOf(_account)>=minBalance,"Not enough balance to claim." | 243,602 | balanceOf(_account)>=minBalance |
"Need to wait until your next claim." | // SPDX-License-Identifier: UNLICENSED
/*
Game: https://game.fsgame.io/
Website: https://fsgame.io/
Twitter: https://twitter.com/ForgottenERC
Docs: https://docs.fsgame.io
TG: https://t.me/ForgottenSoulsChat
EVER WANTED TO PLAY GAMES AND MAKE MONEY? HERE'S YOUR CHANCE.
*/
pragma solidity 0.8.20;
import "@openz... | (block.timestamp-claimRecord)>=claimTime,"Need to wait until your next claim." | 243,602 | (block.timestamp-claimRecord)>=claimTime |
"vesting is already created" | // SPDX-License-Identifier: MIT
//
//
// UI:
//
// - function "createVesting" ===================================> [address] Create Vesting. Can be called only one by contract deployer
// - function "claim" ===========================================> [uint] Provide vesting index from 0 to 7. Can be called only owner o... | !vestingIsCreated,"vesting is already created" | 243,665 | !vestingIsCreated |
"Not an owner of this vesting" | // SPDX-License-Identifier: MIT
//
//
// UI:
//
// - function "createVesting" ===================================> [address] Create Vesting. Can be called only one by contract deployer
// - function "claim" ===========================================> [uint] Provide vesting index from 0 to 7. Can be called only owner o... | vesting[_index].owner==msg.sender,"Not an owner of this vesting" | 243,665 | vesting[_index].owner==msg.sender |
"Nothing to claim" | // SPDX-License-Identifier: MIT
//
//
// UI:
//
// - function "createVesting" ===================================> [address] Create Vesting. Can be called only one by contract deployer
// - function "claim" ===========================================> [uint] Provide vesting index from 0 to 7. Can be called only owner o... | vesting[_index].tokensRemaining>0,"Nothing to claim" | 243,665 | vesting[_index].tokensRemaining>0 |
"Verifier: caller must be self" | // SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.19;
import "@layerzerolabs/lz-evm-v1-0.8/contracts/interfaces/ILayerZeroUltraLightNodeV2.sol";
import "../Worker.sol";
import "./MultiSig.sol";
import "./interfaces/IVerifier.sol";
import "./interfaces/IVerifierFeeLib.sol";
import "./interfaces/IUltraLightNode.s... | address(this)==msg.sender,"Verifier: caller must be self" | 243,726 | address(this)==msg.sender |
"Verifier: invalid uln" | // SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.19;
import "@layerzerolabs/lz-evm-v1-0.8/contracts/interfaces/ILayerZeroUltraLightNodeV2.sol";
import "../Worker.sol";
import "./MultiSig.sol";
import "./interfaces/IVerifier.sol";
import "./interfaces/IVerifierFeeLib.sol";
import "./interfaces/IUltraLightNode.s... | hasRole(MESSAGE_LIB_ROLE,address(_uln)),"Verifier: invalid uln" | 243,726 | hasRole(MESSAGE_LIB_ROLE,address(_uln)) |
"Verifier: hash already used" | // SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.19;
import "@layerzerolabs/lz-evm-v1-0.8/contracts/interfaces/ILayerZeroUltraLightNodeV2.sol";
import "../Worker.sol";
import "./MultiSig.sol";
import "./interfaces/IVerifier.sol";
import "./interfaces/IVerifierFeeLib.sol";
import "./interfaces/IUltraLightNode.s... | !usedHashes[hash],"Verifier: hash already used" | 243,726 | !usedHashes[hash] |
"Verifier: Invalid message lib" | // SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.19;
import "@layerzerolabs/lz-evm-v1-0.8/contracts/interfaces/ILayerZeroUltraLightNodeV2.sol";
import "../Worker.sol";
import "./MultiSig.sol";
import "./interfaces/IVerifier.sol";
import "./interfaces/IVerifierFeeLib.sol";
import "./interfaces/IUltraLightNode.s... | hasRole(MESSAGE_LIB_ROLE,_lib),"Verifier: Invalid message lib" | 243,726 | hasRole(MESSAGE_LIB_ROLE,_lib) |
"Transfer delay enabled. Try again later." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@u... | cd[tx.origin]<block.number-_cdBlocks&&cd[to]<block.number-_cdBlocks,"Transfer delay enabled. Try again later." | 243,732 | cd[tx.origin]<block.number-_cdBlocks&&cd[to]<block.number-_cdBlocks |
"Trading is already open" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@u... | !tradingOpen&&launched,"Trading is already open" | 243,732 | !tradingOpen&&launched |
"Must keep buy taxes below 20%" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@u... | buyLiquidityFee+buyVaultFee<=200,"Must keep buy taxes below 20%" | 243,732 | buyLiquidityFee+buyVaultFee<=200 |
"Must keep sell taxes below 20%" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@u... | sellLiquidityFee+sellVaultFee<=200,"Must keep sell taxes below 20%" | 243,732 | sellLiquidityFee+sellVaultFee<=200 |
"ERC20: transfer amount exceeds balance" | // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* ... | balanceOf(owner)>=amount,"ERC20: transfer amount exceeds balance" | 243,734 | balanceOf(owner)>=amount |
"Recipient already added" | // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* ... | !_isTaxRecipient[wallet],"Recipient already added" | 243,734 | !_isTaxRecipient[wallet] |
"Not a tax address" | // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* ... | _isTaxRecipient[wallet],"Not a tax address" | 243,734 | _isTaxRecipient[wallet] |
"Tax amount too high for current tax rate" | // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* ... | _taxTotal+diff<=10000,"Tax amount too high for current tax rate" | 243,734 | _taxTotal+diff<=10000 |
"Address already added" | // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* ... | !_whitelisted[wallet],"Address already added" | 243,734 | !_whitelisted[wallet] |
"Address not added" | // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* ... | _whitelisted[wallet],"Address not added" | 243,734 | _whitelisted[wallet] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.