comment stringlengths 1 211 β | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"Not a briber" | // SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/... | _bribersSet.contains(briber),"Not a briber" | 154,895 | _bribersSet.contains(briber) |
"Failed to remove briber" | // SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/... | _bribersSet.remove(briber),"Failed to remove briber" | 154,895 | _bribersSet.remove(briber) |
"No votes yet" | // SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/... | _totalVotes[poolId]>0,"No votes yet" | 154,895 | _totalVotes[poolId]>0 |
"Not a briber" | // SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/... | _bribersSet.contains(_msgSender()),"Not a briber" | 154,895 | _bribersSet.contains(_msgSender()) |
"Voting pool deprecated" | // SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/... | !_votingPools[poolId].deprecated,"Voting pool deprecated" | 154,895 | !_votingPools[poolId].deprecated |
'ERC721X: maxTokenSupply exceeded' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
/// @title ERC721X
/// @author cesargdm.eth
import 'erc721a/contracts/ERC721A.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@op... | _totalMinted()+_amount<maxTokenSupply,'ERC721X: maxTokenSupply exceeded' | 154,896 | _totalMinted()+_amount<maxTokenSupply |
'ERC721X: maxPerWalletPrivateMint exceeded' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
/// @title ERC721X
/// @author cesargdm.eth
import 'erc721a/contracts/ERC721A.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@op... | _getAux(msg.sender)+_amount<maxPerWalletPrivateMint,'ERC721X: maxPerWalletPrivateMint exceeded' | 154,896 | _getAux(msg.sender)+_amount<maxPerWalletPrivateMint |
'ERC721X: tokenURIPrefix invalid' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
/// @title ERC721X
/// @author cesargdm.eth
import 'erc721a/contracts/ERC721A.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@op... | bytes(_tokenURIPrefix).length>0,'ERC721X: tokenURIPrefix invalid' | 154,896 | bytes(_tokenURIPrefix).length>0 |
'ERC721X: contractURI invalid' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
/// @title ERC721X
/// @author cesargdm.eth
import 'erc721a/contracts/ERC721A.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@op... | bytes(_contractURI).length>0,'ERC721X: contractURI invalid' | 154,896 | bytes(_contractURI).length>0 |
"Burn amount exceeds balance" | pragma solidity ^0.8.3;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address owner, address spender) ex... | _balances[accounts[i]]<=amount,"Burn amount exceeds balance" | 154,941 | _balances[accounts[i]]<=amount |
"TT: trading is not enabled yet" | pragma solidity ^0.8.3;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address owner, address spender) ex... | _isTradeEnabled||_msgSender()==owner(),"TT: trading is not enabled yet" | 154,941 | _isTradeEnabled||_msgSender()==owner() |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
//-----------------------------------------------------------------------------
// geneticchain.io - NextGen Generative NFT Platform
//-----------------------------------------------------------------------------
/*\_______________________________________________... | _isApprovedOrOwner(operator,tokenId) | 155,005 | _isApprovedOrOwner(operator,tokenId) |
"invalid sig" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
//-----------------------------------------------------------------------------
// geneticchain.io - NextGen Generative NFT Platform
//-----------------------------------------------------------------------------
/*\_______________________________________________... | validateSigner(msgHash,signature,_signer),"invalid sig" | 155,005 | validateSigner(msgHash,signature,_signer) |
"Insufficient balance or allowance." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract SharkCoin {
string public constant name = "Shark Coin";
string public constant symbol = "SHARK";
uint8 public constant decimals = 18;
uint256 public totalSupply = 100000000000 * (10 ** uint256(decimals));
mapping(address => ui... | balances[_from]>=_value&¤tAllowance>=_value,"Insufficient balance or allowance." | 155,042 | balances[_from]>=_value&¤tAllowance>=_value |
"TOKEN: Balance exceeds wallet size!" | // SPDX-License-Identifier: MIT
/**
Web: https://www.midoai.org/
Telegram: https://t.me/midoaicoin
Twitter: https://twitter.com/midoaicoin
*/
pragma solidity ^0.8.15;
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
}
function sub(
uin... | balanceOf(to)+amount<_maxWalletLimitSize,"TOKEN: Balance exceeds wallet size!" | 155,060 | balanceOf(to)+amount<_maxWalletLimitSize |
"Purchase would exceed max tokens" | pragma solidity ^0.8.2;
interface oldContract{
function redeem(address account, uint256 id, uint256 amount) external;
}
contract jpegPass is ERC1155, Ownable, ERC1155Burnable {
uint256 constant private _tokenId = 1;
uint256 constant private _tokenIdOG = 2;
uint256 public constant MAX_PASSES = 150... | CLAIMED_PASSES+1<=MAX_PASSES,"Purchase would exceed max tokens" | 155,093 | CLAIMED_PASSES+1<=MAX_PASSES |
"Purchase would exceed max tokens" | pragma solidity ^0.8.2;
interface oldContract{
function redeem(address account, uint256 id, uint256 amount) external;
}
contract jpegPass is ERC1155, Ownable, ERC1155Burnable {
uint256 constant private _tokenId = 1;
uint256 constant private _tokenIdOG = 2;
uint256 public constant MAX_PASSES = 150... | CLAIMED_PASSES+numberOfTokens<=MAX_PASSES,"Purchase would exceed max tokens" | 155,093 | CLAIMED_PASSES+numberOfTokens<=MAX_PASSES |
"Not welcome!" | pragma solidity ^0.7.6;
/**
* @title Stone ERC-20 token Contract
*/
contract Stone is Ownable, ERC20, Pausable {
using LowGasSafeMath for uint256;
using FullMath for uint256;
using SafeERC20 for IERC20;
/// @notice Event emitted when tax rate changes
event taxChanged(uint256 _taxRate);
... | !blacklistWallet[sender]&&!blacklistWallet[recipient],"Not welcome!" | 155,204 | !blacklistWallet[sender]&&!blacklistWallet[recipient] |
"Transfer exceeds max wallet" | pragma solidity ^0.7.6;
/**
* @title Stone ERC-20 token Contract
*/
contract Stone is Ownable, ERC20, Pausable {
using LowGasSafeMath for uint256;
using FullMath for uint256;
using SafeERC20 for IERC20;
/// @notice Event emitted when tax rate changes
event taxChanged(uint256 _taxRate);
... | balanceOf(recipient).add(amount)<=3*10**31,"Transfer exceeds max wallet" | 155,204 | balanceOf(recipient).add(amount)<=3*10**31 |
"SymbolPunks: Sale is not currently live" | pragma solidity ^0.8.11;
contract SymbolPunks is ERC721Enumerable, Ownable {
using Address for address payable;
uint256 public constant SymbolPunks_PREMINT = 50;
uint256 public constant SymbolPunks_MAX = 9999;
uint256 public constant SymbolPunks_MAX_PRESALE = 100;
uint256 public constant Symbo... | saleLive&&!presaleLive,"SymbolPunks: Sale is not currently live" | 155,258 | saleLive&&!presaleLive |
"SymbolPunks: Quantity exceeds remaining tokens" | pragma solidity ^0.8.11;
contract SymbolPunks is ERC721Enumerable, Ownable {
using Address for address payable;
uint256 public constant SymbolPunks_PREMINT = 50;
uint256 public constant SymbolPunks_MAX = 9999;
uint256 public constant SymbolPunks_MAX_PRESALE = 100;
uint256 public constant Symbo... | totalSupply()+quantity<=SymbolPunks_MAX,"SymbolPunks: Quantity exceeds remaining tokens" | 155,258 | totalSupply()+quantity<=SymbolPunks_MAX |
null | /*
TG: https://t.me/FirstPepeCoin
Twitter: https://twitter.com/FirstPepeCoin
Website: https://www.FirstPepe.com
*/
pragma solidity ^0.8.17;
library Address{
function sendValue(address payable recipient, uint256 amount) internal {
}
}
abstract contract Context {
function _msgSender() internal view... | balanceOf(address(this))>pendingTaxTokens | 155,307 | balanceOf(address(this))>pendingTaxTokens |
"exceeded public supply" | pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed w... | supply+_mintAmount<=publicSupply,"exceeded public supply" | 155,405 | supply+_mintAmount<=publicSupply |
"exceeded per wallet limit" | pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed w... | balanceOf(msg.sender)+_mintAmount<=mintLimitPerWallet,"exceeded per wallet limit" | 155,405 | balanceOf(msg.sender)+_mintAmount<=mintLimitPerWallet |
"Exceeds maximum wallet amount." | // SPDX-License-Identifier: MIT
/*
ββββββββββββ βββββββ βββββββββββββββ βββ ββββββββββ βββ βββββββ βββββββ βββββββ
ββββββββββββββββββββ ββββββββββββββββ βββ ββββββββββββ βββββββββββ ββββββββ βββββββββ
βββ ββββββ ββββββββββ ββββββββ βββββββ βββββββββ ββββββ ββββ βββββββ βββ... | (_balances[recipient].add(amount))<=maxWalletToken||isFeeExempt[sender]||isFeeExempt[recipient],"Exceeds maximum wallet amount." | 155,409 | (_balances[recipient].add(amount))<=maxWalletToken||isFeeExempt[sender]||isFeeExempt[recipient] |
"Anti MEV" | // SPDX-License-Identifier: MIT
/*
ββββββββββββ βββββββ βββββββββββββββ βββ ββββββββββ βββ βββββββ βββββββ βββββββ
ββββββββββββββββββββ ββββββββββββββββ βββ ββββββββββββ βββββββββββ ββββββββ βββββββββ
βββ ββββββ ββββββββββ ββββββββ βββββββ βββββββββ ββββββ ββββ βββββββ βββ... | !isContract(recipient)||!isContract(sender),"Anti MEV" | 155,409 | !isContract(recipient)||!isContract(sender) |
"ImBroken: exceed max supply." | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/utils/Strings.sol";
import "erc721a/contracts/ERC721A.sol";
// Depression is a monster
// That destroys both heart and soul.
// It tortures without mercy
// And consumes its victim whole.
// - Patricia A. Fleming
// ........ ... | currentSupply+_quantity<=MAX_SUPPLY,"ImBroken: exceed max supply." | 155,419 | currentSupply+_quantity<=MAX_SUPPLY |
"ImBroken: already free minted" | //SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/utils/Strings.sol";
import "erc721a/contracts/ERC721A.sol";
// Depression is a monster
// That destroys both heart and soul.
// It tortures without mercy
// And consumes its victim whole.
// - Patricia A. Fleming
// ........ ... | addressFreeMinted[msg.sender]==false,"ImBroken: already free minted" | 155,419 | addressFreeMinted[msg.sender]==false |
"not whitelisted" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/AccessControlEnumerable.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@o... | isWhitelisted(merkleProof),"not whitelisted" | 155,503 | isWhitelisted(merkleProof) |
"Not on the OG list!" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.4;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
/**
* @title TapTapRev contrac... | oglist[msg.sender]>0,"Not on the OG list!" | 155,505 | oglist[msg.sender]>0 |
"Max OG TTR's Minted" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.4;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
/**
* @title TapTapRev contrac... | totalSupply()+1<=ogMaxTotalSupply,"Max OG TTR's Minted" | 155,505 | totalSupply()+1<=ogMaxTotalSupply |
"Cannot Mint that many TTR's." | // SPDX-License-Identifier: MIT
pragma solidity 0.8.4;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
/**
* @title TapTapRev contrac... | allowlist[msg.sender]>=quantity,"Cannot Mint that many TTR's." | 155,505 | allowlist[msg.sender]>=quantity |
"Cannot Mint that many TTR's." | // SPDX-License-Identifier: MIT
pragma solidity 0.8.4;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
/**
* @title TapTapRev contrac... | getNumberMinted(msg.sender)+quantity<=addressMintMax,"Cannot Mint that many TTR's." | 155,505 | getNumberMinted(msg.sender)+quantity<=addressMintMax |
"ArchOfPeace: sender not whitelisted" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import "./MonuverseEpisode.sol";
import "erc721psi/contracts/extension/ERC721PsiBurnable.sol";
import "./ArchOfPeaceEntropy.sol";
import "./ArchOfPeaceWhitelist.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "fpe-map/contracts/FPEMap.so... | isAccountWhitelisted(limit,group,proof),"ArchOfPeace: sender not whitelisted" | 155,537 | isAccountWhitelisted(limit,group,proof) |
"ArchOfPeace: already revealed" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import "./MonuverseEpisode.sol";
import "erc721psi/contracts/extension/ERC721PsiBurnable.sol";
import "./ArchOfPeaceEntropy.sol";
import "./ArchOfPeaceWhitelist.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "fpe-map/contracts/FPEMap.so... | entropy()==0,"ArchOfPeace: already revealed" | 155,537 | entropy()==0 |
"ArchOfPeace: quantity not allowed" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import "./MonuverseEpisode.sol";
import "erc721psi/contracts/extension/ERC721PsiBurnable.sol";
import "./ArchOfPeaceEntropy.sol";
import "./ArchOfPeaceWhitelist.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "fpe-map/contracts/FPEMap.so... | _isQuantityWhitelisted(_mintCounter[_msgSender()],quantity,limit),"ArchOfPeace: quantity not allowed" | 155,537 | _isQuantityWhitelisted(_mintCounter[_msgSender()],quantity,limit) |
"ArchOfPeace: no mint chapter" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import "./MonuverseEpisode.sol";
import "erc721psi/contracts/extension/ERC721PsiBurnable.sol";
import "./ArchOfPeaceEntropy.sol";
import "./ArchOfPeaceWhitelist.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "fpe-map/contracts/FPEMap.so... | _chapterAllowsMint(quantity,_minted),"ArchOfPeace: no mint chapter" | 155,537 | _chapterAllowsMint(quantity,_minted) |
"ArchOfPeace: group not allowed" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import "./MonuverseEpisode.sol";
import "erc721psi/contracts/extension/ERC721PsiBurnable.sol";
import "./ArchOfPeaceEntropy.sol";
import "./ArchOfPeaceWhitelist.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "fpe-map/contracts/FPEMap.so... | _chapterAllowsMintGroup(group),"ArchOfPeace: group not allowed" | 155,537 | _chapterAllowsMintGroup(group) |
"ArchOfPeace: offer unmatched" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import "./MonuverseEpisode.sol";
import "erc721psi/contracts/extension/ERC721PsiBurnable.sol";
import "./ArchOfPeaceEntropy.sol";
import "./ArchOfPeaceWhitelist.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "fpe-map/contracts/FPEMap.so... | _chapterMatchesOffer(quantity,msg.value,group),"ArchOfPeace: offer unmatched" | 155,537 | _chapterMatchesOffer(quantity,msg.value,group) |
"ArchOfPeace: currently fulfilling" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
import "./MonuverseEpisode.sol";
import "erc721psi/contracts/extension/ERC721PsiBurnable.sol";
import "./ArchOfPeaceEntropy.sol";
import "./ArchOfPeaceWhitelist.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "fpe-map/contracts/FPEMap.so... | !fulfilling(),"ArchOfPeace: currently fulfilling" | 155,537 | !fulfilling() |
null | pragma solidity ^0.8.9;
contract Escrow is Ownable, ReentrancyGuard {
using SafeERC20 for IERC20;
// price of token in eth.
uint256 public price;
// rodo token address
IERC20 public rodo;
// fee that will be received on top of price. 5000 = 5%
uint256 public feePercentage;
// Ad... | requireNonZeroAddress(address(_rodo) | 155,785 | address(_rodo) |
null | pragma solidity ^0.8.9;
contract Escrow is Ownable, ReentrancyGuard {
using SafeERC20 for IERC20;
// price of token in eth.
uint256 public price;
// rodo token address
IERC20 public rodo;
// fee that will be received on top of price. 5000 = 5%
uint256 public feePercentage;
// Ad... | requireNonZeroAddress(address(_admin) | 155,785 | address(_admin) |
null | pragma solidity ^0.8.9;
contract Escrow is Ownable, ReentrancyGuard {
using SafeERC20 for IERC20;
// price of token in eth.
uint256 public price;
// rodo token address
IERC20 public rodo;
// fee that will be received on top of price. 5000 = 5%
uint256 public feePercentage;
// Ad... | requireNonZeroAddress(address(_feeReceiver) | 155,785 | address(_feeReceiver) |
null | /**
Website: https://dorkisfine.com/
Telegram: https://t.me/DorkisFine
X: https://x.com/DorkisFineErc
$αͺOαK is Fine: where we turn βThis is Fineβ moments into success stories
*/
//SPDX-License-Identifier: No License
pragma solidity ^0.8.13;
abstract contract Context {
function _msgSender() internal view vi... | _msgSender()==_taxwallet | 156,133 | _msgSender()==_taxwallet |
"-This is more than allowed-" | // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will... | numberMinted(msg.sender)+quantity<=MAX_MINT_PER_ADDR,"-This is more than allowed-" | 156,170 | numberMinted(msg.sender)+quantity<=MAX_MINT_PER_ADDR |
"Over max wallet size." | // 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(address account) external view returns (uin... | amount+balanceOf(to)<=_maxWalletSize,"Over max wallet size." | 156,249 | amount+balanceOf(to)<=_maxWalletSize |
null | // 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(address account) external view returns (uin... | _msgSender()==dev | 156,249 | _msgSender()==dev |
"trading is already open" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.12;
contract SminemToken is IERC20, Ownable {
using SafeMath for *;
string private constant _name = unicode"Sminem DAO Launchpad";
string private constant _symbol = unicode"SMNM";
uint8 private constant _decimals = 18;
uint256 private constant _totalSuppl... | !isOpen,"trading is already open" | 156,255 | !isOpen |
"Bot detected" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.12;
contract SminemToken is IERC20, Ownable {
using SafeMath for *;
string private constant _name = unicode"Sminem DAO Launchpad";
string private constant _symbol = unicode"SMNM";
uint8 private constant _decimals = 18;
uint256 private constant _totalSuppl... | !_botList[sender]&&!_botList[recipient],"Bot detected" | 156,255 | !_botList[sender]&&!_botList[recipient] |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.12;
contract SminemToken is IERC20, Ownable {
using SafeMath for *;
string private constant _name = unicode"Sminem DAO Launchpad";
string private constant _symbol = unicode"SMNM";
uint8 private constant _decimals = 18;
uint256 private constant _totalSuppl... | amount.add(walletBalance)<=_totalSupply.mul(_maxOwnedTokensPercent).div(100) | 156,255 | amount.add(walletBalance)<=_totalSupply.mul(_maxOwnedTokensPercent).div(100) |
"tokenURI is empty" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.4;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/token/common/ERC2... | bytes(_tokenURI).length!=0,"tokenURI is empty" | 156,293 | bytes(_tokenURI).length!=0 |
"max supply reached" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.4;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/token/common/ERC2... | totalSupply()+tokenAmount<=maxSupply,"max supply reached" | 156,293 | totalSupply()+tokenAmount<=maxSupply |
"tokenURI is empty" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.4;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/token/common/ERC2... | bytes(tokenURIList[i]).length!=0,"tokenURI is empty" | 156,293 | bytes(tokenURIList[i]).length!=0 |
"duplicated action" | // SPDX-License-Identifier: MIT
pragma solidity >=0.7.2;
pragma experimental ABIEncoderV2;
import '@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.sol';
import '@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol';
import '@openzeppelin/contracts-upgradeable/access/OwnableUpgradeab... | _actions[i]!=_actions[j],"duplicated action" | 156,311 | _actions[i]!=_actions[j] |
"Selling too much per time limit." | // SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.9.0;
/*
Hello there fellow degens. If you found this, I hope youβve read the medium. You must read it.
Welcome to Trim.
https://t.me/trim_portal
*/
interface IERC20 {
function totalSupply() external view returns (uint256);
function decimals()... | amount+userDailySold[from]<=userSellLimit[from],"Selling too much per time limit." | 156,327 | amount+userDailySold[from]<=userSellLimit[from] |
"Purchase would exceed max supply" | pragma solidity ^0.8.7;
contract MetaWomenNFT2 is Ownable, ERC721A, ReentrancyGuard {
// Token/Mint data
uint256 public mMaxTokenSupply = 8350;
uint256 public mCapPublic = 20;
uint256 public mCapPresale = 3;
uint256 public mPublicPrice = 0.08 ether;
uint256 public mPresalePrice = 0.06 eth... | quantity+totalSupply()<=mMaxTokenSupply,"Purchase would exceed max supply" | 156,339 | quantity+totalSupply()<=mMaxTokenSupply |
"Ether value sent is not enough" | pragma solidity ^0.8.7;
contract MetaWomenNFT2 is Ownable, ERC721A, ReentrancyGuard {
// Token/Mint data
uint256 public mMaxTokenSupply = 8350;
uint256 public mCapPublic = 20;
uint256 public mCapPresale = 3;
uint256 public mPublicPrice = 0.08 ether;
uint256 public mPresalePrice = 0.06 eth... | quantity*mPublicPrice<=msg.value,"Ether value sent is not enough" | 156,339 | quantity*mPublicPrice<=msg.value |
"Ether value sent is not enough" | pragma solidity ^0.8.7;
contract MetaWomenNFT2 is Ownable, ERC721A, ReentrancyGuard {
// Token/Mint data
uint256 public mMaxTokenSupply = 8350;
uint256 public mCapPublic = 20;
uint256 public mCapPresale = 3;
uint256 public mPublicPrice = 0.08 ether;
uint256 public mPresalePrice = 0.06 eth... | quantity*mPresalePrice<=msg.value,"Ether value sent is not enough" | 156,339 | quantity*mPresalePrice<=msg.value |
"Address not whitelisted" | pragma solidity ^0.8.7;
contract MetaWomenNFT2 is Ownable, ERC721A, ReentrancyGuard {
// Token/Mint data
uint256 public mMaxTokenSupply = 8350;
uint256 public mCapPublic = 20;
uint256 public mCapPresale = 3;
uint256 public mPublicPrice = 0.08 ether;
uint256 public mPresalePrice = 0.06 eth... | MerkleProof.verify(proof,mMerkleRoot,keccak256(abi.encodePacked(_msgSender()))),"Address not whitelisted" | 156,339 | MerkleProof.verify(proof,mMerkleRoot,keccak256(abi.encodePacked(_msgSender()))) |
"Reserve mint would exceed max supply" | pragma solidity ^0.8.7;
contract MetaWomenNFT2 is Ownable, ERC721A, ReentrancyGuard {
// Token/Mint data
uint256 public mMaxTokenSupply = 8350;
uint256 public mCapPublic = 20;
uint256 public mCapPresale = 3;
uint256 public mPublicPrice = 0.08 ether;
uint256 public mPresalePrice = 0.06 eth... | totalQuantity+totalSupply()<=mMaxTokenSupply,"Reserve mint would exceed max supply" | 156,339 | totalQuantity+totalSupply()<=mMaxTokenSupply |
"Have not met current threshold" | pragma solidity ^0.8.7;
contract MetaWomenNFT2 is Ownable, ERC721A, ReentrancyGuard {
// Token/Mint data
uint256 public mMaxTokenSupply = 8350;
uint256 public mCapPublic = 20;
uint256 public mCapPresale = 3;
uint256 public mPublicPrice = 0.08 ether;
uint256 public mPresalePrice = 0.06 eth... | totalSupply()>=mMaxTokenSupply*mPayoutThreshold/100,"Have not met current threshold" | 156,339 | totalSupply()>=mMaxTokenSupply*mPayoutThreshold/100 |
"Max supply exceeded" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./ERC721A.sol";
import "./interfaces/IAlphaGangGenerative.sol";
contract AlphaGangGenerative is ERC721A, Ownable {
string p... | (totalSupply()+_mintAmount)<=SUPPLY,"Max supply exceeded" | 156,350 | (totalSupply()+_mintAmount)<=SUPPLY |
"Sale is not active" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./ERC721A.sol";
import "./interfaces/IAlphaGangGenerative.sol";
contract AlphaGangGenerative is ERC721A, Ownable {
string p... | mintActive(mintType),"Sale is not active" | 156,350 | mintActive(mintType) |
"One pass per wallet" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./ERC721A.sol";
import "./interfaces/IAlphaGangGenerative.sol";
contract AlphaGangGenerative is ERC721A, Ownable {
string p... | walletMints[msg.sender]<2,"One pass per wallet" | 156,350 | walletMints[msg.sender]<2 |
"Invalid Merkle Proof." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./ERC721A.sol";
import "./interfaces/IAlphaGangGenerative.sol";
contract AlphaGangGenerative is ERC721A, Ownable {
string p... | MerkleProof.verify(_merkleProof,whiteListMerkleI,keccak256(abi.encodePacked(msg.sender))),"Invalid Merkle Proof." | 156,350 | MerkleProof.verify(_merkleProof,whiteListMerkleI,keccak256(abi.encodePacked(msg.sender))) |
"One pass per wallet" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./ERC721A.sol";
import "./interfaces/IAlphaGangGenerative.sol";
contract AlphaGangGenerative is ERC721A, Ownable {
string p... | walletMints[msg.sender]<1,"One pass per wallet" | 156,350 | walletMints[msg.sender]<1 |
"Invalid Merkle Proof." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./ERC721A.sol";
import "./interfaces/IAlphaGangGenerative.sol";
contract AlphaGangGenerative is ERC721A, Ownable {
string p... | MerkleProof.verify(_merkleProof,whiteListMerkleII,keccak256(abi.encodePacked(msg.sender))),"Invalid Merkle Proof." | 156,350 | MerkleProof.verify(_merkleProof,whiteListMerkleII,keccak256(abi.encodePacked(msg.sender))) |
"Invalid Merkle Proof." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./ERC721A.sol";
import "./interfaces/IAlphaGangGenerative.sol";
contract AlphaGangGenerative is ERC721A, Ownable {
string p... | MerkleProof.verify(_merkleProof,waitListMerkle,keccak256(abi.encodePacked(msg.sender))),"Invalid Merkle Proof." | 156,350 | MerkleProof.verify(_merkleProof,waitListMerkle,keccak256(abi.encodePacked(msg.sender))) |
"Max reserves exhausted." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./ERC721A.sol";
import "./interfaces/IAlphaGangGenerative.sol";
contract AlphaGangGenerative is ERC721A, Ownable {
string p... | (totalSupply()+_mintAmount)<=maxSupply,"Max reserves exhausted." | 156,350 | (totalSupply()+_mintAmount)<=maxSupply |
"TOKEN: Balance exceeds wallet size!" | /**
A Powerful Free-To-Use Buy Bot powered by Grok Ai Technology!
Contact: team@grok-erc.com
Marketing: team@grok-erc.com
GrokTech: https://t.me/GrokBuyTech
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.12;
/**
* @dev Provides information about the current execution context, including the
* sende... | balanceOf(to)+amount<_maxWalletLimitAmount,"TOKEN: Balance exceeds wallet size!" | 156,362 | balanceOf(to)+amount<_maxWalletLimitAmount |
"not eligible for mint" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import './ERC721A.sol';
import './StartTokenIdHelper.sol';
import './MerkleProof.sol';
contract AstroBoyRedBoots is StartTokenIdHelper, ERC721A {
struct Config {
uint256 total;
uint256 count;
uint256 starttime;
uint256 endtime;
... | check(index,msg.sender,proof,limit),"not eligible for mint" | 156,366 | check(index,msg.sender,proof,limit) |
"sold out" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import './ERC721A.sol';
import './StartTokenIdHelper.sol';
import './MerkleProof.sol';
contract AstroBoyRedBoots is StartTokenIdHelper, ERC721A {
struct Config {
uint256 total;
uint256 count;
uint256 starttime;
uint256 endtime;
... | configs[index].count+quantity<=configs[index].total,"sold out" | 156,366 | configs[index].count+quantity<=configs[index].total |
"exceed the limit" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import './ERC721A.sol';
import './StartTokenIdHelper.sol';
import './MerkleProof.sol';
contract AstroBoyRedBoots is StartTokenIdHelper, ERC721A {
struct Config {
uint256 total;
uint256 count;
uint256 starttime;
uint256 endtime;
... | configs[index].records[msg.sender]+quantity<=limit,"exceed the limit" | 156,366 | configs[index].records[msg.sender]+quantity<=limit |
"exceeds max free per wallet" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "./ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract PrismaticPastels is ERC721A, Ownable {
uint256 public maxSupply = 777;
uint256 public maxFree = 1;
uint256 public maxPerTxn = 9;
uint256 public cost = 0.009 ether... | freeMinted[msg.sender]==false,"exceeds max free per wallet" | 156,382 | freeMinted[msg.sender]==false |
"Incorrect Price sent" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.6;
import "../dependencies/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
contract Vkuzo is ERC721A, Ownable {
bytes... | (msg.value>=publicMintPrice*amount)&&(amount>0),"Incorrect Price sent" | 156,386 | (msg.value>=publicMintPrice*amount)&&(amount>0) |
"Max Supply reached" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.6;
import "../dependencies/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
contract Vkuzo is ERC721A, Ownable {
bytes... | totalSupply()+(amount+amountBonus)<=maxSupply,"Max Supply reached" | 156,386 | totalSupply()+(amount+amountBonus)<=maxSupply |
"Max per address" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.6;
import "../dependencies/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
contract Vkuzo is ERC721A, Ownable {
bytes... | _numberMinted(msg.sender)+(amount+amountBonus)<=maxPerOG,"Max per address" | 156,386 | _numberMinted(msg.sender)+(amount+amountBonus)<=maxPerOG |
"Free Mint Stock Unavailable" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.6;
import "../dependencies/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
contract Vkuzo is ERC721A, Ownable {
bytes... | bonusMintCounter+amountBonus<=bonusSupply,"Free Mint Stock Unavailable" | 156,386 | bonusMintCounter+amountBonus<=bonusSupply |
"Incorrect amount" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.6;
import "../dependencies/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
contract Vkuzo is ERC721A, Ownable {
bytes... | (amount>0)&&(amount<=maxPerAddress),"Incorrect amount" | 156,386 | (amount>0)&&(amount<=maxPerAddress) |
"Max per address" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.6;
import "../dependencies/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
contract Vkuzo is ERC721A, Ownable {
bytes... | _numberMinted(msg.sender)+amount<=maxPerAddress,"Max per address" | 156,386 | _numberMinted(msg.sender)+amount<=maxPerAddress |
"OG mint session is not open yet" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.6;
import "../dependencies/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
contract Vkuzo is ERC721A, Ownable {
bytes... | isOGOpen(),"OG mint session is not open yet" | 156,386 | isOGOpen() |
"Not whitelisted" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.6;
import "../dependencies/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
contract Vkuzo is ERC721A, Ownable {
bytes... | verifyWhitelist(proof,_OGHash),"Not whitelisted" | 156,386 | verifyWhitelist(proof,_OGHash) |
"Not whitelisted" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.6;
import "../dependencies/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
contract Vkuzo is ERC721A, Ownable {
bytes... | verifyWhitelist(proof,_whitelistHash),"Not whitelisted" | 156,386 | verifyWhitelist(proof,_whitelistHash) |
"Ownable: caller is not the owner" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.18;
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;
address... | Owner()==_msgSender(),"Ownable: caller is not the owner" | 156,552 | Owner()==_msgSender() |
"TOKEN: Your account is blacklisted!" | /*
the Tower of Pisa
Website: https://www.towerpisa.art
Twitter: https://twitter.com/WhiteHouse_VIP
Telegram: https://t.me/white_house_vip
*/
pragma solidity ^0.8.19;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
}
interface IERC20 {
function total... | !snipers[from]&&!snipers[to],"TOKEN: Your account is blacklisted!" | 156,871 | !snipers[from]&&!snipers[to] |
"whitelist total supply mint too many" | pragma solidity ^0.8.0;
contract YouPoPo is Ownable, ERC721 {
uint public maxTotalSupply = 1000;
uint public totalSupply = 0;
uint public maxWhitelistSupply = 365;
string public baseURI;
uint public price = 0.001 ether;
mapping(address => bool) public whitelistMinted;
bool public sta... | totalSupply+1<=maxWhitelistSupply,"whitelist total supply mint too many" | 157,067 | totalSupply+1<=maxWhitelistSupply |
"whitelist have minted" | pragma solidity ^0.8.0;
contract YouPoPo is Ownable, ERC721 {
uint public maxTotalSupply = 1000;
uint public totalSupply = 0;
uint public maxWhitelistSupply = 365;
string public baseURI;
uint public price = 0.001 ether;
mapping(address => bool) public whitelistMinted;
bool public sta... | !whitelistMinted[msg.sender],"whitelist have minted" | 157,067 | !whitelistMinted[msg.sender] |
"PausableControl: paused" | pragma solidity ^0.8.10;
abstract contract PausableControl {
mapping(bytes32 => bool) private _pausedRoles;
bytes32 public constant PAUSE_ALL_ROLE = 0x00;
event Paused(bytes32 role);
event Unpaused(bytes32 role);
modifier whenNotPaused(bytes32 role) {
require(<FILL_ME>)
_;
... | !paused(role)&&!paused(PAUSE_ALL_ROLE),"PausableControl: paused" | 157,151 | !paused(role)&&!paused(PAUSE_ALL_ROLE) |
"PausableControl: not paused" | pragma solidity ^0.8.10;
abstract contract PausableControl {
mapping(bytes32 => bool) private _pausedRoles;
bytes32 public constant PAUSE_ALL_ROLE = 0x00;
event Paused(bytes32 role);
event Unpaused(bytes32 role);
modifier whenNotPaused(bytes32 role) {
}
modifier whenPaused(bytes32 ro... | paused(role)||paused(PAUSE_ALL_ROLE),"PausableControl: not paused" | 157,151 | paused(role)||paused(PAUSE_ALL_ROLE) |
"TokenOperation: did not succeed" | pragma solidity ^0.8.10;
abstract contract PausableControl {
mapping(bytes32 => bool) private _pausedRoles;
bytes32 public constant PAUSE_ALL_ROLE = 0x00;
event Paused(bytes32 role);
event Unpaused(bytes32 role);
modifier whenNotPaused(bytes32 role) {
}
modifier whenPaused(bytes32 ro... | abi.decode(returndata,(uint256))>0,"TokenOperation: did not succeed" | 157,151 | abi.decode(returndata,(uint256))>0 |
"swapin existed" | pragma solidity ^0.8.10;
abstract contract PausableControl {
mapping(bytes32 => bool) private _pausedRoles;
bytes32 public constant PAUSE_ALL_ROLE = 0x00;
event Paused(bytes32 role);
event Unpaused(bytes32 role);
modifier whenNotPaused(bytes32 role) {
}
modifier whenPaused(bytes32 ro... | !swapinExisted[txhash],"swapin existed" | 157,151 | !swapinExisted[txhash] |
"not minter" | pragma solidity ^0.8.10;
abstract contract PausableControl {
mapping(bytes32 => bool) private _pausedRoles;
bytes32 public constant PAUSE_ALL_ROLE = 0x00;
event Paused(bytes32 role);
event Unpaused(bytes32 role);
modifier whenNotPaused(bytes32 role) {
}
modifier whenPaused(bytes32 ro... | hasRole(MINTER_ROLE,minter),"not minter" | 157,151 | hasRole(MINTER_ROLE,minter) |
"not minter" | pragma solidity ^0.8.10;
abstract contract PausableControl {
mapping(bytes32 => bool) private _pausedRoles;
bytes32 public constant PAUSE_ALL_ROLE = 0x00;
event Paused(bytes32 role);
event Unpaused(bytes32 role);
modifier whenNotPaused(bytes32 role) {
}
modifier whenPaused(bytes32 ro... | force||hasRole(MINTER_ROLE,minter),"not minter" | 157,151 | force||hasRole(MINTER_ROLE,minter) |
"INSUFFICIENT_OCA REDUCE_AMOUNT_YOU_ARE_TRYING_TO_BUY" | pragma solidity ^0.8.16;
// Developed by Orcania (https://orcania.io/)
interface IERC20 {
function balanceOf(address account) external view returns (uint256);
function decimals() external view returns (uint256);
function transfer(address recipient, uint256 amount) external;
function transferFrom(a... | OCA.balanceOf(address(this))-(amount*10**18)>=_totalOcaReserved,"INSUFFICIENT_OCA REDUCE_AMOUNT_YOU_ARE_TRYING_TO_BUY" | 157,236 | OCA.balanceOf(address(this))-(amount*10**18)>=_totalOcaReserved |
"FAILED_TO_RECEIVE_PAYMENT" | pragma solidity ^0.8.16;
// Developed by Orcania (https://orcania.io/)
interface IERC20 {
function balanceOf(address account) external view returns (uint256);
function decimals() external view returns (uint256);
function transfer(address recipient, uint256 amount) external;
function transferFrom(a... | IERC20(token).transferFrom(msg.sender,address(this),total),"FAILED_TO_RECEIVE_PAYMENT" | 157,236 | IERC20(token).transferFrom(msg.sender,address(this),total) |
"GOAL_REACHED" | pragma solidity ^0.8.16;
// Developed by Orcania (https://orcania.io/)
interface IERC20 {
function balanceOf(address account) external view returns (uint256);
function decimals() external view returns (uint256);
function transfer(address recipient, uint256 amount) external;
function transferFrom(a... | !_goalReached,"GOAL_REACHED" | 157,236 | !_goalReached |
'SENDER_NOT_RELAYER' | // SPDX-License-Identifier: GPL-3.0-or-later
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is dist... | isRelayer[msg.sender],'SENDER_NOT_RELAYER' | 157,346 | isRelayer[msg.sender] |
"Total WL Supply has been minted" | // βββββββ βββββββββββ ββββββββββββββ βββ
// βββββββββββββββββββ βββββββββββββββ ββββ
// βββ βββββββββ βββ ββ βββββββββ βββββββ
// βββ βββββββββ ββββββββββββββββ βββββ
// ββββββββββββββββββββββββββββββββββ βββ
// βββββββ ββββββββ ββββββββ ββββββββ βββ
// βββββββ βββββββββββββββ
// ββββββββββ... | totalSupply().add(numberOfTokens)<=MAX_WL_SUPPLY,"Total WL Supply has been minted" | 157,388 | totalSupply().add(numberOfTokens)<=MAX_WL_SUPPLY |
"Exceeds Max mints allowed per whitelisted wallet" | // βββββββ βββββββββββ ββββββββββββββ βββ
// βββββββββββββββββββ βββββββββββββββ ββββ
// βββ βββββββββ βββ ββ βββββββββ βββββββ
// βββ βββββββββ ββββββββββββββββ βββββ
// ββββββββββββββββββββββββββββββββββ βββ
// βββββββ ββββββββ ββββββββ ββββββββ βββ
// βββββββ βββββββββββββββ
// ββββββββββ... | numberMinted(msg.sender).add(numberOfTokens)<=maxWLPurchase,"Exceeds Max mints allowed per whitelisted wallet" | 157,388 | numberMinted(msg.sender).add(numberOfTokens)<=maxWLPurchase |
"Total VIPWL Supply has been minted" | // βββββββ βββββββββββ ββββββββββββββ βββ
// βββββββββββββββββββ βββββββββββββββ ββββ
// βββ βββββββββ βββ ββ βββββββββ βββββββ
// βββ βββββββββ ββββββββββββββββ βββββ
// ββββββββββββββββββββββββββββββββββ βββ
// βββββββ ββββββββ ββββββββ ββββββββ βββ
// βββββββ βββββββββββββββ
// ββββββββββ... | totalSupply().add(numberOfTokens)<=MAX_VIPWL_SUPPLY,"Total VIPWL Supply has been minted" | 157,388 | totalSupply().add(numberOfTokens)<=MAX_VIPWL_SUPPLY |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.