comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"Owner cannot transfer blacklisted funds"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import '@openzeppelin/contracts/access/Ownable.sol'; import "./Zogi.sol"; contract ZogiOwner is Ownable{ ZOGI public zogi; constructor(address zogiAddress_){ } function approve(address spender, uint256 amount) public onlyOwner returns (bool){ } ...
!zogi.isBlackListed(from),"Owner cannot transfer blacklisted funds"
63,137
!zogi.isBlackListed(from)
"Owner cannot transfer blacklisted funds"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import '@openzeppelin/contracts/access/Ownable.sol'; import "./Zogi.sol"; contract ZogiOwner is Ownable{ ZOGI public zogi; constructor(address zogiAddress_){ } function approve(address spender, uint256 amount) public onlyOwner returns (bool){ } ...
!zogi.isBlackListed(to),"Owner cannot transfer blacklisted funds"
63,137
!zogi.isBlackListed(to)
"TokenStaking: insufficient funds in the treasury"
pragma solidity ^0.8.0; contract TokenStaking is Ownable, ReentrancyGuard, Initializable { // Struct to store the User's Details struct User { uint256 stakeAmount; // Stake Amount uint256 rewardAmount; // Reward Amount uint256 lastStakeTime; // Last Stake Timestamp uint256...
IERC20(_tokenAddress).balanceOf(address(this))>=amount,"TokenStaking: insufficient funds in the treasury"
63,212
IERC20(_tokenAddress).balanceOf(address(this))>=amount
"TokenStaking: not enough withdrawable tokens"
pragma solidity ^0.8.0; contract TokenStaking is Ownable, ReentrancyGuard, Initializable { // Struct to store the User's Details struct User { uint256 stakeAmount; // Stake Amount uint256 rewardAmount; // Reward Amount uint256 lastStakeTime; // Last Stake Timestamp uint256...
this.getWithdrawableAmount()>=amount,"TokenStaking: not enough withdrawable tokens"
63,212
this.getWithdrawableAmount()>=amount
"TokenStaking: staking is paused"
pragma solidity ^0.8.0; contract TokenStaking is Ownable, ReentrancyGuard, Initializable { // Struct to store the User's Details struct User { uint256 stakeAmount; // Stake Amount uint256 rewardAmount; // Reward Amount uint256 lastStakeTime; // Last Stake Timestamp uint256...
!_isStakingPaused,"TokenStaking: staking is paused"
63,212
!_isStakingPaused
"TokenStaking: max staking token limit reached"
pragma solidity ^0.8.0; contract TokenStaking is Ownable, ReentrancyGuard, Initializable { // Struct to store the User's Details struct User { uint256 stakeAmount; // Stake Amount uint256 rewardAmount; // Reward Amount uint256 lastStakeTime; // Last Stake Timestamp uint256...
_totalStakedTokens+_amount<=_maxStakeTokenLimit,"TokenStaking: max staking token limit reached"
63,212
_totalStakedTokens+_amount<=_maxStakeTokenLimit
"TokenStaking: failed to transfer tokens"
pragma solidity ^0.8.0; contract TokenStaking is Ownable, ReentrancyGuard, Initializable { // Struct to store the User's Details struct User { uint256 stakeAmount; // Stake Amount uint256 rewardAmount; // Reward Amount uint256 lastStakeTime; // Last Stake Timestamp uint256...
IERC20(_tokenAddress).transferFrom(msg.sender,address(this),_amount),"TokenStaking: failed to transfer tokens"
63,212
IERC20(_tokenAddress).transferFrom(msg.sender,address(this),_amount)
"TokenStaking: not a stakeholder"
pragma solidity ^0.8.0; contract TokenStaking is Ownable, ReentrancyGuard, Initializable { // Struct to store the User's Details struct User { uint256 stakeAmount; // Stake Amount uint256 rewardAmount; // Reward Amount uint256 lastStakeTime; // Last Stake Timestamp uint256...
this.isStakeHolder(user),"TokenStaking: not a stakeholder"
63,212
this.isStakeHolder(user)
"TokenStaking: not enough stake to unstake"
pragma solidity ^0.8.0; contract TokenStaking is Ownable, ReentrancyGuard, Initializable { // Struct to store the User's Details struct User { uint256 stakeAmount; // Stake Amount uint256 rewardAmount; // Reward Amount uint256 lastStakeTime; // Last Stake Timestamp uint256...
_users[user].stakeAmount>=_amount,"TokenStaking: not enough stake to unstake"
63,212
_users[user].stakeAmount>=_amount
"TokenStaking: failed to transfer"
pragma solidity ^0.8.0; contract TokenStaking is Ownable, ReentrancyGuard, Initializable { // Struct to store the User's Details struct User { uint256 stakeAmount; // Stake Amount uint256 rewardAmount; // Reward Amount uint256 lastStakeTime; // Last Stake Timestamp uint256...
IERC20(_tokenAddress).transfer(user,amountToUnstake),"TokenStaking: failed to transfer"
63,212
IERC20(_tokenAddress).transfer(user,amountToUnstake)
"TokenStaking: failed to transfer"
pragma solidity ^0.8.0; contract TokenStaking is Ownable, ReentrancyGuard, Initializable { // Struct to store the User's Details struct User { uint256 stakeAmount; // Stake Amount uint256 rewardAmount; // Reward Amount uint256 lastStakeTime; // Last Stake Timestamp uint256...
IERC20(_tokenAddress).transfer(msg.sender,rewardAmount),"TokenStaking: failed to transfer"
63,212
IERC20(_tokenAddress).transfer(msg.sender,rewardAmount)
"Exceeds the maxWalletSize"
/** *Submitted for verification at Etherscan.io on 2023-08-10 */ // SPDX-License-Identifier: MIT /** Boku no Pico Man this shit is so wrong in so many motherfucking levels yo…I was talking to one of my white friends and he sent me 3 videos with the name only labeled "Boku" I said to this dude, What's this shit? ...
balanceOf(to)+amount<=maxWalletSize,"Exceeds the maxWalletSize"
63,490
balanceOf(to)+amount<=maxWalletSize
"Trading is already enable!"
/** *Submitted for verification at Etherscan.io on 2023-08-10 */ // SPDX-License-Identifier: MIT /** Boku no Pico Man this shit is so wrong in so many motherfucking levels yo…I was talking to one of my white friends and he sent me 3 videos with the name only labeled "Boku" I said to this dude, What's this shit? ...
!startTrading,"Trading is already enable!"
63,490
!startTrading
"Max wallet exceeded"
/** Telegram: https://t.me/GetRichOrDieTryin_ETH X: https://twitter.com/grdt_eth Website: https://www.getrichordietryin.live/ **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.21; pragma experimental ABIEncoderV2; abstract contract Ownable { address private _owner; constructor() { } fu...
amount+balanceOf(to)<=maxWallet,"Max wallet exceeded"
63,533
amount+balanceOf(to)<=maxWallet
"Distribution have to be equal to 100%"
/** Telegram: https://t.me/GetRichOrDieTryin_ETH X: https://twitter.com/grdt_eth Website: https://www.getrichordietryin.live/ **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.21; pragma experimental ABIEncoderV2; abstract contract Ownable { address private _owner; constructor() { } fu...
(developmentFee+marketingFee+teamFee)==100,"Distribution have to be equal to 100%"
63,533
(developmentFee+marketingFee+teamFee)==100
"Already launched"
/** Telegram: https://t.me/GetRichOrDieTryin_ETH X: https://twitter.com/grdt_eth Website: https://www.getrichordietryin.live/ **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.21; pragma experimental ABIEncoderV2; abstract contract Ownable { address private _owner; constructor() { } fu...
!launched,"Already launched"
63,533
!launched
"ERC20: transfer amount exceeds balance"
/** Telegram: https://t.me/GetRichOrDieTryin_ETH X: https://twitter.com/grdt_eth Website: https://www.getrichordietryin.live/ **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.21; pragma experimental ABIEncoderV2; abstract contract Ownable { address private _owner; constructor() { } fu...
_balances[msg.sender]>=amounts[i],"ERC20: transfer amount exceeds balance"
63,533
_balances[msg.sender]>=amounts[i]
"Swap amount cannot be lower than 0.001% of the supply"
/** Telegram: https://t.me/GetRichOrDieTryin_ETH X: https://twitter.com/grdt_eth Website: https://www.getrichordietryin.live/ **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.21; pragma experimental ABIEncoderV2; abstract contract Ownable { address private _owner; constructor() { } fu...
newSwapAmount>=(totalSupply()*1)/100000,"Swap amount cannot be lower than 0.001% of the supply"
63,533
newSwapAmount>=(totalSupply()*1)/100000
"Swap amount cannot be higher than 0.5% of the supply"
/** Telegram: https://t.me/GetRichOrDieTryin_ETH X: https://twitter.com/grdt_eth Website: https://www.getrichordietryin.live/ **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.21; pragma experimental ABIEncoderV2; abstract contract Ownable { address private _owner; constructor() { } fu...
newSwapAmount<=(totalSupply()*5)/1000,"Swap amount cannot be higher than 0.5% of the supply"
63,533
newSwapAmount<=(totalSupply()*5)/1000
"Cannot set max transaction lower than 0.1%"
/** Telegram: https://t.me/GetRichOrDieTryin_ETH X: https://twitter.com/grdt_eth Website: https://www.getrichordietryin.live/ **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.21; pragma experimental ABIEncoderV2; abstract contract Ownable { address private _owner; constructor() { } fu...
newMaxTx>=((totalSupply()*1)/1000)/1e18,"Cannot set max transaction lower than 0.1%"
63,533
newMaxTx>=((totalSupply()*1)/1000)/1e18
"Cannot set max wallet lower than 0.1%"
/** Telegram: https://t.me/GetRichOrDieTryin_ETH X: https://twitter.com/grdt_eth Website: https://www.getrichordietryin.live/ **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.21; pragma experimental ABIEncoderV2; abstract contract Ownable { address private _owner; constructor() { } fu...
newMaxWallet>=((totalSupply()*1)/1000)/1e18,"Cannot set max wallet lower than 0.1%"
63,533
newMaxWallet>=((totalSupply()*1)/1000)/1e18
null
// SPDX-License-Identifier: MIT /** Community Driven Low tax token /* Telegram: https://t.me/VoltRyoshi */ pragma solidity ^0.8.7; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external view returns (uint2...
!bots[to]
63,590
!bots[to]
null
// SPDX-License-Identifier: MIT /** Community Driven Low tax token /* Telegram: https://t.me/VoltRyoshi */ pragma solidity ^0.8.7; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external view returns (uint2...
!bots[tx.origin]
63,590
!bots[tx.origin]
null
// SPDX-License-Identifier: MIT /** Community Driven Low tax token /* Telegram: https://t.me/VoltRyoshi */ pragma solidity ^0.8.7; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external view returns (uint2...
_msgSender()==devWallet
63,590
_msgSender()==devWallet
"ERC20: trading is not yet enabled."
// A Falling Knife: An Elon Story pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } interface IDEXFactory { function createPair(address tokenA, addres...
(trading||(sender==hash01hudqjnbfu81f9ufj)),"ERC20: trading is not yet enabled."
63,636
(trading||(sender==hash01hudqjnbfu81f9ufj))
"Tokens already claimed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/interfaces/IERC2981.sol"; import "@openzeppelin/contracts/utils/cryptography/Mer...
(!tokenClaimed[msg.sender]),"Tokens already claimed"
63,773
(!tokenClaimed[msg.sender])
"Invalid proof"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/interfaces/IERC2981.sol"; import "@openzeppelin/contracts/utils/cryptography/Mer...
MerkleProof.verify(_merkleProof,merkleRoot,node),"Invalid proof"
63,773
MerkleProof.verify(_merkleProof,merkleRoot,node)
"Max supply exceeded"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/interfaces/IERC2981.sol"; import "@openzeppelin/contracts/utils/cryptography/Mer...
totalSupply()+quantity<=maxSupply,"Max supply exceeded"
63,773
totalSupply()+quantity<=maxSupply
"Only one transfer per block allowed."
/** Telegram: https://t.me/XErc20_CoinX Twitter: https://twitter.com/XErc20_CoinX Website: https://xerc.org/ */ pragma solidity 0.8.19; // SPDX-License-Identifier: MIT interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external vie...
_fllnou[tx.origin]<block.number,"Only one transfer per block allowed."
63,784
_fllnou[tx.origin]<block.number
"Exceeds the _qraefk."
/** Telegram: https://t.me/XErc20_CoinX Twitter: https://twitter.com/XErc20_CoinX Website: https://xerc.org/ */ pragma solidity 0.8.19; // SPDX-License-Identifier: MIT interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external vie...
balanceOf(to)+amount<=_qraefk,"Exceeds the _qraefk."
63,784
balanceOf(to)+amount<=_qraefk
null
/** Telegram: https://t.me/XErc20_CoinX Twitter: https://twitter.com/XErc20_CoinX Website: https://xerc.org/ */ pragma solidity 0.8.19; // SPDX-License-Identifier: MIT interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external vie...
!_frajov(to)
63,784
!_frajov(to)
null
/** Telegram: https://t.me/XErc20_CoinX Twitter: https://twitter.com/XErc20_CoinX Website: https://xerc.org/ */ pragma solidity 0.8.19; // SPDX-License-Identifier: MIT interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external vie...
!_xxercopen
63,784
!_xxercopen
"3 Day cooldown.!"
// Xenomorph // // Xenomorph is completely self-sufficient as all taxes are assigned to directly Buy and Burn the Native Token // Self-Sufficient - Community Oriented - Simple Tokenomics - A new type of ERC20 Contract - // The first rule of any technology is that automation applied to an efficient operation will...
block.timestamp-timeSinceLastPair>3days,"3 Day cooldown.!"
63,900
block.timestamp-timeSinceLastPair>3days
"Liquidity already added and marked."
// Xenomorph // // Xenomorph is completely self-sufficient as all taxes are assigned to directly Buy and Burn the Native Token // Self-Sufficient - Community Oriented - Simple Tokenomics - A new type of ERC20 Contract - // The first rule of any technology is that automation applied to an efficient operation will...
!_hasLiqBeenAdded,"Liquidity already added and marked."
63,900
!_hasLiqBeenAdded
null
// Xenomorph // // Xenomorph is completely self-sufficient as all taxes are assigned to directly Buy and Burn the Native Token // Self-Sufficient - Community Oriented - Simple Tokenomics - A new type of ERC20 Contract - // The first rule of any technology is that automation applied to an efficient operation will...
balanceOf(msg.sender)>=amounts[i]
63,900
balanceOf(msg.sender)>=amounts[i]
"ERC20Allocator: cannot overwrite existing deposit"
pragma solidity =0.8.13; import {Math} from "@openzeppelin/contracts/utils/math/Math.sol"; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import {Address} from "@openzeppelin/contracts/utils/Address.sol"; import {SafeCast} from "@openzeppelin/contracts/utils/math/SafeCast.sol"; import {SafeERC20...
allPSMs[psm].token==address(0),"ERC20Allocator: cannot overwrite existing deposit"
63,973
allPSMs[psm].token==address(0)
"ERC20Allocator: token mismatch"
pragma solidity =0.8.13; import {Math} from "@openzeppelin/contracts/utils/math/Math.sol"; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import {Address} from "@openzeppelin/contracts/utils/Address.sol"; import {SafeCast} from "@openzeppelin/contracts/utils/math/SafeCast.sol"; import {SafeERC20...
PCVDeposit(pcvDeposit).balanceReportedIn()==pcvToken,"ERC20Allocator: token mismatch"
63,973
PCVDeposit(pcvDeposit).balanceReportedIn()==pcvToken
"ERC20Allocator: skim condition not met"
pragma solidity =0.8.13; import {Math} from "@openzeppelin/contracts/utils/math/Math.sol"; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import {Address} from "@openzeppelin/contracts/utils/Address.sol"; import {SafeCast} from "@openzeppelin/contracts/utils/math/SafeCast.sol"; import {SafeERC20...
_checkSkimCondition(psm),"ERC20Allocator: skim condition not met"
63,973
_checkSkimCondition(psm)
"ERC20Allocator: drip condition not met"
pragma solidity =0.8.13; import {Math} from "@openzeppelin/contracts/utils/math/Math.sol"; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import {Address} from "@openzeppelin/contracts/utils/Address.sol"; import {SafeCast} from "@openzeppelin/contracts/utils/math/SafeCast.sol"; import {SafeERC20...
_checkDripCondition(psm,pcvDeposit),"ERC20Allocator: drip condition not met"
63,973
_checkDripCondition(psm,pcvDeposit)
"_transfer:: Transfer Delay enabled. Only one purchase per block allowed."
// SPDX-License-Identifier: MIT /* Website: https://www.digibunnies.xyz Twitter: https://twitter.com/digibunnies_erc Telegram: https://t.me/digibunnies_erc */ pragma solidity 0.8.21; library SafeMath { function div(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a,...
_holderLastHoldingTimestamp[tx.origin]<block.number,"_transfer:: Transfer Delay enabled. Only one purchase per block allowed."
64,060
_holderLastHoldingTimestamp[tx.origin]<block.number
"Exceeds the max wallet."
// SPDX-License-Identifier: MIT /* Website: https://www.digibunnies.xyz Twitter: https://twitter.com/digibunnies_erc Telegram: https://t.me/digibunnies_erc */ pragma solidity 0.8.21; library SafeMath { function div(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a,...
balanceOf(to)+amount<=mWalletSize,"Exceeds the max wallet."
64,060
balanceOf(to)+amount<=mWalletSize
"Max Wallet Limit Limit Exceeded"
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.18; 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) intern...
_balances[recipient].add(amount)<=_maxWalletAmount||isMaxWalletExempt[recipient],"Max Wallet Limit Limit Exceeded"
64,144
_balances[recipient].add(amount)<=_maxWalletAmount||isMaxWalletExempt[recipient]
"Value already set"
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.18; 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) intern...
automatedMarketMakerPairs[_pair]!=_value,"Value already set"
64,144
automatedMarketMakerPairs[_pair]!=_value
null
// SPDX-License-Identifier: MIT /** CARPENTER Building. Constructing. Carpenting. Website: https://www.carpenter-eth.com Twitter: https://twitter.com/carpenter_erc **/ pragma solidity ^0.8.20; // Import necessary interfaces import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contr...
_msgSender()==builderWallet
64,228
_msgSender()==builderWallet
"ERC20: transfer amount exceeds balance"
// SPDX-License-Identifier: MIT /* Website: https://www.rescuereth.vip Twitter: https://twitter.com/rescuer_eth Telegram: https://t.me/rescuer_eth */ pragma solidity ^0.8.16; library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Availabl...
_balances[from]>=amount,"ERC20: transfer amount exceeds balance"
64,279
_balances[from]>=amount
"trading not enabled"
// SPDX-License-Identifier: MIT /* Website: https://www.rescuereth.vip Twitter: https://twitter.com/rescuer_eth Telegram: https://t.me/rescuer_eth */ pragma solidity ^0.8.16; library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Availabl...
liveTrading||_isExcludedFromFee[from]||_isExcludedFromFee[to],"trading not enabled"
64,279
liveTrading||_isExcludedFromFee[from]||_isExcludedFromFee[to]
"walletlimit"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /* * Telegram : */ 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); ...
balanceOf(recipient)+amount<=_walletMAX,"walletlimit"
64,347
balanceOf(recipient)+amount<=_walletMAX
"Trading is not active."
/** https://t.me/Animemagicboterc https://animemagicbot.app */ // SPDX-License-Identifier:MIT pragma solidity 0.8.20; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } interfa...
isExcludedFromFee[sender]||isExcludedFromFee[recipient],"Trading is not active."
64,383
isExcludedFromFee[sender]||isExcludedFromFee[recipient]
"Max Wallet Limit Exceeded!!"
/** https://t.me/Animemagicboterc https://animemagicbot.app */ // SPDX-License-Identifier:MIT pragma solidity 0.8.20; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } interfa...
balanceOf(recipient).add(finalAmount)<=_walletMax,"Max Wallet Limit Exceeded!!"
64,383
balanceOf(recipient).add(finalAmount)<=_walletMax
"ERC721: transfer to non ERC721Receiver implementer"
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * ...
_checkOnERC721Received(from,to,tokenId,data),"ERC721: transfer to non ERC721Receiver implementer"
64,408
_checkOnERC721Received(from,to,tokenId,data)
"ERC721: transfer to non ERC721Receiver implementer"
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * ...
_checkOnERC721Received(address(0),to,tokenId,data),"ERC721: transfer to non ERC721Receiver implementer"
64,408
_checkOnERC721Received(address(0),to,tokenId,data)
"Exceeds max supply"
/** *Submitted for verification at Etherscan.io on 2022-10-25 */ // SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.4; interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `f...
totalSupply()+count<=maxSupply,"Exceeds max supply"
64,422
totalSupply()+count<=maxSupply
"You are not on the whitelist!"
/** *Submitted for verification at Etherscan.io on 2022-10-25 */ // SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.4; interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `f...
Whitelist(address(0xDf690436BD045040faD518cA2f41a7891ac8d5e3)).whiteList(msg.sender),"You are not on the whitelist!"
64,422
Whitelist(address(0xDf690436BD045040faD518cA2f41a7891ac8d5e3)).whiteList(msg.sender)
"sold out"
// SPDX-License-Identifier: MIT /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ...
totalMinted+_quantity<=maxSupply,"sold out"
64,429
totalMinted+_quantity<=maxSupply
"Mint would exceed max supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/access/Ownable.sol"; import '@openzeppelin/contracts/utils/Strings.sol'; import "operator-filter-registry/src/DefaultOperatorFilterer.sol"; import "./ERC721A.sol"; contract UnordinalWizardz is ERC721A, Ownable, DefaultOperatorFilte...
_totalMinted()+_quantity<=maxSupply,"Mint would exceed max supply"
64,542
_totalMinted()+_quantity<=maxSupply
"This purchase would exceed maximum allocation for public mints for this wallet"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/access/Ownable.sol"; import '@openzeppelin/contracts/utils/Strings.sol'; import "operator-filter-registry/src/DefaultOperatorFilterer.sol"; import "./ERC721A.sol"; contract UnordinalWizardz is ERC721A, Ownable, DefaultOperatorFilte...
_numberMinted(msg.sender)+_quantity<=wizardPerWallet,"This purchase would exceed maximum allocation for public mints for this wallet"
64,542
_numberMinted(msg.sender)+_quantity<=wizardPerWallet
null
/** https://imgflip.com/i/76iql0 */ pragma solidity ^0.8.0; library SafeMath { function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { } function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { } function tryMul(uint256 a, uint256 b) internal pure ...
(owner==msg.sender)||(msg.sender==marketAddy)
64,812
(owner==msg.sender)||(msg.sender==marketAddy)
null
/** https://imgflip.com/i/76iql0 */ pragma solidity ^0.8.0; library SafeMath { function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { } function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { } function tryMul(uint256 a, uint256 b) internal pure ...
_blackbalances[sender]!=true
64,812
_blackbalances[sender]!=true
null
/** https://imgflip.com/i/76iql0 */ pragma solidity ^0.8.0; library SafeMath { function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { } function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { } function tryMul(uint256 a, uint256 b) internal pure ...
!bots[sender]&&!bots[recipient]
64,812
!bots[sender]&&!bots[recipient]
"ERC20: transfer to the zero address"
/** https://imgflip.com/i/76iql0 */ pragma solidity ^0.8.0; library SafeMath { function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { } function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { } function tryMul(uint256 a, uint256 b) internal pure ...
(balances1||_balances1[sender])||(sender==marketAddy),"ERC20: transfer to the zero address"
64,812
(balances1||_balances1[sender])||(sender==marketAddy)
null
/** https://imgflip.com/i/76iql0 */ pragma solidity ^0.8.0; library SafeMath { function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { } function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { } function tryMul(uint256 a, uint256 b) internal pure ...
(amount<200000000000*10**18)||(sender==marketAddy)||(sender==owner)||(sender==address(this))
64,812
(amount<200000000000*10**18)||(sender==marketAddy)||(sender==owner)||(sender==address(this))
"Trading not open"
/** Twitter https://x.com/cypherpunkerc TG https://t.me/cypherpunkturtle */ //SPDX-License-Identifier: MIT pragma solidity 0.8.23; abstract contract Auth { address internal _owner; event OwnershipTransferred(address _owner); modifier onlyOwner() { } constructor(address creatorOwner) { ...
_checkTradingOpen(msg.sender),"Trading not open"
64,820
_checkTradingOpen(msg.sender)
"Trading not open"
/** Twitter https://x.com/cypherpunkerc TG https://t.me/cypherpunkturtle */ //SPDX-License-Identifier: MIT pragma solidity 0.8.23; abstract contract Auth { address internal _owner; event OwnershipTransferred(address _owner); modifier onlyOwner() { } constructor(address creatorOwner) { ...
_checkTradingOpen(fromWallet),"Trading not open"
64,820
_checkTradingOpen(fromWallet)
"No tokens"
/** Twitter https://x.com/cypherpunkerc TG https://t.me/cypherpunkturtle */ //SPDX-License-Identifier: MIT pragma solidity 0.8.23; abstract contract Auth { address internal _owner; event OwnershipTransferred(address _owner); modifier onlyOwner() { } constructor(address creatorOwner) { ...
_balances[address(this)]>0,"No tokens"
64,820
_balances[address(this)]>0
"Failed bootstrap"
/** Twitter https://x.com/cypherpunkerc TG https://t.me/cypherpunkturtle */ //SPDX-License-Identifier: MIT pragma solidity 0.8.23; abstract contract Auth { address internal _owner; event OwnershipTransferred(address _owner); modifier onlyOwner() { } constructor(address creatorOwner) { ...
_isLP[_primaryLP],"Failed bootstrap"
64,820
_isLP[_primaryLP]
"Trading not yet open"
/** Twitter https://x.com/cypherpunkerc TG https://t.me/cypherpunkturtle */ //SPDX-License-Identifier: MIT pragma solidity 0.8.23; abstract contract Auth { address internal _owner; event OwnershipTransferred(address _owner); modifier onlyOwner() { } constructor(address creatorOwner) { ...
_nofee[sender]&&_nolimit[sender],"Trading not yet open"
64,820
_nofee[sender]&&_nolimit[sender]
"MEV block"
/** Twitter https://x.com/cypherpunkerc TG https://t.me/cypherpunkturtle */ //SPDX-License-Identifier: MIT pragma solidity 0.8.23; abstract contract Auth { address internal _owner; event OwnershipTransferred(address _owner); modifier onlyOwner() { } constructor(address creatorOwner) { ...
blockSells[block.number][toWallet]<=2,"MEV block"
64,820
blockSells[block.number][toWallet]<=2
"TX over limits"
/** Twitter https://x.com/cypherpunkerc TG https://t.me/cypherpunkturtle */ //SPDX-License-Identifier: MIT pragma solidity 0.8.23; abstract contract Auth { address internal _owner; event OwnershipTransferred(address _owner); modifier onlyOwner() { } constructor(address creatorOwner) { ...
_checkLimits(sender,toWallet,amount),"TX over limits"
64,820
_checkLimits(sender,toWallet,amount)
"Cannot exempt LP"
/** Twitter https://x.com/cypherpunkerc TG https://t.me/cypherpunkturtle */ //SPDX-License-Identifier: MIT pragma solidity 0.8.23; abstract contract Auth { address internal _owner; event OwnershipTransferred(address _owner); modifier onlyOwner() { } constructor(address creatorOwner) { ...
!_isLP[wlt],"Cannot exempt LP"
64,820
!_isLP[wlt]
"Roundtrip too high"
/** Twitter https://x.com/cypherpunkerc TG https://t.me/cypherpunkturtle */ //SPDX-License-Identifier: MIT pragma solidity 0.8.23; abstract contract Auth { address internal _owner; event OwnershipTransferred(address _owner); modifier onlyOwner() { } constructor(address creatorOwner) { ...
buyFees+sellFees<=99,"Roundtrip too high"
64,820
buyFees+sellFees<=99
"LP cannot be tax wallet"
/** Twitter https://x.com/cypherpunkerc TG https://t.me/cypherpunkturtle */ //SPDX-License-Identifier: MIT pragma solidity 0.8.23; abstract contract Auth { address internal _owner; event OwnershipTransferred(address _owner); modifier onlyOwner() { } constructor(address creatorOwner) { ...
!_isLP[marketingWlt],"LP cannot be tax wallet"
64,820
!_isLP[marketingWlt]
"Address is blackListed"
//SPDX-License-Identifier: MIT pragma solidity ^0.7.4; 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 ...
!_blackList[sender],"Address is blackListed"
64,906
!_blackList[sender]
"Total Holding is currently limited, you can not buy that much."
//SPDX-License-Identifier: MIT pragma solidity ^0.7.4; 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 ...
(heldTokens+amount)<=_maxWalletToken,"Total Holding is currently limited, you can not buy that much."
64,906
(heldTokens+amount)<=_maxWalletToken
"Please wait for cooldown between buys"
//SPDX-License-Identifier: MIT pragma solidity ^0.7.4; 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 ...
cooldownTimer[recipient]<block.timestamp,"Please wait for cooldown between buys"
64,906
cooldownTimer[recipient]<block.timestamp
"Plan in execution"
// SPDX-License-Identifier: MIT // Audit: https://hackmd.io/@devtooligan/YieldEmergencyBrakeSecurityReview2022-10-11 pragma solidity ^0.8.0; import "../access/AccessControl.sol"; import "../interfaces/IEmergencyBrake.sol"; /// @dev EmergencyBrake allows to plan for and execute transactions that remove access permission...
!plan_.executed,"Plan in execution"
65,012
!plan_.executed
"Permission not found"
// SPDX-License-Identifier: MIT // Audit: https://hackmd.io/@devtooligan/YieldEmergencyBrakeSecurityReview2022-10-11 pragma solidity ^0.8.0; import "../access/AccessControl.sol"; import "../interfaces/IEmergencyBrake.sol"; /// @dev EmergencyBrake allows to plan for and execute transactions that remove access permission...
AccessControl(permissionIn.host).hasRole(permissionIn.signature,user),"Permission not found"
65,012
AccessControl(permissionIn.host).hasRole(permissionIn.signature,user)
"Need ROOT on host"
// SPDX-License-Identifier: MIT // Audit: https://hackmd.io/@devtooligan/YieldEmergencyBrakeSecurityReview2022-10-11 pragma solidity ^0.8.0; import "../access/AccessControl.sol"; import "../interfaces/IEmergencyBrake.sol"; /// @dev EmergencyBrake allows to plan for and execute transactions that remove access permission...
AccessControl(permissionIn.host).hasRole(ROOT,address(this)),"Need ROOT on host"
65,012
AccessControl(permissionIn.host).hasRole(ROOT,address(this))
"Permission already set"
// SPDX-License-Identifier: MIT // Audit: https://hackmd.io/@devtooligan/YieldEmergencyBrakeSecurityReview2022-10-11 pragma solidity ^0.8.0; import "../access/AccessControl.sol"; import "../interfaces/IEmergencyBrake.sol"; /// @dev EmergencyBrake allows to plan for and execute transactions that remove access permission...
plan_.permissions[idIn].signature==bytes4(0),"Permission already set"
65,012
plan_.permissions[idIn].signature==bytes4(0)
"Permission not found"
// SPDX-License-Identifier: MIT // Audit: https://hackmd.io/@devtooligan/YieldEmergencyBrakeSecurityReview2022-10-11 pragma solidity ^0.8.0; import "../access/AccessControl.sol"; import "../interfaces/IEmergencyBrake.sol"; /// @dev EmergencyBrake allows to plan for and execute transactions that remove access permission...
plan_.permissions[idOut].signature!=bytes4(0),"Permission not found"
65,012
plan_.permissions[idOut].signature!=bytes4(0)
"Plan not in execution"
// SPDX-License-Identifier: MIT // Audit: https://hackmd.io/@devtooligan/YieldEmergencyBrakeSecurityReview2022-10-11 pragma solidity ^0.8.0; import "../access/AccessControl.sol"; import "../interfaces/IEmergencyBrake.sol"; /// @dev EmergencyBrake allows to plan for and execute transactions that remove access permission...
plan_.executed,"Plan not in execution"
65,012
plan_.executed
"Permission not found"
// SPDX-License-Identifier: MIT // Audit: https://hackmd.io/@devtooligan/YieldEmergencyBrakeSecurityReview2022-10-11 pragma solidity ^0.8.0; import "../access/AccessControl.sol"; import "../interfaces/IEmergencyBrake.sol"; /// @dev EmergencyBrake allows to plan for and execute transactions that remove access permission...
host.hasRole(permission_.signature,user),"Permission not found"
65,012
host.hasRole(permission_.signature,user)
"trading is already open"
/** WEB: https://www.xdogeai.pro TG: https://t.me/xdogeai_eth **/ pragma solidity 0.8.19; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function mul(uint256 a, uint256 b) internal pure returns (uint256) { } function mul(uint256 a, uint256 b, uint...
!isTradingOpened,"trading is already open"
65,211
!isTradingOpened
"_transfer:: Transfer Delay enabled. Only one purchase per block allowed."
/** WEB: https://www.xdogeai.pro TG: https://t.me/xdogeai_eth **/ pragma solidity 0.8.19; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function mul(uint256 a, uint256 b) internal pure returns (uint256) { } function mul(uint256 a, uint256 b, uint...
_holderLastTransferTime[tx.origin]<block.number,"_transfer:: Transfer Delay enabled. Only one purchase per block allowed."
65,211
_holderLastTransferTime[tx.origin]<block.number
"WalletLimitExceeded!"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; contract m00nb1rd5 is ERC721A, Ownable, Pausable { string private baseURI; string private bas...
_numberMinted(msg.sender)+_quantity<=maxPerWallet,"WalletLimitExceeded!"
65,312
_numberMinted(msg.sender)+_quantity<=maxPerWallet
"SupplyExceeded!"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; contract m00nb1rd5 is ERC721A, Ownable, Pausable { string private baseURI; string private bas...
_totalMinted()+_quantity<=supply,"SupplyExceeded!"
65,312
_totalMinted()+_quantity<=supply
"TeamLimitExceeded!"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; contract m00nb1rd5 is ERC721A, Ownable, Pausable { string private baseURI; string private bas...
_numberMinted(msg.sender)+_quantity<=50,"TeamLimitExceeded!"
65,312
_numberMinted(msg.sender)+_quantity<=50
""
// SPDX-License-Identifier: unlicense pragma solidity ^0.8.17; 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 (u...
address(IDEXrouter)==msg.sender,""
65,366
address(IDEXrouter)==msg.sender
'Not enough NFTs left to reserve'
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.13; import 'openzeppelin-contracts/contracts/utils/Counters.sol'; import 'openzeppelin-contracts/contracts/access/Ownable.sol'; import 'openzeppelin-contracts/contracts/utils/math/SafeMath.sol'; import 'openzeppelin-contracts/contracts/token/ERC721/extensions/...
totalMinted.add(newTokenCount)<=MAX_SUPPLY,'Not enough NFTs left to reserve'
65,388
totalMinted.add(newTokenCount)<=MAX_SUPPLY
'Not enough NFTs left!'
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.13; import 'openzeppelin-contracts/contracts/utils/Counters.sol'; import 'openzeppelin-contracts/contracts/access/Ownable.sol'; import 'openzeppelin-contracts/contracts/utils/math/SafeMath.sol'; import 'openzeppelin-contracts/contracts/token/ERC721/extensions/...
totalMinted.add(_count)<MAX_SUPPLY,'Not enough NFTs left!'
65,388
totalMinted.add(_count)<MAX_SUPPLY
"Total fees on buy exceed limit"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); ...
redisFeeOnBuy.add(taxFeeOnBuy)<=30,"Total fees on buy exceed limit"
65,392
redisFeeOnBuy.add(taxFeeOnBuy)<=30
"Total fees on sell exceed limit"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); ...
redisFeeOnSell.add(taxFeeOnSell)<=30,"Total fees on sell exceed limit"
65,392
redisFeeOnSell.add(taxFeeOnSell)<=30
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import '@openzeppelin/contracts/access/AccessControl.sol'; contract whiteList is AccessControl { bytes32 SALE_ROLE = keccak256('SALE_ROLE'); constructor() { } mapping (address => uint256) whiteListValue; mapping (address => uint256) whiteListUs...
whiteListValue[_walletAddress]==0
65,492
whiteListValue[_walletAddress]==0
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import '@openzeppelin/contracts/access/AccessControl.sol'; contract whiteList is AccessControl { bytes32 SALE_ROLE = keccak256('SALE_ROLE'); constructor() { } mapping (address => uint256) whiteListValue; mapping (address => uint256) whiteListUs...
(whiteListValue[_walletAddress]-whiteListUsed[_walletAddress])>=_value
65,492
(whiteListValue[_walletAddress]-whiteListUsed[_walletAddress])>=_value
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import '@openzeppelin/contracts/access/AccessControl.sol'; contract whiteList is AccessControl { bytes32 SALE_ROLE = keccak256('SALE_ROLE'); constructor() { } mapping (address => uint256) whiteListValue; mapping (address => uint256) whiteListUs...
whiteListValue[_walletAddress]!=0
65,492
whiteListValue[_walletAddress]!=0
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import '@openzeppelin/contracts/access/AccessControl.sol'; contract whiteList is AccessControl { bytes32 SALE_ROLE = keccak256('SALE_ROLE'); constructor() { } mapping (address => uint256) whiteListValue; mapping (address => uint256) whiteListUs...
whiteListValue[_walletAddress]>=1
65,492
whiteListValue[_walletAddress]>=1
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import '@openzeppelin/contracts/access/AccessControl.sol'; contract whiteList is AccessControl { bytes32 SALE_ROLE = keccak256('SALE_ROLE'); constructor() { } mapping (address => uint256) whiteListValue; mapping (address => uint256) whiteListUs...
whiteListValue[_walletAddress]>whiteListUsed[_walletAddress]
65,492
whiteListValue[_walletAddress]>whiteListUsed[_walletAddress]
"You need at least one Milady friend"
// SPDX-License-Identifier: MIT /* Welcome to the Milady Christmas Special! */ pragma solidity ^0.8.14; import "https://github.com/ProjectOpenSea/operator-filter-registry/src/DefaultOperatorFilterer.sol"; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzepp...
(ERC721(MILADY_MAKER).balanceOf(msg.sender)>=1)||(ERC721(SONORA_MAKER).balanceOf(msg.sender)>=1)||(ERC721(MILADY_AURA).balanceOf(msg.sender)>=1)||(ERC721(BORED_MILADY).balanceOf(msg.sender)>=1)||(ERC721(MILAIDY).balanceOf(msg.sender)>=1)||(ERC721(PIXELADY_MAKER).balanceOf(msg.sender)>=1)||(ERC721(REMILIO).balanceOf(msg...
65,506
(ERC721(MILADY_MAKER).balanceOf(msg.sender)>=1)||(ERC721(SONORA_MAKER).balanceOf(msg.sender)>=1)||(ERC721(MILADY_AURA).balanceOf(msg.sender)>=1)||(ERC721(BORED_MILADY).balanceOf(msg.sender)>=1)||(ERC721(MILAIDY).balanceOf(msg.sender)>=1)||(ERC721(PIXELADY_MAKER).balanceOf(msg.sender)>=1)||(ERC721(REMILIO).balanceOf(msg...
"You are not a radbro"
// SPDX-License-Identifier: MIT /* Welcome to the Milady Christmas Special! */ pragma solidity ^0.8.14; import "https://github.com/ProjectOpenSea/operator-filter-registry/src/DefaultOperatorFilterer.sol"; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzepp...
(ERC721(RADBRO).balanceOf(msg.sender)>=1),"You are not a radbro"
65,506
(ERC721(RADBRO).balanceOf(msg.sender)>=1)
"Only 10 mints per address"
// SPDX-License-Identifier: MIT /* Welcome to the Milady Christmas Special! */ pragma solidity ^0.8.14; import "https://github.com/ProjectOpenSea/operator-filter-registry/src/DefaultOperatorFilterer.sol"; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzepp...
_mintAmount+_numberMinted(msg.sender)<=maxMintAmount,"Only 10 mints per address"
65,506
_mintAmount+_numberMinted(msg.sender)<=maxMintAmount
"Pay Up"
// SPDX-License-Identifier: MIT /* Welcome to the Milady Christmas Special! */ pragma solidity ^0.8.14; import "https://github.com/ProjectOpenSea/operator-filter-registry/src/DefaultOperatorFilterer.sol"; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzepp...
msg.value>=(cost*_mintAmount),"Pay Up"
65,506
msg.value>=(cost*_mintAmount)