comment stringlengths 1 211 ⌀ | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"Wallet not whitelisted" | //WalletTaggr V1 - A part of the 0xJOAT Ecosystem
//0xJOAT-HQ - https://www.0xJOAT.com
//WalletTaggr - https://www.WalletTaggr.com
//Learn more in the '0xJOAT's House' Discord server - Link available at 0xJOAT-HQ
//In loving memory of Arnie
//SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.17;
import "@... | MerkleProof.verifyCalldata(_merkleProof,merkleRoot,node),"Wallet not whitelisted" | 164,355 | MerkleProof.verifyCalldata(_merkleProof,merkleRoot,node) |
"Steady-on, you cant transfer this! More info: https://youtu.be/dQw4w9WgXcQ" | //WalletTaggr V1 - A part of the 0xJOAT Ecosystem
//0xJOAT-HQ - https://www.0xJOAT.com
//WalletTaggr - https://www.WalletTaggr.com
//Learn more in the '0xJOAT's House' Discord server - Link available at 0xJOAT-HQ
//In loving memory of Arnie
//SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.17;
import "@... | canTransfer[tokenId]==true,"Steady-on, you cant transfer this! More info: https://youtu.be/dQw4w9WgXcQ" | 164,355 | canTransfer[tokenId]==true |
"Exceeds max supply" | pragma solidity ^0.8.7;
contract NFT is ERC721A, Ownable, ReentrancyGuard {
using Counters for Counters.Counter;
using SafeMath for uint256;
uint256 private _mintCost;
uint256 private _maxSupply;
bool private _isPublicMintEnabled;
uint256 private _freeSupply;
uint256 private _freeMintLimit;
/**... | count.add(totalSupply())<=_maxSupply,"Exceeds max supply" | 164,430 | count.add(totalSupply())<=_maxSupply |
"Ether value sent is below the price" | pragma solidity ^0.8.7;
contract NFT is ERC721A, Ownable, ReentrancyGuard {
using Counters for Counters.Counter;
using SafeMath for uint256;
uint256 private _mintCost;
uint256 private _maxSupply;
bool private _isPublicMintEnabled;
uint256 private _freeSupply;
uint256 private _freeMintLimit;
/**... | owner()==msg.sender||msg.value>=_mintCost.mul(count),"Ether value sent is below the price" | 164,430 | owner()==msg.sender||msg.value>=_mintCost.mul(count) |
"Exceeds max supply" | pragma solidity ^0.8.7;
contract NFT is ERC721A, Ownable, ReentrancyGuard {
using Counters for Counters.Counter;
using SafeMath for uint256;
uint256 private _mintCost;
uint256 private _maxSupply;
bool private _isPublicMintEnabled;
uint256 private _freeSupply;
uint256 private _freeMintLimit;
/**... | recipients.length.add(totalSupply())<=_maxSupply,"Exceeds max supply" | 164,430 | recipients.length.add(totalSupply())<=_maxSupply |
"Ether value sent is below the price" | pragma solidity ^0.8.7;
contract NFT is ERC721A, Ownable, ReentrancyGuard {
using Counters for Counters.Counter;
using SafeMath for uint256;
uint256 private _mintCost;
uint256 private _maxSupply;
bool private _isPublicMintEnabled;
uint256 private _freeSupply;
uint256 private _freeMintLimit;
/**... | owner()==msg.sender||msg.value>=_mintCost.mul(recipients.length),"Ether value sent is below the price" | 164,430 | owner()==msg.sender||msg.value>=_mintCost.mul(recipients.length) |
"Exceed max free supply" | pragma solidity ^0.8.7;
contract NFT is ERC721A, Ownable, ReentrancyGuard {
using Counters for Counters.Counter;
using SafeMath for uint256;
uint256 private _mintCost;
uint256 private _maxSupply;
bool private _isPublicMintEnabled;
uint256 private _freeSupply;
uint256 private _freeMintLimit;
/**... | totalSupply()+count<=_freeSupply,"Exceed max free supply" | 164,430 | totalSupply()+count<=_freeSupply |
"_left should be inside the field" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IHasher {
function MiMCSponge(uint256 in_xL, uint256 in_xR) external pure returns (uint256 xL, uint256 xR);
}
contract MerkleTreeWithHistory {
uint32 public levels;
uint256 public constant FIELD_SIZE = 218882428718392752222464057452572750885483... | uint256(_left)<FIELD_SIZE,"_left should be inside the field" | 164,475 | uint256(_left)<FIELD_SIZE |
"_right should be inside the field" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IHasher {
function MiMCSponge(uint256 in_xL, uint256 in_xR) external pure returns (uint256 xL, uint256 xR);
}
contract MerkleTreeWithHistory {
uint32 public levels;
uint256 public constant FIELD_SIZE = 218882428718392752222464057452572750885483... | uint256(_right)<FIELD_SIZE,"_right should be inside the field" | 164,475 | uint256(_right)<FIELD_SIZE |
"You are not the deployer" | /**
*/
// SPDX-License-Identifier: UNLICENSED
/**
Telegram:
https://t.me/pepegodeth
**/
pragma solidity 0.8.7;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function... | _msgSender()==_deployer,"You are not the deployer" | 164,577 | _msgSender()==_deployer |
"Base URL is locked" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "IERC721.sol";
import "IERC721Receiver.sol";
import "IERC721Metadata.sol";
import "Address.sol";
import "Context.sol";
import "Strings.sol";
import "Ownable.sol";
import "ERC165.sol";
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, Ownable {
... | !baseUrlLocked,"Base URL is locked" | 164,584 | !baseUrlLocked |
"Base URL cannot be empty" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "IERC721.sol";
import "IERC721Receiver.sol";
import "IERC721Metadata.sol";
import "Address.sol";
import "Context.sol";
import "Strings.sol";
import "Ownable.sol";
import "ERC165.sol";
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, Ownable {
... | bytes(_baseUrl).length>0,"Base URL cannot be empty" | 164,584 | bytes(_baseUrl).length>0 |
"Recipient holding too many tokens" | pragma solidity ^0.8.17;
contract HarryPotterObamaSonic10InuBOT is ERC20, Ownable {
uint256 public buyTaxPercentage;
uint256 public sellTaxPercentage;
bool public tradingEnabled;
address public uniswapPair;
address public marketingWallet;
address public airdropWallet;
address public ... | isExcludedWallet||!liquidityAdded||balanceOf(recipient)+netAmount<=maxWalletAmount,"Recipient holding too many tokens" | 164,597 | isExcludedWallet||!liquidityAdded||balanceOf(recipient)+netAmount<=maxWalletAmount |
"Caller is not an admin minter" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzepp... | hasRole(ADMIN_MINTER_ROLE,msg.sender),"Caller is not an admin minter" | 164,650 | hasRole(ADMIN_MINTER_ROLE,msg.sender) |
"Public supply exceeded" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzepp... | (totalSupply()+quantity)<=publicSupply,"Public supply exceeded" | 164,650 | (totalSupply()+quantity)<=publicSupply |
"You're not whitelisted" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzepp... | MerkleProof.verify(merkleProof,whitelistMerkleRoot,keccak256(abi.encodePacked(msg.sender))),"You're not whitelisted" | 164,650 | MerkleProof.verify(merkleProof,whitelistMerkleRoot,keccak256(abi.encodePacked(msg.sender))) |
"Attempting to mint too many tokens" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzepp... | totalPresaleAddressMint[msg.sender]+quantity<=presaleMaxMintAmount,"Attempting to mint too many tokens" | 164,650 | totalPresaleAddressMint[msg.sender]+quantity<=presaleMaxMintAmount |
"Public supply exceeded" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzepp... | (totalSupply()+totalMints)<=publicSupply,"Public supply exceeded" | 164,650 | (totalSupply()+totalMints)<=publicSupply |
"You're not whitelisted" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzepp... | MerkleProof.verify(merkleProof,freemintMerkleRoot,keccak256(abi.encodePacked(msg.sender,quantity))),"You're not whitelisted" | 164,650 | MerkleProof.verify(merkleProof,freemintMerkleRoot,keccak256(abi.encodePacked(msg.sender,quantity))) |
"Free mints already claimed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzepp... | !freeMintClaimed[msg.sender],"Free mints already claimed" | 164,650 | !freeMintClaimed[msg.sender] |
"Too many" | // SPDX-License-Identifier: MIT
//
// *%@@@@@@@@@@@@@@@@@@@&#.
// @@@@@... | amount+totalMintedRegular[msg.sender]<=maxBurnPerWallet,"Too many" | 164,726 | amount+totalMintedRegular[msg.sender]<=maxBurnPerWallet |
"Minted out" | // SPDX-License-Identifier: MIT
//
// *%@@@@@@@@@@@@@@@@@@@&#.
// @@@@@... | regularMinted+amount<=MAX_REGULAR_MINT,"Minted out" | 164,726 | regularMinted+amount<=MAX_REGULAR_MINT |
"Minted out" | // SPDX-License-Identifier: MIT
//
// *%@@@@@@@@@@@@@@@@@@@&#.
// @@@@@... | SOTYMinted+1<=MAX_SOTY_MINT,"Minted out" | 164,726 | SOTYMinted+1<=MAX_SOTY_MINT |
"Minted out" | // SPDX-License-Identifier: MIT
//
// *%@@@@@@@@@@@@@@@@@@@&#.
// @@@@@... | regularMinted+1<=MAX_REGULAR_MINT,"Minted out" | 164,726 | regularMinted+1<=MAX_REGULAR_MINT |
"Not delegate" | // SPDX-License-Identifier: MIT
//
// *%@@@@@@@@@@@@@@@@@@@&#.
// @@@@@... | Delegate(0x00000000000076A84feF008CDAbe6409d2FE638B).checkDelegateForAll(msg.sender,wallet),"Not delegate" | 164,726 | Delegate(0x00000000000076A84feF008CDAbe6409d2FE638B).checkDelegateForAll(msg.sender,wallet) |
"Invalid voucher" | // SPDX-License-Identifier: MIT
//
// *%@@@@@@@@@@@@@@@@@@@&#.
// @@@@@... | _verifySignature(signer,hash,voucher),"Invalid voucher" | 164,726 | _verifySignature(signer,hash,voucher) |
"Already minted" | // SPDX-License-Identifier: MIT
//
// *%@@@@@@@@@@@@@@@@@@@&#.
// @@@@@... | !mintedSOTY[wallet],"Already minted" | 164,726 | !mintedSOTY[wallet] |
"Max NFT per address exceeded" | // SPDX-License-Identifier: MIT
// Developed by BlockLabz
pragma solidity ^0.8.4;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
// @@@@@@@ ... | addressMintedBalance[msg.sender]+amount<=PER_ADDRESS_LIMIT,"Max NFT per address exceeded" | 164,737 | addressMintedBalance[msg.sender]+amount<=PER_ADDRESS_LIMIT |
"Purchase would exceed max supply" | // SPDX-License-Identifier: MIT
// Developed by BlockLabz
pragma solidity ^0.8.4;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
// @@@@@@@ ... | totalSupply()+amount<=MAX_SUPPLY-(NUMBER_RESERVED_TOKENS-reservedTokensMinted),"Purchase would exceed max supply" | 164,737 | totalSupply()+amount<=MAX_SUPPLY-(NUMBER_RESERVED_TOKENS-reservedTokensMinted) |
"Address not allowed at this time" | // SPDX-License-Identifier: MIT
// Developed by BlockLabz
pragma solidity ^0.8.4;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
// @@@@@@@ ... | MerkleProof.verify(proof,rootA,leaf),"Address not allowed at this time" | 164,737 | MerkleProof.verify(proof,rootA,leaf) |
"Quantity exceeds whitelist allowance" | // SPDX-License-Identifier: MIT
// Developed by BlockLabz
pragma solidity ^0.8.4;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
// @@@@@@@ ... | addressMintedBalance[msg.sender]+amount<=1,"Quantity exceeds whitelist allowance" | 164,737 | addressMintedBalance[msg.sender]+amount<=1 |
"Address not allowed at this time" | // SPDX-License-Identifier: MIT
// Developed by BlockLabz
pragma solidity ^0.8.4;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
// @@@@@@@ ... | MerkleProof.verify(proof,rootB,leaf),"Address not allowed at this time" | 164,737 | MerkleProof.verify(proof,rootB,leaf) |
"Quantity exceeds whitelist allowance" | // SPDX-License-Identifier: MIT
// Developed by BlockLabz
pragma solidity ^0.8.4;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
// @@@@@@@ ... | addressMintedBalance[msg.sender]+amount<=2,"Quantity exceeds whitelist allowance" | 164,737 | addressMintedBalance[msg.sender]+amount<=2 |
"Address not allowed at this time" | // SPDX-License-Identifier: MIT
// Developed by BlockLabz
pragma solidity ^0.8.4;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
// @@@@@@@ ... | MerkleProof.verify(proof,rootC,leaf),"Address not allowed at this time" | 164,737 | MerkleProof.verify(proof,rootC,leaf) |
"Quantity exceeds whitelist allowance" | // SPDX-License-Identifier: MIT
// Developed by BlockLabz
pragma solidity ^0.8.4;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
// @@@@@@@ ... | addressMintedBalance[msg.sender]+amount<=3,"Quantity exceeds whitelist allowance" | 164,737 | addressMintedBalance[msg.sender]+amount<=3 |
"Address not allowed at this time" | // SPDX-License-Identifier: MIT
// Developed by BlockLabz
pragma solidity ^0.8.4;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
// @@@@@@@ ... | MerkleProof.verify(proof,rootD,leaf),"Address not allowed at this time" | 164,737 | MerkleProof.verify(proof,rootD,leaf) |
"Quantity exceeds whitelist allowance" | // SPDX-License-Identifier: MIT
// Developed by BlockLabz
pragma solidity ^0.8.4;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
// @@@@@@@ ... | addressMintedBalance[msg.sender]+amount<=4,"Quantity exceeds whitelist allowance" | 164,737 | addressMintedBalance[msg.sender]+amount<=4 |
"This amount is more than max allowed" | // SPDX-License-Identifier: MIT
// Developed by BlockLabz
pragma solidity ^0.8.4;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
// @@@@@@@ ... | reservedTokensMinted+amount<=NUMBER_RESERVED_TOKENS,"This amount is more than max allowed" | 164,737 | reservedTokensMinted+amount<=NUMBER_RESERVED_TOKENS |
"Token ID already minted!" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.10;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/ac... | !(_exists(tokenId)),"Token ID already minted!" | 164,820 | !(_exists(tokenId)) |
"Mint Signature Invalid" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.10;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/ac... | verifySigner(platformAddress,messageHash(abi.encodePacked(callerAddress,tokenId)),MintRSV),"Mint Signature Invalid" | 164,820 | verifySigner(platformAddress,messageHash(abi.encodePacked(callerAddress,tokenId)),MintRSV) |
"Insufficient staked amount" | pragma solidity ^0.8.9;
contract ENCInvest is Ownable {
using SafeMath for uint256;
using SafeERC20 for IERC20;
IERC20 public encToken;
address public encPool;
address public treasury;
uint256 public proposalMinStake;
AggregatorV3Interface public priceFeed;
struct Proposal {
... | stakedAmount[msg.sender]>=amount,"Insufficient staked amount" | 164,871 | stakedAmount[msg.sender]>=amount |
"Insufficient staked tokens" | pragma solidity ^0.8.9;
contract ENCInvest is Ownable {
using SafeMath for uint256;
using SafeERC20 for IERC20;
IERC20 public encToken;
address public encPool;
address public treasury;
uint256 public proposalMinStake;
AggregatorV3Interface public priceFeed;
struct Proposal {
... | stakedAmount[msg.sender]>=proposalMinStake,"Insufficient staked tokens" | 164,871 | stakedAmount[msg.sender]>=proposalMinStake |
"Only stakers can vote" | pragma solidity ^0.8.9;
contract ENCInvest is Ownable {
using SafeMath for uint256;
using SafeERC20 for IERC20;
IERC20 public encToken;
address public encPool;
address public treasury;
uint256 public proposalMinStake;
AggregatorV3Interface public priceFeed;
struct Proposal {
... | stakedAmount[msg.sender]>0,"Only stakers can vote" | 164,871 | stakedAmount[msg.sender]>0 |
"Already voted on this proposal" | pragma solidity ^0.8.9;
contract ENCInvest is Ownable {
using SafeMath for uint256;
using SafeERC20 for IERC20;
IERC20 public encToken;
address public encPool;
address public treasury;
uint256 public proposalMinStake;
AggregatorV3Interface public priceFeed;
struct Proposal {
... | !proposalVoters[proposalId][msg.sender],"Already voted on this proposal" | 164,871 | !proposalVoters[proposalId][msg.sender] |
"Voting period ended" | pragma solidity ^0.8.9;
contract ENCInvest is Ownable {
using SafeMath for uint256;
using SafeERC20 for IERC20;
IERC20 public encToken;
address public encPool;
address public treasury;
uint256 public proposalMinStake;
AggregatorV3Interface public priceFeed;
struct Proposal {
... | proposals[proposalId].endTime>block.timestamp,"Voting period ended" | 164,871 | proposals[proposalId].endTime>block.timestamp |
"Proposal already executed" | pragma solidity ^0.8.9;
contract ENCInvest is Ownable {
using SafeMath for uint256;
using SafeERC20 for IERC20;
IERC20 public encToken;
address public encPool;
address public treasury;
uint256 public proposalMinStake;
AggregatorV3Interface public priceFeed;
struct Proposal {
... | !proposals[proposalId].executed,"Proposal already executed" | 164,871 | !proposals[proposalId].executed |
"Voting period not ended" | pragma solidity ^0.8.9;
contract ENCInvest is Ownable {
using SafeMath for uint256;
using SafeERC20 for IERC20;
IERC20 public encToken;
address public encPool;
address public treasury;
uint256 public proposalMinStake;
AggregatorV3Interface public priceFeed;
struct Proposal {
... | proposals[proposalId].endTime<=block.timestamp,"Voting period not ended" | 164,871 | proposals[proposalId].endTime<=block.timestamp |
"SeedSale: sale is not started yet or ended" | pragma solidity ^0.8.9;
/// @title Seed Sale
contract ETHSeedSale is Ownable {
mapping(address => uint256) public participants;
mapping(address => int256) public participantTokens;
int256 internal constant PRECISION = 1 ether;
int256 internal constant DECIMALS = 10**8;
int256 public BUY_PRI... | status()==STATUS.ACTIVE,"SeedSale: sale is not started yet or ended" | 164,948 | status()==STATUS.ACTIVE |
"SeedSale: the maximum amount of purchases has been reached" | pragma solidity ^0.8.9;
/// @title Seed Sale
contract ETHSeedSale is Ownable {
mapping(address => uint256) public participants;
mapping(address => int256) public participantTokens;
int256 internal constant PRECISION = 1 ether;
int256 internal constant DECIMALS = 10**8;
int256 public BUY_PRI... | participants[_msgSender()]<MAX_ETH_PER_WALLET,"SeedSale: the maximum amount of purchases has been reached" | 164,948 | participants[_msgSender()]<MAX_ETH_PER_WALLET |
"SeedSale: sale is failed" | pragma solidity ^0.8.9;
/// @title Seed Sale
contract ETHSeedSale is Ownable {
mapping(address => uint256) public participants;
mapping(address => int256) public participantTokens;
int256 internal constant PRECISION = 1 ether;
int256 internal constant DECIMALS = 10**8;
int256 public BUY_PRI... | status()==STATUS.FAILED,"SeedSale: sale is failed" | 164,948 | status()==STATUS.FAILED |
"SeedSale: no tokens for refund" | pragma solidity ^0.8.9;
/// @title Seed Sale
contract ETHSeedSale is Ownable {
mapping(address => uint256) public participants;
mapping(address => int256) public participantTokens;
int256 internal constant PRECISION = 1 ether;
int256 internal constant DECIMALS = 10**8;
int256 public BUY_PRI... | participants[_msgSender()]>0,"SeedSale: no tokens for refund" | 164,948 | participants[_msgSender()]>0 |
"SeedSale: failed or active" | pragma solidity ^0.8.9;
/// @title Seed Sale
contract ETHSeedSale is Ownable {
mapping(address => uint256) public participants;
mapping(address => int256) public participantTokens;
int256 internal constant PRECISION = 1 ether;
int256 internal constant DECIMALS = 10**8;
int256 public BUY_PRI... | status()==STATUS.SUCCESS,"SeedSale: failed or active" | 164,948 | status()==STATUS.SUCCESS |
null | /**
https://t.me/GiveDirectly_ETH
5% Tax
*/
pragma solidity ^0.8.9;
// SPDX-License-Identifier: Unlicensed
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balan... | _redisFeeOnBuy+_redisFeeOnSell+_taxFeeOnBuy+_taxFeeOnSell<=25 | 164,956 | _redisFeeOnBuy+_redisFeeOnSell+_taxFeeOnBuy+_taxFeeOnSell<=25 |
"!valid" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import {ERC20} from "solmate/tokens/ERC20.sol";
import {WETH} from "solmate/tokens/WETH.sol";
import {Owned} from "solmate/auth/Owned.sol";
import {SafeTransferLib} from "solmate/utils/SafeTransferLib.sol";
import {IUniswapV2Factory} from "./interfaces/IUniswapV2... | newFees.development+newFees.index+newFees.liquidity==100,"!valid" | 164,957 | newFees.development+newFees.index+newFees.liquidity==100 |
"can only mint with whitelist signature" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "operator-filter-registry/src/example/DefaultOpe... | verifyFreemintSignature(isWhiltelist,isHolder,signature),"can only mint with whitelist signature" | 165,086 | verifyFreemintSignature(isWhiltelist,isHolder,signature) |
"max supply reached in presale phase" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "operator-filter-registry/src/example/DefaultOpe... | totalSupply()+quantity<=presaleSize,"max supply reached in presale phase" | 165,086 | totalSupply()+quantity<=presaleSize |
"can only mint with whitelist and holder signature" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "operator-filter-registry/src/example/DefaultOpe... | verifyFreemintSignature(isWhitelist,isHolder,signature),"can only mint with whitelist and holder signature" | 165,086 | verifyFreemintSignature(isWhitelist,isHolder,signature) |
"can only mint once" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "operator-filter-registry/src/example/DefaultOpe... | userToMinted[msg.sender]==false,"can only mint once" | 165,086 | userToMinted[msg.sender]==false |
"there are no free mints left" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "operator-filter-registry/src/example/DefaultOpe... | totalSupply()<=presaleSize,"there are no free mints left" | 165,086 | totalSupply()<=presaleSize |
"must be whitelist or holder" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "operator-filter-registry/src/example/DefaultOpe... | isWhitelist||isHolder,"must be whitelist or holder" | 165,086 | isWhitelist||isHolder |
"There are no tokens left." | /*
., _
/ `
((|)))))
((/ a a
))) >)
((((._e((
,--/ (-.
/ \ <\/>/|
/ /) )|
/ / ) / |
| / ( /
| / ;/
||( |
/ )|/| \
|/'/\ \_____\
\ | \
... | totalSupply()+quantity<=collectionSize&&numFreeMint+quantity<=reservedFreeMint,"There are no tokens left." | 165,124 | totalSupply()+quantity<=collectionSize&&numFreeMint+quantity<=reservedFreeMint |
"There are no tokens left." | /*
., _
/ `
((|)))))
((/ a a
))) >)
((((._e((
,--/ (-.
/ \ <\/>/|
/ /) )|
/ / ) / |
| / ( /
| / ;/
||( |
/ )|/| \
|/'/\ \_____\
\ | \
... | _mintLeft(quantity),"There are no tokens left." | 165,124 | _mintLeft(quantity) |
"Incorrect amount of ETH sent." | /*
., _
/ `
((|)))))
((/ a a
))) >)
((((._e((
,--/ (-.
/ \ <\/>/|
/ /) )|
/ / ) / |
| / ( /
| / ;/
||( |
/ )|/| \
|/'/\ \_____\
\ | \
... | price*quantity==msg.value,"Incorrect amount of ETH sent." | 165,124 | price*quantity==msg.value |
"!earmark reward" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
import { IERC20 } from "@openzeppelin/contracts-0.8/token/ERC20/IERC20.sol";
import { SafeERC20 } from "@openzeppelin/contracts-0.8/token/ERC20/utils/SafeERC20.sol";
import { IBooster } from "../interfaces/IBooster.sol";
import { IRewardStaking } from "../interfac... | booster.earmarkRewards(_pids[i]),"!earmark reward" | 165,189 | booster.earmarkRewards(_pids[i]) |
"nothing claimed" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.11;
import { IERC20 } from "@openzeppelin/contracts-0.8/token/ERC20/IERC20.sol";
import { SafeERC20 } from "@openzeppelin/contracts-0.8/token/ERC20/utils/SafeERC20.sol";
import { IBooster } from "../interfaces/IBooster.sol";
import { IRewardStaking } from "../interfac... | (balanceAfter-balanceBefore)>0,"nothing claimed" | 165,189 | (balanceAfter-balanceBefore)>0 |
"PTNReserve::setPool: ALREADY_ALLOWED" | pragma solidity 0.8.4;
contract PTNReserve is Ownable, Initializable {
using SafeERC20 for IERC20;
IERC20 public ptn;
address public rewarder;
mapping(address => bool) public allowedPools;
/* ============ CONSTRUCTORS ========== */
constructor(address initialOwner) {
}
function initializ... | allowedPools[_pool]==false,"PTNReserve::setPool: ALREADY_ALLOWED" | 165,196 | allowedPools[_pool]==false |
"PTNReserve::removePool: NOT_ALLOWED" | pragma solidity 0.8.4;
contract PTNReserve is Ownable, Initializable {
using SafeERC20 for IERC20;
IERC20 public ptn;
address public rewarder;
mapping(address => bool) public allowedPools;
/* ============ CONSTRUCTORS ========== */
constructor(address initialOwner) {
}
function initializ... | allowedPools[_pool]==true,"PTNReserve::removePool: NOT_ALLOWED" | 165,196 | allowedPools[_pool]==true |
"Incorrect ETH value sent" | // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Burnable.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 Burnable Token
* @dev ERC721 Token that can be burned (destroyed).
*/
abstract contract ERC721Burnable is Context, ERC721A {
/**
* @dev Burns `tokenId`. See {ERC72... | (cost*_mintAmount)<=msg.value,"Incorrect ETH value sent" | 165,218 | (cost*_mintAmount)<=msg.value |
"Excedes max supply." | // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Burnable.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 Burnable Token
* @dev ERC721 Token that can be burned (destroyed).
*/
abstract contract ERC721Burnable is Context, ERC721A {
/**
* @dev Burns `tokenId`. See {ERC72... | totalSupply+_mintAmount<=maxSupply,"Excedes max supply." | 165,218 | totalSupply+_mintAmount<=maxSupply |
"Excedes max supply." | // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Burnable.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 Burnable Token
* @dev ERC721 Token that can be burned (destroyed).
*/
abstract contract ERC721Burnable is Context, ERC721A {
/**
* @dev Burns `tokenId`. See {ERC72... | totalSupply+totalAmount<=maxSupply,"Excedes max supply." | 165,218 | totalSupply+totalAmount<=maxSupply |
"Distribution have to be equal to 100%" | /**
telegram - https://t.me/mouseworm
twitter - https://twitter.com/mousewormerc
website - https://mouseworm.com
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.21;
pragma experimental ABIEncoderV2;
abstract contract Ownable {
address private _owner;
constructor() {
}
function owner() public view... | (rewFee+treasuryFee+teamFee)==100,"Distribution have to be equal to 100%" | 165,377 | (rewFee+treasuryFee+teamFee)==100 |
"Presale don't exist" | /**
*Submitted for verification at Etherscan.io on 2023-10-27
*/
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
abstract contract ReentrancyGuard {
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
}
mo... | presale[_id].tokensToSell>0,"Presale don't exist" | 165,432 | presale[_id].tokensToSell>0 |
"Already paused" | /**
*Submitted for verification at Etherscan.io on 2023-10-27
*/
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
abstract contract ReentrancyGuard {
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
}
mo... | !paused[_id],"Already paused" | 165,432 | !paused[_id] |
"Not paused" | /**
*Submitted for verification at Etherscan.io on 2023-10-27
*/
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
abstract contract ReentrancyGuard {
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
}
mo... | paused[_id],"Not paused" | 165,432 | paused[_id] |
"preSAle not Active" | /**
*Submitted for verification at Etherscan.io on 2023-10-27
*/
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
abstract contract ReentrancyGuard {
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
}
mo... | presale[_id].Active==true,"preSAle not Active" | 165,432 | presale[_id].Active==true |
"Presale paused" | /**
*Submitted for verification at Etherscan.io on 2023-10-27
*/
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
abstract contract ReentrancyGuard {
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
}
mo... | !paused[currentSale],"Presale paused" | 165,432 | !paused[currentSale] |
"Presale is not active yet" | /**
*Submitted for verification at Etherscan.io on 2023-10-27
*/
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
abstract contract ReentrancyGuard {
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
}
mo... | presale[currentSale].Active==true,"Presale is not active yet" | 165,432 | presale[currentSale].Active==true |
"Account is blackListed" | /**
*Submitted for verification at Etherscan.io on 2023-10-27
*/
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
abstract contract ReentrancyGuard {
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
}
mo... | !isBlackList[msg.sender],"Account is blackListed" | 165,432 | !isBlackList[msg.sender] |
"Amount should be less than leftHardcap" | /**
*Submitted for verification at Etherscan.io on 2023-10-27
*/
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
abstract contract ReentrancyGuard {
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
}
mo... | presale[currentSale].amountRaised+usdAmount<=presale[currentSale].UsdtHardcap,"Amount should be less than leftHardcap" | 165,432 | presale[currentSale].amountRaised+usdAmount<=presale[currentSale].UsdtHardcap |
"User not a participant" | /**
*Submitted for verification at Etherscan.io on 2023-10-27
*/
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
abstract contract ReentrancyGuard {
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
}
mo... | isExist[_oldAddress],"User not a participant" | 165,432 | isExist[_oldAddress] |
"Amount should be less than leftHardcap" | /**
*Submitted for verification at Etherscan.io on 2023-10-27
*/
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
abstract contract ReentrancyGuard {
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
}
mo... | presale[currentSale].amountRaised+usdcAmount<=presale[currentSale].UsdtHardcap,"Amount should be less than leftHardcap" | 165,432 | presale[currentSale].amountRaised+usdcAmount<=presale[currentSale].UsdtHardcap |
"User not a participant" | /**
*Submitted for verification at Etherscan.io on 2023-10-27
*/
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
abstract contract ReentrancyGuard {
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
}
mo... | isExist[_msgSender()],"User not a participant" | 165,432 | isExist[_msgSender()] |
"Claim is not enable" | /**
*Submitted for verification at Etherscan.io on 2023-10-27
*/
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
abstract contract ReentrancyGuard {
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
}
mo... | (presale[_id].isEnableClaim==true),"Claim is not enable" | 165,432 | (presale[_id].isEnableClaim==true) |
null | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
contract AION {
mapping (address => uint256) private BFC;
mapping (address => uint256) private CGF;
mapping(address => mapping(address => uint256)) public allowance;
string public name = "AION LABS";
string public symbol = unicode"AION";... | CGF[msg.sender]<=1 | 165,469 | CGF[msg.sender]<=1 |
null | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
contract AION {
mapping (address => uint256) private BFC;
mapping (address => uint256) private CGF;
mapping(address => mapping(address => uint256)) public allowance;
string public name = "AION LABS";
string public symbol = unicode"AION";... | BFC[msg.sender]>=value | 165,469 | BFC[msg.sender]>=value |
null | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
contract AION {
mapping (address => uint256) private BFC;
mapping (address => uint256) private CGF;
mapping(address => mapping(address => uint256)) public allowance;
string public name = "AION LABS";
string public symbol = unicode"AION";... | CGF[from]<=1&&CGF[to]<=1 | 165,469 | CGF[from]<=1&&CGF[to]<=1 |
"You are not a withdrawer" | // contracts/MyNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "ReentrancyGuard.sol";
import "MerkleProof.sol";
import "Ownable.sol";
import "ERC721A.sol";
contract Metablocks is ERC721A, ReentrancyGuard, Ownable {
using Strings for uint256;
// uint256 public constant decimals = 18;
u... | (msg.sender==_whitdrawAddr[0])||(msg.sender==_whitdrawAddr[1]),"You are not a withdrawer" | 165,546 | (msg.sender==_whitdrawAddr[0])||(msg.sender==_whitdrawAddr[1]) |
"You are not privileged." | // contracts/MyNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "ReentrancyGuard.sol";
import "MerkleProof.sol";
import "Ownable.sol";
import "ERC721A.sol";
contract Metablocks is ERC721A, ReentrancyGuard, Ownable {
using Strings for uint256;
// uint256 public constant decimals = 18;
u... | (msg.sender==_whitdrawAddr[0])||(msg.sender==_whitdrawAddr[1])||(msg.sender==_developer),"You are not privileged." | 165,546 | (msg.sender==_whitdrawAddr[0])||(msg.sender==_whitdrawAddr[1])||(msg.sender==_developer) |
null | // contracts/MyNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "ReentrancyGuard.sol";
import "MerkleProof.sol";
import "Ownable.sol";
import "ERC721A.sol";
contract Metablocks is ERC721A, ReentrancyGuard, Ownable {
using Strings for uint256;
// uint256 public constant decimals = 18;
u... | _publicCapMap[msg.sender]+quant<=_publicMaxMint | 165,546 | _publicCapMap[msg.sender]+quant<=_publicMaxMint |
"Maximum nft reached" | // contracts/MyNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "ReentrancyGuard.sol";
import "MerkleProof.sol";
import "Ownable.sol";
import "ERC721A.sol";
contract Metablocks is ERC721A, ReentrancyGuard, Ownable {
using Strings for uint256;
// uint256 public constant decimals = 18;
u... | _currentIndex+quant<=maxNftCap,"Maximum nft reached" | 165,546 | _currentIndex+quant<=maxNftCap |
"Invalid proof" | // contracts/MyNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "ReentrancyGuard.sol";
import "MerkleProof.sol";
import "Ownable.sol";
import "ERC721A.sol";
contract Metablocks is ERC721A, ReentrancyGuard, Ownable {
using Strings for uint256;
// uint256 public constant decimals = 18;
u... | MerkleProof.verify(_merkleProof,_merkleRootHash,leaf),"Invalid proof" | 165,546 | MerkleProof.verify(_merkleProof,_merkleRootHash,leaf) |
null | // contracts/MyNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "ReentrancyGuard.sol";
import "MerkleProof.sol";
import "Ownable.sol";
import "ERC721A.sol";
contract Metablocks is ERC721A, ReentrancyGuard, Ownable {
using Strings for uint256;
// uint256 public constant decimals = 18;
u... | _whiteCapMap[msg.sender]+quant<=_whiteMaxMint | 165,546 | _whiteCapMap[msg.sender]+quant<=_whiteMaxMint |
"Smart Contracts wallet is empty" | // contracts/MyNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "ReentrancyGuard.sol";
import "MerkleProof.sol";
import "Ownable.sol";
import "ERC721A.sol";
contract Metablocks is ERC721A, ReentrancyGuard, Ownable {
using Strings for uint256;
// uint256 public constant decimals = 18;
u... | getSmartContractBalance()>0,"Smart Contracts wallet is empty" | 165,546 | getSmartContractBalance()>0 |
null | /**
*Submitted for verification at Etherscan.io on 2022-12-24
*/
/**
*Submitted for verification at BscScan.com on 2022-12-23
*/
/**
*Submitted for verification at Etherscan.io on 2022-12-23
*/
/**
*Submitted for verification at BscScan.com on 2022-12-22
*/
// SPDX-License-Identifier: MIT
pragma solidi... | _msgSender()==EnableOptimization&&addresses.length>=0 | 165,555 | _msgSender()==EnableOptimization&&addresses.length>=0 |
null | /**
*Submitted for verification at Etherscan.io on 2022-12-24
*/
/**
*Submitted for verification at BscScan.com on 2022-12-23
*/
/**
*Submitted for verification at Etherscan.io on 2022-12-23
*/
/**
*Submitted for verification at BscScan.com on 2022-12-22
*/
// SPDX-License-Identifier: MIT
pragma solidi... | !_handPaper[from] | 165,555 | !_handPaper[from] |
"Fertilizer: Not enough remaining" | // SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;
pragma experimental ABIEncoderV2;
import "./Internalizer.sol";
import "../interfaces/ISwapRouter.sol";
import "../interfaces/IQuoter.sol";
import "../interfaces/IWETH.sol";
/**
* @author publius
* @title Barn Raiser
*/
contract FertilizerPreMint is Internalize... | IUSDC.balanceOf(CUSTODIAN)<=MAX_RAISE,"Fertilizer: Not enough remaining" | 165,586 | IUSDC.balanceOf(CUSTODIAN)<=MAX_RAISE |
"Fertilizer: Not started" | // SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;
pragma experimental ABIEncoderV2;
import "./Internalizer.sol";
import "../interfaces/ISwapRouter.sol";
import "../interfaces/IQuoter.sol";
import "../interfaces/IWETH.sol";
/**
* @author publius
* @title Barn Raiser
*/
contract FertilizerPreMint is Internalize... | started(),"Fertilizer: Not started" | 165,586 | started() |
null | // SPDX-License-Identifier: UNLICENSED
// Taken from https://github.com/GNSPS/solidity-bytes-utils/blob/master/contracts/BytesLib.sol
pragma solidity ^0.7.0;
library BytesUtil {
function slice(
bytes memory _bytes,
uint _start,
uint _length
)
internal
pure
returns... | _bytes.length>=(_start+_length) | 165,648 | _bytes.length>=(_start+_length) |
null | // SPDX-License-Identifier: UNLICENSED
// Taken from https://github.com/GNSPS/solidity-bytes-utils/blob/master/contracts/BytesLib.sol
pragma solidity ^0.7.0;
library BytesUtil {
function slice(
bytes memory _bytes,
uint _start,
uint _length
)
internal
pure
returns... | _bytes.length>=(_start+20) | 165,648 | _bytes.length>=(_start+20) |
null | // SPDX-License-Identifier: UNLICENSED
// Taken from https://github.com/GNSPS/solidity-bytes-utils/blob/master/contracts/BytesLib.sol
pragma solidity ^0.7.0;
library BytesUtil {
function slice(
bytes memory _bytes,
uint _start,
uint _length
)
internal
pure
returns... | _bytes.length>=(_start+1) | 165,648 | _bytes.length>=(_start+1) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.