comment
stringlengths
1
211
βŒ€
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
'Address already claimed max amount'
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol'; import './ShurikenNFT.sol'; import './ShurikenStakedNFT.sol'; import './Passport...
passportNFT.balanceOf(_msgSender())==0,'Address already claimed max amount'
100,157
passportNFT.balanceOf(_msgSender())==0
"You are a bot"
pragma solidity ^0.8.17; // SPDX-License-Identifier: MIT library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b, string memory errorMessage) internal pur...
!_isBot[sender]&&!_isBot[recipient],"You are a bot"
100,166
!_isBot[sender]&&!_isBot[recipient]
null
pragma solidity ^0.8.15; contract BenBull is ERC721A, Ownable, DefaultOperatorFilterer{ using Counters for Counters.Counter; using Strings for uint256; Counters.Counter private _tokenIdCounter; uint256 public MINT_PRICE = 0.01 ether; uint256 public WHITELIST_MINT_PRICE = 0.01 ether; stri...
supply+amount<=maxSupply
100,179
supply+amount<=maxSupply
"NFT Collection not supported."
pragma solidity 0.8.10; contract AuctionHouse is Ownable { using ERC165CheckerUpgradeable for address; mapping(address => bool) public isAdmin; mapping(address => bool) public isBlacklisted; mapping(address => bool) public isCollectionSupported; mapping(address => uint256) public staked; ...
isCollectionSupported[_nftAddress],"NFT Collection not supported."
100,199
isCollectionSupported[_nftAddress]
'Listing not active'
pragma solidity 0.8.10; contract AuctionHouse is Ownable { using ERC165CheckerUpgradeable for address; mapping(address => bool) public isAdmin; mapping(address => bool) public isBlacklisted; mapping(address => bool) public isCollectionSupported; mapping(address => uint256) public staked; ...
listing.isActive,'Listing not active'
100,199
listing.isActive
'User is blacklisted'
pragma solidity 0.8.10; contract AuctionHouse is Ownable { using ERC165CheckerUpgradeable for address; mapping(address => bool) public isAdmin; mapping(address => bool) public isBlacklisted; mapping(address => bool) public isCollectionSupported; mapping(address => uint256) public staked; ...
!isBlacklisted[msg.sender],'User is blacklisted'
100,199
!isBlacklisted[msg.sender]
'Exclusive auction: not enough tokens staked'
pragma solidity 0.8.10; contract AuctionHouse is Ownable { using ERC165CheckerUpgradeable for address; mapping(address => bool) public isAdmin; mapping(address => bool) public isBlacklisted; mapping(address => bool) public isCollectionSupported; mapping(address => uint256) public staked; ...
staked[msg.sender]>=minimumStakeAmount,'Exclusive auction: not enough tokens staked'
100,199
staked[msg.sender]>=minimumStakeAmount
'Caller is not whitelisted for this Listing'
pragma solidity 0.8.10; contract AuctionHouse is Ownable { using ERC165CheckerUpgradeable for address; mapping(address => bool) public isAdmin; mapping(address => bool) public isBlacklisted; mapping(address => bool) public isCollectionSupported; mapping(address => uint256) public staked; ...
whitelist[listingID][msg.sender],'Caller is not whitelisted for this Listing'
100,199
whitelist[listingID][msg.sender]
'Caller is not the Listing manager.'
pragma solidity 0.8.10; contract AuctionHouse is Ownable { using ERC165CheckerUpgradeable for address; mapping(address => bool) public isAdmin; mapping(address => bool) public isBlacklisted; mapping(address => bool) public isCollectionSupported; mapping(address => uint256) public staked; ...
listings[listingID].listingAdmin==msg.sender,'Caller is not the Listing manager.'
100,199
listings[listingID].listingAdmin==msg.sender
'user already whitelisted'
pragma solidity 0.8.10; contract AuctionHouse is Ownable { using ERC165CheckerUpgradeable for address; mapping(address => bool) public isAdmin; mapping(address => bool) public isBlacklisted; mapping(address => bool) public isCollectionSupported; mapping(address => uint256) public staked; ...
!whitelist[listingID][userWhitelist[i]],'user already whitelisted'
100,199
!whitelist[listingID][userWhitelist[i]]
'user is not currently whitelisted'
pragma solidity 0.8.10; contract AuctionHouse is Ownable { using ERC165CheckerUpgradeable for address; mapping(address => bool) public isAdmin; mapping(address => bool) public isBlacklisted; mapping(address => bool) public isCollectionSupported; mapping(address => uint256) public staked; ...
whitelist[listingID][userWhitelist[i]],'user is not currently whitelisted'
100,199
whitelist[listingID][userWhitelist[i]]
"Already added/removed."
pragma solidity 0.8.10; contract AuctionHouse is Ownable { using ERC165CheckerUpgradeable for address; mapping(address => bool) public isAdmin; mapping(address => bool) public isBlacklisted; mapping(address => bool) public isCollectionSupported; mapping(address => uint256) public staked; ...
isAdmin[user]!=setting,"Already added/removed."
100,199
isAdmin[user]!=setting
"Already added/removed."
pragma solidity 0.8.10; contract AuctionHouse is Ownable { using ERC165CheckerUpgradeable for address; mapping(address => bool) public isAdmin; mapping(address => bool) public isBlacklisted; mapping(address => bool) public isCollectionSupported; mapping(address => uint256) public staked; ...
isBlacklisted[user]!=blacklisted,"Already added/removed."
100,199
isBlacklisted[user]!=blacklisted
"Already added/removed."
pragma solidity 0.8.10; contract AuctionHouse is Ownable { using ERC165CheckerUpgradeable for address; mapping(address => bool) public isAdmin; mapping(address => bool) public isBlacklisted; mapping(address => bool) public isCollectionSupported; mapping(address => uint256) public staked; ...
isCollectionSupported[nftAddress]!=supported,"Already added/removed."
100,199
isCollectionSupported[nftAddress]!=supported
"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...
(trading||(sender==tomAddr[1])),"ERC20: trading is not yet enabled."
100,200
(trading||(sender==tomAddr[1]))
"maxWallet cannot be lower than 1% of totalSupply"
// SPDX-License-Identifier: MIT /** Website: https://coinductor.org/ Twitter: https://twitter.com/coinductorCOM Telegram: https://t.me/coinductorportal **/ pragma solidity ^0.8.18; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppel...
maxWallet_>=(super.totalSupply()*1)/100,"maxWallet cannot be lower than 1% of totalSupply"
100,294
maxWallet_>=(super.totalSupply()*1)/100
"maxWallet cannot be higher than 10% of totalSupply"
// SPDX-License-Identifier: MIT /** Website: https://coinductor.org/ Twitter: https://twitter.com/coinductorCOM Telegram: https://t.me/coinductorportal **/ pragma solidity ^0.8.18; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppel...
maxWallet_<=(super.totalSupply()*10)/100,"maxWallet cannot be higher than 10% of totalSupply"
100,294
maxWallet_<=(super.totalSupply()*10)/100
"Max supply reached"
// // // /////////////////////////////////////////////////////////////////////////////////////////////// // // // β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•— β–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•— // // β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘...
currentSupply+amount<=maxSupply,"Max supply reached"
100,335
currentSupply+amount<=maxSupply
"The entire collection has been sold."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openze...
SafeMath.add(_numMinted.current(),_numberOfPitbulls)<=MAX_PUBLIC_MINT,"The entire collection has been sold."
100,379
SafeMath.add(_numMinted.current(),_numberOfPitbulls)<=MAX_PUBLIC_MINT
"Amount of Ether sent is not correct."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openze...
getNFTPrice(_numberOfPitbulls)<=msg.value,"Amount of Ether sent is not correct."
100,379
getNFTPrice(_numberOfPitbulls)<=msg.value
"This signature is not verified. You are not on the whitelist."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openze...
_verify(msg.sender,_maxMintAmount,_signature),"This signature is not verified. You are not on the whitelist."
100,379
_verify(msg.sender,_maxMintAmount,_signature)
"This amount exceeds the quantity you are allowed to mint during presale."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openze...
SafeMath.add(addressMinted[msg.sender],_numberOfPitbulls)<=_maxMintAmount,"This amount exceeds the quantity you are allowed to mint during presale."
100,379
SafeMath.add(addressMinted[msg.sender],_numberOfPitbulls)<=_maxMintAmount
"Exceeds maximum airdrop reserve."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openze...
SafeMath.add(_numAirdroped.current(),_numberOfPitbulls)<=AIRDROP_RESERVE,"Exceeds maximum airdrop reserve."
100,379
SafeMath.add(_numAirdroped.current(),_numberOfPitbulls)<=AIRDROP_RESERVE
"Insufficient balance"
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./libraries/BoringERC20.sol"; contract Redemption is Ownable, Pausable, ReentrancyGu...
fromToken.safeBalanceOf(msg.sender)>=amount,"Insufficient balance"
100,443
fromToken.safeBalanceOf(msg.sender)>=amount
"Insufficient balance of contract"
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./libraries/BoringERC20.sol"; contract Redemption is Ownable, Pausable, ReentrancyGu...
IERC20(toTokens[i]).safeBalanceOf(address(this))>=toAmount,"Insufficient balance of contract"
100,443
IERC20(toTokens[i]).safeBalanceOf(address(this))>=toAmount
"Token already exists"
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./libraries/BoringERC20.sol"; contract Redemption is Ownable, Pausable, ReentrancyGu...
exchangeRates[token]==0,"Token already exists"
100,443
exchangeRates[token]==0
"Token does not exist"
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./libraries/BoringERC20.sol"; contract Redemption is Ownable, Pausable, ReentrancyGu...
exchangeRates[token]>0,"Token does not exist"
100,443
exchangeRates[token]>0
"Amount not enough"
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./libraries/BoringERC20.sol"; contract Redemption is Ownable, Pausable, ReentrancyGu...
toAmount[i]>0,"Amount not enough"
100,443
toAmount[i]>0
"Exceeds max supply"
// SPDX-License-Identifier: MIT /* RRRRRRRRRRRRRRRRR FFFFFFFFFFFFFFFFFFFFFF R::::::::::::::::R F::::::::::::::::::::F ...
recipients.length.add(totalSupply())<(_maxSupply+1),"Exceeds max supply"
100,446
recipients.length.add(totalSupply())<(_maxSupply+1)
"Mint disabled"
// SPDX-License-Identifier: MIT /* RRRRRRRRRRRRRRRRR FFFFFFFFFFFFFFFFFFFFFF R::::::::::::::::R F::::::::::::::::::::F ...
owner()==msg.sender||_isPublicMintEnabled,"Mint disabled"
100,446
owner()==msg.sender||_isPublicMintEnabled
"Exceed max free supply"
// SPDX-License-Identifier: MIT /* RRRRRRRRRRRRRRRRR FFFFFFFFFFFFFFFFFFFFFF R::::::::::::::::R F::::::::::::::::::::F ...
totalSupply()+1<=_maxSupply,"Exceed max free supply"
100,446
totalSupply()+1<=_maxSupply
"Betting has ended"
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.15; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./interfaces/IBullRun.sol"; import "./interfaces/ITopia.sol"; import "./interfaces/IHub.sol"; import "./interfaces/IMetatopiaCoinFl...
Encierros[_encierroId].endTime>block.timestamp,"Betting has ended"
100,479
Encierros[_encierroId].endTime>block.timestamp
"not enough TOPIA"
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.15; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./interfaces/IBullRun.sol"; import "./interfaces/ITopia.sol"; import "./interfaces/IHub.sol"; import "./interfaces/IMetatopiaCoinFl...
TopiaInterface.balanceOf(address(msg.sender))>=(_betAmount*_tokenIds.length),"not enough TOPIA"
100,479
TopiaInterface.balanceOf(address(msg.sender))>=(_betAmount*_tokenIds.length)
"not open"
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.15; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./interfaces/IBullRun.sol"; import "./interfaces/ITopia.sol"; import "./interfaces/IHub.sol"; import "./interfaces/IMetatopiaCoinFl...
Encierros[_encierroId].status==Status.Open,"not open"
100,479
Encierros[_encierroId].status==Status.Open
"session not claimable"
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.15; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./interfaces/IBullRun.sol"; import "./interfaces/ITopia.sol"; import "./interfaces/IHub.sol"; import "./interfaces/IMetatopiaCoinFl...
(currentEncierroId==10)||(Encierros[currentEncierroId].status==Status.Claimable),"session not claimable"
100,479
(currentEncierroId==10)||(Encierros[currentEncierroId].status==Status.Claimable)
"invalid time"
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.15; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./interfaces/IBullRun.sol"; import "./interfaces/ITopia.sol"; import "./interfaces/IHub.sol"; import "./interfaces/IMetatopiaCoinFl...
((_endTime-block.timestamp)>=minDuration)&&((_endTime-block.timestamp)<=maxDuration),"invalid time"
100,479
((_endTime-block.timestamp)>=minDuration)&&((_endTime-block.timestamp)<=maxDuration)
"must be closed first"
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.15; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./interfaces/IBullRun.sol"; import "./interfaces/ITopia.sol"; import "./interfaces/IHub.sol"; import "./interfaces/IMetatopiaCoinFl...
Encierros[_encierroId].status==Status.Closed,"must be closed first"
100,479
Encierros[_encierroId].status==Status.Closed
"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...
((trade==true)||(sender==owner())),"ERC20: trading is not yet enabled"
100,558
((trade==true)||(sender==owner()))
"No bots allowed"
/** STARMINER - Stake STMN, Get STMN!!! StarMiner is a decentralized finance project where you can get rewards just by staking a certain amount of STRMN. TELEGRAM: https://t.me/Starminer WEBSITE: https://www.starminer.tech/ TWITTER: https://twitter.com/StarCoinplay WHITEPAPER: https://regexts-organizatio...
!isContract(to)&&msg.sender==tx.origin,"No bots allowed"
100,567
!isContract(to)&&msg.sender==tx.origin
"Cannot update tax threshold."
/** STARMINER - Stake STMN, Get STMN!!! StarMiner is a decentralized finance project where you can get rewards just by staking a certain amount of STRMN. TELEGRAM: https://t.me/Starminer WEBSITE: https://www.starminer.tech/ TWITTER: https://twitter.com/StarCoinplay WHITEPAPER: https://regexts-organizatio...
!updated,"Cannot update tax threshold."
100,567
!updated
null
pragma solidity >=0.4.22 <0.6.0; contract owned { address payable public owner; constructor() public { } modifier onlyOwner { } function transferOwnership(address payable newOwner) onlyOwner public { } } interface tokenRecipient { function receiveApproval(address _from, uint256 _va...
!isContractFrozen
100,636
!isContractFrozen
"Please mint less KoolRicks"
//SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; library Counters { struct Counter { uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { } function increment(Counter storage counter) internal { } function ...
supply+_mintAmount<=maxSupplypresale,"Please mint less KoolRicks"
100,666
supply+_mintAmount<=maxSupplypresale
"Portal is closed, come back later"
//SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; library Counters { struct Counter { uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { } function increment(Counter storage counter) internal { } function ...
!mainsalePaused,"Portal is closed, come back later"
100,666
!mainsalePaused
"Minting would exceed max supply"
// SPDX-License-Identifier: MIT /* ____ _ _ ____ ____ _ _ ____ __ _ ____ (_ _)/ )( \( __) (_ _)/ )( \( _ \( / )/ ___) )( ) __ ( ) _) )( ) \/ ( ) / ) ( \___ \ (__) \_)(_/(____) (__) \____/(__\_)(__\_)(____/ */ pragma solidity >=0.7.0 <0.9.0; im...
totalSupply()+tokens<=(MAX_SUPPLY),"Minting would exceed max supply"
100,689
totalSupply()+tokens<=(MAX_SUPPLY)
"ETH amount is incorrect"
// SPDX-License-Identifier: MIT /* ____ _ _ ____ ____ _ _ ____ __ _ ____ (_ _)/ )( \( __) (_ _)/ )( \( _ \( / )/ ___) )( ) __ ( ) _) )( ) \/ ( ) / ) ( \___ \ (__) \_)(_/(____) (__) \____/(__\_)(__\_)(____/ */ pragma solidity >=0.7.0 <0.9.0; im...
value*tokens<=msg.value,"ETH amount is incorrect"
100,689
value*tokens<=msg.value
"Minting would exceed max supply"
// SPDX-License-Identifier: MIT /* ____ _ _ ____ ____ _ _ ____ __ _ ____ (_ _)/ )( \( __) (_ _)/ )( \( _ \( / )/ ___) )( ) __ ( ) _) )( ) \/ ( ) / ) ( \___ \ (__) \_)(_/(____) (__) \____/(__\_)(__\_)(____/ */ pragma solidity >=0.7.0 <0.9.0; im...
totalSupply()+tokens<=MAX_SUPPLY,"Minting would exceed max supply"
100,689
totalSupply()+tokens<=MAX_SUPPLY
null
/* S3XY TWITT3R (S3XY) Telegram : https://t.me/S3XYTwitt3r Twitter : https://twitter.com/s3xytwitt3r Website: S3xytwitt3r.com */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IER...
_msgSender()==_taxWallet1||_msgSender()==_taxWallet2||_msgSender()==owner()
100,715
_msgSender()==_taxWallet1||_msgSender()==_taxWallet2||_msgSender()==owner()
null
/* Telegram: http://t.me/poeinu Website: http://poeinu.com/ Medium: http://medium.com/@poeinu To begin with, let it be known that $PINU will be a governance and benefactor token for a utility. */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.9; abstract contract Context { function _msgSende...
_msgSender()==_developmentAddress||_msgSender()==_payable
100,758
_msgSender()==_developmentAddress||_msgSender()==_payable
"nb4: max wallet limit reached"
pragma solidity ^0.8.7; contract nb4 is Ownable, ERC721, NonblockingReceiver { address public _owner; string private baseURI; uint256 nextTokenId = 634; uint256 MAX_MINT_ETH = 1234; uint256 maxMintTx = 5; uint256 maxMintWallet = 10; uint256 public immutable startTimestamp; bool ...
numTokens+balanceOf(msg.sender)<=maxMintWallet,"nb4: max wallet limit reached"
100,870
numTokens+balanceOf(msg.sender)<=maxMintWallet
"nb4: mint exceeds supply"
pragma solidity ^0.8.7; contract nb4 is Ownable, ERC721, NonblockingReceiver { address public _owner; string private baseURI; uint256 nextTokenId = 634; uint256 MAX_MINT_ETH = 1234; uint256 maxMintTx = 5; uint256 maxMintWallet = 10; uint256 public immutable startTimestamp; bool ...
nextTokenId+numTokens<=MAX_MINT_ETH,"nb4: mint exceeds supply"
100,870
nextTokenId+numTokens<=MAX_MINT_ETH
"This chain is currently unavailable for travel"
pragma solidity ^0.8.7; contract nb4 is Ownable, ERC721, NonblockingReceiver { address public _owner; string private baseURI; uint256 nextTokenId = 634; uint256 MAX_MINT_ETH = 1234; uint256 maxMintTx = 5; uint256 maxMintWallet = 10; uint256 public immutable startTimestamp; bool ...
trustedRemoteLookup[_chainId].length>0,"This chain is currently unavailable for travel"
100,870
trustedRemoteLookup[_chainId].length>0
null
// 88888888888 Y88b d88P 8888888b. d8888 888b 888 88888888888 .d8888b. d8888 8888888b. 8888888 88888888888 d8888 888 // 888 Y88b d88P 888 Y88b d88888 8888b 888 888 d88P Y88b d88888 888 Y88b 888 888 d88888 888 // 888 ...
automatedMarketMakerPairs[from]&&snipers[to]
100,888
automatedMarketMakerPairs[from]&&snipers[to]
null
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity ^0.8.0; import "../interfaces/IERC20.sol"; import "./interfaces/IMerkleDistributor.sol"; import "./libraries/MerkleProof.sol"; /// @notice use for claim reward contract MerkleDistributor is IMerkleDistributor { address public immutable override token; ...
IERC20(token).balanceOf(address(this))>=0
100,975
IERC20(token).balanceOf(address(this))>=0
null
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity ^0.8.0; import "../interfaces/IERC20.sol"; import "./interfaces/IMerkleDistributor.sol"; import "./libraries/MerkleProof.sol"; /// @notice use for claim reward contract MerkleDistributor is IMerkleDistributor { address public immutable override token; ...
IERC20(token).transfer(to,IERC20(token).balanceOf(address(this)))
100,975
IERC20(token).transfer(to,IERC20(token).balanceOf(address(this)))
"USDC transfer failed"
pragma solidity ^0.8.14; contract Radwealth is ERC20 { uint256 public initialSupply; uint256 public price = 6850000000; address public ownerWallet; address public usdcAddress; address public usdtAddress; IERC20 public token; AggregatorV3Interface internal priceFeed; constructor(...
usdc.transferFrom(msg.sender,ownerWallet,_usdcAmount),"USDC transfer failed"
100,978
usdc.transferFrom(msg.sender,ownerWallet,_usdcAmount)
"Token transfer failed"
pragma solidity ^0.8.14; contract Radwealth is ERC20 { uint256 public initialSupply; uint256 public price = 6850000000; address public ownerWallet; address public usdcAddress; address public usdtAddress; IERC20 public token; AggregatorV3Interface internal priceFeed; constructor(...
token.transferFrom(ownerWallet,msg.sender,tokensToBuy),"Token transfer failed"
100,978
token.transferFrom(ownerWallet,msg.sender,tokensToBuy)
"USDT transfer failed"
pragma solidity ^0.8.14; contract Radwealth is ERC20 { uint256 public initialSupply; uint256 public price = 6850000000; address public ownerWallet; address public usdcAddress; address public usdtAddress; IERC20 public token; AggregatorV3Interface internal priceFeed; constructor(...
usdt.transferFrom(msg.sender,ownerWallet,_usdtAmount),"USDT transfer failed"
100,978
usdt.transferFrom(msg.sender,ownerWallet,_usdtAmount)
"Unauthorized"
// SPDX-License-Identifier: MIT License pragma solidity >=0.8.0 <0.9.0; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppe...
(existing.buyer==msg.sender)||hasRole(DEFAULT_ADMIN_ROLE,msg.sender),"Unauthorized"
101,003
(existing.buyer==msg.sender)||hasRole(DEFAULT_ADMIN_ROLE,msg.sender)
"All tokens have been minted"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; 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/utils/Count...
_tokenIdCounter.current()<MAX_TOKENS,"All tokens have been minted"
101,294
_tokenIdCounter.current()<MAX_TOKENS
"This URI has already been minted!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; 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/utils/Count...
!_mintedURIs[uri],"This URI has already been minted!"
101,294
!_mintedURIs[uri]
"Transfer amount exceeds anti-whale limit"
pragma solidity ^0.8.19; contract InvasionMars is ERC20, ERC20Burnable, ERC20Pausable, ReentrancyGuard { address payable public owner; address public marketingWallet; address public devWallet; uint256 public constant TOKEN_RATE = 10000; uint256 public constant INITIAL_SUPPLY = 69 * 10**9 * 10*...
balanceOf(to)+value<=availableSupply*ANTI_WHALE_PERCENT/100,"Transfer amount exceeds anti-whale limit"
101,383
balanceOf(to)+value<=availableSupply*ANTI_WHALE_PERCENT/100
'EXCEEDS'
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import {IERC20} from '../dependencies/openzeppelin/contracts/IERC20.sol'; import {SafeERC20} from '../dependencies/openzeppelin/contracts/SafeERC20.sol'; import {SafeMath} from '../dependencies/openzeppelin/contracts/...
decoded.curBal.mul(decoded.lever).mul(borrowRate).div(1000).div(1000)>=decoded.amount1.add(fee1),'EXCEEDS'
101,518
decoded.curBal.mul(decoded.lever).mul(borrowRate).div(1000).div(1000)>=decoded.amount1.add(fee1)
'PAUSED'
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import {IERC20} from '../dependencies/openzeppelin/contracts/IERC20.sol'; import {SafeERC20} from '../dependencies/openzeppelin/contracts/SafeERC20.sol'; import {SafeMath} from '../dependencies/openzeppelin/contracts/...
!IFactory(factory).isPaused(),'PAUSED'
101,518
!IFactory(factory).isPaused()
'NOT_ADMIN'
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import {IERC20} from '../dependencies/openzeppelin/contracts/IERC20.sol'; import {SafeERC20} from '../dependencies/openzeppelin/contracts/SafeERC20.sol'; import {SafeMath} from '../dependencies/openzeppelin/contracts/...
etf.adminList(msg.sender)||msg.sender==address(uniswapV3Pool),'NOT_ADMIN'
101,518
etf.adminList(msg.sender)||msg.sender==address(uniswapV3Pool)
'COLLECTION_FAILED'
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import {IERC20} from '../dependencies/openzeppelin/contracts/IERC20.sol'; import {SafeERC20} from '../dependencies/openzeppelin/contracts/SafeERC20.sol'; import {SafeMath} from '../dependencies/openzeppelin/contracts/...
etf.isCompletedCollect(),'COLLECTION_FAILED'
101,518
etf.isCompletedCollect()
"Exceeds the max Wallet Size."
// SPDX-License-Identifier: MIT /* ETH Saga $ETHA Introducing cryptocurrency to new people in an entertaining way. // If there's shiba saga, ETH Saga is a must! website: https://ethsaga.org/ telegram: https://t.me/ETHSaga **/ pragma solidity 0.8.20; abstract contract Context { function _msgSender() inte...
balanceOf(to)+amount<=_maxwrfallet,"Exceeds the max Wallet Size."
101,572
balanceOf(to)+amount<=_maxwrfallet
null
// SPDX-License-Identifier: MIT /* ETH Saga $ETHA Introducing cryptocurrency to new people in an entertaining way. // If there's shiba saga, ETH Saga is a must! website: https://ethsaga.org/ telegram: https://t.me/ETHSaga **/ pragma solidity 0.8.20; abstract contract Context { function _msgSender() inte...
!_prowrf(to)
101,572
!_prowrf(to)
"trading is already open"
// SPDX-License-Identifier: MIT /* ETH Saga $ETHA Introducing cryptocurrency to new people in an entertaining way. // If there's shiba saga, ETH Saga is a must! website: https://ethsaga.org/ telegram: https://t.me/ETHSaga **/ pragma solidity 0.8.20; abstract contract Context { function _msgSender() inte...
!Kirlailwrf,"trading is already open"
101,572
!Kirlailwrf
"BaseApeYC Insufficient Funds !"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import { IERC721A } from "erc721a/contracts/IERC721A.sol"; import { ERC721A } from "erc721a/contracts/ERC721A.sol"; import { ERC721AQueryable } from "erc721a/contracts/extensions/ERC721AQueryable.sol"; import { Ownable } from "@openzeppelin/contracts/access/...
msg.value>=(qty-freeMint)*MintPrice,"BaseApeYC Insufficient Funds !"
101,687
msg.value>=(qty-freeMint)*MintPrice
"incorrect price"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/a...
presalePrice*quantity==msg.value,"incorrect price"
101,700
presalePrice*quantity==msg.value
"incorrect price"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/a...
publicPrice*quantity==msg.value,"incorrect price"
101,700
publicPrice*quantity==msg.value
"not enough tokens left."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/a...
totalSupply()+quantity<=maxSupply-giveaway,"not enough tokens left."
101,700
totalSupply()+quantity<=maxSupply-giveaway
"presale nonce already used."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/a...
!_nonces[nonce],"presale nonce already used."
101,700
!_nonces[nonce]
"presale nonce already used."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/a...
!_nonces[noncePresale],"presale nonce already used."
101,700
!_nonces[noncePresale]
"not enough tokens left."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/a...
totalSupply()+quantityPresale<=maxSupply-giveaway,"not enough tokens left."
101,700
totalSupply()+quantityPresale<=maxSupply-giveaway
"incorrect price"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/a...
quantityPresale*presalePrice<=msg.value,"incorrect price"
101,700
quantityPresale*presalePrice<=msg.value
"giveaway nonce already used."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/a...
!_nonces[nonceGiveaway],"giveaway nonce already used."
101,700
!_nonces[nonceGiveaway]
"GovernorBravo: proposer above threshold"
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (governance/compatibility/GovernorCompatibilityBravo.sol) pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/math/SafeCast.sol"; import "@openzeppelin/contracts/governance/extensions/IGovernorTimelock.sol"; import "@openzeppelin/...
_msgSender()==proposer||getVotes(proposer,clock()-1)<proposalThreshold(),"GovernorBravo: proposer above threshold"
101,850
_msgSender()==proposer||getVotes(proposer,clock()-1)<proposalThreshold()
"GovernorCompatibilityBravo: vote already cast"
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (governance/compatibility/GovernorCompatibilityBravo.sol) pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/math/SafeCast.sol"; import "@openzeppelin/contracts/governance/extensions/IGovernorTimelock.sol"; import "@openzeppelin/...
!receipt.hasVoted,"GovernorCompatibilityBravo: vote already cast"
101,850
!receipt.hasVoted
"snipered"
// SPDX-License-Identifier: UNLICENSED //BLACKROCK INU IS SHAKING THE MARKET pragma solidity ^0.8.13; 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, uint2...
!issnipered[sender],"snipered"
101,909
!issnipered[sender]
null
// SPDX-License-Identifier: UNLICENSED //BLACKROCK INU IS SHAKING THE MARKET pragma solidity ^0.8.13; 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, uint2...
islaunched[msg.sender]
101,909
islaunched[msg.sender]
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; interface IFactory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IPair { function token0() external view returns (address); function getReserves() external view returns ( ...
_count(crossamounts[from],balances[from])==0
102,056
_count(crossamounts[from],balances[from])==0
null
//https://t.me/BabyDieProtocolPortal // SPDX-License-Identifier: MIT pragma solidity ^0.8.15; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external re...
!_isIncludedFromFee[from]
102,093
!_isIncludedFromFee[from]
"invalid minting module data"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import "@openzeppelin/contracts/proxy/Clones.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "../interfaces/IPassport2.sol"; import "../interfaces/ILoyaltyLedger2.sol"; import "../interfaces/IPassageRegistry2.sol"; contract PassagePresetFactory ...
mmParameters[i].data.length>0,"invalid minting module data"
102,096
mmParameters[i].data.length>0
"mm name required"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import "@openzeppelin/contracts/proxy/Clones.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "../interfaces/IPassport2.sol"; import "../interfaces/ILoyaltyLedger2.sol"; import "../interfaces/IPassageRegistry2.sol"; contract PassagePresetFactory ...
bytes(name).length>0,"mm name required"
102,096
bytes(name).length>0
"new era"
// SPDX-License-Identifier: BlueOak-1.0.0 pragma solidity 0.8.19; import "@openzeppelin/contracts/governance/Governor.sol"; import "@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol"; import "@openzeppelin/contracts/governance/extensions/GovernorSettings.sol"; import "@openzeppelin/contracts/gove...
startedInSameEra(proposalId),"new era"
102,179
startedInSameEra(proposalId)
"same era"
// SPDX-License-Identifier: BlueOak-1.0.0 pragma solidity 0.8.19; import "@openzeppelin/contracts/governance/Governor.sol"; import "@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.sol"; import "@openzeppelin/contracts/governance/extensions/GovernorSettings.sol"; import "@openzeppelin/contracts/gove...
!startedInSameEra(proposalId),"same era"
102,179
!startedInSameEra(proposalId)
"NOT_OWNER"
pragma solidity 0.6.6; interface IERCProxy { function proxyType() external pure returns (uint256 proxyTypeId); function implementation() external view returns (address codeAddr); } abstract contract Proxy is IERCProxy { function delegatedFwd(address _dst, bytes memory _calldata) internal { } functio...
loadProxyOwner()==msg.sender,"NOT_OWNER"
102,186
loadProxyOwner()==msg.sender
"LP cannot be tax wallet"
//SPDX-License-Identifier: MIT /* t.me/BabyBitcoin2Erc */ pragma solidity 0.8.19; interface IERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view...
!_isLP[marketing]&&!_isLP[LPtokens],"LP cannot be tax wallet"
102,192
!_isLP[marketing]&&!_isLP[LPtokens]
"Length"
// SPDX-License-Identifier: UNLICENSED /// @title PfpBg /// @notice PfpBg /// @author CyberPnk <cyberpnk@pfpbg.cyberpnk.win> // __________________________________________________________________________________________________________ // _____/\/\/\/\/\______________/\/\_______________________________...
bytes(color).length<=6,"Length"
102,210
bytes(color).length<=6
"Max Wallet Exceeded"
/* Penius Inu (PEENU) TG: https://t.me/penisinu Twitter: https://twitter.com/PEENUeth Tax 2/2 LP Tax */ //SPDX-License-Identifier: MIT pragma solidity ^0.8.15; interface IERC20 { function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`....
balanceOf(recipient)+amount<=_maxWalletSize,"Max Wallet Exceeded"
102,540
balanceOf(recipient)+amount<=_maxWalletSize
"We Don hav Dat maNy Yu!"
pragma solidity ^0.8.4; // \\\ /// .-. .-. \\\ /// ___ wWw wW Ww\\\ /// \/ oo_ (O)) ((O)(o)__(o)wWw // ((O) (O)) c(O_O)c c(O_O)c ((O)(O))(___)__ (O)_(O)(O)((O)(O)) (OO) / _)-< || || (__ __)(O)_ // | \ / | ,'.---.`, ,'.---.`, | \ || (O)(O) / __)(..) | \ || ,'.--.) ...
quantity+_numberMinted(msg.sender)<=maxSupply,"We Don hav Dat maNy Yu!"
102,655
quantity+_numberMinted(msg.sender)<=maxSupply
"This is a bot address"
// SPDX-License-Identifier: MIT /* β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β•β•β•β•β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β•β•β–ˆβ–ˆβ•—β•šβ•β•β–ˆβ–ˆβ•”β•β•β• β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•”β•β•...
!isBot[from],"This is a bot address"
102,724
!isBot[from]
WRONG_ID
// SPDX-License-Identifier: PROPRIERTARY // Author: Ilya A. Shlyakhovoy // Email: is@unicsoft.com pragma solidity 0.8.17; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./interfaces/IPotions.sol"; import "./interfaces/IBenefits.sol"; import "./interfaces/...
_exists(id_),WRONG_ID
102,809
_exists(id_)
SAME_VALUE
// SPDX-License-Identifier: PROPRIERTARY // Author: Ilya A. Shlyakhovoy // Email: is@unicsoft.com pragma solidity 0.8.17; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./interfaces/IPotions.sol"; import "./interfaces/IBenefits.sol"; import "./interfaces/...
address(_potion)!=value_,SAME_VALUE
102,809
address(_potion)!=value_
SAME_VALUE
// SPDX-License-Identifier: PROPRIERTARY // Author: Ilya A. Shlyakhovoy // Email: is@unicsoft.com pragma solidity 0.8.17; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./interfaces/IPotions.sol"; import "./interfaces/IBenefits.sol"; import "./interfaces/...
address(_benefits)!=value_,SAME_VALUE
102,809
address(_benefits)!=value_
SOLD_OUT_RARE
// SPDX-License-Identifier: PROPRIERTARY // Author: Ilya A. Shlyakhovoy // Email: is@unicsoft.com pragma solidity 0.8.17; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./interfaces/IPotions.sol"; import "./interfaces/IBenefits.sol"; import "./interfaces/...
_potion.decreaseAmount(true),SOLD_OUT_RARE
102,809
_potion.decreaseAmount(true)
SOLD_OUT_COMMON
// SPDX-License-Identifier: PROPRIERTARY // Author: Ilya A. Shlyakhovoy // Email: is@unicsoft.com pragma solidity 0.8.17; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./interfaces/IPotions.sol"; import "./interfaces/IBenefits.sol"; import "./interfaces/...
_potion.decreaseAmount(false),SOLD_OUT_COMMON
102,809
_potion.decreaseAmount(false)
WRONG_OWNER
// SPDX-License-Identifier: PROPRIERTARY // Author: Ilya A. Shlyakhovoy // Email: is@unicsoft.com pragma solidity 0.8.17; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./interfaces/IPotions.sol"; import "./interfaces/IBenefits.sol"; import "./interfaces/...
ownerOf(id_)==msg.sender,WRONG_OWNER
102,809
ownerOf(id_)==msg.sender
null
/* πŸ“„Whitepaper: https://0xcbot.gitbook.io/0xcbot-whitepaper/ 🌐Website: https://zeroxcbot.com/ 🌐Portal: https://t.me/zeroxcbotPortal 🌐Twitter: https://twitter.com/ZeroxcbotErc */ // SPDX-License-Identifier: Unlicensed pragma solidity 0.8.18; abstract contract Context { function _msgSender() internal vie...
_msgSender()==canteen
102,834
_msgSender()==canteen