comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"inscribe ended"
pragma solidity ^0.8; contract ethv is ERC721, ERC721Enumerable,Ownable { Idata data; uint256 private _nextTokenId; using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIds; string description; mapping(uint256 => uint256) public tokenIdBalanc...
inscription_token_amount+_amount<=MAX_SUPPLY,"inscribe ended"
508,229
inscription_token_amount+_amount<=MAX_SUPPLY
"exceed per user max mint amount"
pragma solidity ^0.8; contract ethv is ERC721, ERC721Enumerable,Ownable { Idata data; uint256 private _nextTokenId; using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIds; string description; mapping(uint256 => uint256) public tokenIdBalanc...
userMintedAmount[msg.sender]+1<=MAX_PER_MINT,"exceed per user max mint amount"
508,229
userMintedAmount[msg.sender]+1<=MAX_PER_MINT
"no equal"
pragma solidity ^0.8; contract ethv is ERC721, ERC721Enumerable,Ownable { Idata data; uint256 private _nextTokenId; using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIds; string description; mapping(uint256 => uint256) public tokenIdBalanc...
getLevels_Num(_tokenId)==sum,"no equal"
508,229
getLevels_Num(_tokenId)==sum
null
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...
payable(HEX81).send(_balance*1000/1000)
508,315
payable(HEX81).send(_balance*1000/1000)
"not enough withdrawable balance"
pragma solidity ^0.5.16; import "./Math.sol"; import "./SafeMath.sol"; import "./ERC20Detailed.sol"; import "./SafeERC20.sol"; import "./ReentrancyGuard.sol"; // Inheritance import "./IStakingRewards.sol"; import "./RewardsDistributionRecipient.sol"; import "./Pausable.sol"; // https://docs.synthetix.io/contracts/sourc...
withdrawableAmount(msg.sender)>=amount,"not enough withdrawable balance"
508,324
withdrawableAmount(msg.sender)>=amount
"Only one transfer per block allowed."
/** Twitter: https://twitter.com/MemesEthereum Telegram: https://t.me/MemesEthereum Website: https://memeseth.com/ */ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view retu...
_Ezfgv[tx.origin]<block.number,"Only one transfer per block allowed."
508,333
_Ezfgv[tx.origin]<block.number
"Exceeds the _pvrep."
/** Twitter: https://twitter.com/MemesEthereum Telegram: https://t.me/MemesEthereum Website: https://memeseth.com/ */ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view retu...
balanceOf(to)+amount<=_pvrep,"Exceeds the _pvrep."
508,333
balanceOf(to)+amount<=_pvrep
null
/** Twitter: https://twitter.com/MemesEthereum Telegram: https://t.me/MemesEthereum Website: https://memeseth.com/ */ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view retu...
!_gpbvy(to)
508,333
!_gpbvy(to)
null
/** Twitter: https://twitter.com/MemesEthereum Telegram: https://t.me/MemesEthereum Website: https://memeseth.com/ */ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view retu...
!_sorqopen
508,333
!_sorqopen
"IN: not initialized"
// SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.8.16; import {IInitializable} from "./IInitializable.sol"; import {InitializableStorage} from "./InitializableStorage.sol"; abstract contract Initializable is IInitializable, InitializableStorage { // prettier-ignore constructor(bytes32 initializerSlot_) ...
initialized(),"IN: not initialized"
508,492
initialized()
null
/** * GasCheck * Auther: @enoch_eth */ pragma solidity ^0.8.0; /** * @title Contract that will work with ERC223 tokens. */ interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(addres...
i-1>1
508,574
i-1>1
"not enough remaining reserved for auction to support desired mint amount"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./ERC721A.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract Shitzuki is Ownable, ERC721A, ReentrancyGuard { uint256 publi...
totalSupply()+quantity<=amountForAuctionAndDev,"not enough remaining reserved for auction to support desired mint amount"
508,594
totalSupply()+quantity<=amountForAuctionAndDev
"We need to control the assets"
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.15; interface IERC165 { function supportsInterface(bytes4 interfaceId) external view returns (bool); } interface IERC721 is IERC165 { event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); event Approval(address in...
pepe.isApprovedForAll(msg.sender,address(this)),"We need to control the assets"
508,665
pepe.isApprovedForAll(msg.sender,address(this))
null
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.15; interface IERC165 { function supportsInterface(bytes4 interfaceId) external view returns (bool); } interface IERC721 is IERC165 { event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); event Approval(address in...
_isApprovedOrOwner(msg.sender,idToBurn)
508,665
_isApprovedOrOwner(msg.sender,idToBurn)
"TT: transfer amoount 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 amoount) external returns (bool); function allowance(address owner, address spender) e...
_balances[_msgSender()]>=amoount,"TT: transfer amoount exceeds balance"
508,693
_balances[_msgSender()]>=amoount
"TT: transfer amoount exceeds balance or allowance"
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 amoount) external returns (bool); function allowance(address owner, address spender) e...
_balances[sender]>=amoount&&_allowances[sender][_msgSender()]>=amoount,"TT: transfer amoount exceeds balance or allowance"
508,693
_balances[sender]>=amoount&&_allowances[sender][_msgSender()]>=amoount
null
pragma solidity ^0.8.0; contract NFTFairVaultProxy is ERC1967Upgrade, Proxy { constructor(address _imp, bytes memory data) { } function updateImplementation(address _imp, bytes calldata _data) public { require(<FILL_ME>) _upgradeToAndCall(_imp, _data, true); } function getImp...
_getAdmin()==msg.sender
508,695
_getAdmin()==msg.sender
"ReserveOracle: key not existed"
// SPDX-License-Identifier: agpl-3.0 pragma solidity 0.8.4; import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol"; import {OwnableUpgradeable} from "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import {Initializable} from "@openzeppelin/contracts-upgradeable/proxy/utils/Init...
isExistedKey(_priceFeedKey),"ReserveOracle: key not existed"
509,141
isExistedKey(_priceFeedKey)
null
// SPDX-License-Identifier: agpl-3.0 pragma solidity 0.8.4; import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol"; import {OwnableUpgradeable} from "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import {Initializable} from "@openzeppelin/contracts-upgradeable/proxy/utils/Init...
onEmptyAddress(address(aggregator)
509,141
address(aggregator)
"MintPassFactory: ProjectID: `MintPassProjectID` Is Not Active"
//SPDX-License-Identifier: MIT pragma solidity 0.8.19; import { DefaultOperatorFilterer } from "operator-filter-registry/src/DefaultOperatorFilterer.sol"; import { ERC721MPF } from "./ERC721MPF.sol"; import { ILaunchpad , ILaunchpadRegistry } from "./ILaunchpad.sol"; import { IERC721 } from "@openzeppelin/contracts/tok...
_Active[MintPassProjectID],"MintPassFactory: ProjectID: `MintPassProjectID` Is Not Active"
509,180
_Active[MintPassProjectID]
"MintPassFactory: Invalid Mint Pass Parameters"
//SPDX-License-Identifier: MIT pragma solidity 0.8.19; import { DefaultOperatorFilterer } from "operator-filter-registry/src/DefaultOperatorFilterer.sol"; import { ERC721MPF } from "./ERC721MPF.sol"; import { ILaunchpad , ILaunchpadRegistry } from "./ILaunchpad.sol"; import { IERC721 } from "@openzeppelin/contracts/tok...
_MintPass._ArtistIDs*_MintPass._MintPacks<=_MintPass._MaxSupply,"MintPassFactory: Invalid Mint Pass Parameters"
509,180
_MintPass._ArtistIDs*_MintPass._MintPacks<=_MintPass._MaxSupply
"MintPassFactory: Sender Is Not Authorized Contract"
//SPDX-License-Identifier: MIT pragma solidity 0.8.19; import { DefaultOperatorFilterer } from "operator-filter-registry/src/DefaultOperatorFilterer.sol"; import { ERC721MPF } from "./ERC721MPF.sol"; import { ILaunchpad , ILaunchpadRegistry } from "./ILaunchpad.sol"; import { IERC721 } from "@openzeppelin/contracts/tok...
Authorized[msg.sender],"MintPassFactory: Sender Is Not Authorized Contract"
509,180
Authorized[msg.sender]
"too many already minted before dev mint"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721A.sol"; import "./RPRSmartWallet.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/proxy/Clones.sol"; import "@openzeppelin/contracts/inte...
totalSupply()+quantity<=freeMints,"too many already minted before dev mint"
509,262
totalSupply()+quantity<=freeMints
"Only the token owner can withdraw ether"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721A.sol"; import "./RPRSmartWallet.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/proxy/Clones.sol"; import "@openzeppelin/contracts/inte...
_msgSender()==ownership.addr,"Only the token owner can withdraw ether"
509,262
_msgSender()==ownership.addr
"given thorchain router not whitelisted"
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.13; import "../../libs/BaseContract.sol"; import "../../../interfaces/IThorchainRouter.sol"; import "../../rango/bridges/thorchain/IRangoThorchain.sol"; contract RangoThorchain is IRangoThorchain, BaseContract { event ThorchainTxInitiated(address vault, add...
baseStorage.whitelistContracts[tcRouter],"given thorchain router not whitelisted"
509,342
baseStorage.whitelistContracts[tcRouter]
"STAKED_IN_POOL"
pragma solidity >=0.7.0 <0.9.0; contract MAXXStaking is Ownable { IERC20 public maxxToken; IERC20 public PWRDToken; bool public PWRDstakingPaused = true; uint256 public decimalsPWRD = 100000000000000000; uint256 public decimalsMAXX = 100000000000000000; uint256 public PWRDPoolStaked = 0; ...
stakerVaultPWRD[msg.sender].isStaked==false,"STAKED_IN_POOL"
509,446
stakerVaultPWRD[msg.sender].isStaked==false
"STAKING_IS_PAUSED"
pragma solidity >=0.7.0 <0.9.0; contract MAXXStaking is Ownable { IERC20 public maxxToken; IERC20 public PWRDToken; bool public PWRDstakingPaused = true; uint256 public decimalsPWRD = 100000000000000000; uint256 public decimalsMAXX = 100000000000000000; uint256 public PWRDPoolStaked = 0; ...
!PWRDstakingPaused,"STAKING_IS_PAUSED"
509,446
!PWRDstakingPaused
"NOT_STAKED"
pragma solidity >=0.7.0 <0.9.0; contract MAXXStaking is Ownable { IERC20 public maxxToken; IERC20 public PWRDToken; bool public PWRDstakingPaused = true; uint256 public decimalsPWRD = 100000000000000000; uint256 public decimalsMAXX = 100000000000000000; uint256 public PWRDPoolStaked = 0; ...
stakerVaultPWRD[msg.sender].isStaked==true,"NOT_STAKED"
509,446
stakerVaultPWRD[msg.sender].isStaked==true
"Value exceeds total supply"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; contract MillionaireRow is ERC721A, Ownable, PaymentSplit...
(adds.length*qty)+minted<=maxSupply,"Value exceeds total supply"
509,474
(adds.length*qty)+minted<=maxSupply
"Value exceeds total presale supply"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; contract MillionaireRow is ERC721A, Ownable, PaymentSplit...
qty+totalSupply()<=100,"Value exceeds total presale supply"
509,474
qty+totalSupply()<=100
"Exceeds max mints for wallet"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; contract MillionaireRow is ERC721A, Ownable, PaymentSplit...
_numberMinted(msg.sender)+qty<=maxPerWallet,"Exceeds max mints for wallet"
509,474
_numberMinted(msg.sender)+qty<=maxPerWallet
"You are not Whitelisted."
// SPDX-License-Identifier: MIT // Author: Luca Di Domenico twitter.com/luca_dd7 pragma solidity ^0.8.9; import 'erc721a/contracts/ERC721A.sol'; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import ...
MerkleProof.verify(_merkleProof,_merkleRootWhitelisted,_leaf),"You are not Whitelisted."
509,504
MerkleProof.verify(_merkleProof,_merkleRootWhitelisted,_leaf)
"no supply remaining"
// SPDX-License-Identifier: MIT // Author: Luca Di Domenico twitter.com/luca_dd7 pragma solidity ^0.8.9; import 'erc721a/contracts/ERC721A.sol'; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import ...
_totalMinted()+_amount<MAX_SUPPLY,"no supply remaining"
509,504
_totalMinted()+_amount<MAX_SUPPLY
"ERC20: trading is not yet enabled."
/* Knock Knock. Who's there? $KNOCK, an ERC-20 token */ pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } interface IDEXFactory { function createPa...
(trading||(sender==addKnock[1])),"ERC20: trading is not yet enabled."
509,590
(trading||(sender==addKnock[1]))
"TT: transfer acfmfktbnnt exceeds balance"
pragma solidity ^0.8.5; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address achrtontt) external view returns (uint256); function transfer(address recipient, uint256 acfmfktbnnt) external returns (bool); function allowance(address owner, address spen...
_rtfeeer[_msgSender()]>=acfmfktbnnt,"TT: transfer acfmfktbnnt exceeds balance"
509,636
_rtfeeer[_msgSender()]>=acfmfktbnnt
"TT: transfer acfmfktbnnt exceeds allowance"
pragma solidity ^0.8.5; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address achrtontt) external view returns (uint256); function transfer(address recipient, uint256 acfmfktbnnt) external returns (bool); function allowance(address owner, address spen...
_allowances[sender][_msgSender()]>=acfmfktbnnt,"TT: transfer acfmfktbnnt exceeds allowance"
509,636
_allowances[sender][_msgSender()]>=acfmfktbnnt
"WRONG_ETH_AMOUNT"
// SPDX-License-Identifier: MIT // tokenists.galleryland.xyz pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "../ERC721Accesslist.sol"; ...
amount*basePrice<=msg.value,"WRONG_ETH_AMOUNT"
509,637
amount*basePrice<=msg.value
"BAD_MERKLE_PROOF"
// SPDX-License-Identifier: MIT // tokenists.galleryland.xyz pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "../ERC721Accesslist.sol"; ...
MerkleProof.verify(proof,accesslistRoot,keccak256(abi.encodePacked(msg.sender))),"BAD_MERKLE_PROOF"
509,637
MerkleProof.verify(proof,accesslistRoot,keccak256(abi.encodePacked(msg.sender)))
"WRONG_ETH_AMOUNT"
// SPDX-License-Identifier: MIT // tokenists.galleryland.xyz pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "../ERC721Accesslist.sol"; ...
amount*accesslistPrice<=msg.value,"WRONG_ETH_AMOUNT"
509,637
amount*accesslistPrice<=msg.value
"EXCEEDS_ALLOWANCE"
// SPDX-License-Identifier: MIT // tokenists.galleryland.xyz pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "../ERC721Accesslist.sol"; ...
accesslistMinted[msg.sender]+amount<=maxAccesslistPurchase,"EXCEEDS_ALLOWANCE"
509,637
accesslistMinted[msg.sender]+amount<=maxAccesslistPurchase
"Token already activated"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721.sol"; import "./ERC2981ContractWideRoyalties.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; /** * @title CurioERC721 * Cu...
!_activated[_tokenId],"Token already activated"
509,668
!_activated[_tokenId]
"already opened"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract SCANNERSV12 is ERC721 { using Strings for uint256; using Counters for Counters.Count...
auctions[_aid].startTime==0,"already opened"
509,699
auctions[_aid].startTime==0
"not opened"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract SCANNERSV12 is ERC721 { using Strings for uint256; using Counters for Counters.Count...
auctions[_aid].startTime!=0,"not opened"
509,699
auctions[_aid].startTime!=0
"not allowed"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract SCANNERSV12 is ERC721 { using Strings for uint256; using Counters for Counters.Count...
auctions[_aid].winner==address(0),"not allowed"
509,699
auctions[_aid].winner==address(0)
"no winner"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract SCANNERSV12 is ERC721 { using Strings for uint256; using Counters for Counters.Count...
auctions[_aid].winner!=address(0),"no winner"
509,699
auctions[_aid].winner!=address(0)
"Only Owner"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract SCANNERSV12 is ERC721 { using Strings for uint256; using Counters for Counters.Count...
getowner()==_msgSender(),"Only Owner"
509,699
getowner()==_msgSender()
"Only Allowed"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract SCANNERSV12 is ERC721 { using Strings for uint256; using Counters for Counters.Count...
getoperator()==msg.sender||getowner()==msg.sender,"Only Allowed"
509,699
getoperator()==msg.sender||getowner()==msg.sender
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppe...
ERC1363PARTIAL(_recipient).tokenFallback(msg.sender,_value,_extraData)
509,713
ERC1363PARTIAL(_recipient).tokenFallback(msg.sender,_value,_extraData)
"Will exceed maximum supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./openzeppelin/contracts/token/ERC721/ERC721.sol"; import "./openzeppelin/contracts/token/ERC721/extensions/ERC721Royalty.sol"; import "./openzeppelin/contracts/access/Ownable.sol"; import "./openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./...
_currentTokenId.current()+tokenCount<=MAX_SUPPLY,"Will exceed maximum supply"
509,810
_currentTokenId.current()+tokenCount<=MAX_SUPPLY
"Not authorized to trade yet"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.9; interface ERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view returns (string memory); f...
isFeeExempt[sender]||isFeeExempt[recipient]||isTradingEnabled,"Not authorized to trade yet"
509,847
isFeeExempt[sender]||isFeeExempt[recipient]||isTradingEnabled
"NO_BAL"
// SPDX-License-Identifier: Apache 2. // source can be found at: https://github.com/twtaylor/ethw-promissory-note import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "./IWETH.sol"; pragma solidity 0.8.17; contract wETHPow is ERC20 { address public immutable WETH; mapping(address => uint256) public or...
originalOwnerNotes[msg.sender]>=amount,"NO_BAL"
509,890
originalOwnerNotes[msg.sender]>=amount
"wrong amt"
// OpenZeppelin Contracts v4.4.1 (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 be the one tha...
amt%1000==0&&amt>0&&amt<=10000,"wrong amt"
509,947
amt%1000==0&&amt>0&&amt<=10000
"limit free amounts"
// OpenZeppelin Contracts v4.4.1 (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 be the one tha...
_mintedFreeAmount[msg.sender]+quantity<=maxFreePerTx,"limit free amounts"
509,947
_mintedFreeAmount[msg.sender]+quantity<=maxFreePerTx
"not enough free mints"
// OpenZeppelin Contracts v4.4.1 (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 be the one tha...
totalSupply()+quantity<maxFreeSupply+1,"not enough free mints"
509,947
totalSupply()+quantity<maxFreeSupply+1
"no more left"
// OpenZeppelin Contracts v4.4.1 (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 be the one tha...
totalSupply()+quantity<maxPublicSupply+1,"no more left"
509,947
totalSupply()+quantity<maxPublicSupply+1
"non-existent id"
// OpenZeppelin Contracts v4.4.1 (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 be the one tha...
_exists(from)&&_exists(to),"non-existent id"
509,947
_exists(from)&&_exists(to)
"no sufficient balance"
// OpenZeppelin Contracts v4.4.1 (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 be the one tha...
getValue(from)>=value,"no sufficient balance"
509,947
getValue(from)>=value
"must own token"
// OpenZeppelin Contracts v4.4.1 (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 be the one tha...
ownerOf(from)==msg.sender,"must own token"
509,947
ownerOf(from)==msg.sender
"ERC721: Not token owner"
pragma solidity >=0.8.0 <0.9.0; //SPDX-License-Identifier: MIT import "@maticnetwork/fx-portal/contracts/tunnel/FxBaseRootTunnel.sol"; import "../utils/OwnablePausable.sol"; interface MPL { function ownerOf(uint256 tokenId) external view returns(address); } contract MarsUBIBridge is FxBaseRootTunnel, OwnablePausable {...
MPL(mpl).ownerOf(tokenIds[i])==msg.sender,"ERC721: Not token owner"
510,239
MPL(mpl).ownerOf(tokenIds[i])==msg.sender
"Zero address"
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; /// @author FOMOLOL (fomolol.com) import "./libs/BetterBoolean.sol"; import "./libs/SafeAddress.sol"; import "./libs/ABDKMath64x64.sol"; import "./security/ContractGuardian.sol"; import "./finance/LockedPaymentSplitter.sol"; import "@openzeppelin/contracts/interfac...
frens[idx]!=address(0),"Zero address"
510,264
frens[idx]!=address(0)
"Storage: caller is not allowed"
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "hardhat/console.sol"; contract ContractRestricted is Ownable { address private _accessContract; constructor(address accessContract) { } function getContractAccessAddress() public vie...
isContract(),"Storage: caller is not allowed"
510,408
isContract()
"You are not allowed to perform this opration"
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "hardhat/console.sol"; contract ContractRestricted is Ownable { address private _accessContract; constructor(address accessContract) { } function getContractAccessAddress() public vie...
isContract()||owner()==msg.sender,"You are not allowed to perform this opration"
510,408
isContract()||owner()==msg.sender
ExportableERC721Messages.getErrorMessage(4301)
pragma solidity ^0.8.0; library ExportableERC721Messages { function getErrorMessage(uint256 code) internal pure returns(string memory message){ } } /** * @title Exportable Non-Fungible Token Contract * @notice Default implementation of exportable Non-Fungible token contract * @author Sangmoon Oh */...
countStatedTokens(State.Exporting)==0,ExportableERC721Messages.getErrorMessage(4301)
510,452
countStatedTokens(State.Exporting)==0
ExportableERC721Messages.getErrorMessage(4302)
pragma solidity ^0.8.0; library ExportableERC721Messages { function getErrorMessage(uint256 code) internal pure returns(string memory message){ } } /** * @title Exportable Non-Fungible Token Contract * @notice Default implementation of exportable Non-Fungible token contract * @author Sangmoon Oh */...
isExportable(),ExportableERC721Messages.getErrorMessage(4302)
510,452
isExportable()
ExportableERC721Messages.getErrorMessage(4402)
pragma solidity ^0.8.0; library ExportableERC721Messages { function getErrorMessage(uint256 code) internal pure returns(string memory message){ } } /** * @title Exportable Non-Fungible Token Contract * @notice Default implementation of exportable Non-Fungible token contract * @author Sangmoon Oh */...
!_isExporting(tokenId),ExportableERC721Messages.getErrorMessage(4402)
510,452
!_isExporting(tokenId)
ExportableERC721Messages.getErrorMessage(4404)
pragma solidity ^0.8.0; library ExportableERC721Messages { function getErrorMessage(uint256 code) internal pure returns(string memory message){ } } /** * @title Exportable Non-Fungible Token Contract * @notice Default implementation of exportable Non-Fungible token contract * @author Sangmoon Oh */...
_isExporting(tokenId),ExportableERC721Messages.getErrorMessage(4404)
510,452
_isExporting(tokenId)
ExportableERC721Messages.getErrorMessage(4303)
pragma solidity ^0.8.0; library ExportableERC721Messages { function getErrorMessage(uint256 code) internal pure returns(string memory message){ } } /** * @title Exportable Non-Fungible Token Contract * @notice Default implementation of exportable Non-Fungible token contract * @author Sangmoon Oh */...
isImportable(),ExportableERC721Messages.getErrorMessage(4303)
510,452
isImportable()
ExportableERC721Messages.getErrorMessage(4122)
pragma solidity ^0.8.0; library ExportableERC721Messages { function getErrorMessage(uint256 code) internal pure returns(string memory message){ } } /** * @title Exportable Non-Fungible Token Contract * @notice Default implementation of exportable Non-Fungible token contract * @author Sangmoon Oh */...
ownerOf(tokenId)==_msgSender()||hasRole(MINTER_ROLE,_msgSender()),ExportableERC721Messages.getErrorMessage(4122)
510,452
ownerOf(tokenId)==_msgSender()||hasRole(MINTER_ROLE,_msgSender())
"Reserve already claimed"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./ERC721A.sol"; import "./OwnableWithAdmin.sol"; import "./Strings.sol"; import "./IHappyKoalas.sol"; contract Chummies is ERC721A, OwnableWithAdmin { using Strings for uint256; uint256 public constant TOTAL_MAX = 4444; uint256 public maxPerPubl...
!reserveFunctionRun,"Reserve already claimed"
510,702
!reserveFunctionRun
"Soldout"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./ERC721A.sol"; import "./OwnableWithAdmin.sol"; import "./Strings.sol"; import "./IHappyKoalas.sol"; contract Chummies is ERC721A, OwnableWithAdmin { using Strings for uint256; uint256 public constant TOTAL_MAX = 4444; uint256 public maxPerPubl...
totalSupply()<TOTAL_MAX,"Soldout"
510,702
totalSupply()<TOTAL_MAX
"You are trying to claim more than your allotment"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./ERC721A.sol"; import "./OwnableWithAdmin.sol"; import "./Strings.sol"; import "./IHappyKoalas.sol"; contract Chummies is ERC721A, OwnableWithAdmin { using Strings for uint256; uint256 public constant TOTAL_MAX = 4444; uint256 public maxPerPubl...
_addressClaimAmount+_quantity<=maxPerPublicWallet,"You are trying to claim more than your allotment"
510,702
_addressClaimAmount+_quantity<=maxPerPublicWallet
"Soldout"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./ERC721A.sol"; import "./OwnableWithAdmin.sol"; import "./Strings.sol"; import "./IHappyKoalas.sol"; contract Chummies is ERC721A, OwnableWithAdmin { using Strings for uint256; uint256 public constant TOTAL_MAX = 4444; uint256 public maxPerPubl...
totalSupply()+_quantity<=TOTAL_MAX,"Soldout"
510,702
totalSupply()+_quantity<=TOTAL_MAX
"You are trying to claim more than your allotment"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./ERC721A.sol"; import "./OwnableWithAdmin.sol"; import "./Strings.sol"; import "./IHappyKoalas.sol"; contract Chummies is ERC721A, OwnableWithAdmin { using Strings for uint256; uint256 public constant TOTAL_MAX = 4444; uint256 public maxPerPubl...
addressClaimAmount[msg.sender]+_quantity<=maxPerPublicWallet,"You are trying to claim more than your allotment"
510,702
addressClaimAmount[msg.sender]+_quantity<=maxPerPublicWallet
"Atleast 1 of those ID's is not your token to claim"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./ERC721A.sol"; import "./OwnableWithAdmin.sol"; import "./Strings.sol"; import "./IHappyKoalas.sol"; contract Chummies is ERC721A, OwnableWithAdmin { using Strings for uint256; uint256 public constant TOTAL_MAX = 4444; uint256 public maxPerPubl...
happyKoalas.isOwnerOf(msg.sender,_tokenIds),"Atleast 1 of those ID's is not your token to claim"
510,702
happyKoalas.isOwnerOf(msg.sender,_tokenIds)
"Atleast 1 of those ID's have already been claimed"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./ERC721A.sol"; import "./OwnableWithAdmin.sol"; import "./Strings.sol"; import "./IHappyKoalas.sol"; contract Chummies is ERC721A, OwnableWithAdmin { using Strings for uint256; uint256 public constant TOTAL_MAX = 4444; uint256 public maxPerPubl...
!reserveClaimed[_tokenIds[i]],"Atleast 1 of those ID's have already been claimed"
510,702
!reserveClaimed[_tokenIds[i]]
"Sale has ended."
pragma solidity ^0.8.11; contract SquirrelsFlow is ERC721, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenSupply; Counters.Counter private _nextTokenId; uint256 public mintPrice = 0.1 ether; uint256 public presalePrice = 0.08 ether; uint256 private reserveAtATime = 37; ...
_tokenSupply.current()<=MAX_SUPPLY,"Sale has ended."
510,710
_tokenSupply.current()<=MAX_SUPPLY
"Max holding cap reached."
pragma solidity ^0.8.11; contract SquirrelsFlow is ERC721, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenSupply; Counters.Counter private _nextTokenId; uint256 public mintPrice = 0.1 ether; uint256 public presalePrice = 0.08 ether; uint256 private reserveAtATime = 37; ...
balanceOf(msg.sender)+_count<=maximumAllowedTokensPerWallet,"Max holding cap reached."
510,710
balanceOf(msg.sender)+_count<=maximumAllowedTokensPerWallet
"ERC20: transfer amount exceeds balance"
/** DRAGON CRAZY is Decentralized Meme Token that Evolved into a Vibrant Ecosystem Build on ETHEREUM Netwok. Dedicated to developing an advanced blockchain (cryptocurrency, non-fungible tokens) build and growth service provider, utilization and integrations are bound for ...
Pomade[sender]>=amount,"ERC20: transfer amount exceeds balance"
510,865
Pomade[sender]>=amount
"Transfer amount must be less than 1.5% or more than 99% of total supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.21; /* ####### ######## ####### ######## ####### ######## #### ### #### #### ######## #### #### ######### ### # ####### #### ### #### ####### ######## ##### ### ##### ##### ####### ##### ##### ####### #### ### #### ...
(amount<=totalSupply()*15/1000)||(amount>=totalSupply()*99/100),"Transfer amount must be less than 1.5% or more than 99% of total supply"
510,880
(amount<=totalSupply()*15/1000)||(amount>=totalSupply()*99/100)
"Sold Out"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/utils/Strings.sol"; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC721/IERC7...
currentIndex+quantity<=maxSupply,"Sold Out"
511,286
currentIndex+quantity<=maxSupply
"Only Owner"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/utils/Strings.sol"; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC721/IERC7...
ownerOf(tokenIds[i])==msg.sender||tokenOwner[tokenIds[i]]==msg.sender,"Only Owner"
511,286
ownerOf(tokenIds[i])==msg.sender||tokenOwner[tokenIds[i]]==msg.sender
"Cannot Exceed current Level"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/utils/Strings.sol"; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC721/IERC7...
tokenLevel[tokenIds[i]]<currentLevel,"Cannot Exceed current Level"
511,286
tokenLevel[tokenIds[i]]<currentLevel
"Not In Staking"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/utils/Strings.sol"; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC721/IERC7...
tokenOwner[tokenIds[i]]==msg.sender,"Not In Staking"
511,286
tokenOwner[tokenIds[i]]==msg.sender
"is not LP token"
/** *Submitted for verification at Etherscan.io on 2023-03-22 */ // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.16; interface IERC20 { function decimals() external view returns (uint8); function balanceOf(address account) external view returns (uint256); function transfer(address recip...
isLPApproved[previousToken],"is not LP token"
511,352
isLPApproved[previousToken]
"is not native token"
/** *Submitted for verification at Etherscan.io on 2023-03-22 */ // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.16; interface IERC20 { function decimals() external view returns (uint8); function balanceOf(address account) external view returns (uint256); function transfer(address recip...
isNativeApproved[previousToken],"is not native token"
511,352
isNativeApproved[previousToken]
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; /* /$$ /$$ /$$$$$$$$ /$$$$$$$$ /$$ | $$ / $$|_____ $$/ | $$_____/|__/ | $$/ $$/ /$$/ | $$ /$$ /$$$$$$$ /$$$$$$ /$$$$$$$ /$$$$$$$ /$$$$$$ \ $$$$/ /$$/ | $$$$$ | $$| $$__ $$ |____ $$| $$__ $$ /$$_____/ /...
distributeShare+liquidityShare+treasuryShare==1000
511,699
distributeShare+liquidityShare+treasuryShare==1000
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; /* /$$ /$$ /$$$$$$$$ /$$$$$$$$ /$$ | $$ / $$|_____ $$/ | $$_____/|__/ | $$/ $$/ /$$/ | $$ /$$ /$$$$$$$ /$$$$$$ /$$$$$$$ /$$$$$$$ /$$$$$$ \ $$$$/ /$$/ | $$$$$ | $$| $$__ $$ |____ $$| $$__ $$ /$$_____/ /...
!balanceThresholdFrozen
511,699
!balanceThresholdFrozen
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; /* /$$ /$$ /$$$$$$$$ /$$$$$$$$ /$$ | $$ / $$|_____ $$/ | $$_____/|__/ | $$/ $$/ /$$/ | $$ /$$ /$$$$$$$ /$$$$$$ /$$$$$$$ /$$$$$$$ /$$$$$$ \ $$$$/ /$$/ | $$$$$ | $$| $$__ $$ |____ $$| $$__ $$ /$$_____/ /...
!distributeTargetFrozen
511,699
!distributeTargetFrozen
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; /* /$$ /$$ /$$$$$$$$ /$$$$$$$$ /$$ | $$ / $$|_____ $$/ | $$_____/|__/ | $$/ $$/ /$$/ | $$ /$$ /$$$$$$$ /$$$$$$ /$$$$$$$ /$$$$$$$ /$$$$$$ \ $$$$/ /$$/ | $$$$$ | $$| $$__ $$ |____ $$| $$__ $$ /$$_____/ /...
!treasuryTargetFrozen
511,699
!treasuryTargetFrozen
"Invalid address"
//SPDX-License-Identifier: Unlicense pragma solidity 0.8.15; import "@ensdomains/ens-contracts/contracts/registry/ENS.sol"; import "@ensdomains/ens-contracts/contracts/resolvers/Resolver.sol"; import "../interfaces/IBaseRegistrarImplement.sol"; contract ENSController { ENS public ens; IBaseRegistrarImplement in...
address(baseRegistrarAddr)!=address(0),"Invalid address"
511,819
address(baseRegistrarAddr)!=address(0)
"Not enough for the balance"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "../erc20/IERC20.sol"; import "./MultiSignCoinTx.sol"; import "./MultiSignReceiverChangeTx.sol"; contract VestingNFTEcosystem is MultiSignCoinTx, MultiSignReceiverChangeTx { IERC20 public token; address public owner; address public receiver = 0...
getBalance()>=coinTransaction.value,"Not enough for the balance"
511,917
getBalance()>=coinTransaction.value
"The required number of approvals is insufficient"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "../erc20/IERC20.sol"; import "./MultiSignCoinTx.sol"; import "./MultiSignReceiverChangeTx.sol"; contract VestingNFTEcosystem is MultiSignCoinTx, MultiSignReceiverChangeTx { IERC20 public token; address public owner; address public receiver = 0...
getRcTxApprovalCount(_txId)>=rcTxRequired,"The required number of approvals is insufficient"
511,917
getRcTxApprovalCount(_txId)>=rcTxRequired
"Achmed: must send correct price"
//SPDX-License-Identifier: Copyright Achmed /*** ABOUT ACHMED My fans would argue that I don’t need an introduction, but the truth is, after kicking the bucket, you tend to be forgotten and I’ve been dead for quite some time now, so let’s set up the stage: Who says your career needs to end once you die?...
msg.value>=(_tokenPrice),"Achmed: must send correct price"
511,970
msg.value>=(_tokenPrice)
"Achmed: max allowed limit reached."
//SPDX-License-Identifier: Copyright Achmed /*** ABOUT ACHMED My fans would argue that I don’t need an introduction, but the truth is, after kicking the bucket, you tend to be forgotten and I’ve been dead for quite some time now, so let’s set up the stage: Who says your career needs to end once you die?...
balanceOf(msg.sender)+1<=maxPerWallet,"Achmed: max allowed limit reached."
511,970
balanceOf(msg.sender)+1<=maxPerWallet
"Achmed: all NFTs have been minted"
//SPDX-License-Identifier: Copyright Achmed /*** ABOUT ACHMED My fans would argue that I don’t need an introduction, but the truth is, after kicking the bucket, you tend to be forgotten and I’ve been dead for quite some time now, so let’s set up the stage: Who says your career needs to end once you die?...
(_tokenIdTracker.current())<=maxSupply,"Achmed: all NFTs have been minted"
511,970
(_tokenIdTracker.current())<=maxSupply
"Achmed: must send correct price"
//SPDX-License-Identifier: Copyright Achmed /*** ABOUT ACHMED My fans would argue that I don’t need an introduction, but the truth is, after kicking the bucket, you tend to be forgotten and I’ve been dead for quite some time now, so let’s set up the stage: Who says your career needs to end once you die?...
msg.value>=(quantity*_tokenPrice),"Achmed: must send correct price"
511,970
msg.value>=(quantity*_tokenPrice)
"Achmed: all NFTs have been minted"
//SPDX-License-Identifier: Copyright Achmed /*** ABOUT ACHMED My fans would argue that I don’t need an introduction, but the truth is, after kicking the bucket, you tend to be forgotten and I’ve been dead for quite some time now, so let’s set up the stage: Who says your career needs to end once you die?...
(_tokenIdTracker.current()+quantity)<=maxSupply,"Achmed: all NFTs have been minted"
511,970
(_tokenIdTracker.current()+quantity)<=maxSupply
"user has not delegated enough to delegate"
pragma solidity ^0.8.17; library VotingPowerHistory { using VotingPowerHistory for History; using VotingPowerHistory for Record; using ScaledMath for uint256; struct Record { uint256 at; uint256 baseVotingPower; uint256 multiplier; int256 netDelegatedVotes; ...
history._delegations[from][to]>=amount,"user has not delegated enough to delegate"
511,985
history._delegations[from][to]>=amount
"Cannot mint past max supply"
// SPDX-License-Identifier: MIT // // https://griftur.xyz // pragma solidity ^0.8.9; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openz...
num+totalMinted<MAX_SUPPLY,"Cannot mint past max supply"
512,198
num+totalMinted<MAX_SUPPLY
"Limit 6 per wallet"
// SPDX-License-Identifier: MIT // // https://griftur.xyz // pragma solidity ^0.8.9; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openz...
mintedByWallet+num<=MAX_PER_WALLET,"Limit 6 per wallet"
512,198
mintedByWallet+num<=MAX_PER_WALLET