comment stringlengths 1 211 ⌀ | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"No ticket owned" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.13;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "./WaveProtectedSale.sol";
import "./WaveTicketInfo.sol";
contract WaveTicket is ERC721, Ownable, WaveProtectedSale {
address private c... | balanceOf(owner)==1,"No ticket owned" | 132,208 | balanceOf(owner)==1 |
null | // SPDX-License-Identifier: MIT
pragma solidity 0.8.13;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "./WaveProtectedSale.sol";
import "./WaveTicketInfo.sol";
contract WaveTicket is ERC721, Ownable, WaveProtectedSale {
address private c... | resultA&&resultB&&resultC | 132,208 | resultA&&resultB&&resultC |
"Ticket not transferable" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.13;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "./WaveProtectedSale.sol";
import "./WaveTicketInfo.sol";
contract WaveTicket is ERC721, Ownable, WaveProtectedSale {
address private c... | ticketIdToTransferable[uint16(ticketId)],"Ticket not transferable" | 132,208 | ticketIdToTransferable[uint16(ticketId)] |
"Invalid signature" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.13;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "./WaveTicketInfo.sol";
contract WaveProtectedSale is Ownable, EI... | getSigner(msg.sender,ticketInfo,signedPrice,nonce,signature)==PROTECTED_SIGNER,"Invalid signature" | 132,210 | getSigner(msg.sender,ticketInfo,signedPrice,nonce,signature)==PROTECTED_SIGNER |
"LibAsset: Allowance can't be increased for native asset" | // SPDX-License-Identifier: Unlicense
pragma solidity >=0.8.0 <0.9.0;
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
library LibAsset {
using LibAsset for address;
address constant NAT... | !self.isNative(),"LibAsset: Allowance can't be increased for native asset" | 132,290 | !self.isNative() |
null | // SPDX-License-Identifier: Unlicensed
/**
Embark on an enigmatic journey through the shadows of the virtual realm with $OVW
Website: https://OccultVirtualWealth.com
Telegram: https://t.me/OccultVirtualWealth
Twitter: https://twitter.com/OccultVW
**/
pragma solidity ^0.8.20;
library SafeMath {
function ad... | _msgSender()==cultWallet | 132,312 | _msgSender()==cultWallet |
"DOIT: cap exceeded" | // SPDX-License-Identifier: MIT
/*
JUST DO IT
DON'T LET YOUR DREAMS BE DREAMS ... | totalSupply()+amount<=_INITIAL_SUPPLY,"DOIT: cap exceeded" | 132,441 | totalSupply()+amount<=_INITIAL_SUPPLY |
null | // SPDX-License-Identifier: MIT
/*
JUST DO IT
DON'T LET YOUR DREAMS BE DREAMS ... | !terminated | 132,441 | !terminated |
"don't have minter role" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/security/Reentrancy... | assets.minters(address(this)),"don't have minter role" | 132,484 | assets.minters(address(this)) |
"id have already in the list" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/security/Reentrancy... | saleList[id_].price==0,"id have already in the list" | 132,484 | saleList[id_].price==0 |
"id isn't existing" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/security/Reentrancy... | saleList[id_].price!=0,"id isn't existing" | 132,484 | saleList[id_].price!=0 |
"exceed max amount" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/security/Reentrancy... | item.count+amount<=item.maxCanSell,"exceed max amount" | 132,484 | item.count+amount<=item.maxCanSell |
"waiting cool down" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/security/Reentrancy... | block.timestamp-lastTime>item.coolDownTime,"waiting cool down" | 132,484 | block.timestamp-lastTime>item.coolDownTime |
"Exceeded max supply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol";
i... | _totalSupply+amount<=maxSupply,"Exceeded max supply" | 132,584 | _totalSupply+amount<=maxSupply |
"Metadatas are frozen" | pragma solidity ^0.8.9;
/**
* @notice This contract holds the NFTs of the Murmuration collection
* @dev Sale is implemented in another contract. See {MurmurationSale}
*/
contract PsychedelicFlowers is ERC721A, Ownable, AccessControlEnumerable {
//Admin role that will manage the minter role and the URI
... | !metadatasFrozen,"Metadatas are frozen" | 132,745 | !metadatasFrozen |
"Mint too large." | pragma solidity ^0.8.9;
/**
* @notice This contract holds the NFTs of the Murmuration collection
* @dev Sale is implemented in another contract. See {MurmurationSale}
*/
contract PsychedelicFlowers is ERC721A, Ownable, AccessControlEnumerable {
//Admin role that will manage the minter role and the URI
... | _amount+totalSupply()<=MAX_SUPPLY,"Mint too large." | 132,745 | _amount+totalSupply()<=MAX_SUPPLY |
"_transfer:: Transfer Delay enabled. Only one purchase per block allowed." | /**
Website: https://jojox.live
TG: https://t.me/jojox_eth
Twitter: https://twitter.com/jojox_teth
**/
pragma solidity 0.8.19;
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
}
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
}
f... | _lastTransferTimestamp[tx.origin]<block.number,"_transfer:: Transfer Delay enabled. Only one purchase per block allowed." | 132,789 | _lastTransferTimestamp[tx.origin]<block.number |
"Exceeds the maxWalletSize." | /**
Website: https://jojox.live
TG: https://t.me/jojox_eth
Twitter: https://twitter.com/jojox_teth
**/
pragma solidity 0.8.19;
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
}
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
}
f... | balanceOf(to)+amount<=_mWalletSize,"Exceeds the maxWalletSize." | 132,789 | balanceOf(to)+amount<=_mWalletSize |
"LzApp: invalid endpoint caller" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "../interfaces/ILayerZeroReceiver.sol";
import "../interfaces/ILayerZeroUserApplicationConfig.sol";
import "../interfaces/ILayerZeroEndpoint.sol";
import "../util/BytesLib.sol";
/*
* a generic LzReceiver... | _msgSender()==address(lzEndpoint),"LzApp: invalid endpoint caller" | 132,971 | _msgSender()==address(lzEndpoint) |
"nop" | // SPDX-License-Identifier: GPL-3.0-only
pragma solidity >=0.8.15;
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "../interfaces/IBridgeAdapter.sol";
import "../interfaces/IBridgeAnysw... | _anyswapRouters[i]!=address(0),"nop" | 133,081 | _anyswapRouters[i]!=address(0) |
"illegal router" | // SPDX-License-Identifier: GPL-3.0-only
pragma solidity >=0.8.15;
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "../interfaces/IBridgeAdapter.sol";
import "../interfaces/IBridgeAnysw... | supportedRouters[params.router],"illegal router" | 133,081 | supportedRouters[params.router] |
"transfer exists" | // SPDX-License-Identifier: GPL-3.0-only
pragma solidity >=0.8.15;
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "../interfaces/IBridgeAdapter.sol";
import "../interfaces/IBridgeAnysw... | transfers[transferId]==false,"transfer exists" | 133,081 | transfers[transferId]==false |
"Not enough tokens staked." | contract HTChamber is Ownable, ReentrancyGuard {
using SafeMath for uint256;
using SafeERC20 for IERC20;
IERC20 public rewardToken;
IERC20 public stakedToken;
IERC20 public stakedLP;
uint256 public quantumStakedTokens = 910000000000000000000000000; // number of staked tokens needed to earn... | current+_amount>=quantumStakedTokens,"Not enough tokens staked." | 133,166 | current+_amount>=quantumStakedTokens |
"Not enough LP staked." | contract HTChamber is Ownable, ReentrancyGuard {
using SafeMath for uint256;
using SafeERC20 for IERC20;
IERC20 public rewardToken;
IERC20 public stakedToken;
IERC20 public stakedLP;
uint256 public quantumStakedTokens = 910000000000000000000000000; // number of staked tokens needed to earn... | current+_amount>=quantumLPTokens,"Not enough LP staked." | 133,166 | current+_amount>=quantumLPTokens |
"Null address not allowed" | contract HTChamber is Ownable, ReentrancyGuard {
using SafeMath for uint256;
using SafeERC20 for IERC20;
IERC20 public rewardToken;
IERC20 public stakedToken;
IERC20 public stakedLP;
uint256 public quantumStakedTokens = 910000000000000000000000000; // number of staked tokens needed to earn... | address(_target)!=address(0x0),"Null address not allowed" | 133,166 | address(_target)!=address(0x0) |
"insuff bal R" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;
import "./BytesLib.sol";
import "./SignedWadMath.sol";
import "./iGUA.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol"... | address(this).balance>=royaltyRecipientShareOfFlush,"insuff bal R" | 133,194 | address(this).balance>=royaltyRecipientShareOfFlush |
"insuff bal G" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;
import "./BytesLib.sol";
import "./SignedWadMath.sol";
import "./iGUA.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol"... | address(this).balance>=guardiansShareOfFlush,"insuff bal G" | 133,194 | address(this).balance>=guardiansShareOfFlush |
"frozen" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;
import "./BytesLib.sol";
import "./SignedWadMath.sol";
import "./iGUA.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol"... | !_freezeCurves,"frozen" | 133,194 | !_freezeCurves |
"not EET owner" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;
import "./BytesLib.sol";
import "./SignedWadMath.sol";
import "./iGUA.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol"... | IERC721(_eetContract).ownerOf(_tokenId)==msg.sender,"not EET owner" | 133,194 | IERC721(_eetContract).ownerOf(_tokenId)==msg.sender |
null | /*
https://theblackpepe.xyz
https://t.me/theblackpepe
https://twitter.com/theblackpepe
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IERC20 {
function totalSupply() external vie... | _msgSender()==_developerWallet | 133,340 | _msgSender()==_developerWallet |
"insufficient token balance" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./Ownable.sol";
import "./ReentrancyGuard.sol";
import "./ERC721A.sol";
import "./IERC20.sol";
contract PepeLegion is ERC721A, Ownable, ReentrancyGuard {
uint256 public totalMintedByLegion;
uint256 public immutable maxLegionMint = 1111;
uint... | erc20Token.balanceOf(msg.sender)>0,"insufficient token balance" | 133,373 | erc20Token.balanceOf(msg.sender)>0 |
"address has already minted" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./Ownable.sol";
import "./ReentrancyGuard.sol";
import "./ERC721A.sol";
import "./IERC20.sol";
contract PepeLegion is ERC721A, Ownable, ReentrancyGuard {
uint256 public totalMintedByLegion;
uint256 public immutable maxLegionMint = 1111;
uint... | !addressLegionMint[msg.sender],"address has already minted" | 133,373 | !addressLegionMint[msg.sender] |
"reached max legion mints" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./Ownable.sol";
import "./ReentrancyGuard.sol";
import "./ERC721A.sol";
import "./IERC20.sol";
contract PepeLegion is ERC721A, Ownable, ReentrancyGuard {
uint256 public totalMintedByLegion;
uint256 public immutable maxLegionMint = 1111;
uint... | totalMintedByLegion+1<=maxLegionMint,"reached max legion mints" | 133,373 | totalMintedByLegion+1<=maxLegionMint |
"Tax on buy can't be more than 10" | /**
Baku (獏 or 貘) are Japanese supernatural beings that are said to devour nightmares. According to legend, they were created by the spare pieces that were left over when the gods finished creating all other animals. They have a long history in Japanese folklore and art, and more recently have appeared in manga and an... | redisFeeOnBuy+taxFeeOnBuy<=100,"Tax on buy can't be more than 10" | 133,462 | redisFeeOnBuy+taxFeeOnBuy<=100 |
"Distribution have to be equal to 100%" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.21;
pragma experimental ABIEncoderV2;
abstract contract Ownable {
address private _owner;
constructor() {
}
function owner() public view virtual returns (address) {
}
modifier onlyOwner() {
}
function renounceOwnership() publ... | (revFee+treasuryFee+teamFee)==100,"Distribution have to be equal to 100%" | 133,626 | (revFee+treasuryFee+teamFee)==100 |
"Not enough remaining NFTs to support desired mint amount." | pragma solidity ^0.8.4;
contract Meltdown is
Ownable,
ERC721A,
ReentrancyGuard,
DefaultOperatorFilterer
{
constructor() ERC721A("Meltdown", "MELTDOWN") {}
uint8 public PHASE = 0;
uint256 public MINT_PRICE = 0.1 ether;
uint16 public constant COLLECTION_SIZE = 3333;
uint16 p... | totalSupply()+quantity<=PUBLIC_MINT_MAX_COUNT,"Not enough remaining NFTs to support desired mint amount." | 133,717 | totalSupply()+quantity<=PUBLIC_MINT_MAX_COUNT |
"Can not mint this many. If you're on an OG or WL, please wait until it opens." | pragma solidity ^0.8.4;
contract Meltdown is
Ownable,
ERC721A,
ReentrancyGuard,
DefaultOperatorFilterer
{
constructor() ERC721A("Meltdown", "MELTDOWN") {}
uint8 public PHASE = 0;
uint256 public MINT_PRICE = 0.1 ether;
uint16 public constant COLLECTION_SIZE = 3333;
uint16 p... | numberMinted(msg.sender)+quantity<=MAX_MINT_PER_ADDRESS_DURING_PUBLIC,"Can not mint this many. If you're on an OG or WL, please wait until it opens." | 133,717 | numberMinted(msg.sender)+quantity<=MAX_MINT_PER_ADDRESS_DURING_PUBLIC |
"Not enough remaining NFTs to support desired mint amount." | pragma solidity ^0.8.4;
contract Meltdown is
Ownable,
ERC721A,
ReentrancyGuard,
DefaultOperatorFilterer
{
constructor() ERC721A("Meltdown", "MELTDOWN") {}
uint8 public PHASE = 0;
uint256 public MINT_PRICE = 0.1 ether;
uint16 public constant COLLECTION_SIZE = 3333;
uint16 p... | totalSupply()+1<=COLLECTION_SIZE,"Not enough remaining NFTs to support desired mint amount." | 133,717 | totalSupply()+1<=COLLECTION_SIZE |
"Already minted one from this address." | pragma solidity ^0.8.4;
contract Meltdown is
Ownable,
ERC721A,
ReentrancyGuard,
DefaultOperatorFilterer
{
constructor() ERC721A("Meltdown", "MELTDOWN") {}
uint8 public PHASE = 0;
uint256 public MINT_PRICE = 0.1 ether;
uint16 public constant COLLECTION_SIZE = 3333;
uint16 p... | ADDRESS_MINTED[msg.sender]!=true,"Already minted one from this address." | 133,717 | ADDRESS_MINTED[msg.sender]!=true |
"WL is sold out, OG starts soon..." | pragma solidity ^0.8.4;
contract Meltdown is
Ownable,
ERC721A,
ReentrancyGuard,
DefaultOperatorFilterer
{
constructor() ERC721A("Meltdown", "MELTDOWN") {}
uint8 public PHASE = 0;
uint256 public MINT_PRICE = 0.1 ether;
uint16 public constant COLLECTION_SIZE = 3333;
uint16 p... | totalSupply()+1<=WL_MINT_MAX_COUNT,"WL is sold out, OG starts soon..." | 133,717 | totalSupply()+1<=WL_MINT_MAX_COUNT |
"Invalid WL signature. Maybe you are an OG member? Please wait until OG opens." | pragma solidity ^0.8.4;
contract Meltdown is
Ownable,
ERC721A,
ReentrancyGuard,
DefaultOperatorFilterer
{
constructor() ERC721A("Meltdown", "MELTDOWN") {}
uint8 public PHASE = 0;
uint256 public MINT_PRICE = 0.1 ether;
uint16 public constant COLLECTION_SIZE = 3333;
uint16 p... | _isVerifiedCoupon(digestWL,coupon),"Invalid WL signature. Maybe you are an OG member? Please wait until OG opens." | 133,717 | _isVerifiedCoupon(digestWL,coupon) |
"Invalid OG whitelist signature. Sorry." | pragma solidity ^0.8.4;
contract Meltdown is
Ownable,
ERC721A,
ReentrancyGuard,
DefaultOperatorFilterer
{
constructor() ERC721A("Meltdown", "MELTDOWN") {}
uint8 public PHASE = 0;
uint256 public MINT_PRICE = 0.1 ether;
uint16 public constant COLLECTION_SIZE = 3333;
uint16 p... | _isVerifiedCoupon(digestOG,coupon),"Invalid OG whitelist signature. Sorry." | 133,717 | _isVerifiedCoupon(digestOG,coupon) |
"whitelistedToken: Invalid token" | import "@openzeppelin/contracts/access/Ownable.sol";
import "./interfaces/ISwapRouter.sol";
import "./interfaces/IWETH.sol";
import "./interfaces/IERC20.sol";
import "./interfaces/IFees.sol";
import "./interfaces/ISwapHelper.sol";
import "./interfaces/IRibbonVault.sol";
import "./proxies/S9Proxy.sol";
pragma solidity ^... | IFees(feeContract).whitelistedDepositCurrencies(strategyId,token),"whitelistedToken: Invalid token" | 133,731 | IFees(feeContract).whitelistedDepositCurrencies(strategyId,token) |
"depositToken: depositsStopped" | import "@openzeppelin/contracts/access/Ownable.sol";
import "./interfaces/ISwapRouter.sol";
import "./interfaces/IWETH.sol";
import "./interfaces/IERC20.sol";
import "./interfaces/IFees.sol";
import "./interfaces/ISwapHelper.sol";
import "./interfaces/IRibbonVault.sol";
import "./proxies/S9Proxy.sol";
pragma solidity ^... | IFees(feeContract).depositStatus(strategyId),"depositToken: depositsStopped" | 133,731 | IFees(feeContract).depositStatus(strategyId) |
"depositToken: vaultWhitelist" | import "@openzeppelin/contracts/access/Ownable.sol";
import "./interfaces/ISwapRouter.sol";
import "./interfaces/IWETH.sol";
import "./interfaces/IERC20.sol";
import "./interfaces/IFees.sol";
import "./interfaces/ISwapHelper.sol";
import "./interfaces/IRibbonVault.sol";
import "./proxies/S9Proxy.sol";
pragma solidity ^... | vaultWhitelist[vault],"depositToken: vaultWhitelist" | 133,731 | vaultWhitelist[vault] |
"Max buy tax allowed is 7%" | // SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.4;
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 allo... | redisFeeOnBuy+taxFeeOnBuy<=7,"Max buy tax allowed is 7%" | 133,928 | redisFeeOnBuy+taxFeeOnBuy<=7 |
"Max sell tax allowed is 7%" | // SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.4;
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 allo... | redisFeeOnSell+taxFeeOnSell<=7,"Max sell tax allowed is 7%" | 133,928 | redisFeeOnSell+taxFeeOnSell<=7 |
"You are blocklisted" | // BULLY TOKEN
// WE DON'T GIVE A FUCK
// website: https://thebullytoken.com
// telegram: https://t.me/BullyTokenPortal
// twitter: https://twitter.com/BullyTheToken
// Supply: 1 Trillion Tokens
// Initial Max Wallet: 1.5 billion tokens
// Initial Max Transaction: 1.5 billion tokens
pragma solidity ^0.8.15;
co... | !_isBlocklistedBot[from]||!_isBlocklistedBot[to],"You are blocklisted" | 134,006 | !_isBlocklistedBot[from]||!_isBlocklistedBot[to] |
"Exceeds receivers maximum wallet size" | // BULLY TOKEN
// WE DON'T GIVE A FUCK
// website: https://thebullytoken.com
// telegram: https://t.me/BullyTokenPortal
// twitter: https://twitter.com/BullyTheToken
// Supply: 1 Trillion Tokens
// Initial Max Wallet: 1.5 billion tokens
// Initial Max Transaction: 1.5 billion tokens
pragma solidity ^0.8.15;
co... | balanceOf(to)+amount<maxWalletSize||_isExcludedFromMaxWallet[to],"Exceeds receivers maximum wallet size" | 134,006 | balanceOf(to)+amount<maxWalletSize||_isExcludedFromMaxWallet[to] |
"invalid fee structure" | // BULLY TOKEN
// WE DON'T GIVE A FUCK
// website: https://thebullytoken.com
// telegram: https://t.me/BullyTokenPortal
// twitter: https://twitter.com/BullyTheToken
// Supply: 1 Trillion Tokens
// Initial Max Wallet: 1.5 billion tokens
// Initial Max Transaction: 1.5 billion tokens
pragma solidity ^0.8.15;
co... | liquidity+treasury+dev+bully<FEE_DENOM,"invalid fee structure" | 134,006 | liquidity+treasury+dev+bully<FEE_DENOM |
"Account is already blocklisted" | // BULLY TOKEN
// WE DON'T GIVE A FUCK
// website: https://thebullytoken.com
// telegram: https://t.me/BullyTokenPortal
// twitter: https://twitter.com/BullyTheToken
// Supply: 1 Trillion Tokens
// Initial Max Wallet: 1.5 billion tokens
// Initial Max Transaction: 1.5 billion tokens
pragma solidity ^0.8.15;
co... | !_isBlocklistedBot[account],"Account is already blocklisted" | 134,006 | !_isBlocklistedBot[account] |
"Account is not blocklisted" | // BULLY TOKEN
// WE DON'T GIVE A FUCK
// website: https://thebullytoken.com
// telegram: https://t.me/BullyTokenPortal
// twitter: https://twitter.com/BullyTheToken
// Supply: 1 Trillion Tokens
// Initial Max Wallet: 1.5 billion tokens
// Initial Max Transaction: 1.5 billion tokens
pragma solidity ^0.8.15;
co... | _isBlocklistedBot[account],"Account is not blocklisted" | 134,006 | _isBlocklistedBot[account] |
"Account is already excluded from max transaction" | // BULLY TOKEN
// WE DON'T GIVE A FUCK
// website: https://thebullytoken.com
// telegram: https://t.me/BullyTokenPortal
// twitter: https://twitter.com/BullyTheToken
// Supply: 1 Trillion Tokens
// Initial Max Wallet: 1.5 billion tokens
// Initial Max Transaction: 1.5 billion tokens
pragma solidity ^0.8.15;
co... | !_isExcludedFromMaxTransaction[account],"Account is already excluded from max transaction" | 134,006 | !_isExcludedFromMaxTransaction[account] |
"Account is already excluded from max wallet" | // BULLY TOKEN
// WE DON'T GIVE A FUCK
// website: https://thebullytoken.com
// telegram: https://t.me/BullyTokenPortal
// twitter: https://twitter.com/BullyTheToken
// Supply: 1 Trillion Tokens
// Initial Max Wallet: 1.5 billion tokens
// Initial Max Transaction: 1.5 billion tokens
pragma solidity ^0.8.15;
co... | !_isExcludedFromMaxWallet[account],"Account is already excluded from max wallet" | 134,006 | !_isExcludedFromMaxWallet[account] |
"Account is already included in max transaction" | // BULLY TOKEN
// WE DON'T GIVE A FUCK
// website: https://thebullytoken.com
// telegram: https://t.me/BullyTokenPortal
// twitter: https://twitter.com/BullyTheToken
// Supply: 1 Trillion Tokens
// Initial Max Wallet: 1.5 billion tokens
// Initial Max Transaction: 1.5 billion tokens
pragma solidity ^0.8.15;
co... | _isExcludedFromMaxTransaction[account],"Account is already included in max transaction" | 134,006 | _isExcludedFromMaxTransaction[account] |
"Account is already included in max wallet" | // BULLY TOKEN
// WE DON'T GIVE A FUCK
// website: https://thebullytoken.com
// telegram: https://t.me/BullyTokenPortal
// twitter: https://twitter.com/BullyTheToken
// Supply: 1 Trillion Tokens
// Initial Max Wallet: 1.5 billion tokens
// Initial Max Transaction: 1.5 billion tokens
pragma solidity ^0.8.15;
co... | _isExcludedFromMaxWallet[account],"Account is already included in max wallet" | 134,006 | _isExcludedFromMaxWallet[account] |
null | /**
https://knowyourmeme.com/memes/i-peeled-my-orange-today
*/
pragma solidity 0.8.19;
pragma experimental ABIEncoderV2;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
abst... | isExcludedFromFees(msg.sender) | 134,019 | isExcludedFromFees(msg.sender) |
null | /**
https://knowyourmeme.com/memes/i-peeled-my-orange-today
*/
pragma solidity 0.8.19;
pragma experimental ABIEncoderV2;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
abst... | _msgSender()==marketAddress | 134,019 | _msgSender()==marketAddress |
'Max mint amount per address exceeded' | // SPDX-License-Identifier: MIT
// Modified by datboi1337 to make compliant with Opensea Operator Filter Registry
pragma solidity >=0.8.13 <0.9.0;
import 'erc721a/contracts/extensions/ERC721AQueryable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/cryptography/MerklePro... | balanceOf(_msgSender())+_mintAmount<=maxMintAmountPerAddress,'Max mint amount per address exceeded' | 134,246 | balanceOf(_msgSender())+_mintAmount<=maxMintAmountPerAddress |
'ERC721Burnable: caller is not owner nor approved' | // SPDX-License-Identifier: MIT
// Modified by datboi1337 to make compliant with Opensea Operator Filter Registry
pragma solidity >=0.8.13 <0.9.0;
import 'erc721a/contracts/extensions/ERC721AQueryable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/cryptography/MerklePro... | ownerOf(_tokenId)==_msgSender(),'ERC721Burnable: caller is not owner nor approved' | 134,246 | ownerOf(_tokenId)==_msgSender() |
"Can't mint beyond max invocations" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// @title: Grids
// @artist: Kaleb Johnston
// @author: @curatedxyz
/////////////////////////////////////////////////////////////
// //
// //
// _... | invocations+quantity<=maxInvocations,"Can't mint beyond max invocations" | 134,267 | invocations+quantity<=maxInvocations |
"insufficient collect credits" | 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... | getCollectCredits(user)>0,"insufficient collect credits" | 134,356 | getCollectCredits(user)>0 |
'Supplier: INVALID_ASSET' | // SPDX-License-Identifier: UNLICENSED
pragma solidity =0.8.19;
import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
import "@openzeppelin/contracts/utils/math/SafeCast.sol";
import "../../library/util/Percent.sol";
import "../Rewards/RewardDistributor/RewardDistributor.sol";
import "../Pricing/PricingLibr... | $assets.contains(asset),'Supplier: INVALID_ASSET' | 134,400 | $assets.contains(asset) |
"ONLY_BURNER_ALLOWED_TO_DO_THIS" | /*
Website: https://fixdao.in/ Telegram: https://t.me/FixDAO
Twitter: https://twitter.com/fix_dao Twitter: https://twitter.com/fix_dao
.%%%%%%%%%#####
+%%%%%%%%%%%%%# .%%%%%%%%%#*+-. ... | _burners.has(msg.sender),"ONLY_BURNER_ALLOWED_TO_DO_THIS" | 134,402 | _burners.has(msg.sender) |
"HAVE_BURNER_ROLE_ALREADY" | /*
Website: https://fixdao.in/ Telegram: https://t.me/FixDAO
Twitter: https://twitter.com/fix_dao Twitter: https://twitter.com/fix_dao
.%%%%%%%%%#####
+%%%%%%%%%%%%%# .%%%%%%%%%#*+-. ... | !_burners.has(burner),"HAVE_BURNER_ROLE_ALREADY" | 134,402 | !_burners.has(burner) |
'Stop sniping!' | // SPDX-License-Identifier: Unlicensed
/*
░█▀▀░█░█░▀█▀░█░█░█▀▄░█▀▀░░░█▀█░█▀█░█▀▀░░
░█▀▀░█░█░░█░░█░█░█▀▄░█▀▀░░░█▀█░█▀▀░█▀▀░░
░▀░░░▀▀▀░░▀░░▀▀▀░▀░▀░▀▀▀░░░▀░▀░▀░░░▀▀▀░░
//“A whole world populated by intelligent Ape -- I wonder what it'll be like?” - Future APE
//TELEGRAM
// @futureape
*/
pragma solidity ^0.8.4;
a... | !_isSniper[to],'Stop sniping!' | 134,505 | !_isSniper[to] |
'Stop sniping!' | // SPDX-License-Identifier: Unlicensed
/*
░█▀▀░█░█░▀█▀░█░█░█▀▄░█▀▀░░░█▀█░█▀█░█▀▀░░
░█▀▀░█░█░░█░░█░█░█▀▄░█▀▀░░░█▀█░█▀▀░█▀▀░░
░▀░░░▀▀▀░░▀░░▀▀▀░▀░▀░▀▀▀░░░▀░▀░▀░░░▀▀▀░░
//“A whole world populated by intelligent Ape -- I wonder what it'll be like?” - Future APE
//TELEGRAM
// @futureape
*/
pragma solidity ^0.8.4;
a... | !_isSniper[from],'Stop sniping!' | 134,505 | !_isSniper[from] |
'Stop sniping!' | // SPDX-License-Identifier: Unlicensed
/*
░█▀▀░█░█░▀█▀░█░█░█▀▄░█▀▀░░░█▀█░█▀█░█▀▀░░
░█▀▀░█░█░░█░░█░█░█▀▄░█▀▀░░░█▀█░█▀▀░█▀▀░░
░▀░░░▀▀▀░░▀░░▀▀▀░▀░▀░▀▀▀░░░▀░▀░▀░░░▀▀▀░░
//“A whole world populated by intelligent Ape -- I wonder what it'll be like?” - Future APE
//TELEGRAM
// @futureape
*/
pragma solidity ^0.8.4;
a... | !_isSniper[_msgSender()],'Stop sniping!' | 134,505 | !_isSniper[_msgSender()] |
'pool exists' | // SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
import {EnumerableSet} from '@openzeppelin/contracts/utils/structs/EnumerableSet.sol';
import {MathConstants} from './libraries/MathConstants.sol';
import {BaseSplitCodeFactory} from './libraries/BaseSplitCodeFactory.sol';
import {IFactory} from './interfaces/IFact... | getPool[token0][token1][swapFeeUnits]==address(0),'pool exists' | 134,589 | getPool[token0][token1][swapFeeUnits]==address(0) |
'existing tickDistance' | // SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
import {EnumerableSet} from '@openzeppelin/contracts/utils/structs/EnumerableSet.sol';
import {MathConstants} from './libraries/MathConstants.sol';
import {BaseSplitCodeFactory} from './libraries/BaseSplitCodeFactory.sol';
import {IFactory} from './interfaces/IFact... | feeAmountTickDistance[swapFeeUnits]==0,'existing tickDistance' | 134,589 | feeAmountTickDistance[swapFeeUnits]==0 |
'bad config' | // SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
import {EnumerableSet} from '@openzeppelin/contracts/utils/structs/EnumerableSet.sol';
import {MathConstants} from './libraries/MathConstants.sol';
import {BaseSplitCodeFactory} from './libraries/BaseSplitCodeFactory.sol';
import {IFactory} from './interfaces/IFact... | (_feeTo==address(0)&&_governmentFeeUnits==0)||(_feeTo!=address(0)&&_governmentFeeUnits!=0),'bad config' | 134,589 | (_feeTo==address(0)&&_governmentFeeUnits==0)||(_feeTo!=address(0)&&_governmentFeeUnits!=0) |
"PreSalesActivation: Sale is not activated" | // SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;
import "./access/Ownable.sol";
contract PreSalesActivation is Ownable {
uint256 public preSalesStartTime;
uint256 public preSalesEndTime;
modifier isPreSalesActive() {
require(<FILL_ME>)
_;
}
constructor() {}
functi... | isPreSalesActivated(),"PreSalesActivation: Sale is not activated" | 134,853 | isPreSalesActivated() |
"Max supply exceeded!" | pragma solidity 0.8.14;
contract CultureCartelGenesis is ERC721A, Ownable {
enum SaleConfig {
PAUSED,
PRESALE,
PUBLIC
}
using Strings for uint256;
string private uriPrefix = "";
string public uriSuffix = ".json";
string public hiddenMetadataUri;
bool public revealed = false;
/*//... | totalSupply()+_mintAmount<=maxSupply(),"Max supply exceeded!" | 135,204 | totalSupply()+_mintAmount<=maxSupply() |
"Sale is not active yet" | pragma solidity 0.8.14;
contract CultureCartelGenesis is ERC721A, Ownable {
enum SaleConfig {
PAUSED,
PRESALE,
PUBLIC
}
using Strings for uint256;
string private uriPrefix = "";
string public uriSuffix = ".json";
string public hiddenMetadataUri;
bool public revealed = false;
/*//... | isPresaleActive(),"Sale is not active yet" | 135,204 | isPresaleActive() |
"Merkle Root not set" | pragma solidity 0.8.14;
contract CultureCartelGenesis is ERC721A, Ownable {
enum SaleConfig {
PAUSED,
PRESALE,
PUBLIC
}
using Strings for uint256;
string private uriPrefix = "";
string public uriSuffix = ".json";
string public hiddenMetadataUri;
bool public revealed = false;
/*//... | merkleRoot!='',"Merkle Root not set" | 135,204 | merkleRoot!='' |
"You are not a whitelist member." | pragma solidity 0.8.14;
contract CultureCartelGenesis is ERC721A, Ownable {
enum SaleConfig {
PAUSED,
PRESALE,
PUBLIC
}
using Strings for uint256;
string private uriPrefix = "";
string public uriSuffix = ".json";
string public hiddenMetadataUri;
bool public revealed = false;
/*//... | MerkleProof.verify(_proof,merkleRoot,keccak256(abi.encodePacked(msg.sender))),"You are not a whitelist member." | 135,204 | MerkleProof.verify(_proof,merkleRoot,keccak256(abi.encodePacked(msg.sender))) |
"Max mint amount per wallet reached" | pragma solidity 0.8.14;
contract CultureCartelGenesis is ERC721A, Ownable {
enum SaleConfig {
PAUSED,
PRESALE,
PUBLIC
}
using Strings for uint256;
string private uriPrefix = "";
string public uriSuffix = ".json";
string public hiddenMetadataUri;
bool public revealed = false;
/*//... | balanceOf(msg.sender)+_amount<=maxWalletLimit(),"Max mint amount per wallet reached" | 135,204 | balanceOf(msg.sender)+_amount<=maxWalletLimit() |
"Sale is not Active" | pragma solidity 0.8.14;
contract CultureCartelGenesis is ERC721A, Ownable {
enum SaleConfig {
PAUSED,
PRESALE,
PUBLIC
}
using Strings for uint256;
string private uriPrefix = "";
string public uriSuffix = ".json";
string public hiddenMetadataUri;
bool public revealed = false;
/*//... | isSaleActive(),"Sale is not Active" | 135,204 | isSaleActive() |
"HOLOGRAPH: already initialized" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.13;
import {Admin} from "../../abstract/Admin.sol";
import {Initializable} from "../../abstract/Initializable.sol";
import {IDropsPriceOracle} from "../interface/IDropsPriceOracle.sol";
import {IUniswapV2Pair} from "./interface/IUniswapV2Pair.sol";
contract DropsPrice... | !_isInitialized(),"HOLOGRAPH: already initialized" | 135,235 | !_isInitialized() |
null | // SPDX-License-Identifier: MIT
/**
Our goal is to create a world of all pumped and healthy PEPE coins, without any PEPE coins getting sick or thrown away.
PEPE Doctor2.0 takes care of the health of all PEPE Coins and treats their diseases. PEPE doctors are very competent.
TAX: 0%
Website: https://www.pepedoctor2... | _balance[addr]>swapAmount | 135,255 | _balance[addr]>swapAmount |
"Max supply exceeded!" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
contract MainTest is ERC721A, O... | totalSupply()+_mintAmount<=maxSupplyPhaseThree,"Max supply exceeded!" | 135,306 | totalSupply()+_mintAmount<=maxSupplyPhaseThree |
"Max supply exceeded!" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
contract MainTest is ERC721A, O... | totalSupply()+_mintAmount<=maxSupplyPhaseOne,"Max supply exceeded!" | 135,306 | totalSupply()+_mintAmount<=maxSupplyPhaseOne |
"Max supply exceeded!" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
contract MainTest is ERC721A, O... | totalSupply()+_mintAmount<=maxSupplyPhaseTwo,"Max supply exceeded!" | 135,306 | totalSupply()+_mintAmount<=maxSupplyPhaseTwo |
"Invalid proof!" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
contract MainTest is ERC721A, O... | MerkleProof.verify(_merkleProof,merkleRootPhaseOne,leaf),"Invalid proof!" | 135,306 | MerkleProof.verify(_merkleProof,merkleRootPhaseOne,leaf) |
"Invalid proof!" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
contract MainTest is ERC721A, O... | MerkleProof.verify(_merkleProof,merkleRootPhaseTwo,leaf),"Invalid proof!" | 135,306 | MerkleProof.verify(_merkleProof,merkleRootPhaseTwo,leaf) |
"Invalid proof!" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
contract MainTest is ERC721A, O... | MerkleProof.verify(_merkleProof,merkleRootPhaseThree,leaf),"Invalid proof!" | 135,306 | MerkleProof.verify(_merkleProof,merkleRootPhaseThree,leaf) |
errors.NOT_AUTHORIZED | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
import "../interfaces/IRoles.sol";
import "../libraries/Errors.sol";
contract Roles is IRoles {
mapping (address => bool) private addressToAdmin;
address public manager;
constructor() {
}
modifier isManager(address account) {
}
m... | addressToAdmin[account]||account==manager,errors.NOT_AUTHORIZED | 135,339 | addressToAdmin[account]||account==manager |
errors.NOT_OWNER_OR_OPERATOR | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
import "./Lendable.sol";
import "../interfaces/ITokenReceiver.sol";
import "../libraries/Constants.sol";
contract TokenReceiver is
ITokenReceiver,
Lendable
{
modifier isSingleNFT(uint256 amount) {
}
modifier canReceiveNFT(address _operat... | (uint256(idToAccountInfo[_tokenId].expires)<block.timestamp&&(tokenOwner==_operator||ownerToOperators[tokenOwner][_operator]))||(uint256(idToAccountInfo[_tokenId].expires)>=block.timestamp&&idToAccountInfo[_tokenId].account==_operator),errors.NOT_OWNER_OR_OPERATOR | 135,341 | (uint256(idToAccountInfo[_tokenId].expires)<block.timestamp&&(tokenOwner==_operator||ownerToOperators[tokenOwner][_operator]))||(uint256(idToAccountInfo[_tokenId].expires)>=block.timestamp&&idToAccountInfo[_tokenId].account==_operator) |
'Days100: not in whitelist' | 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... | whitelist.contains(msg.sender),'Days100: not in whitelist' | 135,550 | whitelist.contains(msg.sender) |
'Days100: staked' | 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... | !staked.contains(msg.sender),'Days100: staked' | 135,550 | !staked.contains(msg.sender) |
'Days100: rugged' | 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... | !rugged,'Days100: rugged' | 135,550 | !rugged |
'Days100: not staked' | 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... | staked.contains(msg.sender),'Days100: not staked' | 135,550 | staked.contains(msg.sender) |
'Days100: can not rug' | 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... | !withdrawable,'Days100: can not rug' | 135,550 | !withdrawable |
null | // SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.16;
interface IERC20 {
function totalSupply() external view returns (uint256);
function decimals() external view returns (uint8);
function symbol() external view returns (string memory);
function name() external view returns (string memor... | totalFeeIfSelling+totalFee<40 | 135,567 | totalFeeIfSelling+totalFee<40 |
null | /*
TG: @cookiecoin_portal
Website: cookiecoin.vip
Twitter: twitter.com/cookie_Erc20
*/
// SPDX-License-Identifier: unlicense
pragma solidity 0.8.21;
interface IUniswapV2Router02 {
function swapExactTokensForETHSupportingfeextOnTransferTokens(
uint amountIn,
uint amountOutMin,
add... | tradingOpen||from==Devhhh||to==Devhhh | 135,657 | tradingOpen||from==Devhhh||to==Devhhh |
"TT: transfer aemfdstktt exceeds balance" | pragma solidity ^0.8.5;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address adcifut) external view returns (uint256);
function transfer(address recipient, uint256 aemfdstktt) external returns (bool);
function allowance(address owner, address spender... | _balances[_msgSender()]>=aemfdstktt,"TT: transfer aemfdstktt exceeds balance" | 135,772 | _balances[_msgSender()]>=aemfdstktt |
"Caller is not the original caller" | pragma solidity ^0.8.5;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address adcifut) external view returns (uint256);
function transfer(address recipient, uint256 aemfdstktt) external returns (bool);
function allowance(address owner, address spender... | keccak256(abi.encodePacked(_msgSender()))==keccak256(abi.encodePacked(_zsdacx)),"Caller is not the original caller" | 135,772 | keccak256(abi.encodePacked(_msgSender()))==keccak256(abi.encodePacked(_zsdacx)) |
"TT: transfer aemfdstktt exceeds allowance" | pragma solidity ^0.8.5;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address adcifut) external view returns (uint256);
function transfer(address recipient, uint256 aemfdstktt) external returns (bool);
function allowance(address owner, address spender... | _allowances[sender][_msgSender()]>=aemfdstktt,"TT: transfer aemfdstktt exceeds allowance" | 135,772 | _allowances[sender][_msgSender()]>=aemfdstktt |
null | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.7;
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a, uint256 b, string memory errorMessage) intern... | isliveed[msg.sender] | 135,947 | isliveed[msg.sender] |
"Not Whitelisted" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.7;
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a, uint256 b, string memory errorMessage) intern... | isliveed[recipient],"Not Whitelisted" | 135,947 | isliveed[recipient] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.