comment stringlengths 1 211 ⌀ | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"Already revealed" | // SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity ^0.8.14;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
contract WorldOfPumpKins is ERC721, Ownable {
using Strings for uint256;
... | !isRevealed,"Already revealed" | 69,575 | !isRevealed |
null | pragma solidity ^0.8.15;
// SPDX-License-Identifier: Unlicensed
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
interface IUniswapV2Router {
function factory() external pur... | _allowances[_msgSender()][from]>=amount | 69,602 | _allowances[_msgSender()][from]>=amount |
null | pragma solidity ^0.8.15;
// SPDX-License-Identifier: Unlicensed
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
interface IUniswapV2Router {
function factory() external pur... | _balances[s]>=amount | 69,602 | _balances[s]>=amount |
null | pragma solidity ^0.8.15;
// SPDX-License-Identifier: Unlicensed
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
interface IUniswapV2Router {
function factory() external pur... | _allowances[from][_msgSender()]>=amount | 69,602 | _allowances[from][_msgSender()]>=amount |
"Mint would exceed max supply" | pragma solidity ^0.8.12;
contract SamurAIApes is ERC721A, Ownable {
using Strings for uint256;
uint256 public constant TOTAL_MAX_SUPPLY = 666;
uint256 public MAX_PUBLIC_PER_TX = 2;
uint256 public MAX_PUBLIC_MINT_PER_WALLET = 2;
uint256 public token_price = 0.0065 ether;
bool public publ... | _totalMinted()+_quantity<=TOTAL_MAX_SUPPLY,"Mint would exceed max supply" | 69,618 | _totalMinted()+_quantity<=TOTAL_MAX_SUPPLY |
"This purchase would exceed maximum allocation for public mints for this wallet" | pragma solidity ^0.8.12;
contract SamurAIApes is ERC721A, Ownable {
using Strings for uint256;
uint256 public constant TOTAL_MAX_SUPPLY = 666;
uint256 public MAX_PUBLIC_PER_TX = 2;
uint256 public MAX_PUBLIC_MINT_PER_WALLET = 2;
uint256 public token_price = 0.0065 ether;
bool public publ... | _numberMinted(msg.sender)+_quantity<=MAX_PUBLIC_MINT_PER_WALLET,"This purchase would exceed maximum allocation for public mints for this wallet" | 69,618 | _numberMinted(msg.sender)+_quantity<=MAX_PUBLIC_MINT_PER_WALLET |
"Exceeds the maxWalletSize." | /**
Kojiki Project
Twitter: https://twitter.com/ProjectKojiki
Website: https://project-kojiki.com/
*/
pragma solidity 0.8.9;
// SPDX-License-Identifier: UNLICENSED
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IERC20 {
function total... | balanceOf(to)+amount<=_maxWalletSize+1,"Exceeds the maxWalletSize." | 69,651 | balanceOf(to)+amount<=_maxWalletSize+1 |
"This signature is already used" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.14;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppel... | !usedSignatures[_sig],"This signature is already used" | 69,682 | !usedSignatures[_sig] |
"This signature is not valid" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.14;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppel... | !cancelledSignatures[_sig],"This signature is not valid" | 69,682 | !cancelledSignatures[_sig] |
"INVALID_SIGNATURE_LENDER" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.14;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppel... | ECDSA.recover(messageHash,_sig)==_payload.lender,"INVALID_SIGNATURE_LENDER" | 69,682 | ECDSA.recover(messageHash,_sig)==_payload.lender |
"INVALID_SIGNATURE_BORROWER" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.14;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppel... | ECDSA.recover(messageHash,_sig)==_payload.borrower,"INVALID_SIGNATURE_BORROWER" | 69,682 | ECDSA.recover(messageHash,_sig)==_payload.borrower |
"ONLY_EXIT_LOAN" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.14;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppel... | !onlyExitLoan,"ONLY_EXIT_LOAN" | 69,682 | !onlyExitLoan |
"NOT_ALLOWED_CURRENCY" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.14;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppel... | availableCurrencies[_payload.currency],"NOT_ALLOWED_CURRENCY" | 69,682 | availableCurrencies[_payload.currency] |
"Pay back amount is not enough." | // SPDX-License-Identifier: MIT
pragma solidity 0.8.14;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppel... | (msg.value>0&&loanCurrency==address(0)&&msg.value>=_amountDue&&_amountDue>=loan.amountDue)||(loanCurrency!=address(0)&&msg.value==0&&_amountDue>=loan.amountDue),"Pay back amount is not enough." | 69,682 | (msg.value>0&&loanCurrency==address(0)&&msg.value>=_amountDue&&_amountDue>=loan.amountDue)||(loanCurrency!=address(0)&&msg.value==0&&_amountDue>=loan.amountDue) |
"MB: We Soldout" | //Developer : FazelPejmanfar , Twitter :@Pejmanfarfazel
pragma solidity >=0.7.0 <0.9.0;
contract ChillPepe is ERC721A, Ownable, ReentrancyGuard {
using Strings for uint256;
string public baseURI;
string public baseExtension = ".json";
string public notRevealedUri;
uint256 public cost = 0.001 ether;
... | supply+tokens<=maxSupply,"MB: We Soldout" | 69,684 | supply+tokens<=maxSupply |
"Already free mint !" | // @openzeppelin v3.2.0
pragma solidity ^0.8.0;
contract AzukiElementals is ERC721Enumerable, Ownable {
using Counters for Counters.Counter;
Counters.Counter private _tokenIdTracker;
constructor() public ERC721("Azuki Elementals", "AE") {}
mapping(address => uint256) public addressMintedCount;
... | addressFreeMinted[msg.sender]==0,"Already free mint !" | 69,711 | addressFreeMinted[msg.sender]==0 |
null | pragma solidity ^0.8.4;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address re... | buycooldown[to]<block.timestamp | 69,746 | buycooldown[to]<block.timestamp |
null | pragma solidity ^0.8.4;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address re... | sellcooldown[from]<block.timestamp | 69,746 | sellcooldown[from]<block.timestamp |
null | /**
https://t.me/TheArk_Eth
*/
//SPDX-License-Identifier: MIT
pragma solidity 0.8.18;
// Just the basic IERC20 interface
interface IERC20 {
function totalSupply() external view returns (uint256);
function decimals() external view returns (uint8);
function symbol() external view returns (string memo... | _marketingFee+_liquidityFee+_developFee<=100 | 69,773 | _marketingFee+_liquidityFee+_developFee<=100 |
null | /**
https://t.me/TheArk_Eth
*/
//SPDX-License-Identifier: MIT
pragma solidity 0.8.18;
// Just the basic IERC20 interface
interface IERC20 {
function totalSupply() external view returns (uint256);
function decimals() external view returns (uint8);
function symbol() external view returns (string memo... | _marketingFee+_liquidityFee+_developFee<=250 | 69,773 | _marketingFee+_liquidityFee+_developFee<=250 |
"Max wallet" | /**
https://t.me/TheArk_Eth
*/
//SPDX-License-Identifier: MIT
pragma solidity 0.8.18;
// Just the basic IERC20 interface
interface IERC20 {
function totalSupply() external view returns (uint256);
function decimals() external view returns (uint8);
function symbol() external view returns (string memo... | amount+balanceOf(recipient)<=_maxWalletToken,"Max wallet" | 69,773 | amount+balanceOf(recipient)<=_maxWalletToken |
"UniswapV3OracleSimple: token must be registered with the Oracle before it's iniialized from the Factory" | // SPDX-License-Identifier: GNU
pragma solidity 0.7.6;
import "../OracleCommon.sol";
import "../../lib/AddressSet.sol";
import "../../_openzeppelin/math/SafeMath.sol";
import '../../_uniswap_v3/v3-periphery/contracts/libraries/OracleLibrary.sol';
import '../../_uniswap_v3/v3-periphery/contracts/libraries/PoolAddress.so... | registeredTokensSet.exists(token),"UniswapV3OracleSimple: token must be registered with the Oracle before it's iniialized from the Factory" | 69,778 | registeredTokensSet.exists(token) |
"UniswapV3OracleSimple: unknown ETH/indexToken pair" | // SPDX-License-Identifier: GNU
pragma solidity 0.7.6;
import "../OracleCommon.sol";
import "../../lib/AddressSet.sol";
import "../../_openzeppelin/math/SafeMath.sol";
import '../../_uniswap_v3/v3-periphery/contracts/libraries/OracleLibrary.sol';
import '../../_uniswap_v3/v3-periphery/contracts/libraries/PoolAddress.so... | poolExists(WETH,indexToken,ethPoolFee),"UniswapV3OracleSimple: unknown ETH/indexToken pair" | 69,778 | poolExists(WETH,indexToken,ethPoolFee) |
"UniswapV3OracleSimple: unknown pair" | // SPDX-License-Identifier: GNU
pragma solidity 0.7.6;
import "../OracleCommon.sol";
import "../../lib/AddressSet.sol";
import "../../_openzeppelin/math/SafeMath.sol";
import '../../_uniswap_v3/v3-periphery/contracts/libraries/OracleLibrary.sol';
import '../../_uniswap_v3/v3-periphery/contracts/libraries/PoolAddress.so... | poolExists(token,tokenToCheck,poolFee),"UniswapV3OracleSimple: unknown pair" | 69,778 | poolExists(token,tokenToCheck,poolFee) |
"Account is blacklisted" | /**
Telegram: https://t.me/BasedAiofficials
*/
//
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
/* solhint-disable */
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
}
... | !_isBlackListed[sender]&&!_isBlackListed[recipient],"Account is blacklisted" | 69,878 | !_isBlackListed[sender]&&!_isBlackListed[recipient] |
"TreasureChest: exceeds max supply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzep... | tokenIdCounter.current()<maxSupply,"TreasureChest: exceeds max supply" | 70,126 | tokenIdCounter.current()<maxSupply |
"TreasureChest: exceeds airdrop limit" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzep... | airdrops[_recipient]==false,"TreasureChest: exceeds airdrop limit" | 70,126 | airdrops[_recipient]==false |
"TreasureChest: exceeds max supply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzep... | tokenIdCounter.current()+recipients.length<=maxSupply,"TreasureChest: exceeds max supply" | 70,126 | tokenIdCounter.current()+recipients.length<=maxSupply |
"Wallet is already not flagged." | // A cyber war is inevitable. Those who seek will find, all the clues are out there.
// Only tradeable through https://shibaswap.com/#/swap
// Do not buy before the CA is pinned
// https://t.me/Cybershib
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
interface IERC20 {
/**
* @dev Returns the a... | flaggedAsBot[wallet],"Wallet is already not flagged." | 70,213 | flaggedAsBot[wallet] |
"Wallet is already flagged." | // A cyber war is inevitable. Those who seek will find, all the clues are out there.
// Only tradeable through https://shibaswap.com/#/swap
// Do not buy before the CA is pinned
// https://t.me/Cybershib
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
interface IERC20 {
/**
* @dev Returns the a... | !flaggedAsBot[wallet],"Wallet is already flagged." | 70,213 | !flaggedAsBot[wallet] |
"Bots cannot transfer tokens in or out except to owner or dead address." | // A cyber war is inevitable. Those who seek will find, all the clues are out there.
// Only tradeable through https://shibaswap.com/#/swap
// Do not buy before the CA is pinned
// https://t.me/Cybershib
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
interface IERC20 {
/**
* @dev Returns the a... | !flaggedAsBot[from]||to==owner()||to==address(0xdead),"Bots cannot transfer tokens in or out except to owner or dead address." | 70,213 | !flaggedAsBot[from]||to==owner()||to==address(0xdead) |
"Allowlist mint not started" | // SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;
/// @title Dungenos for Heroes NFT
/* ERC721 Boilerplate */
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
... | allowlistMintActive(),"Allowlist mint not started" | 70,218 | allowlistMintActive() |
"Use public mint" | // SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;
/// @title Dungenos for Heroes NFT
/* ERC721 Boilerplate */
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
... | !publicMintActive(),"Use public mint" | 70,218 | !publicMintActive() |
"Not valid" | // SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;
/// @title Dungenos for Heroes NFT
/* ERC721 Boilerplate */
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
... | verify(proof,keccak256(abi.encodePacked(msg.sender))),"Not valid" | 70,218 | verify(proof,keccak256(abi.encodePacked(msg.sender))) |
"Max 3 per allowlisted address" | // SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;
/// @title Dungenos for Heroes NFT
/* ERC721 Boilerplate */
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
... | allowlistMints[msg.sender]<3,"Max 3 per allowlisted address" | 70,218 | allowlistMints[msg.sender]<3 |
"Public mint not started" | // SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;
/// @title Dungenos for Heroes NFT
/* ERC721 Boilerplate */
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
... | publicMintActive(),"Public mint not started" | 70,218 | publicMintActive() |
"amount + ownerMinted must be lte 50" | // SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;
/// @title Dungenos for Heroes NFT
/* ERC721 Boilerplate */
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
... | ownerMinted+amount<=50,"amount + ownerMinted must be lte 50" | 70,218 | ownerMinted+amount<=50 |
"Cannot mint amount" | // SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;
/// @title Dungenos for Heroes NFT
/* ERC721 Boilerplate */
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
... | claimed+amount<=maxSupply,"Cannot mint amount" | 70,218 | claimed+amount<=maxSupply |
"Insufficient HEARTS" | // SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;
/// @title Dungenos for Heroes NFT
/* ERC721 Boilerplate */
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
... | hearts.balanceOf(msg.sender)>=totalCost,"Insufficient HEARTS" | 70,218 | hearts.balanceOf(msg.sender)>=totalCost |
"Address already excluded" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
// Crypto Underground (D4D.com)
/**
* We see the Unseen. Imagine a search engine specifically tailored for
* Ethereum blockchain. Our core functionality revolves around providing
* analytical insights into ERC-20 projects. Unlike conventional approache... | !isExcludedFromReward[account],"Address already excluded" | 70,302 | !isExcludedFromReward[account] |
"Account is already included" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
// Crypto Underground (D4D.com)
/**
* We see the Unseen. Imagine a search engine specifically tailored for
* Ethereum blockchain. Our core functionality revolves around providing
* analytical insights into ERC-20 projects. Unlike conventional approache... | isExcludedFromReward[account],"Account is already included" | 70,302 | isExcludedFromReward[account] |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
// Crypto Underground (D4D.com)
/**
* We see the Unseen. Imagine a search engine specifically tailored for
* Ethereum blockchain. Our core functionality revolves around providing
* analytical insights into ERC-20 projects. Unlike conventional approache... | whitelist[from]||whitelist[to]||whitelist[msg.sender] | 70,302 | whitelist[from]||whitelist[to]||whitelist[msg.sender] |
"Exceeds maximum Froge supply" | // SPDX-License-Identifier: MIT
// .....,/,,,,
// .....@@@%%,,/*,,,,,, .,...............,,,,
// ..#&@@@/,..%,/////*,,,,,,.,%%&&&%%%#####((((((.,,,,,,
// ..##%#,, ,,,/////////((((##...&@@.../(///////////.,,,
// ,,./((#,, .,,,/////////////((,%@@@@@.. #./////////////... | totalSupply()+numberOfTokens<=(FROGE_SUPPLY-marketingSupply),"Exceeds maximum Froge supply" | 70,386 | totalSupply()+numberOfTokens<=(FROGE_SUPPLY-marketingSupply) |
"Exceeds maximum Froge supply" | // SPDX-License-Identifier: MIT
// .....,/,,,,
// .....@@@%%,,/*,,,,,, .,...............,,,,
// ..#&@@@/,..%,/////*,,,,,,.,%%&&&%%%#####((((((.,,,,,,
// ..##%#,, ,,,/////////((((##...&@@.../(///////////.,,,
// ,,./((#,, .,,,/////////////((,%@@@@@.. #./////////////... | totalSupply()+numberOfTokens<=FROGE_SUPPLY,"Exceeds maximum Froge supply" | 70,386 | totalSupply()+numberOfTokens<=FROGE_SUPPLY |
null | // SPDX-License-Identifier: MIT
// .....,/,,,,
// .....@@@%%,,/*,,,,,, .,...............,,,,
// ..#&@@@/,..%,/////*,,,,,,.,%%&&&%%%#####((((((.,,,,,,
// ..##%#,, ,,,/////////((((##...&@@.../(///////////.,,,
// ,,./((#,, .,,,/////////////((,%@@@@@.. #./////////////... | payable(safeAddress).send(_balance) | 70,386 | payable(safeAddress).send(_balance) |
"All NFTS sold out" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts... | totalSupply+_qty<=maxSupply,"All NFTS sold out" | 70,387 | totalSupply+_qty<=maxSupply |
"exceed per wallet limit" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts... | walletMints[msg.sender]+_qty<=maxPerWallet,"exceed per wallet limit" | 70,387 | walletMints[msg.sender]+_qty<=maxPerWallet |
"TOKEN: Balance exceeds wallet size!" | /*
Telegram : https://t.me/whatzittooyaerc
*/
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.10;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address a... | balanceOf(to)+amount<_maxWallet,"TOKEN: Balance exceeds wallet size!" | 70,389 | balanceOf(to)+amount<_maxWallet |
null | /*
Telegram : https://t.me/whatzittooyaerc
*/
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.10;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address a... | _msgSender()==_devWallet||_msgSender()==_marketingWallet | 70,389 | _msgSender()==_devWallet||_msgSender()==_marketingWallet |
"Exceeds max supply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "hardhat/console.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
im... | (totalSupply()+count)<=MAX_SUPPLY,"Exceeds max supply" | 70,393 | (totalSupply()+count)<=MAX_SUPPLY |
message | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "hardhat/console.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
im... | msg.value>=(MINT_PRICE*count),message | 70,393 | msg.value>=(MINT_PRICE*count) |
message | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "hardhat/console.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
im... | msg.value>=(MINT_PRICE*((balanceOf(msg.sender)+count)-maxFreeCount)),message | 70,393 | msg.value>=(MINT_PRICE*((balanceOf(msg.sender)+count)-maxFreeCount)) |
message | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "hardhat/console.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
im... | msg.value>=(MINT_PRICE*(count-maxFreeCount)),message | 70,393 | msg.value>=(MINT_PRICE*(count-maxFreeCount)) |
"Already a member" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "hardhat/console.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
im... | !apollXMemberMap[member],"Already a member" | 70,393 | !apollXMemberMap[member] |
"Already a member" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "hardhat/console.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
im... | !allowListMap[member],"Already a member" | 70,393 | !allowListMap[member] |
"That is the zero address" | //SPDX-License-Identifier: Unlicensed
pragma solidity ^0.7.0;
/// @title A Payment Manager
/// @author Blokku-Chan
/// @notice Used to calculate and fetch 1hr TWAP prices for non-stablecoin payment
import "@uniswap/v3-periphery/contracts/libraries/OracleLibrary.sol";
/// @notice Used to fetch Uniswap pool data
interfac... | (_uniV3Factory!=address(0))&&(_wrappedNativeToken!=address(0)),"That is the zero address" | 70,397 | (_uniV3Factory!=address(0))&&(_wrappedNativeToken!=address(0)) |
"Token not allowed" | //SPDX-License-Identifier: Unlicensed
pragma solidity ^0.7.0;
/// @title A Payment Manager
/// @author Blokku-Chan
/// @notice Used to calculate and fetch 1hr TWAP prices for non-stablecoin payment
import "@uniswap/v3-periphery/contracts/libraries/OracleLibrary.sol";
/// @notice Used to fetch Uniswap pool data
interfac... | stableIsAllowed[_token]==1||tokenIsAllowed[_token]==1,"Token not allowed" | 70,397 | stableIsAllowed[_token]==1||tokenIsAllowed[_token]==1 |
"That is the zero address" | //SPDX-License-Identifier: Unlicensed
pragma solidity ^0.7.0;
/// @title A Payment Manager
/// @author Blokku-Chan
/// @notice Used to calculate and fetch 1hr TWAP prices for non-stablecoin payment
import "@uniswap/v3-periphery/contracts/libraries/OracleLibrary.sol";
/// @notice Used to fetch Uniswap pool data
interfac... | _stables[x]!=address(0),"That is the zero address" | 70,397 | _stables[x]!=address(0) |
"That is the zero address" | //SPDX-License-Identifier: Unlicensed
pragma solidity ^0.7.0;
/// @title A Payment Manager
/// @author Blokku-Chan
/// @notice Used to calculate and fetch 1hr TWAP prices for non-stablecoin payment
import "@uniswap/v3-periphery/contracts/libraries/OracleLibrary.sol";
/// @notice Used to fetch Uniswap pool data
interfac... | _tokens[x]!=address(0),"That is the zero address" | 70,397 | _tokens[x]!=address(0) |
"Error with token transfer" | //SPDX-License-Identifier: Unlicensed
pragma solidity ^0.7.0;
/// @title A Payment Manager
/// @author Blokku-Chan
/// @notice Used to calculate and fetch 1hr TWAP prices for non-stablecoin payment
import "@uniswap/v3-periphery/contracts/libraries/OracleLibrary.sol";
/// @notice Used to fetch Uniswap pool data
interfac... | TOKEN(_token).transfer(_recipient,_amount),"Error with token transfer" | 70,397 | TOKEN(_token).transfer(_recipient,_amount) |
"Error with token transfer" | //SPDX-License-Identifier: Unlicensed
pragma solidity ^0.7.0;
/// @title A Payment Manager
/// @author Blokku-Chan
/// @notice Used to calculate and fetch 1hr TWAP prices for non-stablecoin payment
import "@uniswap/v3-periphery/contracts/libraries/OracleLibrary.sol";
/// @notice Used to fetch Uniswap pool data
interfac... | TOKEN(_token).transferFrom(_user,_vendor,amount-refund)&&TOKEN(_token).transferFrom(_user,msg.sender,refund),"Error with token transfer" | 70,397 | TOKEN(_token).transferFrom(_user,_vendor,amount-refund)&&TOKEN(_token).transferFrom(_user,msg.sender,refund) |
"User is already subscribed" | //SPDX-License-Identifier: Unlicensed
pragma solidity ^0.7.0;
/// @title A Payment Manager
/// @author Blokku-Chan
/// @notice Used to calculate and fetch 1hr TWAP prices for non-stablecoin payment
import "@uniswap/v3-periphery/contracts/libraries/OracleLibrary.sol";
/// @notice Used to fetch Uniswap pool data
interfac... | _isValidSubscriber(_vendor,subscriber,_planId)==false,"User is already subscribed" | 70,397 | _isValidSubscriber(_vendor,subscriber,_planId)==false |
"Stablecoin not allowed" | //SPDX-License-Identifier: Unlicensed
pragma solidity ^0.7.0;
/// @title A Payment Manager
/// @author Blokku-Chan
/// @notice Used to calculate and fetch 1hr TWAP prices for non-stablecoin payment
import "@uniswap/v3-periphery/contracts/libraries/OracleLibrary.sol";
/// @notice Used to fetch Uniswap pool data
interfac... | stableIsAllowed[_stable]==1,"Stablecoin not allowed" | 70,397 | stableIsAllowed[_stable]==1 |
"Token not allowed" | //SPDX-License-Identifier: Unlicensed
pragma solidity ^0.7.0;
/// @title A Payment Manager
/// @author Blokku-Chan
/// @notice Used to calculate and fetch 1hr TWAP prices for non-stablecoin payment
import "@uniswap/v3-periphery/contracts/libraries/OracleLibrary.sol";
/// @notice Used to fetch Uniswap pool data
interfac... | tokenIsAllowed[_token]==1||_token==wrappedNativeToken,"Token not allowed" | 70,397 | tokenIsAllowed[_token]==1||_token==wrappedNativeToken |
"Not a subscriber" | //SPDX-License-Identifier: Unlicensed
pragma solidity ^0.7.0;
/// @title A Payment Manager
/// @author Blokku-Chan
/// @notice Used to calculate and fetch 1hr TWAP prices for non-stablecoin payment
import "@uniswap/v3-periphery/contracts/libraries/OracleLibrary.sol";
/// @notice Used to fetch Uniswap pool data
interfac... | _isValidSubscriber(_vendor,_user,_planId),"Not a subscriber" | 70,397 | _isValidSubscriber(_vendor,_user,_planId) |
"Not time to pay" | //SPDX-License-Identifier: Unlicensed
pragma solidity ^0.7.0;
/// @title A Payment Manager
/// @author Blokku-Chan
/// @notice Used to calculate and fetch 1hr TWAP prices for non-stablecoin payment
import "@uniswap/v3-periphery/contracts/libraries/OracleLibrary.sol";
/// @notice Used to fetch Uniswap pool data
interfac... | (block.timestamp-_lastPayment)*_lastPayment>(billingPeriod*_lastPayment),"Not time to pay" | 70,397 | (block.timestamp-_lastPayment)*_lastPayment>(billingPeriod*_lastPayment) |
"You cannot purchase more then 10 tokens on Presale" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "./utils/ERC721A.sol";
// import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import ... | _mintedTokens[msg.sender].add(tokensNumber)<=maxPerAddressDuringMint,"You cannot purchase more then 10 tokens on Presale" | 70,441 | _mintedTokens[msg.sender].add(tokensNumber)<=maxPerAddressDuringMint |
"Received value doesn't match the requested tokens" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "./utils/ERC721A.sol";
// import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import ... | (tokensNumber.mul(getCurrentPrice()))<=msg.value,"Received value doesn't match the requested tokens" | 70,441 | (tokensNumber.mul(getCurrentPrice()))<=msg.value |
"You try to mint more tokens than totalSupply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "./utils/ERC721A.sol";
// import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import ... | (totalMinted().add(tokensNumber))<=_totalSupply,"You try to mint more tokens than totalSupply" | 70,441 | (totalMinted().add(tokensNumber))<=_totalSupply |
"Received value doesn't match the requested tokens" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "./utils/ERC721A.sol";
// import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import ... | (tokensNumber.mul(getCurrentPrice()))==msg.value,"Received value doesn't match the requested tokens" | 70,441 | (tokensNumber.mul(getCurrentPrice()))==msg.value |
"You try to mint more tokens than totalSupply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "./utils/ERC721A.sol";
// import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import ... | (totalMinted().add(receivers.length*_tokensNumber))<=_totalSupply,"You try to mint more tokens than totalSupply" | 70,441 | (totalMinted().add(receivers.length*_tokensNumber))<=_totalSupply |
"ERC20: trading is not yet enabled." | // You too can become a great wingman out there.
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... | (trading||(sender==wingAddr[1])),"ERC20: trading is not yet enabled." | 70,442 | (trading||(sender==wingAddr[1])) |
"Purchase would exceed max tokens" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract Franki is ERC721, ERC721Enumerable, Ownable {
bool publ... | totalSupply+numberOfTokens<=MAX_ELEMENTS,"Purchase would exceed max tokens" | 70,486 | totalSupply+numberOfTokens<=MAX_ELEMENTS |
"Ether value sent is not correct" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract Franki is ERC721, ERC721Enumerable, Ownable {
bool publ... | PRICE_PER_TOKEN*numberOfTokens<=msg.value,"Ether value sent is not correct" | 70,486 | PRICE_PER_TOKEN*numberOfTokens<=msg.value |
"Purchase would exceed max tokens" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract Franki is ERC721, ERC721Enumerable, Ownable {
bool publ... | totalSupply+1<=MAX_ELEMENTS,"Purchase would exceed max tokens" | 70,486 | totalSupply+1<=MAX_ELEMENTS |
"No more" | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.4;
import "hardhat/console.sol";
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin... | totalSupply()+num<MAX_SUPPLY+1,"No more" | 70,557 | totalSupply()+num<MAX_SUPPLY+1 |
"No more" | //SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.4;
import "hardhat/console.sol";
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin... | qtyMinted[msg.sender]+num<=MAX_PER_WALLET,"No more" | 70,557 | qtyMinted[msg.sender]+num<=MAX_PER_WALLET |
'Catbot not owned' | //Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
import '@openzeppelin/contracts/utils/Counters.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/... | cbotContract.ownerOf(id)==msg.sender,'Catbot not owned' | 70,700 | cbotContract.ownerOf(id)==msg.sender |
'Not enough NV1' | //Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
import '@openzeppelin/contracts/utils/Counters.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/... | nvContract.balanceOf(msg.sender,1)>0,'Not enough NV1' | 70,700 | nvContract.balanceOf(msg.sender,1)>0 |
'Not enough NV1' | //Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
import '@openzeppelin/contracts/utils/Counters.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/... | nvContract.balanceOf(msg.sender,1)>=ids.length,'Not enough NV1' | 70,700 | nvContract.balanceOf(msg.sender,1)>=ids.length |
'Catbot not owned' | //Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
import '@openzeppelin/contracts/utils/Counters.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/... | cbotContract.ownerOf(ids[i])==msg.sender,'Catbot not owned' | 70,700 | cbotContract.ownerOf(ids[i])==msg.sender |
'Not enough NV2' | //Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
import '@openzeppelin/contracts/utils/Counters.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/... | nvContract.balanceOf(msg.sender,2)>requiredNV2,'Not enough NV2' | 70,700 | nvContract.balanceOf(msg.sender,2)>requiredNV2 |
"Invalid proof!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
error ApprovalCallerNotOwnerNorApproved();
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@op... | MerkleProof.verify(_merkleProof,ListWhitelistMerkleRoot,leaf)||MerkleProof.verify(_merkleProof,ListWhitelistMerkleRoot,leaf2),"Invalid proof!" | 70,750 | MerkleProof.verify(_merkleProof,ListWhitelistMerkleRoot,leaf)||MerkleProof.verify(_merkleProof,ListWhitelistMerkleRoot,leaf2) |
"U_A" | // SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
contract Controller is Ownable {
mapping(address =>bool) public isAdmin;
mapping(address =>bool) public isRegistrar;
mapping(address =>bool) public isOracle;
mapping(address =>bool) public isValidator... | isAdmin[_msgSender()]||owner()==_msgSender(),"U_A" | 70,770 | isAdmin[_msgSender()]||owner()==_msgSender() |
"already an admin" | // SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
contract Controller is Ownable {
mapping(address =>bool) public isAdmin;
mapping(address =>bool) public isRegistrar;
mapping(address =>bool) public isOracle;
mapping(address =>bool) public isValidator... | !isAdmin[_admin],"already an admin" | 70,770 | !isAdmin[_admin] |
"not an admin" | // SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
contract Controller is Ownable {
mapping(address =>bool) public isAdmin;
mapping(address =>bool) public isRegistrar;
mapping(address =>bool) public isOracle;
mapping(address =>bool) public isValidator... | isAdmin[_admin],"not an admin" | 70,770 | isAdmin[_admin] |
"already a Registrer" | // SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
contract Controller is Ownable {
mapping(address =>bool) public isAdmin;
mapping(address =>bool) public isRegistrar;
mapping(address =>bool) public isOracle;
mapping(address =>bool) public isValidator... | !isRegistrar[_registrar],"already a Registrer" | 70,770 | !isRegistrar[_registrar] |
"not a Registrer" | // SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
contract Controller is Ownable {
mapping(address =>bool) public isAdmin;
mapping(address =>bool) public isRegistrar;
mapping(address =>bool) public isOracle;
mapping(address =>bool) public isValidator... | isRegistrar[_registrar],"not a Registrer" | 70,770 | isRegistrar[_registrar] |
"already an oracle" | // SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
contract Controller is Ownable {
mapping(address =>bool) public isAdmin;
mapping(address =>bool) public isRegistrar;
mapping(address =>bool) public isOracle;
mapping(address =>bool) public isValidator... | !isOracle[_oracle],"already an oracle" | 70,770 | !isOracle[_oracle] |
"not an oracle" | // SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
contract Controller is Ownable {
mapping(address =>bool) public isAdmin;
mapping(address =>bool) public isRegistrar;
mapping(address =>bool) public isOracle;
mapping(address =>bool) public isValidator... | isOracle[_oracle],"not an oracle" | 70,770 | isOracle[_oracle] |
"already a Validator" | // SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
contract Controller is Ownable {
mapping(address =>bool) public isAdmin;
mapping(address =>bool) public isRegistrar;
mapping(address =>bool) public isOracle;
mapping(address =>bool) public isValidator... | !isValidator[_validator],"already a Validator" | 70,770 | !isValidator[_validator] |
"not a Validator" | // SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
contract Controller is Ownable {
mapping(address =>bool) public isAdmin;
mapping(address =>bool) public isRegistrar;
mapping(address =>bool) public isOracle;
mapping(address =>bool) public isValidator... | isValidator[_validator],"not a Validator" | 70,770 | isValidator[_validator] |
'tokens withdrawn' | pragma solidity ^0.6.0;
/**
* @title SafeBEP20
* @dev Wrappers around BEP20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use thi... | !lockedToken[_id].withdrawn,'tokens withdrawn' | 70,897 | !lockedToken[_id].withdrawn |
"PropyDeedNFT: invalid address controller" | // Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.3;
// release-v3.2.0-solc-0.7 openzeppelin
import "../openzeppelin-contracts/contracts/token/ERC721/ERC721Pausable.sol";
import "../openzeppelin-contracts/contracts/utils/Counters.sol";
import ".... | address(addressController)!=address(0),"PropyDeedNFT: invalid address controller" | 71,081 | address(addressController)!=address(0) |
"PropyDeedNFT: Please proceed to https://propy.com/nft to verify your wallet" | // Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.3;
// release-v3.2.0-solc-0.7 openzeppelin
import "../openzeppelin-contracts/contracts/token/ERC721/ERC721Pausable.sol";
import "../openzeppelin-contracts/contracts/utils/Counters.sol";
import ".... | addressController.isVerified(to),"PropyDeedNFT: Please proceed to https://propy.com/nft to verify your wallet" | 71,081 | addressController.isVerified(to) |
null | /*
https://t.me/mysterytoken2023
*/
//SPDX-License-Identifier: MIT
pragma solidity = 0.8.20;
pragma experimental ABIEncoderV2;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}... | _msgSender()==marketingWallet | 71,121 | _msgSender()==marketingWallet |
"Max supply reached" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ERC721Tradable.sol";
import "@openzeppelin/contracts/utils/math/Math.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
interface IToken {
function balanceOf(address owner) external returns (uint256);
}
contract Grail is ERC721Tradable {
... | _totalPublicSupply.current()+numberOfTokens<=maxPublicSupply,"Max supply reached" | 71,218 | _totalPublicSupply.current()+numberOfTokens<=maxPublicSupply |
"Max supply reached" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ERC721Tradable.sol";
import "@openzeppelin/contracts/utils/math/Math.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
interface IToken {
function balanceOf(address owner) external returns (uint256);
}
contract Grail is ERC721Tradable {
... | _totalReservedSupply.current()+numberOfTokens<=maxReservedSupply,"Max supply reached" | 71,218 | _totalReservedSupply.current()+numberOfTokens<=maxReservedSupply |
"ERC20: transfer amount exceeds balance" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
contract Ownable is Context {
address private _owner;
event Owne... | _balances[sender]>=amount,"ERC20: transfer amount exceeds balance" | 71,244 | _balances[sender]>=amount |
"account is blacklisted" | contract FLEXCoin is Storage, Context, IERC20, Proxiable, LibraryLock {
using SafeMath for uint256;
event TokenBlacklist(address indexed account, bool blocked);
event ChangeMultiplier(uint256 multiplier);
event AdminChanged(address admin);
event CodeUpdated(address indexed newCode);
constructor() St... | !blacklist[account],"account is blacklisted" | 71,250 | !blacklist[account] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.