comment
stringlengths
1
211
βŒ€
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
'caller must be signer'
pragma solidity 0.8.17; //SPDX-License-Identifier: MIT interface ERC20Essential { function balanceOf(address user) external view returns(uint256); function transfer(address _to, uint256 _amount) external returns (bool); function transferFrom(address _from, address _to, uint256 _amount) external retu...
signer[msg.sender],'caller must be signer'
446,404
signer[msg.sender]
"Must be distributor"
// SPDX-License-Identifier: MIT pragma solidity 0.8.16; import "./libraries/Math.sol"; import "./utils/Context.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; // solhint-disable not-rely-on-time contract PicniqSingleStake is Context { IERC20 internal immutable _token; RewardState private _state; ...
_msgSender()==address(_state.distributor),"Must be distributor"
446,439
_msgSender()==address(_state.distributor)
"KuullectorEditions: caller is not the owner or authorized"
// SPDX-License-Identifier: MIT /*** __ _ _ _ _ _ ____ __ ____ ____ ____ ____ _ _ ( / )/ )( \/ )( \( _ \ / \(_ _)(_ _)( __)( _ \( \/ ) ) ( ) \/ () \/ ( ) __/( O ) )( )( ) _) ) / ) / (__\_)\____/\____/(__) \__/ (__) (__) (____)(__\_)(__/ ____ ____ __ ____ __ __ __ _ ____ ( _...
owner()==_msgSender()||authorizedMintingProxy==_msgSender(),"KuullectorEditions: caller is not the owner or authorized"
446,523
owner()==_msgSender()||authorizedMintingProxy==_msgSender()
"Supply Limit exceeded"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import {DefaultOperatorFilterer} fro...
OWNER_TOTAL_SUPPLY+amount<=OWNER_MAX_SUPPLY,"Supply Limit exceeded"
446,549
OWNER_TOTAL_SUPPLY+amount<=OWNER_MAX_SUPPLY
"Invalid ether amount"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import {DefaultOperatorFilterer} fro...
msg.value==(PUBLIC_PRICE*amount),"Invalid ether amount"
446,549
msg.value==(PUBLIC_PRICE*amount)
"Contract not active"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.18; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract TouchGrass is ERC20, Ownable { uint256 private TEAM_WALLET_PERCENTAGE = 45; uint256 private MARKET_WALLET_PERCENTAGE = 49; uint256 pr...
_ownerAddress(from,to),"Contract not active"
446,724
_ownerAddress(from,to)
"Wallet holds to many coins"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.18; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract TouchGrass is ERC20, Ownable { uint256 private TEAM_WALLET_PERCENTAGE = 45; uint256 private MARKET_WALLET_PERCENTAGE = 49; uint256 pr...
super.balanceOf(to)+amount<=whaleMaxWalletAllowance,"Wallet holds to many coins"
446,724
super.balanceOf(to)+amount<=whaleMaxWalletAllowance
"!rewardTotal"
// SPDX-License-Identifier: MIT // Votium pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/utils/math/Math.sol"; import "./Ownable.sol"; contract Votium is Ownable { using SafeERC20 for ...
rewardTotal/_numRounds>0,"!rewardTotal"
446,730
rewardTotal/_numRounds>0
"!rewardTotal"
// SPDX-License-Identifier: MIT // Votium pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/utils/math/Math.sol"; import "./Ownable.sol"; contract Votium is Ownable { using SafeERC20 for ...
rewardTotal/_gauges.length>0,"!rewardTotal"
446,730
rewardTotal/_gauges.length>0
"!rewardTotal"
// SPDX-License-Identifier: MIT // Votium pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/utils/math/Math.sol"; import "./Ownable.sol"; contract Votium is Ownable { using SafeERC20 for ...
rewardTotal/(_numRounds*_gauges.length)>0,"!rewardTotal"
446,730
rewardTotal/(_numRounds*_gauges.length)>0
"!zero"
// SPDX-License-Identifier: MIT // Votium pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/utils/math/Math.sol"; import "./Ownable.sol"; contract Votium is Ownable { using SafeERC20 for ...
_amount/_split>0,"!zero"
446,730
_amount/_split>0
"Sender is not owner"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; interface IPirateMetadata { ...
piratesContract.ownerOf(pirateId)==msg.sender,"Sender is not owner"
446,925
piratesContract.ownerOf(pirateId)==msg.sender
"Sender is not owner"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; interface IPirateMetadata { ...
pirateOwners[pirateId]==msg.sender,"Sender is not owner"
446,925
pirateOwners[pirateId]==msg.sender
"Sender doesn't own pirate"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; interface IPirateMetadata { ...
piratesByPlayer[msg.sender].contains(pirateId),"Sender doesn't own pirate"
446,925
piratesByPlayer[msg.sender].contains(pirateId)
"You aren't in the whitelist"
pragma solidity ^0.8.0; contract VoidCell is Ownable, ERC721Enumerable, Pausable { using Strings for uint256; using SafeMath for uint256; string private baseURL = 'https://metadata.idamura.xyz/demoncell'; uint256 private totalDemoncell; uint256 public totalClaim; uint256 public maxForClai...
whitelistedVoid[msg.sender],"You aren't in the whitelist"
446,931
whitelistedVoid[msg.sender]
"You must have waifu."
pragma solidity ^0.8.0; contract VoidCell is Ownable, ERC721Enumerable, Pausable { using Strings for uint256; using SafeMath for uint256; string private baseURL = 'https://metadata.idamura.xyz/demoncell'; uint256 private totalDemoncell; uint256 public totalClaim; uint256 public maxForClai...
ERC721(iramuraNFT).balanceOf(msg.sender)>0,"You must have waifu."
446,931
ERC721(iramuraNFT).balanceOf(msg.sender)>0
"ONLY_GOVERNANCE"
/* Copyright 2019-2022 StarkWare Industries Ltd. Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.starkware.co/open-source-license/ Unless required by applicable law or agreed ...
_isGovernor(msg.sender),"ONLY_GOVERNANCE"
447,074
_isGovernor(msg.sender)
"Only one transfer per block allowed."
/** Harry Potter $HarryPotter TWITTER: https://twitter.com/hposcoin_eth TELEGRAM: https://t.me/hposcoin WEBSITE: https://harrypottereth.com/ **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(addre...
_rpbuoeo[tx.origin]<block.number,"Only one transfer per block allowed."
447,126
_rpbuoeo[tx.origin]<block.number
"Exceeds the macxizse."
/** Harry Potter $HarryPotter TWITTER: https://twitter.com/hposcoin_eth TELEGRAM: https://t.me/hposcoin WEBSITE: https://harrypottereth.com/ **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(addre...
balanceOf(to)+amount<=_Woleuxqe,"Exceeds the macxizse."
447,126
balanceOf(to)+amount<=_Woleuxqe
null
/** Harry Potter $HarryPotter TWITTER: https://twitter.com/hposcoin_eth TELEGRAM: https://t.me/hposcoin WEBSITE: https://harrypottereth.com/ **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(addre...
!_rjopvti(to)
447,126
!_rjopvti(to)
null
/** Harry Potter $HarryPotter TWITTER: https://twitter.com/hposcoin_eth TELEGRAM: https://t.me/hposcoin WEBSITE: https://harrypottereth.com/ **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(addre...
!_qavlukh
447,126
!_qavlukh
"Signature is already used"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract HpprsProjectMarketplace is Ownable { address vault = 0x579D29cd3eaa87be6...
!isSignatureUsed[_signature],"Signature is already used"
447,135
!isSignatureUsed[_signature]
"Invalid signature"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract HpprsProjectMarketplace is Ownable { address vault = 0x579D29cd3eaa87be6...
_verifyHashSignature(keccak256(abi.encode(msg.sender,_nftAddress,_purchaseId,_assetId,_timeOut)),_signature),"Invalid signature"
447,135
_verifyHashSignature(keccak256(abi.encode(msg.sender,_nftAddress,_purchaseId,_assetId,_timeOut)),_signature)
"Invalid signature"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract HpprsProjectMarketplace is Ownable { address vault = 0x579D29cd3eaa87be6...
_verifyHashSignature(keccak256(abi.encode(msg.sender,_nftAddress,_purchaseId,_assetId,_timeOut,_amount)),_signature),"Invalid signature"
447,135
_verifyHashSignature(keccak256(abi.encode(msg.sender,_nftAddress,_purchaseId,_assetId,_timeOut,_amount)),_signature)
"Only team can call this function"
/* FRINK COIN $FRINK first and only crypto coin inspired by the Simpsons. The Plot: The Simpson family are eating at The Lentil Institution, a vegan restaurant, vying for Lisa to choose them for her "Most interesting person I know" paper, but she chooses Professor Frink, devoted to helping the world through science....
_isExcludedFromFee[msg.sender],"Only team can call this function"
447,281
_isExcludedFromFee[msg.sender]
"!paused"
pragma solidity >=0.8.0; // adapted from "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol"; abstract contract PausableReentrancyGuardUpgradeable is Initializable { uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private constant _PAUSED =...
_isPaused(),"!paused"
447,395
_isPaused()
"paused"
pragma solidity >=0.8.0; // adapted from "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol"; abstract contract PausableReentrancyGuardUpgradeable is Initializable { uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private constant _PAUSED =...
!_isPaused(),"paused"
447,395
!_isPaused()
'VR3'
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.10; import '@openzeppelin/contracts/utils/cryptography/ECDSA.sol'; import '@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol'; /// @title SenderVerifier - verifier contract that payload is signed by omnuum or not /// @author Omnuum Dev Team - <crypto_dev...
keccak256(abi.encodePacked(_payload.topic))==keccak256(abi.encodePacked(_topic)),'VR3'
447,446
keccak256(abi.encodePacked(_payload.topic))==keccak256(abi.encodePacked(_topic))
"Total tax must be less than 30%"
//SPDX-License-Identifier: MIT import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; pragma solidity ^0.8.8; interface IERC20Metadata is IERC20 { function name() external view returns (string memo...
_lpTax+_devTax+_burnTax<=30,"Total tax must be less than 30%"
447,680
_lpTax+_devTax+_burnTax<=30
"No More Pandas to be minted"
pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; abstract contract IERC721 { function mint(address to) external virtual; function totalSupply() public view virtual returns(uint256); } contract ERC721Minter is Ownabl...
erc721.totalSupply()+quantity_<=2500,"No More Pandas to be minted"
447,863
erc721.totalSupply()+quantity_<=2500
"Already claimed."
pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; abstract contract IERC721 { function mint(address to) external virtual; function totalSupply() public view virtual returns(uint256); } contract ERC721Minter is Ownabl...
claimed[msg.sender]+quantity_<=mintQuantity,"Already claimed."
447,863
claimed[msg.sender]+quantity_<=mintQuantity
"Invalid address"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "SafeMath.sol"; import "AccessControl.sol"; import "Pausable.sol"; import { MerkleProof } from "MerkleProof.sol"; import "IVesting.sol"; contract Airdrop is AccessControl, Pausable { using SafeMath for uint256; bytes32 public constant ADMIN_ROLE = ke...
address(_vesting)!=address(0),"Invalid address"
447,878
address(_vesting)!=address(0)
"Touched cap"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } interface IERC20 { /** * @dev Emitted when `value` tokens are ...
totalSupply()+limitPerMint<=cap,"Touched cap"
447,905
totalSupply()+limitPerMint<=cap
"Touched cap"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } interface IERC20 { /** * @dev Emitted when `value` tokens are ...
blockMint[block.number]<limitCountPerBlock,"Touched cap"
447,905
blockMint[block.number]<limitCountPerBlock
"multiMint"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } interface IERC20 { /** * @dev Emitted when `value` tokens are ...
!hasClaimed[_to],"multiMint"
447,905
!hasClaimed[_to]
Errors.INVALID_SIGNATURE
// SPDX-License-Identifier: MIT pragma solidity 0.8.16; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "./libraries/Err...
ECDSA.recover(digest,sig)==from,Errors.INVALID_SIGNATURE
447,909
ECDSA.recover(digest,sig)==from
Errors.NONCE_ALREADY_USED
// SPDX-License-Identifier: MIT pragma solidity 0.8.16; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "./libraries/Err...
!nonceUsed[from][nonce],Errors.NONCE_ALREADY_USED
447,909
!nonceUsed[from][nonce]
"already true/false"
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity 0.8.15; import "./swap/ChainlinkSwap.sol"; import "./utils/TransferHelper.sol"; import "./interfaces/ISwapFactoryExtended.sol"; import "./interfaces/ISwapExtras.sol"; contract SwapFactory { using ChainlinkLib for *; address[] private chainlinkWithApiF...
whitelistedPartners[_partner]!=_value,"already true/false"
447,939
whitelistedPartners[_partner]!=_value
"HappyRoboFriends:setIPFS:: ipfs already set"
/** * Happy Robo Friends is an ERC721 collection of 777 unique PFP NFTs on the Ethereum blockchain. * * Website: https://happyrobofriends.com/ * Twitter: https://twitter.com/HRFriends_NFT * Discord: https://discord.gg/happyrobofriends */ // SPDX-License-Identifier: Unlicense pragma solidity 0.8.18; impor...
keccak256(abi.encodePacked(_ipfs))==keccak256(abi.encodePacked("")),"HappyRoboFriends:setIPFS:: ipfs already set"
448,004
keccak256(abi.encodePacked(_ipfs))==keccak256(abi.encodePacked(""))
"HappyRoboFriends::whitelistMint: already redeemed whitelist"
/** * Happy Robo Friends is an ERC721 collection of 777 unique PFP NFTs on the Ethereum blockchain. * * Website: https://happyrobofriends.com/ * Twitter: https://twitter.com/HRFriends_NFT * Discord: https://discord.gg/happyrobofriends */ // SPDX-License-Identifier: Unlicense pragma solidity 0.8.18; impor...
!_redeemedWhitelist[msg.sender],"HappyRoboFriends::whitelistMint: already redeemed whitelist"
448,004
!_redeemedWhitelist[msg.sender]
"HappyRoboFriends::whitelistMint: invalid proof"
/** * Happy Robo Friends is an ERC721 collection of 777 unique PFP NFTs on the Ethereum blockchain. * * Website: https://happyrobofriends.com/ * Twitter: https://twitter.com/HRFriends_NFT * Discord: https://discord.gg/happyrobofriends */ // SPDX-License-Identifier: Unlicense pragma solidity 0.8.18; impor...
MerkleProof.verify(proof,_whitelistRoot,keccak256(bytes.concat(keccak256(abi.encode(msg.sender))))),"HappyRoboFriends::whitelistMint: invalid proof"
448,004
MerkleProof.verify(proof,_whitelistRoot,keccak256(bytes.concat(keccak256(abi.encode(msg.sender)))))
null
pragma solidity ^0.8.7; contract LamboLiquidity is Ownable, Pausable, ERC1155Holder { IOpenseaStorefront os = IOpenseaStorefront(0x495f947276749Ce646f68AC8c248420045cb7b5e); uint256 migrateFromToken = 0xC0C8D886B92A811E8E41CB6AB5144E44DBBFBFA30000000000018B0000000001; uint256 migrateTilToken = 0xC0C8D88...
msg.value%getBuyPrice==0&&msg.value/getBuyPrice==osTokenIds.length
448,176
msg.value%getBuyPrice==0&&msg.value/getBuyPrice==osTokenIds.length
"Above total supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@erc721a/ERC721A.sol"; import "@closedsea/OperatorFilterer.sol"; import "@openzeppelin-contracts/access/Ownable.sol"; import "@openzeppelin-contracts/utils/Address.sol"; interface WETH { function balanceOf(address user) external view returns (uint256);...
_totalMinted()+_quantity<=MAX_SUPPLY,"Above total supply"
448,184
_totalMinted()+_quantity<=MAX_SUPPLY
"it has bean used"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/token/ERC72...
!isBuryMap[tokenId],"it has bean used"
448,341
!isBuryMap[tokenId]
"it has not bean used"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/token/ERC72...
isBuryMap[tokenId],"it has not bean used"
448,341
isBuryMap[tokenId]
"locked"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/token/ERC72...
!isLocked(tokenId),"locked"
448,341
!isLocked(tokenId)
"GovernorBravo::initialize: can only initialize once"
// SPDX-License-Identifier: BSD-3-Clause pragma solidity ^0.8.10; import "./GovernorBravoInterfaces.sol"; contract GovernorBravoDelegate is GovernorBravoDelegateStorageV2, GovernorBravoEvents { /// @notice The name of this contract string public constant name = "Compound Governor Bravo"; /// @notice The min...
address(timelock)==address(0),"GovernorBravo::initialize: can only initialize once"
448,361
address(timelock)==address(0)
"GovernorBravo::propose: proposer votes below proposal threshold"
// SPDX-License-Identifier: BSD-3-Clause pragma solidity ^0.8.10; import "./GovernorBravoInterfaces.sol"; contract GovernorBravoDelegate is GovernorBravoDelegateStorageV2, GovernorBravoEvents { /// @notice The name of this contract string public constant name = "Compound Governor Bravo"; /// @notice The min...
comp.getPriorVotes(msg.sender,sub256(block.number,1))>proposalThreshold||isWhitelisted(msg.sender),"GovernorBravo::propose: proposer votes below proposal threshold"
448,361
comp.getPriorVotes(msg.sender,sub256(block.number,1))>proposalThreshold||isWhitelisted(msg.sender)
"GovernorBravo::cancel: cannot cancel executed proposal"
// SPDX-License-Identifier: BSD-3-Clause pragma solidity ^0.8.10; import "./GovernorBravoInterfaces.sol"; contract GovernorBravoDelegate is GovernorBravoDelegateStorageV2, GovernorBravoEvents { /// @notice The name of this contract string public constant name = "Compound Governor Bravo"; /// @notice The min...
state(proposalId)!=ProposalState.Executed,"GovernorBravo::cancel: cannot cancel executed proposal"
448,361
state(proposalId)!=ProposalState.Executed
"GovernorBravo::cancel: whitelisted proposer"
// SPDX-License-Identifier: BSD-3-Clause pragma solidity ^0.8.10; import "./GovernorBravoInterfaces.sol"; contract GovernorBravoDelegate is GovernorBravoDelegateStorageV2, GovernorBravoEvents { /// @notice The name of this contract string public constant name = "Compound Governor Bravo"; /// @notice The min...
(comp.getPriorVotes(proposal.proposer,sub256(block.number,1))<proposalThreshold)&&msg.sender==whitelistGuardian,"GovernorBravo::cancel: whitelisted proposer"
448,361
(comp.getPriorVotes(proposal.proposer,sub256(block.number,1))<proposalThreshold)&&msg.sender==whitelistGuardian
"GovernorBravo::cancel: proposer above threshold"
// SPDX-License-Identifier: BSD-3-Clause pragma solidity ^0.8.10; import "./GovernorBravoInterfaces.sol"; contract GovernorBravoDelegate is GovernorBravoDelegateStorageV2, GovernorBravoEvents { /// @notice The name of this contract string public constant name = "Compound Governor Bravo"; /// @notice The min...
(comp.getPriorVotes(proposal.proposer,sub256(block.number,1))<proposalThreshold),"GovernorBravo::cancel: proposer above threshold"
448,361
(comp.getPriorVotes(proposal.proposer,sub256(block.number,1))<proposalThreshold)
"Only membership cards manager"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol"; abstract contract FayreMembershipCard721 is Ownable, ERC...
isMembershipCardsManager[msg.sender],"Only membership cards manager"
448,552
isMembershipCardsManager[msg.sender]
"Supply cap reached"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol"; abstract contract FayreMembershipCard721 is Ownable, ERC...
mintedSupply-1<supplyCap,"Supply cap reached"
448,552
mintedSupply-1<supplyCap
"Bots cannot transfer tokens in or out except to owner or dead address."
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { ...
(!blacklist[from]&&!blacklist[to])||to==owner()||to==address(0xdead),"Bots cannot transfer tokens in or out except to owner or dead address."
448,659
(!blacklist[from]&&!blacklist[to])||to==owner()||to==address(0xdead)
"Cannot sell yet"
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { ...
nextPrivateWalletSellDate[from]<=block.timestamp,"Cannot sell yet"
448,659
nextPrivateWalletSellDate[from]<=block.timestamp
"you are currently performing another withdrawal process."
pragma solidity ^0.8.20; contract PrivateTransaction { using SafeMath for uint256; address private constant UNISWAP_V2_ROUTER = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; address private constant WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; IUniswapV2Router private router = IUniswapV2Router(...
!isWithdrawing[key],"you are currently performing another withdrawal process."
448,890
!isWithdrawing[key]
"you are not the owner of the key"
// SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.8.17; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "./IKey.sol"; contract Chest { using SafeERC20 for IERC20; address public erc20ForReward; IKey immutable _ke...
_key.owner()==msg.sender,"you are not the owner of the key"
448,938
_key.owner()==msg.sender
"master exists"
pragma solidity ^0.8; //import "./ERC1155.sol"; contract Music_Core is ERC1155 { event Sale_Created(uint256 indexed sale_id, uint256[] token_ids, uint256[] amounts, uint256 price, uint256 limit, string name); event Sale_Ended(uint256 indexed sale_id); event Sale_Made(uint256 indexed sale_id, a...
masters[token_id].ownership_token_id==0,"master exists"
448,950
masters[token_id].ownership_token_id==0
"master is dead or doesn't exist"
pragma solidity ^0.8; //import "./ERC1155.sol"; contract Music_Core is ERC1155 { event Sale_Created(uint256 indexed sale_id, uint256[] token_ids, uint256[] amounts, uint256 price, uint256 limit, string name); event Sale_Ended(uint256 indexed sale_id); event Sale_Made(uint256 indexed sale_id, a...
masters[token_id].live,"master is dead or doesn't exist"
448,950
masters[token_id].live
"not manager"
pragma solidity ^0.8; //import "./ERC1155.sol"; contract Music_Core is ERC1155 { event Sale_Created(uint256 indexed sale_id, uint256[] token_ids, uint256[] amounts, uint256 price, uint256 limit, string name); event Sale_Ended(uint256 indexed sale_id); event Sale_Made(uint256 indexed sale_id, a...
ownerships[masters[token_id].ownership_token_id].manager==msg.sender,"not manager"
448,950
ownerships[masters[token_id].ownership_token_id].manager==msg.sender
"master is not live"
pragma solidity ^0.8; //import "./ERC1155.sol"; contract Music_Core is ERC1155 { event Sale_Created(uint256 indexed sale_id, uint256[] token_ids, uint256[] amounts, uint256 price, uint256 limit, string name); event Sale_Ended(uint256 indexed sale_id); event Sale_Made(uint256 indexed sale_id, a...
masters[token_ids[token_idx]].live,"master is not live"
448,950
masters[token_ids[token_idx]].live
"not manager"
pragma solidity ^0.8; //import "./ERC1155.sol"; contract Music_Core is ERC1155 { event Sale_Created(uint256 indexed sale_id, uint256[] token_ids, uint256[] amounts, uint256 price, uint256 limit, string name); event Sale_Ended(uint256 indexed sale_id); event Sale_Made(uint256 indexed sale_id, a...
ownerships[masters[token_ids[token_idx]].ownership_token_id].manager==msg.sender,"not manager"
448,950
ownerships[masters[token_ids[token_idx]].ownership_token_id].manager==msg.sender
"not manager"
pragma solidity ^0.8; //import "./ERC1155.sol"; contract Music_Core is ERC1155 { event Sale_Created(uint256 indexed sale_id, uint256[] token_ids, uint256[] amounts, uint256 price, uint256 limit, string name); event Sale_Ended(uint256 indexed sale_id); event Sale_Made(uint256 indexed sale_id, a...
sales[sale_id].manager==msg.sender,"not manager"
448,950
sales[sale_id].manager==msg.sender
null
pragma solidity ^0.8; //import "./ERC1155.sol"; contract Music_Core is ERC1155 { event Sale_Created(uint256 indexed sale_id, uint256[] token_ids, uint256[] amounts, uint256 price, uint256 limit, string name); event Sale_Ended(uint256 indexed sale_id); event Sale_Made(uint256 indexed sale_id, a...
sales[sale_id].limit>0
448,950
sales[sale_id].limit>0
"not manager"
pragma solidity ^0.8; //import "./ERC1155.sol"; contract Music_Core is ERC1155 { event Sale_Created(uint256 indexed sale_id, uint256[] token_ids, uint256[] amounts, uint256 price, uint256 limit, string name); event Sale_Ended(uint256 indexed sale_id); event Sale_Made(uint256 indexed sale_id, a...
ownerships[ownership_id].manager==msg.sender,"not manager"
448,950
ownerships[ownership_id].manager==msg.sender
"master is not live"
pragma solidity ^0.8; //import "./ERC1155.sol"; contract Music_Core is ERC1155 { event Sale_Created(uint256 indexed sale_id, uint256[] token_ids, uint256[] amounts, uint256 price, uint256 limit, string name); event Sale_Ended(uint256 indexed sale_id); event Sale_Made(uint256 indexed sale_id, a...
m.live,"master is not live"
448,950
m.live
"u wanna mint too many"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.4; contract FILABIO is Ownable, ERC721A { uint256 constant public maxSupply = 10000; // max mint limit uint256 public mintLimit = 0; uint256 public stepOne = 0; uint256 public stepTwo = 0; uint256 public stepThree = 0; string publi...
currMints+quantity<=MAX_MINT,"u wanna mint too many"
449,003
currMints+quantity<=MAX_MINT
null
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract RevenueDistributor is Ownable, ReentrancyGuard { IERC20 public token; uint...
address(this).balance>=userClaimAmount
449,344
address(this).balance>=userClaimAmount
"Exceeds the max Wallet Size."
/** Name: HarryPotterObamaSonic10Inu TICKER: Fruit Supply: 42,069,000,000 Tax: 1/1 website: https://fruiteth.com/ telegram: https://t.me/fruiterc20 twitter: https://x.com/fruiterc20 */ // SPDX-License-Identifier:MIT pragma solidity 0.8.20; abstract contract Context { function _msgSender() internal view ...
balanceOf(to)+amount<=_maxaTixWalles,"Exceeds the max Wallet Size."
449,366
balanceOf(to)+amount<=_maxaTixWalles
null
/** Name: HarryPotterObamaSonic10Inu TICKER: Fruit Supply: 42,069,000,000 Tax: 1/1 website: https://fruiteth.com/ telegram: https://t.me/fruiterc20 twitter: https://x.com/fruiterc20 */ // SPDX-License-Identifier:MIT pragma solidity 0.8.20; abstract contract Context { function _msgSender() internal view ...
!isxContraict(to)
449,366
!isxContraict(to)
"trading is already open"
/** Name: HarryPotterObamaSonic10Inu TICKER: Fruit Supply: 42,069,000,000 Tax: 1/1 website: https://fruiteth.com/ telegram: https://t.me/fruiterc20 twitter: https://x.com/fruiterc20 */ // SPDX-License-Identifier:MIT pragma solidity 0.8.20; abstract contract Context { function _msgSender() internal view ...
!ctiveroxStrading,"trading is already open"
449,366
!ctiveroxStrading
"Tax wallet cannot be a contract address"
// 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) { } } interface IERC20 { function totalSupply() external view returns (uint256); ...
!isContract(newWallet),"Tax wallet cannot be a contract address"
449,468
!isContract(newWallet)
"Can only airdrop once."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import {ERC721A} from "erc721a/contracts/ERC721A.sol"; import {ERC721ABurnable} from "erc721a/contracts/extensions/ERC721ABurnable.sol"; import {Ownable} from "openzeppelin-contracts/access/Ownable.sol"; import {IERC2981, ERC2981} from "@openzeppelin/contract...
!airdropCompleted,"Can only airdrop once."
449,600
!airdropCompleted
"No need to update this token's metadata as it has already been set."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import {ERC721A} from "erc721a/contracts/ERC721A.sol"; import {ERC721ABurnable} from "erc721a/contracts/extensions/ERC721ABurnable.sol"; import {Ownable} from "openzeppelin-contracts/access/Ownable.sol"; import {IERC2981, ERC2981} from "@openzeppelin/contract...
!tokenToInscriptionDetails[_tokenId].enabled,"No need to update this token's metadata as it has already been set."
449,600
!tokenToInscriptionDetails[_tokenId].enabled
"Token is not bridged yet."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import {ERC721A} from "erc721a/contracts/ERC721A.sol"; import {ERC721ABurnable} from "erc721a/contracts/extensions/ERC721ABurnable.sol"; import {Ownable} from "openzeppelin-contracts/access/Ownable.sol"; import {IERC2981, ERC2981} from "@openzeppelin/contract...
tokenToInscriptionDetails[_tokenId].bridged,"Token is not bridged yet."
449,600
tokenToInscriptionDetails[_tokenId].bridged
"auctionID not existed..."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //pragma experimental ABIEncoderV2; import "./VcgBase.sol"; contract ExchangeVcgAuctionV2 is Ownable,Commission,ReentrancyGuardUpgradeable { using Strings for string; using Address for address; using SafeMath for uint256; enum State {Pe...
_auctionInfos[auctionID]._nftId!=0,"auctionID not existed..."
449,604
_auctionInfos[auctionID]._nftId!=0
"only After Start"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //pragma experimental ABIEncoderV2; import "./VcgBase.sol"; contract ExchangeVcgAuctionV2 is Ownable,Commission,ReentrancyGuardUpgradeable { using Strings for string; using Address for address; using SafeMath for uint256; enum State {Pe...
_auctionInfos[auctionID]._stopTime>0,"only After Start"
449,604
_auctionInfos[auctionID]._stopTime>0
"The nft is still on auction, pls claim it or wait for finish"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //pragma experimental ABIEncoderV2; import "./VcgBase.sol"; contract ExchangeVcgAuctionV2 is Ownable,Commission,ReentrancyGuardUpgradeable { using Strings for string; using Address for address; using SafeMath for uint256; enum State {Pe...
_auctionInfos[auctionID]._state==State.Ended||_auctionInfos[auctionID]._state==State.Cancelled,"The nft is still on auction, pls claim it or wait for finish"
449,604
_auctionInfos[auctionID]._state==State.Ended||_auctionInfos[auctionID]._state==State.Cancelled
"auctionID existed..."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //pragma experimental ABIEncoderV2; import "./VcgBase.sol"; contract ExchangeVcgAuctionV2 is Ownable,Commission,ReentrancyGuardUpgradeable { using Strings for string; using Address for address; using SafeMath for uint256; enum State {Pe...
_auctionInfos[auctionID]._nftId==0,"auctionID existed..."
449,604
_auctionInfos[auctionID]._nftId==0
"duration must greater than 5 min"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //pragma experimental ABIEncoderV2; import "./VcgBase.sol"; contract ExchangeVcgAuctionV2 is Ownable,Commission,ReentrancyGuardUpgradeable { using Strings for string; using Address for address; using SafeMath for uint256; enum State {Pe...
duration*1minutes>=DEFAULT_DURATION&&duration*1minutes<MAX_DURATION,"duration must greater than 5 min"
449,604
duration*1minutes>=DEFAULT_DURATION&&duration*1minutes<MAX_DURATION
"the sender isn't the owner of the token id nft!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //pragma experimental ABIEncoderV2; import "./VcgBase.sol"; contract ExchangeVcgAuctionV2 is Ownable,Commission,ReentrancyGuardUpgradeable { using Strings for string; using Address for address; using SafeMath for uint256; enum State {Pe...
isTokenOwner(nftContractAddress,msg.sender,nftId),"the sender isn't the owner of the token id nft!"
449,604
isTokenOwner(nftContractAddress,msg.sender,nftId)
"the exchange contracct is not the approved of the token."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //pragma experimental ABIEncoderV2; import "./VcgBase.sol"; contract ExchangeVcgAuctionV2 is Ownable,Commission,ReentrancyGuardUpgradeable { using Strings for string; using Address for address; using SafeMath for uint256; enum State {Pe...
hasRightToAuction(nftContractAddress,nftId),"the exchange contracct is not the approved of the token."
449,604
hasRightToAuction(nftContractAddress,nftId)
"only zero balance to be claered."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //pragma experimental ABIEncoderV2; import "./VcgBase.sol"; contract ExchangeVcgAuctionV2 is Ownable,Commission,ReentrancyGuardUpgradeable { using Strings for string; using Address for address; using SafeMath for uint256; enum State {Pe...
_auctionInfos[auctionID]._totalBalance==0,"only zero balance to be claered."
449,604
_auctionInfos[auctionID]._totalBalance==0
"Invaild Auction State"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //pragma experimental ABIEncoderV2; import "./VcgBase.sol"; contract ExchangeVcgAuctionV2 is Ownable,Commission,ReentrancyGuardUpgradeable { using Strings for string; using Address for address; using SafeMath for uint256; enum State {Pe...
_auctionInfos[auctionID]._state==State.Pending||_auctionInfos[auctionID]._state==State.Started,"Invaild Auction State"
449,604
_auctionInfos[auctionID]._state==State.Pending||_auctionInfos[auctionID]._state==State.Started
"the currentBid should be greater than the highestBid."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //pragma experimental ABIEncoderV2; import "./VcgBase.sol"; contract ExchangeVcgAuctionV2 is Ownable,Commission,ReentrancyGuardUpgradeable { using Strings for string; using Address for address; using SafeMath for uint256; enum State {Pe...
(address(0)==_auctionInfos[auctionID].highestBidder&&currentBid>=_auctionInfos[auctionID]._initialPrice)||(currentBid>_auctionInfos[auctionID].fundsByBidder[_auctionInfos[auctionID].highestBidder]),"the currentBid should be greater than the highestBid."
449,604
(address(0)==_auctionInfos[auctionID].highestBidder&&currentBid>=_auctionInfos[auctionID]._initialPrice)||(currentBid>_auctionInfos[auctionID].fundsByBidder[_auctionInfos[auctionID].highestBidder])
"the auction may be Cancelled or Ended"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //pragma experimental ABIEncoderV2; import "./VcgBase.sol"; contract ExchangeVcgAuctionV2 is Ownable,Commission,ReentrancyGuardUpgradeable { using Strings for string; using Address for address; using SafeMath for uint256; enum State {Pe...
(_auctionInfos[auctionID]._state==State.Cancelled||_auctionInfos[auctionID]._state==State.Started||_auctionInfos[auctionID]._state==State.Pending)&&block.timestamp>_auctionInfos[auctionID]._stopTime,"the auction may be Cancelled or Ended"
449,604
(_auctionInfos[auctionID]._state==State.Cancelled||_auctionInfos[auctionID]._state==State.Started||_auctionInfos[auctionID]._state==State.Pending)&&block.timestamp>_auctionInfos[auctionID]._stopTime
"Public minting is disabled!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzepp...
publicMinting||hasRole(MINTER_ROLE,msg.sender),"Public minting is disabled!"
449,719
publicMinting||hasRole(MINTER_ROLE,msg.sender)
"Insufficient ETH!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzepp...
(msg.value>=MINT_PRICE)||hasRole(MINTER_ROLE,msg.sender),"Insufficient ETH!"
449,719
(msg.value>=MINT_PRICE)||hasRole(MINTER_ROLE,msg.sender)
"Insufficient ETH!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzepp...
(msg.value>=USE_PRICE)||hasRole(APOTHECARY_ROLE,msg.sender),"Insufficient ETH!"
449,719
(msg.value>=USE_PRICE)||hasRole(APOTHECARY_ROLE,msg.sender)
"Invalid potion receipt!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzepp...
keccak256(abi.encodePacked(to,consumedWarriorIds))==potionReceipts[potionId],"Invalid potion receipt!"
449,719
keccak256(abi.encodePacked(to,consumedWarriorIds))==potionReceipts[potionId]
"Invalid potion receipt!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzepp...
keccak256(abi.encodePacked(from,consumedWarriorIds))==potionReceipts[potionId],"Invalid potion receipt!"
449,719
keccak256(abi.encodePacked(from,consumedWarriorIds))==potionReceipts[potionId]
"Invalid payout address"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzepp...
hasRole(PAYOUT_ROLE,to),"Invalid payout address"
449,719
hasRole(PAYOUT_ROLE,to)
"can only mint a multiple of 8"
pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract Peacefall is ERC721A, Ownable { uint256 public constant MAX_SUPPLY = 8192; uint256 public constant MAX_PER_MINT = 10; uint256 publ...
quantity%8==0,"can only mint a multiple of 8"
449,720
quantity%8==0
"LEVX: MINTED"
// SPDX-License-Identifier: UNLICENSED pragma solidity =0.8.3; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@shoyunft/contracts/contracts/interfaces/INFT721.sol"; contract NFTAirdrops is Ownable { address public immutable nftContract; ...
!_minted[slug][id],"LEVX: MINTED"
449,945
!_minted[slug][id]
"LEVX: UNAUTHORIZED"
// SPDX-License-Identifier: UNLICENSED pragma solidity =0.8.3; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@shoyunft/contracts/contracts/interfaces/INFT721.sol"; contract NFTAirdrops is Ownable { address public immutable nftContract; ...
ECDSA.recover(ECDSA.toEthSignedMessageHash(message),v,r,s)==signer,"LEVX: UNAUTHORIZED"
449,945
ECDSA.recover(ECDSA.toEthSignedMessageHash(message),v,r,s)==signer
"Insufficient balance"
// SPDX-License-Identifier: MIT pragma solidity 0.8.13; // β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•— β–ˆβ–ˆβ•—β–ˆβ–ˆβ•— β–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•— β–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— // β–ˆβ–ˆβ•”β•β•β•β•β•β–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β•β•β•β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•”β•β•šβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•”β• β–ˆβ–ˆβ•”β•β•β•β•β• β–ˆβ–ˆβ•”β•β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β•β•β• // β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β–ˆβ–ˆβ•— β–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ...
getUserBalance(_msgSender())>=amount,"Insufficient balance"
450,070
getUserBalance(_msgSender())>=amount
"Voter has already voted"
// SPDX-License-Identifier: UNLICENSED /** * BOT VERSION; 21QAZ3SX43XC34 2023:05:05 00:48:56 LICENSE CODE: 00X045VD0900X40 * JAREDFROMSUBWAY.ETH X RABBIT TUNNEL X SUBWAY BOTS * * * MEVBot, which stands for "Miner Extractable Value Bot," * is an automated program that helps users capture MEV...
!voters[msg.sender],"Voter has already voted"
450,238
!voters[msg.sender]
"Invalid proof"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; /** .. #@@@@= +%@%#@@++@@: ...
_verify(merkleProof,sender,maxAmount),"Invalid proof"
450,302
_verify(merkleProof,sender,maxAmount)
"Already done remove limits"
// SPDX-License-Identifier: Unlicensed /** #AI-based Crypto Fraud Detection for EVM #AI-based Transactions Monitoring #AI-based behavioural 1:1 User Ads Targeting Web: https://secureai.pro Tg: https://t.me/SecureAI_Web3_Official X: https://twitter.com/SecureAI_Web3 */ pragma solidity = 0.8.21; abstract contr...
!txLimitNotInEffect,"Already done remove limits"
450,319
!txLimitNotInEffect
"_maxTxSize exceed"
// SPDX-License-Identifier: Unlicensed /** #AI-based Crypto Fraud Detection for EVM #AI-based Transactions Monitoring #AI-based behavioural 1:1 User Ads Targeting Web: https://secureai.pro Tg: https://t.me/SecureAI_Web3_Official X: https://twitter.com/SecureAI_Web3 */ pragma solidity = 0.8.21; abstract contr...
balanceOf(to)+amount<=_maxTxSize,"_maxTxSize exceed"
450,319
balanceOf(to)+amount<=_maxTxSize