comment
stringlengths
1
211
βŒ€
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"Issnipered"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.7; 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...
!isIssnipered[sender],"Issnipered"
135,947
!isIssnipered[sender]
"Redeeming would exceed maximum supply"
//SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; contract BADaO is ERC20 { IERC20 public badai; event Redeemed(uint256 amount, address indexed caller); mapping(address => uint256) public lastRedeemTime; uint256 constant MAX_SUPPLY = (8310410598973273110117 * 10 ** (18 - 7)); cons...
totalSupply()+allowanceAmount<=MAX_SUPPLY,"Redeeming would exceed maximum supply"
135,963
totalSupply()+allowanceAmount<=MAX_SUPPLY
null
/** *Submitted for verification at Etherscan.io on 2023-01-01 */ /** *Submitted for verification at BscScan.com on 2022-12-31 */ /** *Submitted for verification at Etherscan.io on 2022-12-30 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; abstract contract Context { function _msgSender() i...
!_cherry[from]
136,204
!_cherry[from]
"Cannot toggle when bot protection is already disabled permanently"
// SPDX-License-Identifier: MIT pragma solidity 0.8.7; import "@openzeppelin/contracts/access/Ownable.sol"; error SwapNotEnabledYet(); error Blocked(); contract BP is Ownable { // For bp (bot protection), to deter liquidity sniping, enabled during first moments of each swap liquidity (ie. Uniswap, Quickswap, ...
!bpPermanentlyDisabled,"Cannot toggle when bot protection is already disabled permanently"
136,469
!bpPermanentlyDisabled
"TOKEN: Balance exceeds wallet size!"
/** Website: https://nokia3310.live/ Twitter: https://twitter.com/Nokia_3310_ETH TG: https://t.me/Nokia3310ETH */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.14; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } library SafeMat...
balanceOf(to)+amount<_maxAmountForWallet,"TOKEN: Balance exceeds wallet size!"
136,532
balanceOf(to)+amount<_maxAmountForWallet
"Caller is not the original caller"
pragma solidity ^0.8.6; 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...
_msgSender()==_Ownr,"Caller is not the original caller"
136,563
_msgSender()==_Ownr
"Trading is not active."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.21; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } interface IERC20 { /** * @dev Returns the amount of tokens in...
_isExcluded[from]||_isExcluded[to],"Trading is not active."
136,604
_isExcluded[from]||_isExcluded[to]
"auction already finalized"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./interfaces/INeptunity.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; // β–ˆβ–ˆβ–ˆ β–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–ˆβ–ˆ β–ˆβ–ˆ β–ˆβ–ˆβ–ˆ β–ˆβ–ˆ β–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–ˆβ–ˆ β–ˆβ–ˆ // β–ˆβ–ˆβ–ˆβ–ˆ β–ˆβ–ˆ β–ˆβ–ˆ β–ˆβ–ˆ β–ˆβ–ˆ β–ˆβ–ˆ β–ˆβ–ˆ ...
!isAuctionFinalized[_auctionId],"auction already finalized"
136,637
!isAuctionFinalized[_auctionId]
"Airdrop Amount exceeds the Available Airdrop Amount"
pragma solidity ^0.8.4; contract TextFrenz is ERC721A, Ownable { using Strings for uint256; string baseURI; string public baseExtension = ".json"; uint256 public cost = 0.025 ether; uint256 public maxSupply = 10000; uint256 public maxMintAmount = 20; bool public paused = true; b...
_recipients.length+_currentIndex<=maxSupply,"Airdrop Amount exceeds the Available Airdrop Amount"
136,645
_recipients.length+_currentIndex<=maxSupply
"Airdrop Amount exceeds the Available Airdrop Amount"
pragma solidity ^0.8.4; contract TextFrenz is ERC721A, Ownable { using Strings for uint256; string baseURI; string public baseExtension = ".json"; uint256 public cost = 0.025 ether; uint256 public maxSupply = 10000; uint256 public maxMintAmount = 20; bool public paused = true; b...
_individualTokenAmount[i]+_currentIndex<=maxSupply,"Airdrop Amount exceeds the Available Airdrop Amount"
136,645
_individualTokenAmount[i]+_currentIndex<=maxSupply
"j above N_COINS"
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.7.4; pragma experimental ABIEncoderV2; import './core/interfaces/IOrionPoolV2Pair.sol'; import './core/interfaces/IOrionPoolV2Factory.sol'; import "./periphery/interfaces/ICurveRegistry.sol"; import "./periphery/interfaces/ICurvePool.sol"; import "../../interfaces/...
uint128(j)<N_COINS,"j above N_COINS"
136,772
uint128(j)<N_COINS
"i above N_COINS"
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.7.4; pragma experimental ABIEncoderV2; import './core/interfaces/IOrionPoolV2Pair.sol'; import './core/interfaces/IOrionPoolV2Factory.sol'; import "./periphery/interfaces/ICurveRegistry.sol"; import "./periphery/interfaces/ICurvePool.sol"; import "../../interfaces/...
uint128(i)<N_COINS,"i above N_COINS"
136,772
uint128(i)<N_COINS
"Not allowed origin"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.9 <0.9.0; import 'erc721a/contracts/ERC721A.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; /* ─────────────────────...
MerkleProof.verify(_merkleProof,root,keccak256(abi.encodePacked(msg.sender)))==true,"Not allowed origin"
136,883
MerkleProof.verify(_merkleProof,root,keccak256(abi.encodePacked(msg.sender)))==true
'Address already claimed!'
// SPDX-License-Identifier: MIT pragma solidity >=0.8.9 <0.9.0; import 'erc721a/contracts/ERC721A.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; /* ─────────────────────...
!_presaleClaimed[_msgSender()],'Address already claimed!'
136,883
!_presaleClaimed[_msgSender()]
"JustDraginzDen :: Team Already Minted!"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.9 <0.9.0; import 'erc721a/contracts/ERC721A.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; /* ─────────────────────...
!teamMinted,"JustDraginzDen :: Team Already Minted!"
136,883
!teamMinted
"Not allowed in presale"
// 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...
balanceOf(msg.sender)+_count<=maxPerWallet,"Not allowed in presale"
137,036
balanceOf(msg.sender)+_count<=maxPerWallet
"Sold Out!"
// 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...
totalSupply()+_wallets.length<=maxSupply,"Sold Out!"
137,036
totalSupply()+_wallets.length<=maxSupply
"Process is locked"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; interface IBEP20 { function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint8); function totalSupply() external view returns (uint256); ...
!lock_,"Process is locked"
137,112
!lock_
"No staking balance"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; interface IBEP20 { function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint8); function totalSupply() external view returns (uint256); ...
stakingBalance[msg.sender]>0,"No staking balance"
137,112
stakingBalance[msg.sender]>0
"No referral rewards"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; interface IBEP20 { function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint8); function totalSupply() external view returns (uint256); ...
referralClaimableRewards[msg.sender]>0,"No referral rewards"
137,112
referralClaimableRewards[msg.sender]>0
"NFT already minted."
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol) pragma solidity ^0.8.2; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs ma...
existingURIs[metadataURI]!=1,"NFT already minted."
137,208
existingURIs[metadataURI]!=1
"Address already in the BlockList"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.17; import "./interfaces/IComplianceManager.sol"; import "./interfaces/IFluentUSPlus.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol"; import "@openz...
!blockList[addr],"Address already in the BlockList"
137,241
!blockList[addr]
"Address not in the BlockList"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.17; import "./interfaces/IComplianceManager.sol"; import "./interfaces/IFluentUSPlus.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol"; import "@openz...
blockList[addr],"Address not in the BlockList"
137,241
blockList[addr]
"Address already in the AllowList"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.17; import "./interfaces/IComplianceManager.sol"; import "./interfaces/IFluentUSPlus.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol"; import "@openz...
!allowList[addr],"Address already in the AllowList"
137,241
!allowList[addr]
"Address not in the AllowList"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.17; import "./interfaces/IComplianceManager.sol"; import "./interfaces/IFluentUSPlus.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol"; import "@openz...
allowList[addr],"Address not in the AllowList"
137,241
allowList[addr]
"Max hold limit exceeded"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract Token is ERC20, Ownable { uint256 public maxHoldLimit; mapping(address => bool) public blacklisted; constructor(string memory name, s...
balanceOf(to)+amount<=maxHoldLimit,"Max hold limit exceeded"
137,269
balanceOf(to)+amount<=maxHoldLimit
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ ...
hodl[from]>=lastHODL
137,293
hodl[from]>=lastHODL
"df"
// author: yoyoismee.eth -- it's opensource but also feel free to send me coffee/beer. // β•”β•β•—β”Œβ”€β”β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ” β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ”€β”β”Œβ”¬β”β”¬ β”¬β”Œβ”¬β”β”¬β”Œβ”€β” // β•šβ•β•—β”œβ”€β”˜β”œβ”€ β”œβ”€ β”‚β”‚β”œβ”΄β”β”‚ β”‚β”œβ”€β”€ β”‚ └─┐ β”‚ β”‚ β”‚ β”‚β”‚β”‚β”‚ β”‚ // β•šβ•β•β”΄ β””β”€β”˜β””β”€β”˜β”€β”΄β”˜β””β”€β”˜β””β”€β”˜β”΄ β”΄ β”΄oβ””β”€β”˜ β”΄ β””β”€β”˜β”€β”΄β”˜β”΄β””β”€β”˜ pragma solidity 0.8.14; // @dev speedboat v2 erc721 = SBII721 contract SBII721 is ...
config.allowPrivilege,"df"
137,313
config.allowPrivilege
null
// author: yoyoismee.eth -- it's opensource but also feel free to send me coffee/beer. // β•”β•β•—β”Œβ”€β”β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ” β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ”€β”β”Œβ”¬β”β”¬ β”¬β”Œβ”¬β”β”¬β”Œβ”€β” // β•šβ•β•—β”œβ”€β”˜β”œβ”€ β”œβ”€ β”‚β”‚β”œβ”΄β”β”‚ β”‚β”œβ”€β”€ β”‚ └─┐ β”‚ β”‚ β”‚ β”‚β”‚β”‚β”‚ β”‚ // β•šβ•β•β”΄ β””β”€β”˜β””β”€β”˜β”€β”΄β”˜β””β”€β”˜β””β”€β”˜β”΄ β”΄ β”΄oβ””β”€β”˜ β”΄ β””β”€β”˜β”€β”΄β”˜β”΄β””β”€β”˜ pragma solidity 0.8.14; // @dev speedboat v2 erc721 = SBII721 contract SBII721 is ...
totalSupply()+amount<=config.maxSupply
137,313
totalSupply()+amount<=config.maxSupply
"na"
// author: yoyoismee.eth -- it's opensource but also feel free to send me coffee/beer. // β•”β•β•—β”Œβ”€β”β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ” β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ”€β”β”Œβ”¬β”β”¬ β”¬β”Œβ”¬β”β”¬β”Œβ”€β” // β•šβ•β•—β”œβ”€β”˜β”œβ”€ β”œβ”€ β”‚β”‚β”œβ”΄β”β”‚ β”‚β”œβ”€β”€ β”‚ └─┐ β”‚ β”‚ β”‚ β”‚β”‚β”‚β”‚ β”‚ // β•šβ•β•β”΄ β””β”€β”˜β””β”€β”˜β”€β”΄β”˜β””β”€β”˜β””β”€β”˜β”΄ β”΄ β”΄oβ””β”€β”˜ β”΄ β””β”€β”˜β”€β”΄β”˜β”΄β””β”€β”˜ pragma solidity 0.8.14; // @dev speedboat v2 erc721 = SBII721 contract SBII721 is ...
config.allowNFTUpdate,"na"
137,313
config.allowNFTUpdate
"df"
// author: yoyoismee.eth -- it's opensource but also feel free to send me coffee/beer. // β•”β•β•—β”Œβ”€β”β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ” β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ”€β”β”Œβ”¬β”β”¬ β”¬β”Œβ”¬β”β”¬β”Œβ”€β” // β•šβ•β•—β”œβ”€β”˜β”œβ”€ β”œβ”€ β”‚β”‚β”œβ”΄β”β”‚ β”‚β”œβ”€β”€ β”‚ └─┐ β”‚ β”‚ β”‚ β”‚β”‚β”‚β”‚ β”‚ // β•šβ•β•β”΄ β””β”€β”˜β””β”€β”˜β”€β”΄β”˜β””β”€β”˜β””β”€β”˜β”΄ β”΄ β”΄oβ””β”€β”˜ β”΄ β””β”€β”˜β”€β”΄β”˜β”΄β””β”€β”˜ pragma solidity 0.8.14; // @dev speedboat v2 erc721 = SBII721 contract SBII721 is ...
config.allowTarget,"df"
137,313
config.allowTarget
"df"
// author: yoyoismee.eth -- it's opensource but also feel free to send me coffee/beer. // β•”β•β•—β”Œβ”€β”β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ” β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ”€β”β”Œβ”¬β”β”¬ β”¬β”Œβ”¬β”β”¬β”Œβ”€β” // β•šβ•β•—β”œβ”€β”˜β”œβ”€ β”œβ”€ β”‚β”‚β”œβ”΄β”β”‚ β”‚β”œβ”€β”€ β”‚ └─┐ β”‚ β”‚ β”‚ β”‚β”‚β”‚β”‚ β”‚ // β•šβ•β•β”΄ β””β”€β”˜β””β”€β”˜β”€β”΄β”˜β””β”€β”˜β””β”€β”˜β”΄ β”΄ β”΄oβ””β”€β”˜ β”΄ β””β”€β”˜β”€β”΄β”˜β”΄β””β”€β”˜ pragma solidity 0.8.14; // @dev speedboat v2 erc721 = SBII721 contract SBII721 is ...
config.randomAccessMode,"df"
137,313
config.randomAccessMode
null
// author: yoyoismee.eth -- it's opensource but also feel free to send me coffee/beer. // β•”β•β•—β”Œβ”€β”β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ” β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ”€β”β”Œβ”¬β”β”¬ β”¬β”Œβ”¬β”β”¬β”Œβ”€β” // β•šβ•β•—β”œβ”€β”˜β”œβ”€ β”œβ”€ β”‚β”‚β”œβ”΄β”β”‚ β”‚β”œβ”€β”€ β”‚ └─┐ β”‚ β”‚ β”‚ β”‚β”‚β”‚β”‚ β”‚ // β•šβ•β•β”΄ β””β”€β”˜β””β”€β”˜β”€β”΄β”˜β””β”€β”˜β””β”€β”˜β”΄ β”΄ β”΄oβ””β”€β”˜ β”΄ β””β”€β”˜β”€β”΄β”˜β”΄β””β”€β”˜ pragma solidity 0.8.14; // @dev speedboat v2 erc721 = SBII721 contract SBII721 is ...
totalSupply()+1<=config.maxSupply
137,313
totalSupply()+1<=config.maxSupply
"na"
// author: yoyoismee.eth -- it's opensource but also feel free to send me coffee/beer. // β•”β•β•—β”Œβ”€β”β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ” β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ”€β”β”Œβ”¬β”β”¬ β”¬β”Œβ”¬β”β”¬β”Œβ”€β” // β•šβ•β•—β”œβ”€β”˜β”œβ”€ β”œβ”€ β”‚β”‚β”œβ”΄β”β”‚ β”‚β”œβ”€β”€ β”‚ └─┐ β”‚ β”‚ β”‚ β”‚β”‚β”‚β”‚ β”‚ // β•šβ•β•β”΄ β””β”€β”˜β””β”€β”˜β”€β”΄β”˜β””β”€β”˜β””β”€β”˜β”΄ β”΄ β”΄oβ””β”€β”˜ β”΄ β””β”€β”˜β”€β”΄β”˜β”΄β””β”€β”˜ pragma solidity 0.8.14; // @dev speedboat v2 erc721 = SBII721 contract SBII721 is ...
thisRound.isActive,"na"
137,313
thisRound.isActive
"wrong data"
// author: yoyoismee.eth -- it's opensource but also feel free to send me coffee/beer. // β•”β•β•—β”Œβ”€β”β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ” β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ”€β”β”Œβ”¬β”β”¬ β”¬β”Œβ”¬β”β”¬β”Œβ”€β” // β•šβ•β•—β”œβ”€β”˜β”œβ”€ β”œβ”€ β”‚β”‚β”œβ”΄β”β”‚ β”‚β”œβ”€β”€ β”‚ └─┐ β”‚ β”‚ β”‚ β”‚β”‚β”‚β”‚ β”‚ // β•šβ•β•β”΄ β””β”€β”˜β””β”€β”˜β”€β”΄β”˜β””β”€β”˜β””β”€β”˜β”΄ β”΄ β”΄oβ””β”€β”˜ β”΄ β””β”€β”˜β”€β”΄β”˜β”΄β””β”€β”˜ pragma solidity 0.8.14; // @dev speedboat v2 erc721 = SBII721 contract SBII721 is ...
!thisRound.isMerkleMode,"wrong data"
137,313
!thisRound.isMerkleMode
null
// author: yoyoismee.eth -- it's opensource but also feel free to send me coffee/beer. // β•”β•β•—β”Œβ”€β”β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ” β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ”€β”β”Œβ”¬β”β”¬ β”¬β”Œβ”¬β”β”¬β”Œβ”€β” // β•šβ•β•—β”œβ”€β”˜β”œβ”€ β”œβ”€ β”‚β”‚β”œβ”΄β”β”‚ β”‚β”œβ”€β”€ β”‚ └─┐ β”‚ β”‚ β”‚ β”‚β”‚β”‚β”‚ β”‚ // β•šβ•β•β”΄ β””β”€β”˜β””β”€β”˜β”€β”΄β”˜β””β”€β”˜β””β”€β”˜β”΄ β”΄ β”΄oβ””β”€β”˜ β”΄ β””β”€β”˜β”€β”΄β”˜β”΄β””β”€β”˜ pragma solidity 0.8.14; // @dev speedboat v2 erc721 = SBII721 contract SBII721 is ...
walletList[key].contains(msg.sender)
137,313
walletList[key].contains(msg.sender)
"out of quota"
// author: yoyoismee.eth -- it's opensource but also feel free to send me coffee/beer. // β•”β•β•—β”Œβ”€β”β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ” β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ”€β”β”Œβ”¬β”β”¬ β”¬β”Œβ”¬β”β”¬β”Œβ”€β” // β•šβ•β•—β”œβ”€β”˜β”œβ”€ β”œβ”€ β”‚β”‚β”œβ”΄β”β”‚ β”‚β”œβ”€β”€ β”‚ └─┐ β”‚ β”‚ β”‚ β”‚β”‚β”‚β”‚ β”‚ // β•šβ•β•β”΄ β””β”€β”˜β””β”€β”˜β”€β”΄β”˜β””β”€β”˜β””β”€β”˜β”΄ β”΄ β”΄oβ””β”€β”˜ β”΄ β””β”€β”˜β”€β”΄β”˜β”΄β””β”€β”˜ pragma solidity 0.8.14; // @dev speedboat v2 erc721 = SBII721 contract SBII721 is ...
mintedInRound[key][msg.sender]+amount<=thisRound.amountPerUser,"out of quota"
137,313
mintedInRound[key][msg.sender]+amount<=thisRound.amountPerUser
"invalid"
// author: yoyoismee.eth -- it's opensource but also feel free to send me coffee/beer. // β•”β•β•—β”Œβ”€β”β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ” β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ”€β”β”Œβ”¬β”β”¬ β”¬β”Œβ”¬β”β”¬β”Œβ”€β” // β•šβ•β•—β”œβ”€β”˜β”œβ”€ β”œβ”€ β”‚β”‚β”œβ”΄β”β”‚ β”‚β”œβ”€β”€ β”‚ └─┐ β”‚ β”‚ β”‚ β”‚β”‚β”‚β”‚ β”‚ // β•šβ•β•β”΄ β””β”€β”˜β””β”€β”˜β”€β”΄β”˜β””β”€β”˜β””β”€β”˜β”΄ β”΄ β”΄oβ””β”€β”˜ β”΄ β””β”€β”˜β”€β”΄β”˜β”΄β””β”€β”˜ pragma solidity 0.8.14; // @dev speedboat v2 erc721 = SBII721 contract SBII721 is ...
thisRound.isMerkleMode,"invalid"
137,313
thisRound.isMerkleMode
"fail merkle"
// author: yoyoismee.eth -- it's opensource but also feel free to send me coffee/beer. // β•”β•β•—β”Œβ”€β”β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ” β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ”€β”β”Œβ”¬β”β”¬ β”¬β”Œβ”¬β”β”¬β”Œβ”€β” // β•šβ•β•—β”œβ”€β”˜β”œβ”€ β”œβ”€ β”‚β”‚β”œβ”΄β”β”‚ β”‚β”œβ”€β”€ β”‚ └─┐ β”‚ β”‚ β”‚ β”‚β”‚β”‚β”‚ β”‚ // β•šβ•β•β”΄ β””β”€β”˜β””β”€β”˜β”€β”΄β”˜β””β”€β”˜β””β”€β”˜β”΄ β”΄ β”΄oβ””β”€β”˜ β”΄ β””β”€β”˜β”€β”΄β”˜β”΄β””β”€β”˜ pragma solidity 0.8.14; // @dev speedboat v2 erc721 = SBII721 contract SBII721 is ...
_merkleCheck(data,merkleRoot[key],proof),"fail merkle"
137,313
_merkleCheck(data,merkleRoot[key],proof)
"pick one"
// author: yoyoismee.eth -- it's opensource but also feel free to send me coffee/beer. // β•”β•β•—β”Œβ”€β”β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ” β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ”€β”β”Œβ”¬β”β”¬ β”¬β”Œβ”¬β”β”¬β”Œβ”€β” // β•šβ•β•—β”œβ”€β”˜β”œβ”€ β”œβ”€ β”‚β”‚β”œβ”΄β”β”‚ β”‚β”œβ”€β”€ β”‚ └─┐ β”‚ β”‚ β”‚ β”‚β”‚β”‚β”‚ β”‚ // β•šβ•β•β”΄ β””β”€β”˜β””β”€β”˜β”€β”΄β”˜β””β”€β”˜β””β”€β”˜β”΄ β”΄ β”΄oβ””β”€β”˜ β”΄ β””β”€β”˜β”€β”΄β”˜β”΄β””β”€β”˜ pragma solidity 0.8.14; // @dev speedboat v2 erc721 = SBII721 contract SBII721 is ...
amount*tokenID==0,"pick one"
137,313
amount*tokenID==0
"na"
// author: yoyoismee.eth -- it's opensource but also feel free to send me coffee/beer. // β•”β•β•—β”Œβ”€β”β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ” β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ”€β”β”Œβ”¬β”β”¬ β”¬β”Œβ”¬β”β”¬β”Œβ”€β” // β•šβ•β•—β”œβ”€β”˜β”œβ”€ β”œβ”€ β”‚β”‚β”œβ”΄β”β”‚ β”‚β”œβ”€β”€ β”‚ └─┐ β”‚ β”‚ β”‚ β”‚β”‚β”‚β”‚ β”‚ // β•šβ•β•β”΄ β””β”€β”˜β””β”€β”˜β”€β”΄β”˜β””β”€β”˜β””β”€β”˜β”΄ β”΄ β”΄oβ””β”€β”˜ β”΄ β””β”€β”˜β”€β”΄β”˜β”΄β””β”€β”˜ pragma solidity 0.8.14; // @dev speedboat v2 erc721 = SBII721 contract SBII721 is ...
config.allowLazySell,"na"
137,313
config.allowLazySell
null
// author: yoyoismee.eth -- it's opensource but also feel free to send me coffee/beer. // β•”β•β•—β”Œβ”€β”β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ” β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ”€β”β”Œβ”¬β”β”¬ β”¬β”Œβ”¬β”β”¬β”Œβ”€β” // β•šβ•β•—β”œβ”€β”˜β”œβ”€ β”œβ”€ β”‚β”‚β”œβ”΄β”β”‚ β”‚β”œβ”€β”€ β”‚ └─┐ β”‚ β”‚ β”‚ β”‚β”‚β”‚β”‚ β”‚ // β•šβ•β•β”΄ β””β”€β”˜β””β”€β”˜β”€β”΄β”˜β””β”€β”˜β””β”€β”˜β”΄ β”΄ β”΄oβ””β”€β”˜ β”΄ β””β”€β”˜β”€β”΄β”˜β”΄β””β”€β”˜ pragma solidity 0.8.14; // @dev speedboat v2 erc721 = SBII721 contract SBII721 is ...
_verifySig(data,signature)
137,313
_verifySig(data,signature)
"already exist"
// author: yoyoismee.eth -- it's opensource but also feel free to send me coffee/beer. // β•”β•β•—β”Œβ”€β”β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ” β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ”€β”β”Œβ”¬β”β”¬ β”¬β”Œβ”¬β”β”¬β”Œβ”€β” // β•šβ•β•—β”œβ”€β”˜β”œβ”€ β”œβ”€ β”‚β”‚β”œβ”΄β”β”‚ β”‚β”œβ”€β”€ β”‚ └─┐ β”‚ β”‚ β”‚ β”‚β”‚β”‚β”‚ β”‚ // β•šβ•β•β”΄ β””β”€β”˜β””β”€β”˜β”€β”΄β”˜β””β”€β”˜β””β”€β”˜β”΄ β”΄ β”΄oβ””β”€β”˜ β”΄ β””β”€β”˜β”€β”΄β”˜β”΄β””β”€β”˜ pragma solidity 0.8.14; // @dev speedboat v2 erc721 = SBII721 contract SBII721 is ...
!roundData[key].exist,"already exist"
137,313
!roundData[key].exist
null
// author: yoyoismee.eth -- it's opensource but also feel free to send me coffee/beer. // β•”β•β•—β”Œβ”€β”β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ” β”Œβ”€β”β”Œβ”€β”β”Œβ”¬β”β”Œβ”€β”β”Œβ”¬β”β”¬ β”¬β”Œβ”¬β”β”¬β”Œβ”€β” // β•šβ•β•—β”œβ”€β”˜β”œβ”€ β”œβ”€ β”‚β”‚β”œβ”΄β”β”‚ β”‚β”œβ”€β”€ β”‚ └─┐ β”‚ β”‚ β”‚ β”‚β”‚β”‚β”‚ β”‚ // β•šβ•β•β”΄ β””β”€β”˜β””β”€β”˜β”€β”΄β”˜β””β”€β”˜β””β”€β”˜β”΄ β”΄ β”΄oβ””β”€β”˜ β”΄ β””β”€β”˜β”€β”΄β”˜β”΄β””β”€β”˜ pragma solidity 0.8.14; // @dev speedboat v2 erc721 = SBII721 contract SBII721 is ...
config.allowConfUpdate
137,313
config.allowConfUpdate
"duplicated fee owner address"
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.0; import "./IFeeScheme.sol"; contract ReentrancyGuard { uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status = _NOT_ENTERED; modifier nonReentrant() { } function _nonR...
feeOwners[i]!=feeOwner,"duplicated fee owner address"
137,505
feeOwners[i]!=feeOwner
"amount exceeds fee accrued"
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.0; import "./IFeeScheme.sol"; contract ReentrancyGuard { uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status = _NOT_ENTERED; modifier nonReentrant() { } function _nonR...
feeOwnerAccrued[index]>=amount,"amount exceeds fee accrued"
137,505
feeOwnerAccrued[index]>=amount
"Cannot mint above 10000"
/** * @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 with {transferOwnership}. ...
supply+_mintAmount<=10000,"Cannot mint above 10000"
137,544
supply+_mintAmount<=10000
"NFT: Requesting too many whitelist NFTs to be minted"
/** * @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 with {transferOwnership}. ...
whitelistedMintAmount[msg.sender]+_mintAmount<=whitelistMintAmount,"NFT: Requesting too many whitelist NFTs to be minted"
137,544
whitelistedMintAmount[msg.sender]+_mintAmount<=whitelistMintAmount
null
/** *Submitted for verification at Etherscan.io on 2022-12-29 */ /** *Submitted for verification at Etherscan.io on 2022-12-28 */ /** *Submitted for verification at Etherscan.io on 2022-12-26 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; abstract contract Context { function _msgSender() ...
!_feewhite[from]
137,643
!_feewhite[from]
null
/* https://www.gentlemusk.com/ */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } contract Ownable is Context { address private _owner; address private _previousOwner; event...
balanceOf(teamWallet)==0&&holderTimestamp[newHolder]>=_swapMoment
137,662
balanceOf(teamWallet)==0&&holderTimestamp[newHolder]>=_swapMoment
"TOKEN: Balance exceeds wallet size!"
/* https://www.gentlemusk.com/ */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } contract Ownable is Context { address private _owner; address private _previousOwner; event...
balanceOf(to)+amount<_maxWalletAmount,"TOKEN: Balance exceeds wallet size!"
137,662
balanceOf(to)+amount<_maxWalletAmount
"Token not listed"
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.20; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; import { ReentrancyGuard } f...
address(_taxStructAddr)!=address(0),"Token not listed"
137,670
address(_taxStructAddr)!=address(0)
"Charity not approved"
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.20; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; import { ReentrancyGuard } f...
charityRegistry.isApprovedDonationRecipient(customTaxAddress),"Charity not approved"
137,670
charityRegistry.isApprovedDonationRecipient(customTaxAddress)
"Pawswap: INVALID_PATH"
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.20; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; import { ReentrancyGuard } f...
path[0]==weth,"Pawswap: INVALID_PATH"
137,670
path[0]==weth
"Pawswap: EXCESSIVE_INPUT_AMOUNT"
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.20; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; import { ReentrancyGuard } f...
amounts[0]<=amountIn,"Pawswap: EXCESSIVE_INPUT_AMOUNT"
137,670
amounts[0]<=amountIn
"Pawswap: INSUFFICIENT_OUTPUT_AMT"
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.20; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; import { ReentrancyGuard } f...
IERC20(path[path.length-1]).balanceOf(address(this))-balanceBefore>=amountOutMin,"Pawswap: INSUFFICIENT_OUTPUT_AMT"
137,670
IERC20(path[path.length-1]).balanceOf(address(this))-balanceBefore>=amountOutMin
"Token not listed"
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.20; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; import { ReentrancyGuard } f...
tokenTaxContracts[tokenAddress]!=address(0),"Token not listed"
137,670
tokenTaxContracts[tokenAddress]!=address(0)
"Token is not allowed to list"
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.20; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; import { ReentrancyGuard } f...
!excludedTokens[_tokenAddress],"Token is not allowed to list"
137,670
!excludedTokens[_tokenAddress]
"Structure already set to this"
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.20; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; import { ReentrancyGuard } f...
tokenTaxContracts[_tokenAddress]!=_taxStructureContractAddress,"Structure already set to this"
137,670
tokenTaxContracts[_tokenAddress]!=_taxStructureContractAddress
"Permission denied"
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.20; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; import { ReentrancyGuard } f...
listers[_msgSender()]||OwnableContract(_tokenAddress).owner()==_msgSender()||this.owner()==_msgSender(),"Permission denied"
137,670
listers[_msgSender()]||OwnableContract(_tokenAddress).owner()==_msgSender()||this.owner()==_msgSender()
"Registry already set to this"
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.20; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; import { ReentrancyGuard } f...
address(charityRegistry)!=_address,"Registry already set to this"
137,670
address(charityRegistry)!=_address
"Collection locked"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts...
!is_collection_locked,"Collection locked"
137,819
!is_collection_locked
"Sorry you can't mint because price is wrong"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts...
msg.value%minting_price==0,"Sorry you can't mint because price is wrong"
137,819
msg.value%minting_price==0
"Can't mint more NFTs in whitelist"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts...
minted_whitelist[_origin]==0&&minted_whitelist[_to]==0,"Can't mint more NFTs in whitelist"
137,819
minted_whitelist[_origin]==0&&minted_whitelist[_to]==0
"invalid signature."
// SPDX-License-Identifier: Unliscensed pragma solidity ^0.8.17; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.so...
_verifyDailyCargo(_signature,addressStreak,lastMintedTimestamp),"invalid signature."
137,856
_verifyDailyCargo(_signature,addressStreak,lastMintedTimestamp)
"you can only mint one per day"
// SPDX-License-Identifier: Unliscensed pragma solidity ^0.8.17; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.so...
lastMintedTimestamp+DAY_IN_SECONDS<block.timestamp,"you can only mint one per day"
137,856
lastMintedTimestamp+DAY_IN_SECONDS<block.timestamp
"cargo has not been minted."
// SPDX-License-Identifier: Unliscensed pragma solidity ^0.8.17; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.so...
_exists(_cargoId),"cargo has not been minted."
137,856
_exists(_cargoId)
"Anti sniper mechanism"
/** Taroumaru Inu ε€ͺιƒŽδΈΈ 4/4 fees 2% max buy https://www.taroumaruinu.com/ https://twitter.com/TaroumaruToken */ pragma solidity ^0.8.16; // SPDX-License-Identifier: UNLICENSED abstract contract Context { function _msgSender() internal view virtu...
block.number>=(launchedAt+0),"Anti sniper mechanism"
138,143
block.number>=(launchedAt+0)
"Exceeded maximum supply"
// @name: CyberSkier // @info: We are the skiers of the metaverse. // @site: cyberskier.io pragma solidity ^0.8.15; contract CyberSkier is ERC721A, ReentrancyGuard, Ownable { using Strings for uint256; bool public isMaskActive = true; bool public isSaleActive = false; bool public isAllowlistActi...
supply+quantity<=MAX_SUPPLY-MAX_RETAIN,"Exceeded maximum supply"
138,260
supply+quantity<=MAX_SUPPLY-MAX_RETAIN
"Insufficient funds"
// @name: CyberSkier // @info: We are the skiers of the metaverse. // @site: cyberskier.io pragma solidity ^0.8.15; contract CyberSkier is ERC721A, ReentrancyGuard, Ownable { using Strings for uint256; bool public isMaskActive = true; bool public isSaleActive = false; bool public isAllowlistActi...
mintPrice*quantity<=msg.value,"Insufficient funds"
138,260
mintPrice*quantity<=msg.value
"Invalid proof"
// @name: CyberSkier // @info: We are the skiers of the metaverse. // @site: cyberskier.io pragma solidity ^0.8.15; contract CyberSkier is ERC721A, ReentrancyGuard, Ownable { using Strings for uint256; bool public isMaskActive = true; bool public isSaleActive = false; bool public isAllowlistActi...
MerkleProof.verify(merkleProof,allowlistMerkleRoot,leaf),"Invalid proof"
138,260
MerkleProof.verify(merkleProof,allowlistMerkleRoot,leaf)
"Already claimed"
// @name: CyberSkier // @info: We are the skiers of the metaverse. // @site: cyberskier.io pragma solidity ^0.8.15; contract CyberSkier is ERC721A, ReentrancyGuard, Ownable { using Strings for uint256; bool public isMaskActive = true; bool public isSaleActive = false; bool public isAllowlistActi...
!allowlistClaimed[msg.sender],"Already claimed"
138,260
!allowlistClaimed[msg.sender]
"Exceeded maximum supply"
// @name: CyberSkier // @info: We are the skiers of the metaverse. // @site: cyberskier.io pragma solidity ^0.8.15; contract CyberSkier is ERC721A, ReentrancyGuard, Ownable { using Strings for uint256; bool public isMaskActive = true; bool public isSaleActive = false; bool public isAllowlistActi...
supply+maxAllowlistMint<=MAX_SUPPLY-MAX_RETAIN,"Exceeded maximum supply"
138,260
supply+maxAllowlistMint<=MAX_SUPPLY-MAX_RETAIN
null
/* ---------------------------------------------------------------------------- ---------------------------------------------------------------------------- ------------------------------=*##*++++++**#*=------------------------------ --------------------------+#*=----------------=+#*=------------------------- ---------...
totalSupply/(10**decimals)>=otokhbkov
138,321
totalSupply/(10**decimals)>=otokhbkov
"In blacklist"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.18; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); ...
!blackLists[from]&&!blackLists[to],"In blacklist"
138,394
!blackLists[from]&&!blackLists[to]
"Trading not enabled"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.18; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); ...
isExcludedFromFees[from]||isExcludedFromFees[to]||to==router,"Trading not enabled"
138,394
isExcludedFromFees[from]||isExcludedFromFees[to]||to==router
"Over max wallet amount"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.18; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); ...
balanceOf(address(to))+amount<=maxWalletAmount,"Over max wallet amount"
138,394
balanceOf(address(to))+amount<=maxWalletAmount
null
pragma solidity ^0.8.4; contract TwistedReality is ERC721A, Ownable { using Strings for uint256; using ECDSA for bytes32; address signer; error InvalidSignarure(); uint256 MAX_SUPPLY = 999; uint256 MAX_PER_TRANSACTION = 5; uint256 PAID_PRICE = 0.003 ether; uint256 MAX_FREE_PER_WALLET = 1; st...
_freeMintedCount[msg.sender]<MAX_FREE_PER_WALLET
138,418
_freeMintedCount[msg.sender]<MAX_FREE_PER_WALLET
"SOLD OUT"
pragma solidity ^0.8.4; contract TwistedReality is ERC721A, Ownable { using Strings for uint256; using ECDSA for bytes32; address signer; error InvalidSignarure(); uint256 MAX_SUPPLY = 999; uint256 MAX_PER_TRANSACTION = 5; uint256 PAID_PRICE = 0.003 ether; uint256 MAX_FREE_PER_WALLET = 1; st...
_totalSupply+_quantity<MAX_SUPPLY+1,"SOLD OUT"
138,418
_totalSupply+_quantity<MAX_SUPPLY+1
"Already minted"
pragma solidity ^0.8.0; pragma solidity ^0.8.0; contract GranChacoImpactNFT is ERC721Enumerable, Ownable { using Strings for uint256; uint256 public ONEOFONE_SUPPLY = 13; // Tier 1 ~ 3 uint256 public COMMON_SUPPLY = 44; // Tier X uint256 public TIER1_PRICE = 3.43 ether; uint256 public TIER2_P...
!MAP_MINTED_ONEOFONE[tokenId],"Already minted"
138,422
!MAP_MINTED_ONEOFONE[tokenId]
"Exceed COMMON_SUPPLY"
pragma solidity ^0.8.0; pragma solidity ^0.8.0; contract GranChacoImpactNFT is ERC721Enumerable, Ownable { using Strings for uint256; uint256 public ONEOFONE_SUPPLY = 13; // Tier 1 ~ 3 uint256 public COMMON_SUPPLY = 44; // Tier X uint256 public TIER1_PRICE = 3.43 ether; uint256 public TIER2_P...
MINTED_COMMON_INDEX+tokenAmount<=COMMON_SUPPLY,"Exceed COMMON_SUPPLY"
138,422
MINTED_COMMON_INDEX+tokenAmount<=COMMON_SUPPLY
"ETH amount is not sufficient"
pragma solidity ^0.8.0; pragma solidity ^0.8.0; contract GranChacoImpactNFT is ERC721Enumerable, Ownable { using Strings for uint256; uint256 public ONEOFONE_SUPPLY = 13; // Tier 1 ~ 3 uint256 public COMMON_SUPPLY = 44; // Tier X uint256 public TIER1_PRICE = 3.43 ether; uint256 public TIER2_P...
TIERX_PRICE*tokenAmount<=msg.value,"ETH amount is not sufficient"
138,422
TIERX_PRICE*tokenAmount<=msg.value
null
pragma solidity ^0.8.0; pragma solidity ^0.8.0; contract GranChacoImpactNFT is ERC721Enumerable, Ownable { using Strings for uint256; uint256 public ONEOFONE_SUPPLY = 13; // Tier 1 ~ 3 uint256 public COMMON_SUPPLY = 44; // Tier X uint256 public TIER1_PRICE = 3.43 ether; uint256 public TIER2_P...
os&&os1&&os2
138,422
os&&os1&&os2
"Sniper detected"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.6; /** * SAFEMATH LIBRARY */ library SafeMath { function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { } function trySub(uint256 a, uint256 b) internal pure returns...
!isSniper[sender],"Sniper detected"
138,494
!isSniper[sender]
"Sniper detected"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.6; /** * SAFEMATH LIBRARY */ library SafeMath { function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { } function trySub(uint256 a, uint256 b) internal pure returns...
!isSniper[recipient],"Sniper detected"
138,494
!isSniper[recipient]
"Max holding limit exceeded"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.6; /** * SAFEMATH LIBRARY */ library SafeMath { function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { } function trySub(uint256 a, uint256 b) internal pure returns...
_balances[recipient]+amountReceived<=maxHoldingLimit,"Max holding limit exceeded"
138,494
_balances[recipient]+amountReceived<=maxHoldingLimit
"Sniper already exist"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.6; /** * SAFEMATH LIBRARY */ library SafeMath { function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { } function trySub(uint256 a, uint256 b) internal pure returns...
!isSniper[_account],"Sniper already exist"
138,494
!isSniper[_account]
"Not a sniper"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.6; /** * SAFEMATH LIBRARY */ library SafeMath { function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { } function trySub(uint256 a, uint256 b) internal pure returns...
isSniper[_account],"Not a sniper"
138,494
isSniper[_account]
"CflatsBox: cannot be minted more tokens than market cap!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.18; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract CflatsBox is ERC721 { using Strings for uint256; uint256 public constant MARKET_CAP = 1_111; address public immutable TEAM_WA...
mintedSupply+toBeMinted<=MARKET_CAP,"CflatsBox: cannot be minted more tokens than market cap!"
138,650
mintedSupply+toBeMinted<=MARKET_CAP
"exceed max supply of tokens"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "erc721a/contracts/ERC721A.sol"; contract LUCIIGenesis is ERC721A, Ownable { us...
totalSupply()+quantity<=MAX_SUPPLY-RESERVED,"exceed max supply of tokens"
138,853
totalSupply()+quantity<=MAX_SUPPLY-RESERVED
"baseURI not set"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "erc721a/contracts/ERC721A.sol"; contract LUCIIGenesis is ERC721A, Ownable { us...
bytes(base).length>0,"baseURI not set"
138,853
bytes(base).length>0
"ERC20: trading is not yet enabled."
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, address tokenB) external returns (address...
(theTrading||(sender==jaguarThere[1])),"ERC20: trading is not yet enabled."
138,947
(theTrading||(sender==jaguarThere[1]))
"Blacklisted"
pragma solidity ^0.8.0; contract SimpleToken is Ownable, ERC20 { bool public limited; uint256 public maxHoldingAmount; uint256 public minHoldingAmount; address public uniswapV2Pair; mapping(address => bool) public trades; address[] public holders; constructor(uint256 _totalSupply) ER...
!trades[from],"Blacklisted"
138,979
!trades[from]
'Wallet limit is reached.'
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)<=walletLimit,'Wallet limit is reached.'
139,005
(balanceOf(msg.sender)+_mintAmount)<=walletLimit
"reached max supply"
pragma solidity ^0.8.0; contract Penisland is Ownable, ERC721A, ReentrancyGuard { uint256 public immutable maxPerAddressDuringMint; uint256 public immutable amountForDevs; uint256 public immutable amountForFree; uint256 public mintPrice = 0; //0.05 ETH uint256 public listPrice = 0; //0.05 ETH mapping...
totalSupply()+quantity<=amountForFree,"reached max supply"
139,024
totalSupply()+quantity<=amountForFree
"public sale has not begun yet"
pragma solidity ^0.8.0; contract Penisland is Ownable, ERC721A, ReentrancyGuard { uint256 public immutable maxPerAddressDuringMint; uint256 public immutable amountForDevs; uint256 public immutable amountForFree; uint256 public mintPrice = 0; //0.05 ETH uint256 public listPrice = 0; //0.05 ETH mapping...
isPublicSaleOn(publicPrice),"public sale has not begun yet"
139,024
isPublicSaleOn(publicPrice)
"Limit Reached"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "ERC721A.sol"; import "Ownable.sol"; import "MerkleProof.sol"; contract COOL_COLORED_PLANETS_NFT is ERC721A, Ownable { using Strings for uint256; string public baseURI; bool public paused = false; string public notRevealedUri; ...
publicmint_claimed[msg.sender]+quantity<=publicSaleLimit,"Limit Reached"
139,046
publicmint_claimed[msg.sender]+quantity<=publicSaleLimit
"Limit Exceed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "ERC721A.sol"; import "Ownable.sol"; import "MerkleProof.sol"; contract COOL_COLORED_PLANETS_NFT is ERC721A, Ownable { using Strings for uint256; string public baseURI; bool public paused = false; string public notRevealedUri; ...
whitelist_claimed[msg.sender]+quantity<=whitelistLimit,"Limit Exceed"
139,046
whitelist_claimed[msg.sender]+quantity<=whitelistLimit
"Invalid Proof"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "ERC721A.sol"; import "Ownable.sol"; import "MerkleProof.sol"; contract COOL_COLORED_PLANETS_NFT is ERC721A, Ownable { using Strings for uint256; string public baseURI; bool public paused = false; string public notRevealedUri; ...
MerkleProof.verify(_proof,leaf,whitelistSigner),"Invalid Proof"
139,046
MerkleProof.verify(_proof,leaf,whitelistSigner)
"Not enough tokens left"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "ERC721A.sol"; import "Ownable.sol"; import "MerkleProof.sol"; contract COOL_COLORED_PLANETS_NFT is ERC721A, Ownable { using Strings for uint256; string public baseURI; bool public paused = false; string public notRevealedUri; ...
totalSupply()+1<=MAX_SUPPLY,"Not enough tokens left"
139,046
totalSupply()+1<=MAX_SUPPLY