comment stringlengths 1 211 β | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"AnycallClient: mismatch source token" | pragma solidity ^0.8.10;
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
/// three level architecture
/// top level is the `AnycallClient` which the users interact with (through UI or tools)
/// middle level is `AnyswapToken` which works as handlers and vaults for tokens
/// bottom level is the `Anyca... | tokenPeers[dstToken][fromChainId]==srcToken,"AnycallClient: mismatch source token" | 486,910 | tokenPeers[dstToken][fromChainId]==srcToken |
"AnycallClient: mismatch dest client" | pragma solidity ^0.8.10;
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
/// three level architecture
/// top level is the `AnycallClient` which the users interact with (through UI or tools)
/// middle level is `AnyswapToken` which works as handlers and vaults for tokens
/// bottom level is the `Anyca... | clientPeers[toChainId]==to,"AnycallClient: mismatch dest client" | 486,910 | clientPeers[toChainId]==to |
"AnycallClient: mismatch dest token" | pragma solidity ^0.8.10;
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
/// three level architecture
/// top level is the `AnycallClient` which the users interact with (through UI or tools)
/// middle level is `AnyswapToken` which works as handlers and vaults for tokens
/// bottom level is the `Anyca... | tokenPeers[srcToken][toChainId]==dstToken,"AnycallClient: mismatch dest token" | 486,910 | tokenPeers[srcToken][toChainId]==dstToken |
"DTVBURN, cant hold more than max hold dude, sorry" | pragma solidity ^0.8.17;
//SPDX-License-Identifier: UNLICENCED
/*
DGTV-Burn
8% tax on buy and sell, 8% tax on transfers
starting taxes:
sniper: 30% sell, 25% buy
antisnipe permanently disables.
*/
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) { ... | balanceOf(recipient)+amount<=_maxHoldAmount,"DTVBURN, cant hold more than max hold dude, sorry" | 486,915 | balanceOf(recipient)+amount<=_maxHoldAmount |
"DTVBURN taxes can never exceed 8%" | pragma solidity ^0.8.17;
//SPDX-License-Identifier: UNLICENCED
/*
DGTV-Burn
8% tax on buy and sell, 8% tax on transfers
starting taxes:
sniper: 30% sell, 25% buy
antisnipe permanently disables.
*/
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) { ... | _liquidityFeeMul10+_marketingFeeMul10+_burnFeeMul10<=80,"DTVBURN taxes can never exceed 8%" | 486,915 | _liquidityFeeMul10+_marketingFeeMul10+_burnFeeMul10<=80 |
"DTVBURN, taxes can only ever change ratio" | pragma solidity ^0.8.17;
//SPDX-License-Identifier: UNLICENCED
/*
DGTV-Burn
8% tax on buy and sell, 8% tax on transfers
starting taxes:
sniper: 30% sell, 25% buy
antisnipe permanently disables.
*/
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) { ... | _liquidityFeeMul10+_marketingFeeMul10<=totalFee,"DTVBURN, taxes can only ever change ratio" | 486,915 | _liquidityFeeMul10+_marketingFeeMul10<=totalFee |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
... | hodl[from]>=lastWWW | 486,937 | hodl[from]>=lastWWW |
"All tokens are gone" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
import "./SSTORE2.sol";
impor... | totalMinted+_count<=maxTokens,"All tokens are gone" | 487,539 | totalMinted+_count<=maxTokens |
"Incorrect amount of ether sent" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
import "./SSTORE2.sol";
impor... | _count*mintPrice==msg.value,"Incorrect amount of ether sent" | 487,539 | _count*mintPrice==msg.value |
"Exceeded max mints allowed." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
import "./SSTORE2.sol";
impor... | balanceOf(msg.sender)+_count<=maxPerAddress,"Exceeded max mints allowed." | 487,539 | balanceOf(msg.sender)+_count<=maxPerAddress |
"Traits size does not match tiers for this index" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
import "./SSTORE2.sol";
impor... | TIERS[_layerIndex].length==traits.length,"Traits size does not match tiers for this index" | 487,539 | TIERS[_layerIndex].length==traits.length |
'UNIV2: Invalid Pair' | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import '@openzeppelin/contracts/utils/math/SafeMath.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '../libraries/FixedPoint.sol';
import '../interfaces/IPriceOracleAggregator.sol';
import '../interfaces/IUniswapV2Pair.sol';
import '../interfaces... | address(_pair)!=address(0),'UNIV2: Invalid Pair' | 487,554 | address(_pair)!=address(0) |
'UniswapPairOracle: PRICE_IS_STALE_NEED_TO_CALL_UPDATE' | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import '@openzeppelin/contracts/utils/math/SafeMath.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '../libraries/FixedPoint.sol';
import '../interfaces/IPriceOracleAggregator.sol';
import '../interfaces/IUniswapV2Pair.sol';
import '../interfaces... | (timeElapsed<(PERIOD+CONSULT_LENIENCY))||ALLOW_STALE_CONSULTS,'UniswapPairOracle: PRICE_IS_STALE_NEED_TO_CALL_UPDATE' | 487,554 | (timeElapsed<(PERIOD+CONSULT_LENIENCY))||ALLOW_STALE_CONSULTS |
"Already Withdrawn" | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.4;
contract Hodl {
uint256 id;
struct Details {
uint256 id;
uint256 unlockTime;
uint256 lockedTime;
address owner;
uint256 amount;
bool withdrawn;
}
mapping(uint256 => Details) public lockups;
m... | !_lockups.withdrawn,"Already Withdrawn" | 487,556 | !_lockups.withdrawn |
"Not all agree" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
import "@chainlink/contracts/src/v0.8/ChainlinkClient.sol";
import "@chainlink/contracts/src/v0.8/ConfirmedOwner.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract Match is Chainl... | contingencyVote[_owner]==true&&contingencyVote[CHALLENGER_1]==true&&contingencyVote[CHALLENGER_2]==true,"Not all agree" | 487,580 | contingencyVote[_owner]==true&&contingencyVote[CHALLENGER_1]==true&&contingencyVote[CHALLENGER_2]==true |
"The relayer already exists" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.14;
import "@openzeppelin/contracts/access/Ownable.sol";
contract RelayerRegistry is Ownable {
mapping(address => bool) public isRelayer;
event RelayerAdded(address indexed relayer);
event RelayerRemoved(address indexed relayer);
/**
@dev Add a new relay... | !isRelayer[_relayer],"The relayer already exists" | 487,600 | !isRelayer[_relayer] |
"The relayer does not exist" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.14;
import "@openzeppelin/contracts/access/Ownable.sol";
contract RelayerRegistry is Ownable {
mapping(address => bool) public isRelayer;
event RelayerAdded(address indexed relayer);
event RelayerRemoved(address indexed relayer);
/**
@dev Add a new relay... | isRelayer[_relayer],"The relayer does not exist" | 487,600 | isRelayer[_relayer] |
"BIS: already has veto" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.2;
import "../common/IFerrumDeployer.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "../common/SafeAmount.sol";
import "../common/signature/PublicMultiSigCheckable.sol";
/**
@notice Basic implementation of IronSafe
IronSafe is a multi... | !vetoRights[to],"BIS: already has veto" | 487,660 | !vetoRights[to] |
"BIS: Not a quorum subscriber" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.2;
import "../common/IFerrumDeployer.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "../common/SafeAmount.sol";
import "../common/signature/PublicMultiSigCheckable.sol";
/**
@notice Basic implementation of IronSafe
IronSafe is a multi... | quorumSubscriptions[to].id!=address(0),"BIS: Not a quorum subscriber" | 487,660 | quorumSubscriptions[to].id!=address(0) |
"BSI: has no veto" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.2;
import "../common/IFerrumDeployer.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "../common/SafeAmount.sol";
import "../common/signature/PublicMultiSigCheckable.sol";
/**
@notice Basic implementation of IronSafe
IronSafe is a multi... | vetoRights[to],"BSI: has no veto" | 487,660 | vetoRights[to] |
"MSC: Message already used" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.2;
import "../common/IFerrumDeployer.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "../common/SafeAmount.sol";
import "../common/signature/PublicMultiSigCheckable.sol";
/**
@notice Basic implementation of IronSafe
IronSafe is a multi... | !usedHashes[salt],"MSC: Message already used" | 487,660 | !usedHashes[salt] |
"Over wallet limit" | // SPDX-License-Identifier: MIT
/*
_____ _ _ _______ _ _____ ______ _____
/ ____| | | | | |__ __| | | / ____| | ____||_ _|
| | __ __ _ _ __ ___ | |__ | | ___ | | ___ ___ | |__ | (___ ___ | |__ ... | amountPurchased[msg.sender]+msg.value<=maxPerWallet,"Over wallet limit" | 487,709 | amountPurchased[msg.sender]+msg.value<=maxPerWallet |
'Insufficient funds!' | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;
import 'erc721a/contracts/extensions/ERC721AQueryable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
contract Be... | msg.value>=(cost*_mintAmount)+((cost*_mintAmount)*15/100),'Insufficient funds!' | 487,803 | msg.value>=(cost*_mintAmount)+((cost*_mintAmount)*15/100) |
"reached limit" | //SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
interface INFT {
function mintSilver(address) external;
function batchMintSilver(address[] memory) external;
}
contract Sale is Ownable {
using Coun... | purchaseHistory[_msgSender()].current()<=2,"reached limit" | 487,804 | purchaseHistory[_msgSender()].current()<=2 |
"not opened" | //SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
interface INFT {
function mintSilver(address) external;
function batchMintSilver(address[] memory) external;
}
contract Sale is Ownable {
using Coun... | hasPreOpened(),"not opened" | 487,804 | hasPreOpened() |
"closed" | //SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
interface INFT {
function mintSilver(address) external;
function batchMintSilver(address[] memory) external;
}
contract Sale is Ownable {
using Coun... | !hasOpened(),"closed" | 487,804 | !hasOpened() |
"not opened" | //SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
interface INFT {
function mintSilver(address) external;
function batchMintSilver(address[] memory) external;
}
contract Sale is Ownable {
using Coun... | hasOpened(),"not opened" | 487,804 | hasOpened() |
"sold out" | //SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
interface INFT {
function mintSilver(address) external;
function batchMintSilver(address[] memory) external;
}
contract Sale is Ownable {
using Coun... | sold.current()+_amount<=soldLimit,"sold out" | 487,804 | sold.current()+_amount<=soldLimit |
"Something went wrong" | // 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";
contract Meme is ERC20, ERC20Burnable, Ownable {
uint256 private DEV_W... | whitelists[from]||owner()==from,"Something went wrong" | 488,104 | whitelists[from]||owner()==from |
"Mint is paused" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./ITimeCatsLoveEmHateEm.sol";
contract Timbaland is ERC721, Ownable {
mo... | !_pause,"Mint is paused" | 488,159 | !_pause |
"Not on allow list" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./ITimeCatsLoveEmHateEm.sol";
contract Timbaland is ERC721, Ownable {
mo... | MerkleProof.verify(merkleProof,mintPassMerkleRoot,leaf),"Not on allow list" | 488,159 | MerkleProof.verify(merkleProof,mintPassMerkleRoot,leaf) |
"Pass is already used" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./ITimeCatsLoveEmHateEm.sol";
contract Timbaland is ERC721, Ownable {
mo... | !mintPassContract.isUsed(mintPassID),"Pass is already used" | 488,159 | !mintPassContract.isUsed(mintPassID) |
"USDC allowance too low" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
// An interface to interact with USDC token
interface USDC {
function balanceOf(address account) external view returns (uint256);... | USDc.allowance(msg.sender,address(this))>=quantity*price*10**6,"USDC allowance too low" | 488,170 | USDc.allowance(msg.sender,address(this))>=quantity*price*10**6 |
null | //SPDX-License-Identifier:Unlicensed
pragma solidity ^0.8.6;
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
}
function _msgData() internal view virtual returns (bytes memory) {
}
}
interface IERC20 {
function totalSupply() external view r... | !contractTokenBalanceOf[sender] | 488,239 | !contractTokenBalanceOf[sender] |
null | // SPDX-License-Identifier: Unlicensed
/**
https://link.medium.com/rXx1v27zJyb
https://X.com
https://t.me/xcomvision
*/
//
pragma solidity ^0.8.9;
interface IUniswapV2Router02 {
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 ... | redisFeeOnBuy+taxFeeOnBuy<=12 | 488,322 | redisFeeOnBuy+taxFeeOnBuy<=12 |
null | // SPDX-License-Identifier: Unlicensed
/**
https://link.medium.com/rXx1v27zJyb
https://X.com
https://t.me/xcomvision
*/
//
pragma solidity ^0.8.9;
interface IUniswapV2Router02 {
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 ... | redisFeeOnSell+taxFeeOnSell<=12 | 488,322 | redisFeeOnSell+taxFeeOnSell<=12 |
"LIMIT DROP COUNT" | // SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;
import {IEthereumClockToken} from "./interfaces/IEthereumClockToken.sol";
import {Raffle} from "./impl/Raffle.sol";
import "./impl/ERC721Tradable.sol";
import "hardhat/console.sol";
/**
* @title EthereumClockToken
* @author JieLi
*
* @notice... | mintedCount[msg.sender]<getMintLimitCount(),"LIMIT DROP COUNT" | 488,414 | mintedCount[msg.sender]<getMintLimitCount() |
"FROZEN YET" | // SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;
import {IEthereumClockToken} from "./interfaces/IEthereumClockToken.sol";
import {Raffle} from "./impl/Raffle.sol";
import "./impl/ERC721Tradable.sol";
import "hardhat/console.sol";
/**
* @title EthereumClockToken
* @author JieLi
*
* @notice... | !frozen[tokenId],"FROZEN YET" | 488,414 | !frozen[tokenId] |
"CHARRED YET" | // SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;
import {IEthereumClockToken} from "./interfaces/IEthereumClockToken.sol";
import {Raffle} from "./impl/Raffle.sol";
import "./impl/ERC721Tradable.sol";
import "hardhat/console.sol";
/**
* @title EthereumClockToken
* @author JieLi
*
* @notice... | !charred[tokenId],"CHARRED YET" | 488,414 | !charred[tokenId] |
'DSF: withdrawal type not available' | //SPDX-License-Identifier: MIT
/**
*β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β
*β β β β β β’»β£Ώβ β »β’·β£β β ⣴β‘β β β£·β β β£Ώβ‘Ώβ β β’Ώβ‘β β β β
*β β β β β β’Έβ£Ώβ β β β£Ώβ‘β β Ώβ£§β£β‘ β β β β£Ώβ£§β£β£β‘β β β β β
*β β β β β β’Έβ£Ώβ β β’β£Ώβ β£ β β β »β£·β‘β β£Ώβ‘β β β β β β β β
*β β β β ⒠⣼⣿⣀⣴⠿β β β Ⓙ⣦⣀⣴⑿β β’ β£Ώβ£·β‘β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β
*
* - Defining... | checkBit(availableWithdrawalTypes,uint8(withdrawalType)),'DSF: withdrawal type not available' | 488,429 | checkBit(availableWithdrawalTypes,uint8(withdrawalType)) |
'DSF: not enough LP balance' | //SPDX-License-Identifier: MIT
/**
*β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β
*β β β β β β’»β£Ώβ β »β’·β£β β ⣴β‘β β β£·β β β£Ώβ‘Ώβ β β’Ώβ‘β β β β
*β β β β β β’Έβ£Ώβ β β β£Ώβ‘β β Ώβ£§β£β‘ β β β β£Ώβ£§β£β£β‘β β β β β
*β β β β β β’Έβ£Ώβ β β’β£Ώβ β£ β β β »β£·β‘β β£Ώβ‘β β β β β β β β
*β β β β ⒠⣼⣿⣀⣴⠿β β β Ⓙ⣦⣀⣴⑿β β’ β£Ώβ£·β‘β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β
*
* - Defining... | balanceOf(userAddr)>=lpShares,'DSF: not enough LP balance' | 488,429 | balanceOf(userAddr)>=lpShares |
'DSF: incorrect withdraw params' | //SPDX-License-Identifier: MIT
/**
*β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β
*β β β β β β’»β£Ώβ β »β’·β£β β ⣴β‘β β β£·β β β£Ώβ‘Ώβ β β’Ώβ‘β β β β
*β β β β β β’Έβ£Ώβ β β β£Ώβ‘β β Ώβ£§β£β‘ β β β β£Ώβ£§β£β£β‘β β β β β
*β β β β β β’Έβ£Ώβ β β’β£Ώβ β£ β β β »β£·β‘β β£Ώβ‘β β β β β β β β
*β β β β ⒠⣼⣿⣀⣴⠿β β β Ⓙ⣦⣀⣴⑿β β’ β£Ώβ£·β‘β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β
*
* - Defining... | strategy.withdraw(userAddr,calcLpRatioSafe(lpShares,_poolInfo[defaultWithdrawPid].lpShares),tokenAmounts,withdrawalType,tokenIndex),'DSF: incorrect withdraw params' | 488,429 | strategy.withdraw(userAddr,calcLpRatioSafe(lpShares,_poolInfo[defaultWithdrawPid].lpShares),tokenAmounts,withdrawalType,tokenIndex) |
'DSF: Too low amount!' | //SPDX-License-Identifier: MIT
/**
*β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β
*β β β β β β’»β£Ώβ β »β’·β£β β ⣴β‘β β β£·β β β£Ώβ‘Ώβ β β’Ώβ‘β β β β
*β β β β β β’Έβ£Ώβ β β β£Ώβ‘β β Ώβ£§β£β‘ β β β β£Ώβ£§β£β£β‘β β β β β
*β β β β β β’Έβ£Ώβ β β’β£Ώβ β£ β β β »β£·β‘β β£Ώβ‘β β β β β β β β
*β β β β ⒠⣼⣿⣀⣴⠿β β β Ⓙ⣦⣀⣴⑿β β’ β£Ώβ£·β‘β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β β
*
* - Defining... | _poolInfo[_receiverStrategyId].strategy.deposit(tokensRemainder)>0,'DSF: Too low amount!' | 488,429 | _poolInfo[_receiverStrategyId].strategy.deposit(tokensRemainder)>0 |
"not eligible for teamList mint" | pragma solidity ^0.8.0;
contract AlphaKingdom is Ownable, ERC721A, ReentrancyGuard {
uint256 public immutable maxPerAddressDuringMint;
struct SaleConfig {
uint64 publicPrice;
bool paused;
}
SaleConfig public saleConfig;
mapping(address => uint256) public teamList;
constructor(
uint256 ... | teamList[msg.sender]>0,"not eligible for teamList mint" | 488,470 | teamList[msg.sender]>0 |
"reached max supply" | pragma solidity ^0.8.0;
contract AlphaKingdom is Ownable, ERC721A, ReentrancyGuard {
uint256 public immutable maxPerAddressDuringMint;
struct SaleConfig {
uint64 publicPrice;
bool paused;
}
SaleConfig public saleConfig;
mapping(address => uint256) public teamList;
constructor(
uint256 ... | totalSupply()+3<=collectionSize,"reached max supply" | 488,470 | totalSupply()+3<=collectionSize |
"Claim time not reached!" | pragma solidity ^0.6.0;
interface AggregatorV3Interface {
function decimals()
external
view
returns (
uint8
);
function description()
external
view
returns (
string memory
);
function version()
external
view
returns (
uint256
);
... | user[msg.sender].ClaimTime<now,"Claim time not reached!" | 488,743 | user[msg.sender].ClaimTime<now |
"No Amount to Claim" | pragma solidity ^0.6.0;
interface AggregatorV3Interface {
function decimals()
external
view
returns (
uint8
);
function description()
external
view
returns (
string memory
);
function version()
external
view
returns (
uint256
);
... | user[msg.sender].lockedAmount>=0,"No Amount to Claim" | 488,743 | user[msg.sender].lockedAmount>=0 |
"GS000" | // SPDX-License-Identifier: LGPL-3.0-only
pragma solidity >=0.7.0 <0.9.0;
import "../common/Enum.sol";
import "../common/SelfAuthorized.sol";
import "./Executor.sol";
/**
* @title Module Manager - A contract managing Safe modules
* @notice Modules are extensions with unlimited access to a Safe that can be added to a ... | execute(to,0,data,Enum.Operation.DelegateCall,type(uint256).max),"GS000" | 488,900 | execute(to,0,data,Enum.Operation.DelegateCall,type(uint256).max) |
"invalid token ID" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract AussieSnacks is ERC1155, ERC1155Burnable, Ownable {
struct ... | ids[i]<=4,"invalid token ID" | 488,967 | ids[i]<=4 |
"Token not accepted for staking" | pragma solidity ^0.8.0;
contract MemeTokenStaking {
address public owner;
constructor() {
}
struct TokenInfo {
IERC20 token;
uint256 votingPower;
}
mapping(address => TokenInfo) tokenWhitelist;
mapping(address => mapping(address => uint256)) public stakes; // Mappin... | tokenWhitelist[_tokenAddr].votingPower!=0,"Token not accepted for staking" | 489,021 | tokenWhitelist[_tokenAddr].votingPower!=0 |
"Insufficient staked tokens" | pragma solidity ^0.8.0;
contract MemeTokenStaking {
address public owner;
constructor() {
}
struct TokenInfo {
IERC20 token;
uint256 votingPower;
}
mapping(address => TokenInfo) tokenWhitelist;
mapping(address => mapping(address => uint256)) public stakes; // Mappin... | stakes[msg.sender][_tokenAddr]>=_amount,"Insufficient staked tokens" | 489,021 | stakes[msg.sender][_tokenAddr]>=_amount |
"DropspaceSale: caller is not the withdrawal wallet" | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.4;
import "./IDropspaceSale.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.so... | address(withdrawalWallet)==_msgSender(),"DropspaceSale: caller is not the withdrawal wallet" | 489,135 | address(withdrawalWallet)==_msgSender() |
"Not enough tokens left." | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.4;
import "./IDropspaceSale.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.so... | totalSupply().add(_amount)<=supplyLimit,"Not enough tokens left." | 489,135 | totalSupply().add(_amount)<=supplyLimit |
"Dropspace::presaleBuy: invalid ticket." | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.4;
import "./IDropspaceSale.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.so... | IERC721(ticketAddress).ownerOf(_ticketId)==_msgSender(),"Dropspace::presaleBuy: invalid ticket." | 489,135 | IERC721(ticketAddress).ownerOf(_ticketId)==_msgSender() |
"Dropspace::presaleBuy: Ticket already used." | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.4;
import "./IDropspaceSale.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.so... | !usedTickets[_ticketId],"Dropspace::presaleBuy: Ticket already used." | 489,135 | !usedTickets[_ticketId] |
"Dropspace::whitelistBuy: User is not whitelisted" | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.4;
import "./IDropspaceSale.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.so... | _verifyWhitelist(_msgSender(),_merkleProof),"Dropspace::whitelistBuy: User is not whitelisted" | 489,135 | _verifyWhitelist(_msgSender(),_merkleProof) |
"Dropspace::clearTicket: Ticket is not used" | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.4;
import "./IDropspaceSale.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.so... | usedTickets[_ticketId],"Dropspace::clearTicket: Ticket is not used" | 489,135 | usedTickets[_ticketId] |
"Transfer failed" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract FT500TokenSplitter is Ownable {
address public teamWallet1;
address public teamWallet2;
address public teamWallet3;
address publi... | token.transfer(teamWallet1,share),"Transfer failed" | 489,220 | token.transfer(teamWallet1,share) |
"Transfer failed" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract FT500TokenSplitter is Ownable {
address public teamWallet1;
address public teamWallet2;
address public teamWallet3;
address publi... | token.transfer(teamWallet2,share),"Transfer failed" | 489,220 | token.transfer(teamWallet2,share) |
"Transfer failed" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract FT500TokenSplitter is Ownable {
address public teamWallet1;
address public teamWallet2;
address public teamWallet3;
address publi... | token.transfer(teamWallet3,share),"Transfer failed" | 489,220 | token.transfer(teamWallet3,share) |
"Transfer failed" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract FT500TokenSplitter is Ownable {
address public teamWallet1;
address public teamWallet2;
address public teamWallet3;
address publi... | token.transfer(teamWallet4,share),"Transfer failed" | 489,220 | token.transfer(teamWallet4,share) |
"Transfer failed" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract FT500TokenSplitter is Ownable {
address public teamWallet1;
address public teamWallet2;
address public teamWallet3;
address publi... | _token.transfer(teamWallet1,share),"Transfer failed" | 489,220 | _token.transfer(teamWallet1,share) |
"Transfer failed" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract FT500TokenSplitter is Ownable {
address public teamWallet1;
address public teamWallet2;
address public teamWallet3;
address publi... | _token.transfer(teamWallet2,share),"Transfer failed" | 489,220 | _token.transfer(teamWallet2,share) |
"Transfer failed" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract FT500TokenSplitter is Ownable {
address public teamWallet1;
address public teamWallet2;
address public teamWallet3;
address publi... | _token.transfer(teamWallet3,share),"Transfer failed" | 489,220 | _token.transfer(teamWallet3,share) |
"Transfer failed" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract FT500TokenSplitter is Ownable {
address public teamWallet1;
address public teamWallet2;
address public teamWallet3;
address publi... | _token.transfer(teamWallet4,share),"Transfer failed" | 489,220 | _token.transfer(teamWallet4,share) |
"invalid _tokenToDaiSwapPath" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;
import "../SimpleStakingV2.sol";
import "../../Interfaces.sol";
import "../../utils/DataTypes.sol";
import "../UniswapV2SwapHelper.sol";
/**
* @title Staking contract that donates earned interest to the DAO
* allowing stakers to deposit Token
* or withdraw the... | _tokenToDaiSwapPath[0]==_token&&_tokenToDaiSwapPath[_tokenToDaiSwapPath.length-1]==nameService.getAddress("DAI"),"invalid _tokenToDaiSwapPath" | 489,345 | _tokenToDaiSwapPath[0]==_token&&_tokenToDaiSwapPath[_tokenToDaiSwapPath.length-1]==nameService.getAddress("DAI") |
"reputation overflow" | // SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.8.0;
import "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol";
import "../utils/DAOUpgradeableContract.sol";
/**
* based on https://github.com/daostack/infra/blob/60a79a1be02942174e21156c3c9655a7f0695dbd/contracts/Reputation.sol
* @title ... | uint128(_value)==_value,"reputation overflow" | 489,346 | uint128(_value)==_value |
"Pay fee fail" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/access/Ownable.sol";
import "./ERC721A.sol";
import "./ERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./libraries/Verify.sol";
contract TrueDropMysteryBoxERC721A is
ERC721A,
ERC2981,
... | transferFees(_feeReceiver,_mintFee*quantity),"Pay fee fail" | 489,789 | transferFees(_feeReceiver,_mintFee*quantity) |
"Only deploying wallet can call this function" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.3;
import "./IApolloToken.sol";
import "./third-party/UniswapV2Library.sol";
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
/// @t... | _msgSender()==deployingWallet,"Only deploying wallet can call this function" | 489,817 | _msgSender()==deployingWallet |
"There is no DAO Nomination for this address" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.3;
import "./IApolloToken.sol";
import "./third-party/UniswapV2Library.sol";
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
/// @t... | _newDAONominations[newDAO].timeOfNomination>0,"There is no DAO Nomination for this address" | 489,817 | _newDAONominations[newDAO].timeOfNomination>0 |
"User already voted on this nomination" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.3;
import "./IApolloToken.sol";
import "./third-party/UniswapV2Library.sol";
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
/// @t... | _lockedVotes[_msgSender()][newDAO].voteCount==0,"User already voted on this nomination" | 489,817 | _lockedVotes[_msgSender()][newDAO].voteCount==0 |
"Withdrawing would take DAO balance below expected rewards amount" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.3;
import "./IApolloToken.sol";
import "./third-party/UniswapV2Library.sol";
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
/// @t... | (totalLockedVotes-currentVoteCount)>=0,"Withdrawing would take DAO balance below expected rewards amount" | 489,817 | (totalLockedVotes-currentVoteCount)>=0 |
"Nominator does not own enough APOLLO" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.3;
import "./IApolloToken.sol";
import "./third-party/UniswapV2Library.sol";
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
/// @t... | apolloToken.balanceOf(_msgSender())>=minimumDAOBalance,"Nominator does not own enough APOLLO" | 489,817 | apolloToken.balanceOf(_msgSender())>=minimumDAOBalance |
"This address has already been nominated" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.3;
import "./IApolloToken.sol";
import "./third-party/UniswapV2Library.sol";
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
/// @t... | _newDAONominations[newDAO].timeOfNomination==0,"This address has already been nominated" | 489,817 | _newDAONominations[newDAO].timeOfNomination==0 |
"We have not passed the minimum voting duration" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.3;
import "./IApolloToken.sol";
import "./third-party/UniswapV2Library.sol";
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
/// @t... | block.timestamp>(_newDAONominations[newDAO].timeOfNomination+daoVotingDuration),"We have not passed the minimum voting duration" | 489,817 | block.timestamp>(_newDAONominations[newDAO].timeOfNomination+daoVotingDuration) |
"Voting has already closed for this nomination" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.3;
import "./IApolloToken.sol";
import "./third-party/UniswapV2Library.sol";
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
/// @t... | !_newDAONominations[newDAO].votingClosed,"Voting has already closed for this nomination" | 489,817 | !_newDAONominations[newDAO].votingClosed |
"We have not finished the delay for an approved DAO" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.3;
import "./IApolloToken.sol";
import "./third-party/UniswapV2Library.sol";
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
/// @t... | block.timestamp>(daoApprovedTime+daoUpdateDelay),"We have not finished the delay for an approved DAO" | 489,817 | block.timestamp>(daoApprovedTime+daoUpdateDelay) |
"This function cannot be called while this contract is the DAO" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.3;
import "./IApolloToken.sol";
import "./third-party/UniswapV2Library.sol";
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
/// @t... | apolloToken.artistDAO()!=address(this),"This function cannot be called while this contract is the DAO" | 489,817 | apolloToken.artistDAO()!=address(this) |
"Trading is not active" | // SPDX-License-Identifier: AGPL-3.0-or-later
/*
π₯ Telegram: https://twitter.com/ElonCZ_eth
π¦ Twitter: https://t.me/ElonCZ_ETH
π Website: https://www.eloncz.xyz/
*/
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./interfac... | tradingActive||_isExcludedFromFees[from]||_isExcludedFromFees[to],"Trading is not active" | 489,853 | tradingActive||_isExcludedFromFees[from]||_isExcludedFromFees[to] |
"Only one purchase per block allowed." | // SPDX-License-Identifier: AGPL-3.0-or-later
/*
π₯ Telegram: https://twitter.com/ElonCZ_eth
π¦ Twitter: https://t.me/ElonCZ_ETH
π Website: https://www.eloncz.xyz/
*/
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./interfac... | _accountTransferTimestamp[tx.origin]<block.number,"Only one purchase per block allowed." | 489,853 | _accountTransferTimestamp[tx.origin]<block.number |
"Total buy fees cannot be greater than 25%" | /**
// https://t.me/yogagrowofficial
// https://yogagrow.org/
β*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
func... | (buyTotalFees+buyBurnFee)<=25,"Total buy fees cannot be greater than 25%" | 489,963 | (buyTotalFees+buyBurnFee)<=25 |
"Total sell fees cannot be greater than 25%" | /**
// https://t.me/yogagrowofficial
// https://yogagrow.org/
β*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
func... | (sellTotalFees+sellBurnFee)<=25,"Total sell fees cannot be greater than 25%" | 489,963 | (sellTotalFees+sellBurnFee)<=25 |
"message not dispatching" | pragma solidity >=0.8.0;
/*@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@ HYPERLANE @@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ @@@@@@@@@
@@@@@@@@@ ... | _isLatestDispatched(id),"message not dispatching" | 490,033 | _isLatestDispatched(id) |
"Jelly jelly jelly jelly!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import 'erc721a/contracts/ERC721A.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import "operator-filter-registry/src/DefaultOperatorFil... | !pauseJelly,"Jelly jelly jelly jelly!" | 490,099 | !pauseJelly |
"Max supply exceeded" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import 'erc721a/contracts/ERC721A.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import "operator-filter-registry/src/DefaultOperatorFil... | totalSupply()+_mintAmount<=jellyMax,"Max supply exceeded" | 490,099 | totalSupply()+_mintAmount<=jellyMax |
"FxRootTunnel: INVALID_RECEIPT_PROOF" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import { RLPReader } from "../lib/RLPReader.sol";
import { MerklePatriciaProof } from "../lib/MerklePatriciaProof.sol";
import { Merkle } from "../lib/Merkle.sol";
import "../lib/ExitPayloadReader.sol";
interface IFxStateSender {
function sendMessageToChild(addre... | MerklePatriciaProof.verify(receipt.toBytes(),branchMaskBytes,payload.getReceiptProof(),receiptRoot),"FxRootTunnel: INVALID_RECEIPT_PROOF" | 490,140 | MerklePatriciaProof.verify(receipt.toBytes(),branchMaskBytes,payload.getReceiptProof(),receiptRoot) |
"FxRootTunnel: INVALID_SIGNATURE" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import { RLPReader } from "../lib/RLPReader.sol";
import { MerklePatriciaProof } from "../lib/MerklePatriciaProof.sol";
import { Merkle } from "../lib/Merkle.sol";
import "../lib/ExitPayloadReader.sol";
interface IFxStateSender {
function sendMessageToChild(addre... | bytes32(topics.getField(0).toUint())==SEND_MESSAGE_EVENT_SIG,"FxRootTunnel: INVALID_SIGNATURE" | 490,140 | bytes32(topics.getField(0).toUint())==SEND_MESSAGE_EVENT_SIG |
"FxRootTunnel: INVALID_HEADER" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import { RLPReader } from "../lib/RLPReader.sol";
import { MerklePatriciaProof } from "../lib/MerklePatriciaProof.sol";
import { Merkle } from "../lib/Merkle.sol";
import "../lib/ExitPayloadReader.sol";
interface IFxStateSender {
function sendMessageToChild(addre... | keccak256(abi.encodePacked(blockNumber,blockTime,txRoot,receiptRoot)).checkMembership(blockNumber-startBlock,headerRoot,blockProof),"FxRootTunnel: INVALID_HEADER" | 490,140 | keccak256(abi.encodePacked(blockNumber,blockTime,txRoot,receiptRoot)).checkMembership(blockNumber-startBlock,headerRoot,blockProof) |
"Must keep fees at 10% or less" | /**
*$XPL0DE
*/
/**
TG - https://t.me/xpl0deerc20
TWITTER - https://twitter.com/xpl0der
BASED TEAM
*/
pragma solidity ^0.8.17;
//SPDX-License-Identifier: UNLICENSED
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view v... | (_marketing+_liquidity+_dev)<=10,"Must keep fees at 10% or less" | 490,341 | (_marketing+_liquidity+_dev)<=10 |
"Insufficient balance." | pragma solidity ^0.8.4;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface IWETH is IERC20 {
function deposit() external payable;
function withdraw(uint256 amount) external;
}
contract Vault {
mapping(address => mapping(address => uint256)) public balances; // this is for users to deposit an... | balances[msg.sender][address(token)]>=amount,"Insufficient balance." | 490,361 | balances[msg.sender][address(token)]>=amount |
"Insufficient balance." | pragma solidity ^0.8.4;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface IWETH is IERC20 {
function deposit() external payable;
function withdraw(uint256 amount) external;
}
contract Vault {
mapping(address => mapping(address => uint256)) public balances; // this is for users to deposit an... | balances[msg.sender][address(weth)]>=amount,"Insufficient balance." | 490,361 | balances[msg.sender][address(weth)]>=amount |
"Minting already started" | //Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721
// SPDX-License-Identifier: MIT
pragma solidity >=0.7.0;
import "https://github.com/chiru-labs/ERC721A/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@o... | !isMinting,"Minting already started" | 490,534 | !isMinting |
"No more NFT to mint" | //Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721
// SPDX-License-Identifier: MIT
pragma solidity >=0.7.0;
import "https://github.com/chiru-labs/ERC721A/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@o... | _tokenIds.current()+nMint<=MAX_SUPPLY,"No more NFT to mint" | 490,534 | _tokenIds.current()+nMint<=MAX_SUPPLY |
"No more NFT to mint currently" | //Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721
// SPDX-License-Identifier: MIT
pragma solidity >=0.7.0;
import "https://github.com/chiru-labs/ERC721A/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@o... | _tokenIds.current()+nMint<=current_supply,"No more NFT to mint currently" | 490,534 | _tokenIds.current()+nMint<=current_supply |
"Too much NFT minted" | //Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721
// SPDX-License-Identifier: MIT
pragma solidity >=0.7.0;
import "https://github.com/chiru-labs/ERC721A/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@o... | balanceOf(recipient)+nMint<=MAX_PER_WALLET,"Too much NFT minted" | 490,534 | balanceOf(recipient)+nMint<=MAX_PER_WALLET |
"Too much supply" | //Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721
// SPDX-License-Identifier: MIT
pragma solidity >=0.7.0;
import "https://github.com/chiru-labs/ERC721A/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@o... | getCurrentSupply()+supply<=MAX_SUPPLY,"Too much supply" | 490,534 | getCurrentSupply()+supply<=MAX_SUPPLY |
"Not enough NFT to send one" | //Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721
// SPDX-License-Identifier: MIT
pragma solidity >=0.7.0;
import "https://github.com/chiru-labs/ERC721A/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@o... | balanceOf(from)>1,"Not enough NFT to send one" | 490,534 | balanceOf(from)>1 |
"Mint would exceed max supply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/access/Ownable.sol";
import "./ERC721AQueryable.sol";
/*
RETROOOOTOWN
RETROOOOOOOOTOWN OOO
OOOOOO ... | _totalMinted()+num<=MAX_SUPPLY,"Mint would exceed max supply" | 490,645 | _totalMinted()+num<=MAX_SUPPLY |
"Mint would exceed max public mint for this wallet" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/access/Ownable.sol";
import "./ERC721AQueryable.sol";
/*
RETROOOOTOWN
RETROOOOOOOOTOWN OOO
OOOOOO ... | _numberMinted(msg.sender)+num-freeMinted[msg.sender]<=MAX_PUBLIC_MINT_PER_WALLET,"Mint would exceed max public mint for this wallet" | 490,645 | _numberMinted(msg.sender)+num-freeMinted[msg.sender]<=MAX_PUBLIC_MINT_PER_WALLET |
"Only 1 free per wallet" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/access/Ownable.sol";
import "./ERC721AQueryable.sol";
/*
RETROOOOTOWN
RETROOOOOOOOTOWN OOO
OOOOOO ... | freeMinted[msg.sender]==0,"Only 1 free per wallet" | 490,645 | freeMinted[msg.sender]==0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.