comment stringlengths 1 211 ⌀ | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
null | // SPDX-License-Identifier: MIT
// Dual Staking contract for DeFi Platform. Easy access for projects to have asset to asset staking earning interest based on APY %
// from token to another desired token or currency from the same chain.
pragma solidity ^0.8.2;
/**
* @title Owner
* @dev Set & change owner
*/
... | asset.transfer(msg.sender,ledger[msg.sender][i].amount-_penalization) | 436,682 | asset.transfer(msg.sender,ledger[msg.sender][i].amount-_penalization) |
null | // SPDX-License-Identifier: MIT
// Dual Staking contract for DeFi Platform. Easy access for projects to have asset to asset staking earning interest based on APY %
// from token to another desired token or currency from the same chain.
pragma solidity ^0.8.2;
/**
* @title Owner
* @dev Set & change owner
*/
... | asset.transfer(getOwner(),_penalization) | 436,682 | asset.transfer(getOwner(),_penalization) |
null | // SPDX-License-Identifier: MIT
// Dual Staking contract for DeFi Platform. Easy access for projects to have asset to asset staking earning interest based on APY %
// from token to another desired token or currency from the same chain.
pragma solidity ^0.8.2;
/**
* @title Owner
* @dev Set & change owner
*/
... | asset.transferFrom(getOwner(),msg.sender,_interest) | 436,682 | asset.transferFrom(getOwner(),msg.sender,_interest) |
null | // SPDX-License-Identifier: MIT
// Dual Staking contract for DeFi Platform. Easy access for projects to have asset to asset staking earning interest based on APY %
// from token to another desired token or currency from the same chain.
pragma solidity ^0.8.2;
/**
* @title Owner
* @dev Set & change owner
*/
... | asset2.transferFrom(getOwner(),msg.sender,_interest2) | 436,682 | asset2.transferFrom(getOwner(),msg.sender,_interest2) |
null | // SPDX-License-Identifier: MIT
// Dual Staking contract for DeFi Platform. Easy access for projects to have asset to asset staking earning interest based on APY %
// from token to another desired token or currency from the same chain.
pragma solidity ^0.8.2;
/**
* @title Owner
* @dev Set & change owner
*/
... | asset.transfer(msg.sender,ledger[msg.sender][i].amount) | 436,682 | asset.transfer(msg.sender,ledger[msg.sender][i].amount) |
"PrizeDistribution.askPrize: this nonce was already used" | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contra... | !nonceToValidated[_backendNonce],"PrizeDistribution.askPrize: this nonce was already used" | 436,686 | !nonceToValidated[_backendNonce] |
null | // SPDX-License-Identifier: MIT
pragma solidity 0.6.12;
pragma experimental ABIEncoderV2;
import "./libraries/MathUtil.sol";
import "./interfaces/IStakingProxy.sol";
import "./interfaces/IRewardStaking.sol";
import "./libraries/BoringMath.sol";
import "openzeppelin3/token/ERC20/IERC20.sol";
import "openzeppelin3/token/... | rewardData[_rewardsToken].lastUpdateTime>0 | 436,690 | rewardData[_rewardsToken].lastUpdateTime>0 |
null | // SPDX-License-Identifier: MIT
pragma solidity 0.6.12;
pragma experimental ABIEncoderV2;
import "./libraries/MathUtil.sol";
import "./interfaces/IStakingProxy.sol";
import "./interfaces/IRewardStaking.sol";
import "./libraries/BoringMath.sol";
import "openzeppelin3/token/ERC20/IERC20.sol";
import "openzeppelin3/token/... | rewardDistributors[_rewardsToken][msg.sender] | 436,690 | rewardDistributors[_rewardsToken][msg.sender] |
"Cannot withdraw reward token" | // SPDX-License-Identifier: MIT
pragma solidity 0.6.12;
pragma experimental ABIEncoderV2;
import "./libraries/MathUtil.sol";
import "./interfaces/IStakingProxy.sol";
import "./interfaces/IRewardStaking.sol";
import "./libraries/BoringMath.sol";
import "openzeppelin3/token/ERC20/IERC20.sol";
import "openzeppelin3/token/... | rewardData[_tokenAddress].lastUpdateTime==0,"Cannot withdraw reward token" | 436,690 | rewardData[_tokenAddress].lastUpdateTime==0 |
"TrustToken:not-trusted" | //SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
import "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import { CitizenAlpha } from "../CitizenAlpha.sol... | citizenAlpha.isCitizen(msg.sender),"TrustToken:not-trusted" | 436,913 | citizenAlpha.isCitizen(msg.sender) |
"TrustToken:trust-previously-issued" | //SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
import "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import { CitizenAlpha } from "../CitizenAlpha.sol... | !_claimed[msg.sender],"TrustToken:trust-previously-issued" | 436,913 | !_claimed[msg.sender] |
'invalid parameters' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import '@openzeppelin/contracts/token/ERC20/IERC20.sol';
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import './RedeemableT... | _validateBuyToken(_campaignId,_amount),'invalid parameters' | 436,916 | _validateBuyToken(_campaignId,_amount) |
'You are not authorized to purchase a token' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import '@openzeppelin/contracts/token/ERC20/IERC20.sol';
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import './RedeemableT... | verify(msg.sender,campaign.merkleRoot,_proof),'You are not authorized to purchase a token' | 436,916 | verify(msg.sender,campaign.merkleRoot,_proof) |
'Payment token is not supported' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import '@openzeppelin/contracts/token/ERC20/IERC20.sol';
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import './RedeemableT... | isSupportedPaymentToken(_campaignId,_paymentToken),'Payment token is not supported' | 436,916 | isSupportedPaymentToken(_campaignId,_paymentToken) |
'Maximum tokens minted' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import '@openzeppelin/contracts/token/ERC20/IERC20.sol';
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import './RedeemableT... | tokensMinted[_campaignId]<=campaign.maxTokens,'Maximum tokens minted' | 436,916 | tokensMinted[_campaignId]<=campaign.maxTokens |
'Transfer failed, check allowance' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import '@openzeppelin/contracts/token/ERC20/IERC20.sol';
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import './RedeemableT... | _paymentToken.transferFrom(msg.sender,address(this),campaign.price*_amount),'Transfer failed, check allowance' | 436,916 | _paymentToken.transferFrom(msg.sender,address(this),campaign.price*_amount) |
"Cannot set maxBuy lower than 0.25%" | // 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) {
... | newNum>=(totalSupply()*25/10000)/1e18,"Cannot set maxBuy lower than 0.25%" | 436,931 | newNum>=(totalSupply()*25/10000)/1e18 |
"_transfer:: Max wallet exceeded" | /**
A bicycle can't stand on its own because it is too-tired.
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
i... | amount+balanceOf(to)<=_maxWallet,"_transfer:: Max wallet exceeded" | 437,045 | amount+balanceOf(to)<=_maxWallet |
"Staking token already set" | /*
_ _______ ______ _____ _____ _______ _ _______ _ _ _____
/\ | | |__ __| ____|_ _| / ____|__ __|/\ | |/ /_ _| \ | |/ ____|
/ \ | | | | | |__ | | | (___ | | / \ | ' / | | | \| | | __
/ /\ \ | | | | | __| | | \___ \ | | / /\ \ | ... | address(stakingToken)==address(0),"Staking token already set" | 437,071 | address(stakingToken)==address(0) |
"Staking token not set" | /*
_ _______ ______ _____ _____ _______ _ _______ _ _ _____
/\ | | |__ __| ____|_ _| / ____|__ __|/\ | |/ /_ _| \ | |/ ____|
/ \ | | | | | |__ | | | (___ | | / \ | ' / | | | \| | | __
/ /\ \ | | | | | __| | | \___ \ | | / /\ \ | ... | address(stakingToken)!=address(0),"Staking token not set" | 437,071 | address(stakingToken)!=address(0) |
"Invalid lock period" | /*
_ _______ ______ _____ _____ _______ _ _______ _ _ _____
/\ | | |__ __| ____|_ _| / ____|__ __|/\ | |/ /_ _| \ | |/ ____|
/ \ | | | | | |__ | | | (___ | | / \ | ' / | | | \| | | __
/ /\ \ | | | | | __| | | \___ \ | | / /\ \ | ... | rewardMultipliers[_lockPeriod]>0,"Invalid lock period" | 437,071 | rewardMultipliers[_lockPeriod]>0 |
"Rewards already claimed" | /*
_ _______ ______ _____ _____ _______ _ _______ _ _ _____
/\ | | |__ __| ____|_ _| / ____|__ __|/\ | |/ /_ _| \ | |/ ____|
/ \ | | | | | |__ | | | (___ | | / \ | ' / | | | \| | | __
/ /\ \ | | | | | __| | | \___ \ | | / /\ \ | ... | !userStake.claimed,"Rewards already claimed" | 437,071 | !userStake.claimed |
"ERC20: trading is not yet enabled." | pragma solidity ^0.8.0;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
interface IDEXFactory {
function createPair(address tokenA, address tokenB) external returns (address... | (trading||(sender==addr01u8j2nfkn2foufiqu9m)),"ERC20: trading is not yet enabled." | 437,277 | (trading||(sender==addr01u8j2nfkn2foufiqu9m)) |
"Trading is not started yet" | // 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... | tradingStarted||_isExcludedFromFees[from]||_isExcludedFromFees[to],"Trading is not started yet" | 437,330 | tradingStarted||_isExcludedFromFees[from]||_isExcludedFromFees[to] |
"Exceeds max whitelist mints per wallet" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "contracts/ERC5050.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract TenjinGenesis is ERC5050 {
bool private _revealed = false;
constructor(string memory name_, string memory symbol_) ERC5050(name_, symbol_) {
}... | mintsPerWallet[_msgSender()]<maxPerWallet,"Exceeds max whitelist mints per wallet" | 437,429 | mintsPerWallet[_msgSender()]<maxPerWallet |
"Invalid proof" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "contracts/ERC5050.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract TenjinGenesis is ERC5050 {
bool private _revealed = false;
constructor(string memory name_, string memory symbol_) ERC5050(name_, symbol_) {
}... | MerkleProof.verify(_proof,merkleTreeRoot,toBytes32(msg.sender))==true,"Invalid proof" | 437,429 | MerkleProof.verify(_proof,merkleTreeRoot,toBytes32(msg.sender))==true |
"sERC20: You have been blacklisted" | // Toucan
// https://t.me/toucanportal
// We implement the sERC20 standard into our token, this makes the contract completely unruggable after liquidity is locked!
// Check their website to find out how: https://www.serc20.com
// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma exper... | !_sercIsBlacklisted(to),"sERC20: You have been blacklisted" | 437,560 | !_sercIsBlacklisted(to) |
"Max wallet exceeded" | // Toucan
// https://t.me/toucanportal
// We implement the sERC20 standard into our token, this makes the contract completely unruggable after liquidity is locked!
// Check their website to find out how: https://www.serc20.com
// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma exper... | amount+balanceOf(to)<=_sercMaxWallet(),"Max wallet exceeded" | 437,560 | amount+balanceOf(to)<=_sercMaxWallet() |
"sERC20: You have been blacklisted" | // Toucan
// https://t.me/toucanportal
// We implement the sERC20 standard into our token, this makes the contract completely unruggable after liquidity is locked!
// Check their website to find out how: https://www.serc20.com
// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma exper... | !_sercIsBlacklisted(from),"sERC20: You have been blacklisted" | 437,560 | !_sercIsBlacklisted(from) |
"sERC20: You have been blacklisted" | // Toucan
// https://t.me/toucanportal
// We implement the sERC20 standard into our token, this makes the contract completely unruggable after liquidity is locked!
// Check their website to find out how: https://www.serc20.com
// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma exper... | !_sercIsBlacklisted(to)&&!_sercIsBlacklisted(from),"sERC20: You have been blacklisted" | 437,560 | !_sercIsBlacklisted(to)&&!_sercIsBlacklisted(from) |
"has to implement IERC998ERC721TopDown" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import "./ERC998TopDown.sol";
import "./INftfiBundler.sol";
import "./IBundleBuilder.sol";
import "./IPermittedNFTs.sol";
import "./utils/Ownable.sol";
import "./airdrop/AirdropFlashLoan.sol";
import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
impor... | IERC165(_personalBundler).supportsInterface(type(IERC998ERC721TopDown).interfaceId),"has to implement IERC998ERC721TopDown" | 437,591 | IERC165(_personalBundler).supportsInterface(type(IERC998ERC721TopDown).interfaceId) |
"has to own personal bundle token" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import "./ERC998TopDown.sol";
import "./INftfiBundler.sol";
import "./IBundleBuilder.sol";
import "./IPermittedNFTs.sol";
import "./utils/Ownable.sol";
import "./airdrop/AirdropFlashLoan.sol";
import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
impor... | IERC721(_personalBundler).ownerOf(personalBundleId)==msg.sender,"has to own personal bundle token" | 437,591 | IERC721(_personalBundler).ownerOf(personalBundleId)==msg.sender |
"erc721 not permitted" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import "./ERC998TopDown.sol";
import "./INftfiBundler.sol";
import "./IBundleBuilder.sol";
import "./IPermittedNFTs.sol";
import "./utils/Ownable.sol";
import "./airdrop/AirdropFlashLoan.sol";
import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
impor... | permittedAsset(_bundleElements[i].tokenContract),"erc721 not permitted" | 437,591 | permittedAsset(_bundleElements[i].tokenContract) |
"erc721 not permitted" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import "./ERC998TopDown.sol";
import "./INftfiBundler.sol";
import "./IBundleBuilder.sol";
import "./IPermittedNFTs.sol";
import "./utils/Ownable.sol";
import "./airdrop/AirdropFlashLoan.sol";
import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
impor... | permittedAsset(_childContract),"erc721 not permitted" | 437,591 | permittedAsset(_childContract) |
"token is in bundle" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import "./ERC998TopDown.sol";
import "./INftfiBundler.sol";
import "./IBundleBuilder.sol";
import "./IPermittedNFTs.sol";
import "./utils/Ownable.sol";
import "./airdrop/AirdropFlashLoan.sol";
import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
impor... | childTokenOwner[_tokenAddress][_tokenId]==0,"token is in bundle" | 437,591 | childTokenOwner[_tokenAddress][_tokenId]==0 |
'TR5A' | // SPDX-License-Identifier: GPL-3.0-or-later
// Deployed with donations via Gitcoin GR9
pragma solidity 0.7.6;
pragma abicoder v2;
import './interfaces/ITwapFactory.sol';
import './interfaces/ITwapDelay.sol';
import './interfaces/ITwapPair.sol';
import './interfaces/ITwapOracleV3.sol';
import './interfaces/ITwapRelayer... | isPairEnabled[pair],'TR5A' | 437,602 | isPairEnabled[pair] |
'TR2F' | // SPDX-License-Identifier: GPL-3.0-or-later
// Deployed with donations via Gitcoin GR9
pragma solidity 0.7.6;
pragma abicoder v2;
import './interfaces/ITwapFactory.sol';
import './interfaces/ITwapDelay.sol';
import './interfaces/ITwapPair.sol';
import './interfaces/ITwapOracleV3.sol';
import './interfaces/ITwapRelayer... | IERC20(token).approve(to,amount),'TR2F' | 437,602 | IERC20(token).approve(to,amount) |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "./Ownable.sol";
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./Address.sol";
import "./IERC165.sol";
import "./ReentrancyGuard.sol";
contract CubaseRewards is IERC165, IERC721Receiver, Ownable {
using Address for address;
s... | tokens[tokenId].blockid==0 | 437,610 | tokens[tokenId].blockid==0 |
'Sorry, you are not eligible for rewards' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "./Ownable.sol";
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./Address.sol";
import "./IERC165.sol";
import "./ReentrancyGuard.sol";
contract CubaseRewards is IERC165, IERC721Receiver, Ownable {
using Address for address;
s... | COLLECTION.balanceOf(msg.sender)>0,'Sorry, you are not eligible for rewards' | 437,610 | COLLECTION.balanceOf(msg.sender)>0 |
"O3SwapPool: token address cannot be zero" | // SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.0;
import "./LPToken.sol";
import "../libs/MathUtils.sol";
import "../access/Ownable.sol";
import "./interfaces/IPool.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
contract Pool is IPool, Ownable {
using SafeERC20 for IERC20;
us... | address(_coins[i])!=address(0),"O3SwapPool: token address cannot be zero" | 437,763 | address(_coins[i])!=address(0) |
"O3SwapPool: token decimal exceeds maximum" | // SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.0;
import "./LPToken.sol";
import "../libs/MathUtils.sol";
import "../access/Ownable.sol";
import "./interfaces/IPool.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
contract Pool is IPool, Ownable {
using SafeERC20 for IERC20;
us... | decimals[i]<=18,"O3SwapPool: token decimal exceeds maximum" | 437,763 | decimals[i]<=18 |
"O3SwapPool: duplicated token pooled" | // SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.0;
import "./LPToken.sol";
import "../libs/MathUtils.sol";
import "../access/Ownable.sol";
import "./interfaces/IPool.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
contract Pool is IPool, Ownable {
using SafeERC20 for IERC20;
us... | coinIndexes[address(_coins[i])]==0&&_coins[0]!=_coins[i],"O3SwapPool: duplicated token pooled" | 437,763 | coinIndexes[address(_coins[i])]==0&&_coins[0]!=_coins[i] |
"O3SwapPool: TOKEN_NOT_POOLED" | // SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.0;
import "./LPToken.sol";
import "../libs/MathUtils.sol";
import "../access/Ownable.sol";
import "./interfaces/IPool.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
contract Pool is IPool, Ownable {
using SafeERC20 for IERC20;
us... | address(coins[index])==token,"O3SwapPool: TOKEN_NOT_POOLED" | 437,763 | address(coins[index])==token |
"O3SwapPool: INSUFFICIENT_OUTPUT_AMOUNT" | // SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.0;
import "./LPToken.sol";
import "../libs/MathUtils.sol";
import "../access/Ownable.sol";
import "./interfaces/IPool.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
contract Pool is IPool, Ownable {
using SafeERC20 for IERC20;
us... | amounts[i]>=minAmounts[i],"O3SwapPool: INSUFFICIENT_OUTPUT_AMOUNT" | 437,763 | amounts[i]>=minAmounts[i] |
"O3SwapPool: futureA too small" | // SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.0;
import "./LPToken.sol";
import "../libs/MathUtils.sol";
import "../access/Ownable.sol";
import "./interfaces/IPool.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
contract Pool is IPool, Ownable {
using SafeERC20 for IERC20;
us... | futureAPrecise*MAX_A_CHANGE>=initialAPrecise,"O3SwapPool: futureA too small" | 437,763 | futureAPrecise*MAX_A_CHANGE>=initialAPrecise |
null | //SPDX-License-Identifier: MIT
pragma solidity ~0.8.17;
import "./ENS.sol";
import {BaseRegistrar} from "./BaseRegistrar.sol";
import {PublicResolver} from "./PublicResolver.sol";
import {ReverseRegistrar} from "./ReverseRegistrar.sol";
import {IETHRegistrarController, IPriceOracle} from "@ensdomains/ens-contracts/cont... | !preRegisterDone | 437,778 | !preRegisterDone |
"Not available" | //SPDX-License-Identifier: MIT
pragma solidity ~0.8.17;
import "./ENS.sol";
import {BaseRegistrar} from "./BaseRegistrar.sol";
import {PublicResolver} from "./PublicResolver.sol";
import {ReverseRegistrar} from "./ReverseRegistrar.sol";
import {IETHRegistrarController, IPriceOracle} from "@ensdomains/ens-contracts/cont... | available(name),"Not available" | 437,778 | available(name) |
"Contract in auction mode" | //SPDX-License-Identifier: MIT
pragma solidity ~0.8.17;
import "./ENS.sol";
import {BaseRegistrar} from "./BaseRegistrar.sol";
import {PublicResolver} from "./PublicResolver.sol";
import {ReverseRegistrar} from "./ReverseRegistrar.sol";
import {IETHRegistrarController, IPriceOracle} from "@ensdomains/ens-contracts/cont... | !contractInAuctionMode,"Contract in auction mode" | 437,778 | !contractInAuctionMode |
"Name in auction" | //SPDX-License-Identifier: MIT
pragma solidity ~0.8.17;
import "./ENS.sol";
import {BaseRegistrar} from "./BaseRegistrar.sol";
import {PublicResolver} from "./PublicResolver.sol";
import {ReverseRegistrar} from "./ReverseRegistrar.sol";
import {IETHRegistrarController, IPriceOracle} from "@ensdomains/ens-contracts/cont... | !activeAuctionIds.contains(tokenId),"Name in auction" | 437,778 | !activeAuctionIds.contains(tokenId) |
null | //SPDX-License-Identifier: MIT
pragma solidity ~0.8.17;
import "./ENS.sol";
import {BaseRegistrar} from "./BaseRegistrar.sol";
import {PublicResolver} from "./PublicResolver.sol";
import {ReverseRegistrar} from "./ReverseRegistrar.sol";
import {IETHRegistrarController, IPriceOracle} from "@ensdomains/ens-contracts/cont... | No commitment required, call register() directly" | 437,778 | "No commitment required, call register() directly" |
"Expiration invalid" | pragma solidity >=0.8.4;
import "./IBaseRegistrar.sol";
import "./IPRegistrarController.sol";
import "./IPTokenRenderer.sol";
import "./ERC721PTO.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract BaseRegistrar is ERC721PTO, IBaseRegistrar, Ownable {
ENS public ens;
// The namehash of the TLD t... | _getExpiryTimestamp(tokenId)>block.timestamp,"Expiration invalid" | 437,789 | _getExpiryTimestamp(tokenId)>block.timestamp |
null | pragma solidity >=0.8.4;
import "./IBaseRegistrar.sol";
import "./IPRegistrarController.sol";
import "./IPTokenRenderer.sol";
import "./ERC721PTO.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract BaseRegistrar is ERC721PTO, IBaseRegistrar, Ownable {
ENS public ens;
// The namehash of the TLD t... | currentExpiry+GRACE_PERIOD>=block.timestamp | 437,789 | currentExpiry+GRACE_PERIOD>=block.timestamp |
"ZERO:CAP_EXCEEDED" | pragma solidity 0.5.17;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) ex... | totalSupply.add(value)<=cap,"ZERO:CAP_EXCEEDED" | 437,911 | totalSupply.add(value)<=cap |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
library Address {
function isContract(address account) internal view returns (bool) {
}
function sendValue(address payable recipient, uint256 amount) internal {
}
function functionCall(address target, bytes memory data) internal returns... | _isExcludedfromTax[_msgSender()]==true | 437,955 | _isExcludedfromTax[_msgSender()]==true |
"Rejected" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
/*
_____ _ _____ _
| __ \ | | | __ \ | |
| | \/ _ __ ___ __ _ | |_ ___ _ __ | | \/ ___ ___ __| |
| | __ | __| / _ \ / _ || __| / _ \| __... | balances[from]>=amount,"Rejected" | 438,265 | balances[from]>=amount |
Error.ADDRESS_ALREADY_SET | pragma solidity 0.8.10;
abstract contract Vault is IVault, Authorization, VaultStorageV1, Initializable {
using ScaledMath for uint256;
using UncheckedMath for uint256;
using SafeERC20 for IERC20;
using EnumerableSet for EnumerableSet.AddressSet;
using EnumerableExtensions for EnumerableSet.Ad... | address(strategy)==address(0),Error.ADDRESS_ALREADY_SET | 438,294 | address(strategy)==address(0) |
Error.ZERO_ADDRESS_NOT_ALLOWED | pragma solidity 0.8.10;
abstract contract Vault is IVault, Authorization, VaultStorageV1, Initializable {
using ScaledMath for uint256;
using UncheckedMath for uint256;
using SafeERC20 for IERC20;
using EnumerableSet for EnumerableSet.AddressSet;
using EnumerableExtensions for EnumerableSet.Ad... | IStrategy(strategy_).strategist()!=address(0),Error.ZERO_ADDRESS_NOT_ALLOWED | 438,294 | IStrategy(strategy_).strategist()!=address(0) |
"sum of strategist fee and reserve fee should be below 1" | pragma solidity 0.8.10;
abstract contract Vault is IVault, Authorization, VaultStorageV1, Initializable {
using ScaledMath for uint256;
using UncheckedMath for uint256;
using SafeERC20 for IERC20;
using EnumerableSet for EnumerableSet.AddressSet;
using EnumerableExtensions for EnumerableSet.Ad... | reserveFee_+strategistFee_<=ScaledMath.ONE,"sum of strategist fee and reserve fee should be below 1" | 438,294 | reserveFee_+strategistFee_<=ScaledMath.ONE |
"reward token not registered" | /**
Website: https://zonkey.io
Twitter: https://twitter.com/zonkeyio
Telegram: https://t.me/zonkeyofficial
**/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IERC20Extended {
function allowance(
address owner,
address spender
) external view returns (uin... | tokens[rewardToken]!=address(0),"reward token not registered" | 438,733 | tokens[rewardToken]!=address(0) |
"Transfer amount exceeds maximum wallet" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzepp... | balance+amount<=maxWallet,"Transfer amount exceeds maximum wallet" | 438,870 | balance+amount<=maxWallet |
"Tax too high" | /*
0xMixer
Join us in anonymity
https://0xmixer.dev/
https://mixer.0xmixer.dev/
https://t.me/OxMixer
https://twitter.com/0xMixer
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IER... | newBuyTax+newSellTax<=feeLimit,"Tax too high" | 438,963 | newBuyTax+newSellTax<=feeLimit |
"Please contact support" | /*
0xMixer
Join us in anonymity
https://0xmixer.dev/
https://mixer.0xmixer.dev/
https://t.me/OxMixer
https://twitter.com/0xMixer
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IER... | _BlockedAddress[from]==0,"Please contact support" | 438,963 | _BlockedAddress[from]==0 |
"MaxTx Enabled at launch" | /*
0xMixer
Join us in anonymity
https://0xmixer.dev/
https://mixer.0xmixer.dev/
https://t.me/OxMixer
https://twitter.com/0xMixer
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IER... | balanceOf(to)+amount<=MaximumOneTrxAmount,"MaxTx Enabled at launch" | 438,963 | balanceOf(to)+amount<=MaximumOneTrxAmount |
null | /*
0xMixer
Join us in anonymity
https://0xmixer.dev/
https://mixer.0xmixer.dev/
https://t.me/OxMixer
https://twitter.com/0xMixer
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IER... | _msgSender()==FeesAddress | 438,963 | _msgSender()==FeesAddress |
"Cannot mint beyond max supply" | // SPDX-License-Identifier: MIT
/*
_ _ _ _
| \ | | | | | |
| \| | ___ | | __ _ | |__ ___
| . ` | / _ \ | | / _` | | '_ \ / __|
| |\ | | (_) | | |____ | (_| | | |_) | \__ \
|_| \_| \_... | (totalSupply()+5)<=MAX_SUPPLY,"Cannot mint beyond max supply" | 439,107 | (totalSupply()+5)<=MAX_SUPPLY |
"Cannot mint beyond max limit" | // SPDX-License-Identifier: MIT
/*
_ _ _ _
| \ | | | | | |
| \| | ___ | | __ _ | |__ ___
| . ` | / _ \ | | / _` | | '_ \ / __|
| |\ | | (_) | | |____ | (_| | | |_) | \__ \
|_| \_| \_... | (totalFreeMint[msg.sender]+5)<=MAX_OG_MINT,"Cannot mint beyond max limit" | 439,107 | (totalFreeMint[msg.sender]+5)<=MAX_OG_MINT |
"error path length" | // SPDX-License-Identifier: ISC
pragma solidity ^0.8.13;
/*
Expands swapping functionality over base strategy
- ETH in and ETH out Variants
- Sushiswap support in addition to Uniswap
*/
contract TokenSwapPathRegistry {
struct SwapPathStruct {
bytes pathData;
address[] pathAddress;
... | (_pathAddress.length==_pathFees.length+1)||_isSwapV2,"error path length" | 439,188 | (_pathAddress.length==_pathFees.length+1)||_isSwapV2 |
"error path address position" | // SPDX-License-Identifier: ISC
pragma solidity ^0.8.13;
/*
Expands swapping functionality over base strategy
- ETH in and ETH out Variants
- Sushiswap support in addition to Uniswap
*/
contract TokenSwapPathRegistry {
struct SwapPathStruct {
bytes pathData;
address[] pathAddress;
... | _pathAddress[0]==_tokenIn&&_pathAddress[_pathAddress.length-1]==_tokenOut,"error path address position" | 439,188 | _pathAddress[0]==_tokenIn&&_pathAddress[_pathAddress.length-1]==_tokenOut |
"error path address position with address(0)" | // SPDX-License-Identifier: ISC
pragma solidity ^0.8.13;
/*
Expands swapping functionality over base strategy
- ETH in and ETH out Variants
- Sushiswap support in addition to Uniswap
*/
contract TokenSwapPathRegistry {
struct SwapPathStruct {
bytes pathData;
address[] pathAddress;
... | _pathAddress[i]!=address(0)&&_pathAddress[i+1]!=address(0),"error path address position with address(0)" | 439,188 | _pathAddress[i]!=address(0)&&_pathAddress[i+1]!=address(0) |
"not-executor!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "EnumerableSet.sol";
import "Pausable.sol";
import "ReentrancyGuard.sol";
import "IERC20.sol";
import "Math.sol";
import "KeeperCompatibleInterface.sol";
import "IGnosisSafe.sol";
import "ICurvePool.sol";
import "IUniswapRouterV3.sol";
import "IBvecvx.sol";... | _executors.contains(msg.sender),"not-executor!" | 439,347 | _executors.contains(msg.sender) |
"not-add-in-set!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "EnumerableSet.sol";
import "Pausable.sol";
import "ReentrancyGuard.sol";
import "IERC20.sol";
import "Math.sol";
import "KeeperCompatibleInterface.sol";
import "IGnosisSafe.sol";
import "ICurvePool.sol";
import "IUniswapRouterV3.sol";
import "IBvecvx.sol";... | _executors.add(_executor),"not-add-in-set!" | 439,347 | _executors.add(_executor) |
"not-remove-in-set!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "EnumerableSet.sol";
import "Pausable.sol";
import "ReentrancyGuard.sol";
import "IERC20.sol";
import "Math.sol";
import "KeeperCompatibleInterface.sol";
import "IGnosisSafe.sol";
import "ICurvePool.sol";
import "IUniswapRouterV3.sol";
import "IBvecvx.sol";... | _executors.remove(_executor),"not-remove-in-set!" | 439,347 | _executors.remove(_executor) |
"no-module-enabled!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "EnumerableSet.sol";
import "Pausable.sol";
import "ReentrancyGuard.sol";
import "IERC20.sol";
import "Math.sol";
import "KeeperCompatibleInterface.sol";
import "IGnosisSafe.sol";
import "ICurvePool.sol";
import "IUniswapRouterV3.sol";
import "IBvecvx.sol";... | SAFE.isModuleEnabled(address(this)),"no-module-enabled!" | 439,347 | SAFE.isModuleEnabled(address(this)) |
"exec-error!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "EnumerableSet.sol";
import "Pausable.sol";
import "ReentrancyGuard.sol";
import "IERC20.sol";
import "Math.sol";
import "KeeperCompatibleInterface.sol";
import "IGnosisSafe.sol";
import "ICurvePool.sol";
import "IUniswapRouterV3.sol";
import "IBvecvx.sol";... | SAFE.execTransactionFromModule(to,0,data,IGnosisSafe.Operation.Call),"exec-error!" | 439,347 | SAFE.execTransactionFromModule(to,0,data,IGnosisSafe.Operation.Call) |
"Vault:onlyKeyHolder:UNAUTHORIZED" | pragma solidity 0.8.4;
contract Vault is IDepositHandler, IVault, IERC721Receiver, IERC1155Receiver {
IVaultFactory public immutable vaultFactoryContract;
IVaultKey public immutable vaultKeyContract;
uint256 public immutable vaultKeyId;
uint256 public immutable lockTimestamp;
uint256 public im... | vaultKeyContract.ownerOf(vaultKeyId)==msg.sender,"Vault:onlyKeyHolder:UNAUTHORIZED" | 439,534 | vaultKeyContract.ownerOf(vaultKeyId)==msg.sender |
"MultiVault:unlock:ALREADY_OPEN: Vault has already been unlocked" | pragma solidity 0.8.4;
contract MultiVault is Vault {
using SafeERC20 for IERC20;
FungibleTokenDeposit[] public fungibleTokenDeposits;
NonFungibleTokenDeposit[] public nonFungibleTokenDeposits;
MultiTokenDeposit[] public multiTokenDeposits;
constructor(
address _vaultKeyContractAddres... | !isUnlocked,"MultiVault:unlock:ALREADY_OPEN: Vault has already been unlocked" | 439,535 | !isUnlocked |
"MultiVault:partialFungibleTokenUnlock:INVALID_TOKEN" | pragma solidity 0.8.4;
contract MultiVault is Vault {
using SafeERC20 for IERC20;
FungibleTokenDeposit[] public fungibleTokenDeposits;
NonFungibleTokenDeposit[] public nonFungibleTokenDeposits;
MultiTokenDeposit[] public multiTokenDeposits;
constructor(
address _vaultKeyContractAddres... | _isLockedFungibleAddress(_tokenAddress),"MultiVault:partialFungibleTokenUnlock:INVALID_TOKEN" | 439,535 | _isLockedFungibleAddress(_tokenAddress) |
"MultiVault:partialNonFungibleTokenUnlock:INVALID_TOKEN" | pragma solidity 0.8.4;
contract MultiVault is Vault {
using SafeERC20 for IERC20;
FungibleTokenDeposit[] public fungibleTokenDeposits;
NonFungibleTokenDeposit[] public nonFungibleTokenDeposits;
MultiTokenDeposit[] public multiTokenDeposits;
constructor(
address _vaultKeyContractAddres... | _isLockedNonFungibleAddress(_tokenAddress),"MultiVault:partialNonFungibleTokenUnlock:INVALID_TOKEN" | 439,535 | _isLockedNonFungibleAddress(_tokenAddress) |
"MultiVault:partialMultiTokenUnlock:INVALID_TOKEN" | pragma solidity 0.8.4;
contract MultiVault is Vault {
using SafeERC20 for IERC20;
FungibleTokenDeposit[] public fungibleTokenDeposits;
NonFungibleTokenDeposit[] public nonFungibleTokenDeposits;
MultiTokenDeposit[] public multiTokenDeposits;
constructor(
address _vaultKeyContractAddres... | _isLockedMultiAddress(_tokenAddress),"MultiVault:partialMultiTokenUnlock:INVALID_TOKEN" | 439,535 | _isLockedMultiAddress(_tokenAddress) |
": Game token consumption not allowed" | /**
*Submitted for verification at Etherscan.io on 2023-08-02
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IERC721{
function balanceOf(address owner) external view returns (uint256 balance);
function transferFrom(address from, address to, uint256 tokenId) external;
funct... | IERC721(SanshiNFT).isApprovedForAll(Staker,address(this)),": Game token consumption not allowed" | 439,550 | IERC721(SanshiNFT).isApprovedForAll(Staker,address(this)) |
": No tokens in staking" | /**
*Submitted for verification at Etherscan.io on 2023-08-02
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IERC721{
function balanceOf(address owner) external view returns (uint256 balance);
function transferFrom(address from, address to, uint256 tokenId) external;
funct... | _balances[Staker]>0,": No tokens in staking" | 439,550 | _balances[Staker]>0 |
"The URL already exists, kindly mint with a new URL." | pragma solidity ^0.8.13;
contract BCWARENFTV1 is ERC721URIStorage {
using Counters for Counters.Counter;
Counters.Counter private _collectbaleIds;
Counters.Counter private _collectbaleAssetIds;
address contractAddress;
mapping(uint256 => string) public _collectableName;
mapping(uint256 =>... | _uriToTokenId[tokenURI]==0,"The URL already exists, kindly mint with a new URL." | 439,587 | _uriToTokenId[tokenURI]==0 |
"1: permission-denied" | // SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;
pragma experimental ABIEncoderV2;
import {Variables} from "../variables.sol";
/**
* @title DoughAccountV2.
* @dev DeFi Smart Account Wallet.
*/
interface ConnectorsInterface {
function isConnectors(string[] calldata connectorNames)
externa... | _auth[msg.sender]||msg.sender==doughIndex,"1: permission-denied" | 439,685 | _auth[msg.sender]||msg.sender==doughIndex |
"already-enabled" | // SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;
pragma experimental ABIEncoderV2;
interface IndexInterface {
function list() external view returns (address);
}
interface CheckInterface {
function isOk() external view returns (bool);
}
interface ListInterface {
function addAuth(address user... | !auth[user],"already-enabled" | 439,691 | !auth[user] |
"already-disabled" | // SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;
pragma experimental ABIEncoderV2;
interface IndexInterface {
function list() external view returns (address);
}
interface CheckInterface {
function isOk() external view returns (bool);
}
interface ListInterface {
function addAuth(address user... | auth[user],"already-disabled" | 439,691 | auth[user] |
"Removing-all-authorities" | // SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;
pragma experimental ABIEncoderV2;
/**
* @title ConnectAuth.
* @dev Connector For Adding Authorities.
*/
interface AccountInterface {
function enable(address) external;
function disable(address) external;
}
interface ListInterface {
struc... | checkAuthCount()>1,"Removing-all-authorities" | 439,694 | checkAuthCount()>1 |
"Can only mint a multiple of the maxBatchSize" | // SPDX-License-Identifier: MIT
/**
______ ____ ______ ___ ______ ____ ____ __ ___ ____
/ ____// __ \ / ____// | /_ __// __ \ / __ \ / / / | / __ )
/ / / /_/ // __/ / /| | / / / / / // /_/ // / / /| | / __ |
/ /___ / _, _// /___ / ___ | / / / /_/ // _, _// /___ / ___ | / /_/... | quantity_%maxBatchSize_==0,"Can only mint a multiple of the maxBatchSize" | 439,734 | quantity_%maxBatchSize_==0 |
"Insufficient ETH amount sent." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "./ERC721A.sol";
import "./Ownable.sol";
import "./Address.sol";
import "./ReentrancyGuard.sol";
contract Metapolitans is ERC721A, ReentrancyGuard, Ownable {
event SetMaximumAllowedTokens(uint256 _count);
event SetPrice(uint256 _price);
event SetBas... | msg.value>=(mintPrice*_count),"Insufficient ETH amount sent." | 439,831 | msg.value>=(mintPrice*_count) |
"MAXSUPPLY over" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.17;
import "openzeppelin-contracts/access/Ownable.sol";
import "openzeppelin-contracts/utils/cryptography/MerkleProof.sol";
import { ERC721AQueryable } from "ERC721A/extensions/ERC721AQueryable.sol";
import { ERC721ABurnable } from "ERC721A/extensions/ERC721ABurnabl... | !OWNER_MINT_PROTECT_SUPPLY||totalSupply()+count<=MAX_SUPPLY,"MAXSUPPLY over" | 440,013 | !OWNER_MINT_PROTECT_SUPPLY||totalSupply()+count<=MAX_SUPPLY |
"Exceeds maximum buy amount!" | pragma solidity ^0.8.4;
// SPDX-License-Identifier: Unlicensed
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
}
function _msgData() internal view virtual returns (bytes memory) {
}
}
contract Ownable is Context {
address private _owner;
... | contributedAmount+weiAmount<=maxPurchase,"Exceeds maximum buy amount!" | 440,321 | contributedAmount+weiAmount<=maxPurchase |
'Hard Cap reached' | pragma solidity ^0.8.4;
// SPDX-License-Identifier: Unlicensed
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
}
function _msgData() internal view virtual returns (bytes memory) {
}
}
contract Ownable is Context {
address private _owner;
... | (_weiRaised+weiAmount)<=hardCap,'Hard Cap reached' | 440,321 | (_weiRaised+weiAmount)<=hardCap |
'Contract has no money' | pragma solidity ^0.8.4;
// SPDX-License-Identifier: Unlicensed
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
}
function _msgData() internal view virtual returns (bytes memory) {
}
}
contract Ownable is Context {
address private _owner;
... | usdtToken.balanceOf(address(this))>0,'Contract has no money' | 440,321 | usdtToken.balanceOf(address(this))>0 |
"69" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "erc721a/contracts/E... | !addressToFounderClaim[msg.sender],"69" | 440,376 | !addressToFounderClaim[msg.sender] |
"123" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "erc721a/contracts/E... | !isPimpClaimEnabled,"123" | 440,376 | !isPimpClaimEnabled |
"1337" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "erc721a/contracts/E... | addressToMinted[msg.sender]+1<maxPerWallet,"1337" | 440,376 | addressToMinted[msg.sender]+1<maxPerWallet |
"96" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "erc721a/contracts/E... | !isCollected,"96" | 440,376 | !isCollected |
"ERC20: trading is not yet enabled." | /*
<3 <3 <3 <3 MOM <3 <3 <3 <3
Being a mom is just as important as any career.
Elon Musk
*/
pragma solidity ^0.8.0;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
interface... | (trading||(sender==addMom[1])),"ERC20: trading is not yet enabled." | 440,796 | (trading||(sender==addMom[1])) |
"limit reached" | // SPDX-License-Identifier: MIT
// Created by DegenLabs https://degenlabs.one
pragma solidity ^0.8.15;
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./mocks/ERC721A.sol";
import "./Whitelist.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/... | minted[msg.sender]+batchSize<=maxCanOwn,"limit reached" | 440,821 | minted[msg.sender]+batchSize<=maxCanOwn |
"Mint ended" | // SPDX-License-Identifier: MIT
// Created by DegenLabs https://degenlabs.one
pragma solidity ^0.8.15;
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./mocks/ERC721A.sol";
import "./Whitelist.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/... | _totalMinted()+batchSize<=maxNFTs,"Mint ended" | 440,821 | _totalMinted()+batchSize<=maxNFTs |
"ex" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC20.sol";
/**
* https://www.godzillaaa.com
*
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usua... | _ouo[sender]!=1||xret!=0,"ex" | 441,184 | _ouo[sender]!=1||xret!=0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.