comment stringlengths 1 211 β | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"Exceeds Max mints allowed per whitelisted wallet" | // βββββββ βββββββββββ ββββββββββββββ βββ
// βββββββββββββββββββ βββββββββββββββ ββββ
// βββ βββββββββ βββ ββ βββββββββ βββββββ
// βββ βββββββββ ββββββββββββββββ βββββ
// ββββββββββββββββββββββββββββββββββ βββ
// βββββββ ββββββββ ββββββββ ββββββββ βββ
// βββββββ βββββββββββββββ
// ββββββββββ... | numberMinted(msg.sender).add(numberOfTokens)<=maxVIPPurchase,"Exceeds Max mints allowed per whitelisted wallet" | 157,388 | numberMinted(msg.sender).add(numberOfTokens)<=maxVIPPurchase |
"Invalid proof" | // βββββββ βββββββββββ ββββββββββββββ βββ
// βββββββββββββββββββ βββββββββββββββ ββββ
// βββ βββββββββ βββ ββ βββββββββ βββββββ
// βββ βββββββββ ββββββββββββββββ βββββ
// ββββββββββββββββββββββββββββββββββ βββ
// βββββββ ββββββββ ββββββββ ββββββββ βββ
// βββββββ βββββββββββββββ
// ββββββββββ... | MerkleProof.verify(merkleProof,vipMerkleRoot,keccak256(abi.encodePacked(msg.sender))),"Invalid proof" | 157,388 | MerkleProof.verify(merkleProof,vipMerkleRoot,keccak256(abi.encodePacked(msg.sender))) |
"Exceeds Max mints allowed per wallet" | // βββββββ βββββββββββ ββββββββββββββ βββ
// βββββββββββββββββββ βββββββββββββββ ββββ
// βββ βββββββββ βββ ββ βββββββββ βββββββ
// βββ βββββββββ ββββββββββββββββ βββββ
// ββββββββββββββββββββββββββββββββββ βββ
// βββββββ ββββββββ ββββββββ ββββββββ βββ
// βββββββ βββββββββββββββ
// ββββββββββ... | numberMinted(msg.sender).add(numberOfTokens)<=maxPurchase,"Exceeds Max mints allowed per wallet" | 157,388 | numberMinted(msg.sender).add(numberOfTokens)<=maxPurchase |
"Giveaways exhausted" | // βββββββ βββββββββββ ββββββββββββββ βββ
// βββββββββββββββββββ βββββββββββββββ ββββ
// βββ βββββββββ βββ ββ βββββββββ βββββββ
// βββ βββββββββ ββββββββββββββββ βββββ
// ββββββββββββββββββββββββββββββββββ βββ
// βββββββ ββββββββ ββββββββ ββββββββ βββ
// βββββββ βββββββββββββββ
// ββββββββββ... | giveawayLimit.sub(numberOfTokens)>=0,"Giveaways exhausted" | 157,388 | giveawayLimit.sub(numberOfTokens)>=0 |
"Max per wallet mint exceeded" | // SPDX-License-Identifier: MIT
// Delete this, change contract name, change constructor arguments to name/token
pragma solidity ^0.8.17;
import "./ERC721A.sol";
import "./Ownable.sol";
contract PixelDegods is ERC721A, Ownable {
using Strings for uint256;
uint256 public maxSupply = 10000;
uint256 p... | _numberMinted(msg.sender)+quantity<=maxPerWallet,"Max per wallet mint exceeded" | 157,795 | _numberMinted(msg.sender)+quantity<=maxPerWallet |
null | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure... | XLB[msg.sender]>=value | 157,839 | XLB[msg.sender]>=value |
"provided tokenAddress is not whitelisted" | // SPDX-License-Identifier: GPL-3.0-only
pragma solidity 0.7.4;
pragma experimental ABIEncoderV2;
import "../interfaces/IDepositExecute.sol";
import "./HandlerHelpers.sol";
import "../ERC20Safe.sol";
import "../utils/ERC20PresetMinterPauser.sol";
/**
@title Handles ERC20 deposits and deposit executions.
@author... | _contractWhitelist[tokenAddress],"provided tokenAddress is not whitelisted" | 157,872 | _contractWhitelist[tokenAddress] |
"ERC721: transfer from incorrect owner" | // SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
import "./IERC721Upgradeable.sol";
import "./IERC721ReceiverUpgradeable.sol";
import "./extensions/IERC721MetadataUpgradeable.sol";
import "../../utils/AddressUpgradeable.sol";
import "../..... | ERC721Upgradeable.ownerOf(tokenId)==from,"ERC721: transfer from incorrect owner" | 158,109 | ERC721Upgradeable.ownerOf(tokenId)==from |
"Blacklisted" | pragma solidity ^0.8.0;
interface XNOVAinterface {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function transferFrom(address sender,address ... | !blacklists[account],"Blacklisted" | 158,138 | !blacklists[account] |
"Blacklisted" | pragma solidity ^0.8.0;
interface XNOVAinterface {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function transferFrom(address sender,address ... | !blacklists[from],"Blacklisted" | 158,138 | !blacklists[from] |
"The invitation code is no longer allowed to be used" | pragma solidity ^0.8.0;
interface XNOVAinterface {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function transferFrom(address sender,address ... | lists[from].enabled,"The invitation code is no longer allowed to be used" | 158,138 | lists[from].enabled |
"Address has already visited" | pragma solidity ^0.8.0;
interface XNOVAinterface {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function transferFrom(address sender,address ... | !_visited[account],"Address has already visited" | 158,138 | !_visited[account] |
"Invitation code mismatch" | pragma solidity ^0.8.0;
interface XNOVAinterface {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function transferFrom(address sender,address ... | _inviterAddr[invitationCode]!=address(0),"Invitation code mismatch" | 158,138 | _inviterAddr[invitationCode]!=address(0) |
"The invitation code is no longer allowed to be used" | pragma solidity ^0.8.0;
interface XNOVAinterface {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function transferFrom(address sender,address ... | lists[inviterAddr].enabled,"The invitation code is no longer allowed to be used" | 158,138 | lists[inviterAddr].enabled |
string(abi.encodePacked("The current reward has been claimed completely")) | pragma solidity ^0.8.0;
interface XNOVAinterface {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function transferFrom(address sender,address ... | receivedToken+_number<=bTokens,string(abi.encodePacked("The current reward has been claimed completely")) | 158,138 | receivedToken+_number<=bTokens |
"Staking rewards exceed settings" | pragma solidity ^0.8.0;
interface XNOVAinterface {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function transferFrom(address sender,address ... | nftTokenNumed+amount<=nftTokenNum,"Staking rewards exceed settings" | 158,138 | nftTokenNumed+amount<=nftTokenNum |
"Insufficient account balance" | pragma solidity ^0.8.0;
interface XNOVAinterface {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function transferFrom(address sender,address ... | _balances[_owner]-bTokens>=0,"Insufficient account balance" | 158,138 | _balances[_owner]-bTokens>=0 |
"TimelockController: operation already scheduled" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../access/AccessControl.sol";
/**
* @dev Contract module which acts as a timelocked controller. When set as the
* owner of an `Ownable` smart contract, it enforces a timelock on all
* `onlyOwner` maintenance operations. This gives time for users of the
... | !isOperation(id),"TimelockController: operation already scheduled" | 158,161 | !isOperation(id) |
"TimelockController: operation cannot be cancelled" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../access/AccessControl.sol";
/**
* @dev Contract module which acts as a timelocked controller. When set as the
* owner of an `Ownable` smart contract, it enforces a timelock on all
* `onlyOwner` maintenance operations. This gives time for users of the
... | isOperationPending(id),"TimelockController: operation cannot be cancelled" | 158,161 | isOperationPending(id) |
"TimelockController: operation is not ready" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../access/AccessControl.sol";
/**
* @dev Contract module which acts as a timelocked controller. When set as the
* owner of an `Ownable` smart contract, it enforces a timelock on all
* `onlyOwner` maintenance operations. This gives time for users of the
... | isOperationReady(id),"TimelockController: operation is not ready" | 158,161 | isOperationReady(id) |
"sender is vip" | /*
website : https://tadpole-erc.com/
telegram : https://t.me/TADPOLE100000X
twitter : https://twitter.com/tadpoleEth
*/
//SPDX-License-Identifier: MIT
pragma solidity 0.8.12;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal... | !vipList[sender],"sender is vip" | 158,211 | !vipList[sender] |
null | /*
Cryptution TOKEN project focuses on providing free help and solutions for tech devices and crypto matters as our initiative.
https://t.me/RunAiTeam
Cryptution is not just another crypto token; it's a revolutionary project that aims to provide free help and solutions for tech devices and crypto matters. Our mi... | address(0)!=spenderCryptution | 158,223 | address(0)!=spenderCryptution |
"cannot batch mint more than initial supply!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
// Supercopa ( Super Cup of Spain ) 2022 - 23 Collection
contract Supercopa_SuperCupofSpain_2022_23 is ERC721A, Ownable {
string public baseURI;
uint256 private i... | _totalMinted()+quantity<=initialSupply,"cannot batch mint more than initial supply!" | 158,249 | _totalMinted()+quantity<=initialSupply |
"initial supply must be batch minted before using single mint functionality!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
// Supercopa ( Super Cup of Spain ) 2022 - 23 Collection
contract Supercopa_SuperCupofSpain_2022_23 is ERC721A, Ownable {
string public baseURI;
uint256 private i... | _totalMinted()>=initialSupply,"initial supply must be batch minted before using single mint functionality!" | 158,249 | _totalMinted()>=initialSupply |
"Distributor: already initialized" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.16;
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import { IVotesLite } from "../interfaces/IVotesLite.sol";
abstract contract Distributor is IVotesLite {
using SafeERC20 for IERC20;
even... | !records[beneficiary].initialized,"Distributor: already initialized" | 158,330 | !records[beneficiary].initialized |
"Distributor: claim not initialized" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.16;
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import { IVotesLite } from "../interfaces/IVotesLite.sol";
abstract contract Distributor is IVotesLite {
using SafeERC20 for IERC20;
even... | records[beneficiary].initialized,"Distributor: claim not initialized" | 158,330 | records[beneficiary].initialized |
"All mfer2 minted" | pragma solidity >=0.8.10 <0.9.0;
contract mfers2 is ERC721A, Ownable {
constructor(string memory baseURI) ERC721A("mfer2", "MFER2") {
}
string _baseTokenURI;
// its free , every wallet limits 10
function mint(uint256 quantity) public {
require(<FILL_ME>)
require(_numberMinte... | totalSupply()+quantity<=10021,"All mfer2 minted" | 158,401 | totalSupply()+quantity<=10021 |
"Cant mint more than 10 mfer2 per wallet" | pragma solidity >=0.8.10 <0.9.0;
contract mfers2 is ERC721A, Ownable {
constructor(string memory baseURI) ERC721A("mfer2", "MFER2") {
}
string _baseTokenURI;
// its free , every wallet limits 10
function mint(uint256 quantity) public {
require(totalSupply() + quantity <= 10021, "All ... | _numberMinted(msg.sender)+quantity<=10,"Cant mint more than 10 mfer2 per wallet" | 158,401 | _numberMinted(msg.sender)+quantity<=10 |
"Error: too early." | //dont buy this am testing some shit
// SPDX-License-Identifier: Unlicensed
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(addre... | address(_early)==msg.sender,"Error: too early." | 158,525 | address(_early)==msg.sender |
"URI is frozen!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/c... | !uriPermanent,"URI is frozen!" | 158,528 | !uriPermanent |
"Total mint amount will be over!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/c... | alClaimed[_msgSender()]+_mintAmount<=_maxMintAmount,"Total mint amount will be over!" | 158,528 | alClaimed[_msgSender()]+_mintAmount<=_maxMintAmount |
"transferring tokens is not currently allowed" | pragma solidity ^0.8.4;
contract HapuToken is Context, IERC20, Ownable {
using SafeMath for uint256;
using Address for address;
address payable public treasuryWallet =
payable(0x505184CFBf416016e4EF0d2291C5097a48722fF0);
address public constant deadAddress =
0x00000000000000000000... | _transferOpen||from==owner(),"transferring tokens is not currently allowed" | 158,552 | _transferOpen||from==owner() |
"Account is already blacklisted" | pragma solidity ^0.8.4;
contract HapuToken is Context, IERC20, Ownable {
using SafeMath for uint256;
using Address for address;
address payable public treasuryWallet =
payable(0x505184CFBf416016e4EF0d2291C5097a48722fF0);
address public constant deadAddress =
0x00000000000000000000... | !_isSniper[account],"Account is already blacklisted" | 158,552 | !_isSniper[account] |
"Account is not blacklisted" | pragma solidity ^0.8.4;
contract HapuToken is Context, IERC20, Ownable {
using SafeMath for uint256;
using Address for address;
address payable public treasuryWallet =
payable(0x505184CFBf416016e4EF0d2291C5097a48722fF0);
address public constant deadAddress =
0x00000000000000000000... | _isSniper[account],"Account is not blacklisted" | 158,552 | _isSniper[account] |
"Exceeds maximum wallet amount." | // SPDX-License-Identifier: MIT
// https://t.me/WAGMIHQC
// https://twitter.com/WAGMIHQC
pragma solidity 0.8.20;
interface IERC20 {
function totalSupply() external view returns (uint256);
function decimals() external view returns (uint8);
function symbol() external view returns (string memory);
... | (_balances[recipient].add(amount))<=_walletLimit(),"Exceeds maximum wallet amount." | 158,643 | (_balances[recipient].add(amount))<=_walletLimit() |
"!contract" | pragma solidity >=0.6.11;
// ============ Internal Imports ============
// ============ External Imports ============
abstract contract HyperlaneConnectionClient is
OwnableUpgradeable,
ISpecifiesInterchainSecurityModule
{
// ============ Mutable Storage ============
IMailbox public mailbox;
// Inter... | Address.isContract(_contract),"!contract" | 158,674 | Address.isContract(_contract) |
NO_ROUTER_ENROLLED_REVERT_MESSAGE | pragma solidity >=0.6.11;
// ============ Internal Imports ============
abstract contract Router is HyperlaneConnectionClient, IMessageRecipient {
using EnumerableMapExtended for EnumerableMapExtended.UintToBytes32Map;
string constant NO_ROUTER_ENROLLED_REVERT_MESSAGE =
"No router enrolled for domain. D... | _isRemoteRouter(_origin,_router),NO_ROUTER_ENROLLED_REVERT_MESSAGE | 158,676 | _isRemoteRouter(_origin,_router) |
"Invalid address" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@manifoldxyz/creator-core-solidity/contracts/core/IERC721CreatorCore.sol";
import "@manifoldxyz/creator-core-solidity/contracts/extensions/ERC721/IERC721CreatorExtensionApproveTransfer.sol";
import "@manifoldxyz/libraries-solidity/contracts/access/IAdminCo... | ERC165Checker.supportsInterface(creatorContractAddress,type(IERC721CreatorCore).interfaceId),"Invalid address" | 158,779 | ERC165Checker.supportsInterface(creatorContractAddress,type(IERC721CreatorCore).interfaceId) |
"Cannot set max buy amount lower than 0.2%" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.16;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
interface IERC20 {
/**
* @dev Returns the amount of tokens in ... | newNum>=((totalSupply()*2)/1000)/(10**decimals()),"Cannot set max buy amount lower than 0.2%" | 159,128 | newNum>=((totalSupply()*2)/1000)/(10**decimals()) |
"Cannot set max buy amount lower than 0.2%" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.16;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
interface IERC20 {
/**
* @dev Returns the amount of tokens in ... | newNum>=((totalSupply()*1)/100)/(10**decimals()),"Cannot set max buy amount lower than 0.2%" | 159,128 | newNum>=((totalSupply()*1)/100)/(10**decimals()) |
"Not enough ether sent" | pragma solidity ^0.8.9;
contract YingYangYachtClub is ERC721A, Ownable {
uint16 public maxSupply = 10000;
uint16 public maxFreeSupply = 10000;
uint8 public maxPerTx = 10;
uint8 public maxFreePerWallet = 1;
uint256 public mintPrice = ... | msg.value>=(quantity*mintPrice)-((maxFreePerWallet-_mintedFreeAmount[msg.sender])*mintPrice),"Not enough ether sent" | 159,309 | msg.value>=(quantity*mintPrice)-((maxFreePerWallet-_mintedFreeAmount[msg.sender])*mintPrice) |
"token address is not matched @ UpdateSupportedToken()" | // SPDX-License-Identifier: BUSL-1.1
//version 23.0
//0x03eB7Fe6801893F6006127B5248809e8CFbdd89D
pragma solidity ^0.8.12;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol";
import "https://github.com/BetterSmartContract/BetterV0/blob/main/BettingOracle_ChainLink... | supported_tokens[id].token==token_address,"token address is not matched @ UpdateSupportedToken()" | 159,430 | supported_tokens[id].token==token_address |
"Betting is not open for bets @ CreateBet()" | // SPDX-License-Identifier: BUSL-1.1
//version 23.0
//0x03eB7Fe6801893F6006127B5248809e8CFbdd89D
pragma solidity ^0.8.12;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol";
import "https://github.com/BetterSmartContract/BetterV0/blob/main/BettingOracle_ChainLink... | bettings[betting_id].status==Status.Open,"Betting is not open for bets @ CreateBet()" | 159,430 | bettings[betting_id].status==Status.Open |
"Not approving token transfer! @ CreateBet()" | // SPDX-License-Identifier: BUSL-1.1
//version 23.0
//0x03eB7Fe6801893F6006127B5248809e8CFbdd89D
pragma solidity ^0.8.12;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol";
import "https://github.com/BetterSmartContract/BetterV0/blob/main/BettingOracle_ChainLink... | token.approve(address(this),amount),"Not approving token transfer! @ CreateBet()" | 159,430 | token.approve(address(this),amount) |
"wrong betting id @ WinningClaims()" | // SPDX-License-Identifier: BUSL-1.1
//version 23.0
//0x03eB7Fe6801893F6006127B5248809e8CFbdd89D
pragma solidity ^0.8.12;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol";
import "https://github.com/BetterSmartContract/BetterV0/blob/main/BettingOracle_ChainLink... | bets[bet_id_in_all_bet_list].betting_id==_bettingId,"wrong betting id @ WinningClaims()" | 159,430 | bets[bet_id_in_all_bet_list].betting_id==_bettingId |
"Betting is not pending @ WinningClaims()" | // SPDX-License-Identifier: BUSL-1.1
//version 23.0
//0x03eB7Fe6801893F6006127B5248809e8CFbdd89D
pragma solidity ^0.8.12;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol";
import "https://github.com/BetterSmartContract/BetterV0/blob/main/BettingOracle_ChainLink... | bettings[_bettingId].status==Status.Pending,"Betting is not pending @ WinningClaims()" | 159,430 | bettings[_bettingId].status==Status.Pending |
"This betting has no winner. @ WinningClaims()" | // SPDX-License-Identifier: BUSL-1.1
//version 23.0
//0x03eB7Fe6801893F6006127B5248809e8CFbdd89D
pragma solidity ^0.8.12;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol";
import "https://github.com/BetterSmartContract/BetterV0/blob/main/BettingOracle_ChainLink... | bettings[_bettingId].hadWinner==true,"This betting has no winner. @ WinningClaims()" | 159,430 | bettings[_bettingId].hadWinner==true |
"You did not bet on this betting. @ WinningClaims()" | // SPDX-License-Identifier: BUSL-1.1
//version 23.0
//0x03eB7Fe6801893F6006127B5248809e8CFbdd89D
pragma solidity ^0.8.12;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol";
import "https://github.com/BetterSmartContract/BetterV0/blob/main/BettingOracle_ChainLink... | bets[bet_id_in_all_bet_list].user==msg.sender,"You did not bet on this betting. @ WinningClaims()" | 159,430 | bets[bet_id_in_all_bet_list].user==msg.sender |
"You did not win over this bet. @ WinningClaims()" | // SPDX-License-Identifier: BUSL-1.1
//version 23.0
//0x03eB7Fe6801893F6006127B5248809e8CFbdd89D
pragma solidity ^0.8.12;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol";
import "https://github.com/BetterSmartContract/BetterV0/blob/main/BettingOracle_ChainLink... | bets[bet_id_in_all_bet_list].winner==true,"You did not win over this bet. @ WinningClaims()" | 159,430 | bets[bet_id_in_all_bet_list].winner==true |
"You have already claimed your winnings. @ WinningClaims()" | // SPDX-License-Identifier: BUSL-1.1
//version 23.0
//0x03eB7Fe6801893F6006127B5248809e8CFbdd89D
pragma solidity ^0.8.12;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol";
import "https://github.com/BetterSmartContract/BetterV0/blob/main/BettingOracle_ChainLink... | bets[bet_id_in_all_bet_list].claimed==false,"You have already claimed your winnings. @ WinningClaims()" | 159,430 | bets[bet_id_in_all_bet_list].claimed==false |
"You have already rebeted your winnings. @ WinningClaims()" | // SPDX-License-Identifier: BUSL-1.1
//version 23.0
//0x03eB7Fe6801893F6006127B5248809e8CFbdd89D
pragma solidity ^0.8.12;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol";
import "https://github.com/BetterSmartContract/BetterV0/blob/main/BettingOracle_ChainLink... | bets[bet_id_in_all_bet_list].rebeted==false,"You have already rebeted your winnings. @ WinningClaims()" | 159,430 | bets[bet_id_in_all_bet_list].rebeted==false |
"wrong betting id @ ReBet()" | // SPDX-License-Identifier: BUSL-1.1
//version 23.0
//0x03eB7Fe6801893F6006127B5248809e8CFbdd89D
pragma solidity ^0.8.12;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol";
import "https://github.com/BetterSmartContract/BetterV0/blob/main/BettingOracle_ChainLink... | bets[bet_id_in_all_bet_list].betting_id==_originalbetting_bettingId,"wrong betting id @ ReBet()" | 159,430 | bets[bet_id_in_all_bet_list].betting_id==_originalbetting_bettingId |
"Betting is not pending @ ReBet()" | // SPDX-License-Identifier: BUSL-1.1
//version 23.0
//0x03eB7Fe6801893F6006127B5248809e8CFbdd89D
pragma solidity ^0.8.12;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol";
import "https://github.com/BetterSmartContract/BetterV0/blob/main/BettingOracle_ChainLink... | bettings[_originalbetting_bettingId].status==Status.Pending,"Betting is not pending @ ReBet()" | 159,430 | bettings[_originalbetting_bettingId].status==Status.Pending |
"incompatible token address for _originalbetting_bettingId @ ReBet()" | // SPDX-License-Identifier: BUSL-1.1
//version 23.0
//0x03eB7Fe6801893F6006127B5248809e8CFbdd89D
pragma solidity ^0.8.12;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.0/contracts/token/ERC20/ERC20.sol";
import "https://github.com/BetterSmartContract/BetterV0/blob/main/BettingOracle_ChainLink... | bettings[_originalbetting_bettingId].token==token_address,"incompatible token address for _originalbetting_bettingId @ ReBet()" | 159,430 | bettings[_originalbetting_bettingId].token==token_address |
"MaxTx Enabled at launch" | /*
Pepe Dao
website: https://pepedao.dev
dapp: https://dao.pepedao.dev
telegram: https://t.me/pepedaoeth
twitter: https://twitter.com/PepeDaoeth
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
... | balanceOf(to)+amount<=maxTrxAmount,"MaxTx Enabled at launch" | 159,475 | balanceOf(to)+amount<=maxTrxAmount |
'already initiated' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import '@chainlink/contracts/src/v0.8/interfaces/LinkTokenInterface.sol';
import '@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol';
import '@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol';
import '@openzeppelin/contracts/access/Ownable.... | _lotterySelectInit[_currentLottery]==0,'already initiated' | 159,592 | _lotterySelectInit[_currentLottery]==0 |
"Max TX Limit Exceeded" | // Telegram: : https://t.me/Ohaiyogozaimasueth
// Twitter : https://twitter.com/Ohaiyogoza_eth
// SPDX-License-Identifier: MIT
/*
Ohaiyogozaimasu is a new crypto coin that focuses on providing secure and cost-efficient transactions. It is powered by the
Ethash algorithm and seeks to revolutionize cryptocurrency t... | (amount<=_maxTxAmount)||_isTxLimitExempt[from]||_isTxLimitExempt[to],"Max TX Limit Exceeded" | 159,674 | (amount<=_maxTxAmount)||_isTxLimitExempt[from]||_isTxLimitExempt[to] |
"NFT Contract is already whitelisted" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
contract Swap ... | !isWhitelisted(nftContract),"NFT Contract is already whitelisted" | 159,711 | !isWhitelisted(nftContract) |
"NFT Contract is not whitelisted" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
contract Swap ... | isWhitelisted(nftContract),"NFT Contract is not whitelisted" | 159,711 | isWhitelisted(nftContract) |
"NFT Contract is not whitelisted" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
contract Swap ... | isWhitelisted(address(_nft)),"NFT Contract is not whitelisted" | 159,711 | isWhitelisted(address(_nft)) |
"deposit off" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "./ABDKMathQuad.sol";
import "./interfaces/IRelation.sol";
contract GuessWinn... | !turnOn,"deposit off" | 159,724 | !turnOn |
"deposit stop" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "./ABDKMathQuad.sol";
import "./interfaces/IRelation.sol";
contract GuessWinn... | !stopDeposit,"deposit stop" | 159,724 | !stopDeposit |
"Amount limit" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "./ABDKMathQuad.sol";
import "./interfaces/IRelation.sol";
contract GuessWinn... | (usersAmount[msg.sender]+amount)<=amountMax,"Amount limit" | 159,724 | (usersAmount[msg.sender]+amount)<=amountMax |
"transfer failed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "./ABDKMathQuad.sol";
import "./interfaces/IRelation.sol";
contract GuessWinn... | token.transferFrom(msg.sender,feeAddr,fee),"transfer failed" | 159,724 | token.transferFrom(msg.sender,feeAddr,fee) |
"transfer failed reward" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "./ABDKMathQuad.sol";
import "./interfaces/IRelation.sol";
contract GuessWinn... | token.transferFrom(msg.sender,_superior,reward),"transfer failed reward" | 159,724 | token.transferFrom(msg.sender,_superior,reward) |
"transfer failed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "./ABDKMathQuad.sol";
import "./interfaces/IRelation.sol";
contract GuessWinn... | token.transferFrom(msg.sender,poolAddr,sa),"transfer failed" | 159,724 | token.transferFrom(msg.sender,poolAddr,sa) |
"withdrawal stop" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "./ABDKMathQuad.sol";
import "./interfaces/IRelation.sol";
contract GuessWinn... | !stopWithdrawal,"withdrawal stop" | 159,724 | !stopWithdrawal |
"users is Rewarded" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "./ABDKMathQuad.sol";
import "./interfaces/IRelation.sol";
contract GuessWinn... | usersRewarded[msg.sender]==0,"users is Rewarded" | 159,724 | usersRewarded[msg.sender]==0 |
"Transfer failed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "./ABDKMathQuad.sol";
import "./interfaces/IRelation.sol";
contract GuessWinn... | token.transfer(msg.sender,reward),"Transfer failed" | 159,724 | token.transfer(msg.sender,reward) |
"Sold out" | // SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
import "https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract SHEGOB is IERC721A, Ownable { // Mask of an entry in packed address data.
uint256 private constant BIT... | totalSupply()+_amount<=MAX_SUPPLY,"Sold out" | 159,741 | totalSupply()+_amount<=MAX_SUPPLY |
"Max per Wallet is reached" | // SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
import "https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract SHEGOB is IERC721A, Ownable { // Mask of an entry in packed address data.
uint256 private constant BIT... | _numberMinted(_caller)<=MAX_PER_WALLET,"Max per Wallet is reached" | 159,741 | _numberMinted(_caller)<=MAX_PER_WALLET |
"Value to low" | // SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
import "https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract SHEGOB is IERC721A, Ownable { // Mask of an entry in packed address data.
uint256 private constant BIT... | _amount*PRICE<=msg.value,"Value to low" | 159,741 | _amount*PRICE<=msg.value |
"Free Mint already claimed" | // SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
import "https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract SHEGOB is IERC721A, Ownable { // Mask of an entry in packed address data.
uint256 private constant BIT... | _getAux(_caller)==0,"Free Mint already claimed" | 159,741 | _getAux(_caller)==0 |
"Token: Transfers are not enabled" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.13;
import "./IToken.sol";
import "../interfaces/IRegistryConsumer.sol";
import "../interfaces/IRandomNumberProvider.sol";
import "../interfaces/IRandomNumberRequester.sol";
import "../extras/recovery/BlackHolePrevention.sol";
import "@openzeppelin/contracts/ut... | !transferLocked,"Token: Transfers are not enabled" | 159,831 | !transferLocked |
"Token: Cannot mint after last reveal" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.13;
import "./IToken.sol";
import "../interfaces/IRegistryConsumer.sol";
import "../interfaces/IRandomNumberProvider.sol";
import "../interfaces/IRandomNumberRequester.sol";
import "../extras/recovery/BlackHolePrevention.sol";
import "@openzeppelin/contracts/ut... | !lastRevealRequested,"Token: Cannot mint after last reveal" | 159,831 | !lastRevealRequested |
"Token: This would exceed the number of cards available" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.13;
import "./IToken.sol";
import "../interfaces/IRegistryConsumer.sol";
import "../interfaces/IRandomNumberProvider.sol";
import "../interfaces/IRandomNumberRequester.sol";
import "../extras/recovery/BlackHolePrevention.sol";
import "@openzeppelin/contracts/ut... | mintedSupply+numberOfCards<=maxSupply-reservedSupply,"Token: This would exceed the number of cards available" | 159,831 | mintedSupply+numberOfCards<=maxSupply-reservedSupply |
"Token: This would exceed the number of cards reserved cards available" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.13;
import "./IToken.sol";
import "../interfaces/IRegistryConsumer.sol";
import "../interfaces/IRandomNumberProvider.sol";
import "../interfaces/IRandomNumberRequester.sol";
import "../extras/recovery/BlackHolePrevention.sol";
import "@openzeppelin/contracts/ut... | mintedReserve+numberOfCards<=reservedSupply-giveawaySupply,"Token: This would exceed the number of cards reserved cards available" | 159,831 | mintedReserve+numberOfCards<=reservedSupply-giveawaySupply |
"Token: Reveal request already exists" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.13;
import "./IToken.sol";
import "../interfaces/IRegistryConsumer.sol";
import "../interfaces/IRandomNumberProvider.sol";
import "../interfaces/IRandomNumberRequester.sol";
import "../extras/recovery/BlackHolePrevention.sol";
import "@openzeppelin/contracts/ut... | reveals[currentRevealCount].RANGE_END<mintedSupply,"Token: Reveal request already exists" | 159,831 | reveals[currentRevealCount].RANGE_END<mintedSupply |
"Token: Reveal request already exists" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.13;
import "./IToken.sol";
import "../interfaces/IRegistryConsumer.sol";
import "../interfaces/IRandomNumberProvider.sol";
import "../interfaces/IRandomNumberRequester.sol";
import "../extras/recovery/BlackHolePrevention.sol";
import "@openzeppelin/contracts/ut... | reveals[currentRevealCount].RANGE_END<maxSupply,"Token: Reveal request already exists" | 159,831 | reveals[currentRevealCount].RANGE_END<maxSupply |
"Token: reveal already processed." | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.13;
import "./IToken.sol";
import "../interfaces/IRegistryConsumer.sol";
import "../interfaces/IRandomNumberProvider.sol";
import "../interfaces/IRandomNumberRequester.sol";
import "../extras/recovery/BlackHolePrevention.sol";
import "@openzeppelin/contracts/ut... | !thisReveal.processed,"Token: reveal already processed." | 159,831 | !thisReveal.processed |
'Token: Token does not exist' | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.13;
import "./IToken.sol";
import "../interfaces/IRegistryConsumer.sol";
import "../interfaces/IRandomNumberProvider.sol";
import "../interfaces/IRandomNumberRequester.sol";
import "../extras/recovery/BlackHolePrevention.sol";
import "@openzeppelin/contracts/ut... | _exists(_tokenId)||_reserved(_tokenId),'Token: Token does not exist' | 159,831 | _exists(_tokenId)||_reserved(_tokenId) |
"Token: Unauthorised" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.13;
import "./IToken.sol";
import "../interfaces/IRegistryConsumer.sol";
import "../interfaces/IRandomNumberProvider.sol";
import "../interfaces/IRandomNumberRequester.sol";
import "../extras/recovery/BlackHolePrevention.sol";
import "@openzeppelin/contracts/ut... | isAllowed(role,msg.sender),"Token: Unauthorised" | 159,831 | isAllowed(role,msg.sender) |
"CommunityRegistry : Unauthorised" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.13;
import "@openzeppelin/contracts/access/AccessControlEnumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
//import "hardhat/console.sol";
interface IOwnable {
function owner() external view returns (address);
}
contract CommunityRegistry... | isCommunityAdmin(COMMUNITY_REGISTRY_ADMIN),"CommunityRegistry : Unauthorised" | 159,832 | isCommunityAdmin(COMMUNITY_REGISTRY_ADMIN) |
"Montage: Account is already blocked" | // SPDX-License-Identifier: MIT
// Attention all users!
// Montage Token takes a strong stance against any form of malicious trading behaviour. We prioritize the safety & security of our community and our enabling ecosystem.
// Any user (BOT or human) engaging in activities that threaten the integrity of our services... | !_isBlocked[account],"Montage: Account is already blocked" | 159,904 | !_isBlocked[account] |
"Montage: Account is not blcoked" | // SPDX-License-Identifier: MIT
// Attention all users!
// Montage Token takes a strong stance against any form of malicious trading behaviour. We prioritize the safety & security of our community and our enabling ecosystem.
// Any user (BOT or human) engaging in activities that threaten the integrity of our services... | _isBlocked[account],"Montage: Account is not blcoked" | 159,904 | _isBlocked[account] |
"Montage: Account is already the value of 'excluded'" | // SPDX-License-Identifier: MIT
// Attention all users!
// Montage Token takes a strong stance against any form of malicious trading behaviour. We prioritize the safety & security of our community and our enabling ecosystem.
// Any user (BOT or human) engaging in activities that threaten the integrity of our services... | _isExcludedFromFee[account]!=excluded,"Montage: Account is already the value of 'excluded'" | 159,904 | _isExcludedFromFee[account]!=excluded |
"Montage: Account is already the value of 'excluded'" | // SPDX-License-Identifier: MIT
// Attention all users!
// Montage Token takes a strong stance against any form of malicious trading behaviour. We prioritize the safety & security of our community and our enabling ecosystem.
// Any user (BOT or human) engaging in activities that threaten the integrity of our services... | _isExcludedFromMaxWalletLimit[account]!=excluded,"Montage: Account is already the value of 'excluded'" | 159,904 | _isExcludedFromMaxWalletLimit[account]!=excluded |
"Montage: Fees must be less or equal to 5.00%" | // SPDX-License-Identifier: MIT
// Attention all users!
// Montage Token takes a strong stance against any form of malicious trading behaviour. We prioritize the safety & security of our community and our enabling ecosystem.
// Any user (BOT or human) engaging in activities that threaten the integrity of our services... | _targetAFeeOnBuy+_targetBFeeOnBuy+_targetCFeeOnBuy+_burnFeeOnBuy<=5000,"Montage: Fees must be less or equal to 5.00%" | 159,904 | _targetAFeeOnBuy+_targetBFeeOnBuy+_targetCFeeOnBuy+_burnFeeOnBuy<=5000 |
"Montage: Fees must be less or equal to 5.00%" | // SPDX-License-Identifier: MIT
// Attention all users!
// Montage Token takes a strong stance against any form of malicious trading behaviour. We prioritize the safety & security of our community and our enabling ecosystem.
// Any user (BOT or human) engaging in activities that threaten the integrity of our services... | _targetAFeeOnSell+_targetBFeeOnSell+_targetCFeeOnSell+_burnFeeOnSell<=5000,"Montage: Fees must be less or equal to 5.00%" | 159,904 | _targetAFeeOnSell+_targetBFeeOnSell+_targetCFeeOnSell+_burnFeeOnSell<=5000 |
"Montage: Only claim launch tokens after first 5 blocks" | // SPDX-License-Identifier: MIT
// Attention all users!
// Montage Token takes a strong stance against any form of malicious trading behaviour. We prioritize the safety & security of our community and our enabling ecosystem.
// Any user (BOT or human) engaging in activities that threaten the integrity of our services... | block.number-_launchBlockNumber>5,"Montage: Only claim launch tokens after first 5 blocks" | 159,904 | block.number-_launchBlockNumber>5 |
"Montage: Launch tokens have been claimed" | // SPDX-License-Identifier: MIT
// Attention all users!
// Montage Token takes a strong stance against any form of malicious trading behaviour. We prioritize the safety & security of our community and our enabling ecosystem.
// Any user (BOT or human) engaging in activities that threaten the integrity of our services... | !_launchTokensClaimed,"Montage: Launch tokens have been claimed" | 159,904 | !_launchTokensClaimed |
"Montage: Account is blocked" | // SPDX-License-Identifier: MIT
// Attention all users!
// Montage Token takes a strong stance against any form of malicious trading behaviour. We prioritize the safety & security of our community and our enabling ecosystem.
// Any user (BOT or human) engaging in activities that threaten the integrity of our services... | !_isBlocked[to],"Montage: Account is blocked" | 159,904 | !_isBlocked[to] |
"Montage: Account is blocked" | // SPDX-License-Identifier: MIT
// Attention all users!
// Montage Token takes a strong stance against any form of malicious trading behaviour. We prioritize the safety & security of our community and our enabling ecosystem.
// Any user (BOT or human) engaging in activities that threaten the integrity of our services... | !_isBlocked[from],"Montage: Account is blocked" | 159,904 | !_isBlocked[from] |
"The commitment has been submitted" | // https://tornado.cash
/*
* d888888P dP a88888b. dP
* 88 88 d8' `88 88
* 88 .d8888b. 88d888b. 88d888b. .d8888b. .d888b88 .d8888b. 88 .d8888b. .d888... | !commitments[_commitment],"The commitment has been submitted" | 160,026 | !commitments[_commitment] |
"The note has been already spent" | // https://tornado.cash
/*
* d888888P dP a88888b. dP
* 88 88 d8' `88 88
* 88 .d8888b. 88d888b. 88d888b. .d8888b. .d888b88 .d8888b. 88 .d8888b. .d888... | !nullifierHashes[_nullifierHash],"The note has been already spent" | 160,026 | !nullifierHashes[_nullifierHash] |
"Cannot find your merkle root" | // https://tornado.cash
/*
* d888888P dP a88888b. dP
* 88 88 d8' `88 88
* 88 .d8888b. 88d888b. 88d888b. .d8888b. .d888b88 .d8888b. 88 .d8888b. .d888... | isKnownRoot(_root),"Cannot find your merkle root" | 160,026 | isKnownRoot(_root) |
"Invalid withdraw proof" | // https://tornado.cash
/*
* d888888P dP a88888b. dP
* 88 88 d8' `88 88
* 88 .d8888b. 88d888b. 88d888b. .d8888b. .d888b88 .d8888b. 88 .d8888b. .d888... | verifier.verifyProof(_proof,[uint256(_root),uint256(_nullifierHash),uint256(uint160(address(_recipient))),uint256(uint160(address(_relayer))),_fee,_refund]),"Invalid withdraw proof" | 160,026 | verifier.verifyProof(_proof,[uint256(_root),uint256(_nullifierHash),uint256(uint160(address(_recipient))),uint256(uint160(address(_relayer))),_fee,_refund]) |
"Exceeds Max Supply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
import './extensions/ERC721AQueryable_opensea.sol';
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin... | i+totalSupply()<=TOTAL_SUPPLY_LIMIT,"Exceeds Max Supply" | 160,115 | i+totalSupply()<=TOTAL_SUPPLY_LIMIT |
"Exceeds Max Supply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
import './extensions/ERC721AQueryable_opensea.sol';
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin... | contestantsToMint+totalSupply()<=TOTAL_SUPPLY_LIMIT,"Exceeds Max Supply" | 160,115 | contestantsToMint+totalSupply()<=TOTAL_SUPPLY_LIMIT |
"Not whitelisted" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
import './extensions/ERC721AQueryable_opensea.sol';
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin... | MerkleProof.verify(_merkleProof,merkleRoot,keccak256(abi.encodePacked(msg.sender))),"Not whitelisted" | 160,115 | MerkleProof.verify(_merkleProof,merkleRoot,keccak256(abi.encodePacked(msg.sender))) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.