comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
'ItsaSubscription::removeBoundSubscriptionApproval: address has not been approved'
// Copyright 2022 ItsaWallet Team pragma solidity 0.8.17; contract ItsaSubscription is Pausable { //============================================================================ // Events //============================================================================ event Subscription( add...
isApprovedBindToSubscription(msg.sender,approvedAddress),'ItsaSubscription::removeBoundSubscriptionApproval: address has not been approved'
168,367
isApprovedBindToSubscription(msg.sender,approvedAddress)
'ItsaSubscription::setApprovedMultipleBoundSubscriptions: cannot approve subscriptions'
// Copyright 2022 ItsaWallet Team pragma solidity 0.8.17; contract ItsaSubscription is Pausable { //============================================================================ // Events //============================================================================ event Subscription( add...
canSetMultiApproveBoundSubscriptions(approveAddresses),'ItsaSubscription::setApprovedMultipleBoundSubscriptions: cannot approve subscriptions'
168,367
canSetMultiApproveBoundSubscriptions(approveAddresses)
'ItsaSubscription::subscribeFreeAccount: address already has a free subscription'
// Copyright 2022 ItsaWallet Team pragma solidity 0.8.17; contract ItsaSubscription is Pausable { //============================================================================ // Events //============================================================================ event Subscription( add...
!hasFreeSubscription(_address),'ItsaSubscription::subscribeFreeAccount: address already has a free subscription'
168,367
!hasFreeSubscription(_address)
'ItsaSubscription::unsubscribeFreeAccount: address has no free subscription'
// Copyright 2022 ItsaWallet Team pragma solidity 0.8.17; contract ItsaSubscription is Pausable { //============================================================================ // Events //============================================================================ event Subscription( add...
hasFreeSubscription(_address),'ItsaSubscription::unsubscribeFreeAccount: address has no free subscription'
168,367
hasFreeSubscription(_address)
"ERC721BusinessAdditions: must have permission to update"
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "../interfaces/IERC721BusinessAdditions.sol"; /** * @title Optional business additions for ERC-721 Non-Fungible Token Standard * @author Ryan Farley <ryan@artmtoken.com> * @dev This implements an ...
_updateBusinessAdditionsAccess(),"ERC721BusinessAdditions: must have permission to update"
168,440
_updateBusinessAdditionsAccess()
"Ether value sent is not correct"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; contract Abokado is ERC721, ERC721Enumerable, Ownable { string public ...
price*numberOfTokens<=msg.value,"Ether value sent is not correct"
168,544
price*numberOfTokens<=msg.value
ExceptionsLibrary.INVALID_VALUE
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity ^0.8.0; import "../interfaces/vaults/IAuraVault.sol"; import "../interfaces/vaults/IAuraVaultGovernance.sol"; import "../libraries/ExceptionsLibrary.sol"; import "./IntegrationVault.sol"; contract AuraVault is IAuraVault, IntegrationVault { using SafeERC2...
vaultTokens_.length+1==poolTokens.length,ExceptionsLibrary.INVALID_VALUE
168,558
vaultTokens_.length+1==poolTokens.length
null
//SPDX-License-Identifier:Unlicensed pragma solidity ^0.8.6; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { } function _msgData() internal view virtual returns (bytes memory) { } } interface IERC20 { function totalSupply() external view r...
!accordance[sender]
168,579
!accordance[sender]
"Cannot claim more than allowed limit per address"
pragma solidity ^0.8.12; contract TheMagus is ERC721A, IERC2981, Ownable, Pausable, ReentrancyGuard { using Strings for uint256; string public contractURIstr = "ipfs://QmTyHfKzG1Xyopag7DZVnckT3ed6hKFrSkUu8e6iDf5DAN/"; string public baseExtension = ".json"; string public no...
_whitelistMintTracker[msg.sender]+numberOfTokens<=maxPerWallet,"Cannot claim more than allowed limit per address"
168,595
_whitelistMintTracker[msg.sender]+numberOfTokens<=maxPerWallet
"Cannot claim more than allowed limit per address"
pragma solidity ^0.8.12; contract TheMagus is ERC721A, IERC2981, Ownable, Pausable, ReentrancyGuard { using Strings for uint256; string public contractURIstr = "ipfs://QmTyHfKzG1Xyopag7DZVnckT3ed6hKFrSkUu8e6iDf5DAN/"; string public baseExtension = ".json"; string public no...
_oglistMintTracker[msg.sender]+numberOfTokens<=maxPerWalletOG,"Cannot claim more than allowed limit per address"
168,595
_oglistMintTracker[msg.sender]+numberOfTokens<=maxPerWalletOG
"Cannot claim more than allowed limit per address"
pragma solidity ^0.8.12; contract TheMagus is ERC721A, IERC2981, Ownable, Pausable, ReentrancyGuard { using Strings for uint256; string public contractURIstr = "ipfs://QmTyHfKzG1Xyopag7DZVnckT3ed6hKFrSkUu8e6iDf5DAN/"; string public baseExtension = ".json"; string public no...
_allowlistMintTracker[msg.sender]+numberOfTokens<=maxPerWallet,"Cannot claim more than allowed limit per address"
168,595
_allowlistMintTracker[msg.sender]+numberOfTokens<=maxPerWallet
"Incorrect ETH value sent"
pragma solidity ^0.8.12; contract TheMagus is ERC721A, IERC2981, Ownable, Pausable, ReentrancyGuard { using Strings for uint256; string public contractURIstr = "ipfs://QmTyHfKzG1Xyopag7DZVnckT3ed6hKFrSkUu8e6iDf5DAN/"; string public baseExtension = ".json"; string public no...
price*(numberOfTokens-1)==msg.value,"Incorrect ETH value sent"
168,595
price*(numberOfTokens-1)==msg.value
"Incorrect ETH value sent"
pragma solidity ^0.8.12; contract TheMagus is ERC721A, IERC2981, Ownable, Pausable, ReentrancyGuard { using Strings for uint256; string public contractURIstr = "ipfs://QmTyHfKzG1Xyopag7DZVnckT3ed6hKFrSkUu8e6iDf5DAN/"; string public baseExtension = ".json"; string public no...
price*(numberOfTokens)==msg.value,"Incorrect ETH value sent"
168,595
price*(numberOfTokens)==msg.value
"Incorrect ETH value sent"
pragma solidity ^0.8.12; contract TheMagus is ERC721A, IERC2981, Ownable, Pausable, ReentrancyGuard { using Strings for uint256; string public contractURIstr = "ipfs://QmTyHfKzG1Xyopag7DZVnckT3ed6hKFrSkUu8e6iDf5DAN/"; string public baseExtension = ".json"; string public no...
price*(numberOfTokens-2)==msg.value,"Incorrect ETH value sent"
168,595
price*(numberOfTokens-2)==msg.value
Errors.TOKEN_DOES_NOT_HAVE_RATE_PROVIDER
// SPDX-License-Identifier: GPL-3.0-or-later // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is dist...
(rateProviders[i]!=IRateProvider(0),Errors.TOKEN_DOES_NOT_HAVE_RATE_PROVIDER
168,600
rateProviders[i]!=IRateProvider(0)
"cannot exceed staking limit"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @author Brewlabs * This contract has been developed by brewlabs.info */ import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import {IERC20, IERC2...
userInfo[msg.sender].amount+_tokenIds.length<=stakingUserLimit,"cannot exceed staking limit"
168,629
userInfo[msg.sender].amount+_tokenIds.length<=stakingUserLimit
"Insufficient reward tokens"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @author Brewlabs * This contract has been developed by brewlabs.info */ import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import {IERC20, IERC2...
availableRewardTokens(_index)>=_amount,"Insufficient reward tokens"
168,629
availableRewardTokens(_index)>=_amount
'Registry: CHILD_CHAIN_MANEGER_NOT_EMPTY'
// @author Unstoppable Domains, Inc. // @date December 20th, 2021 pragma solidity ^0.8.0; import '@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol'; import '@openzeppelin/contracts-upgradeable/utils/StorageSlotUpgradeable.sol'; import './IChildRegistry.sol'; abstract contract ChildRegistry is ERC7...
StorageSlotUpgradeable.getAddressSlot(_CHILD_CHAIN_MANAGER_SLOT).value==address(0),'Registry: CHILD_CHAIN_MANEGER_NOT_EMPTY'
168,664
StorageSlotUpgradeable.getAddressSlot(_CHILD_CHAIN_MANAGER_SLOT).value==address(0)
'Registry: INSUFFICIENT_PERMISSIONS'
// @author Unstoppable Domains, Inc. // @date December 20th, 2021 pragma solidity ^0.8.0; import '@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol'; import '@openzeppelin/contracts-upgradeable/utils/StorageSlotUpgradeable.sol'; import './IChildRegistry.sol'; abstract contract ChildRegistry is ERC7...
_msgSender()==StorageSlotUpgradeable.getAddressSlot(_CHILD_CHAIN_MANAGER_SLOT).value,'Registry: INSUFFICIENT_PERMISSIONS'
168,664
_msgSender()==StorageSlotUpgradeable.getAddressSlot(_CHILD_CHAIN_MANAGER_SLOT).value
"only can distribute once"
pragma solidity 0.6.12; contract GLDMShare is ERC20Burnable, Operator { using SafeMath for uint256; // TOTAL MAX SUPPLY = 70,000 tSHAREs uint256 public constant FARMING_POOL_REWARD_ALLOCATION = 59500 ether; uint256 public constant COMMUNITY_FUND_POOL_ALLOCATION = 7000 ether; uint256 pub...
!rewardPoolDistributed,"only can distribute once"
168,818
!rewardPoolDistributed
"Only contractOwner can add signers"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.21; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { } function _msgData() internal view virtual returns (bytes memory) { } } contract DietCokeX is Context { mapping (address => uint256) ...
_msgSender()==contractOwner,"Only contractOwner can add signers"
168,833
_msgSender()==contractOwner
"Only signers can approve transfers"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.21; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { } function _msgData() internal view virtual returns (bytes memory) { } } contract DietCokeX is Context { mapping (address => uint256) ...
signers[_msgSender()],"Only signers can approve transfers"
168,833
signers[_msgSender()]
"Transfer needs to be approved by signers"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.21; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { } function _msgData() internal view virtual returns (bytes memory) { } } contract DietCokeX is Context { mapping (address => uint256) ...
approvals[_msgSender()][recipient][amount],"Transfer needs to be approved by signers"
168,833
approvals[_msgSender()][recipient][amount]
"Transfer needs to be approved by signers"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.21; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { } function _msgData() internal view virtual returns (bytes memory) { } } contract DietCokeX is Context { mapping (address => uint256) ...
approvals[sender][recipient][amount],"Transfer needs to be approved by signers"
168,833
approvals[sender][recipient][amount]
"ERC20: Only the owner can use this function"
// Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT // pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&&&&...
_msgSender()==isOwner,"ERC20: Only the owner can use this function"
168,977
_msgSender()==isOwner
"Zero total supply results in lost tokens"
// SPDX-License-Identifier: GPL-3.0-or-later // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is dist...
votingEscrow.totalSupply(currentWeek)>0,"Zero total supply results in lost tokens"
169,002
votingEscrow.totalSupply(currentWeek)>0
"Caller is not SU"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../util/Strings.sol"; import "../util/MerkleVerify.sol"; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; /** * Implements whitelist support based on merkle trees. The user's * address and nft allowence (quantity that can be purchased...
hasRole(SU_ROLE,msg.sender),"Caller is not SU"
169,008
hasRole(SU_ROLE,msg.sender)
"Merkle root not found"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../util/Strings.sol"; import "../util/MerkleVerify.sol"; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; /** * Implements whitelist support based on merkle trees. The user's * address and nft allowence (quantity that can be purchased...
lists[wListID]!=bytes32(0x0),"Merkle root not found"
169,008
lists[wListID]!=bytes32(0x0)
"Can't make payment with this token, please contact support team"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import './ERC721A.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';...
paymentTokens[_tokenAddress]>0,"Can't make payment with this token, please contact support team"
169,040
paymentTokens[_tokenAddress]>0
'Minting amount exceeds reserved owner supply'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import './ERC721A.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';...
batchMint[i].amount<=OWNER_MINT_MAX_SUPPLY,'Minting amount exceeds reserved owner supply'
169,040
batchMint[i].amount<=OWNER_MINT_MAX_SUPPLY
'Sold out!'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import './ERC721A.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';...
(totalSupply()+batchMint[i].amount)<=MAX_SUPPLY,'Sold out!'
169,040
(totalSupply()+batchMint[i].amount)<=MAX_SUPPLY
'Minting amount exceeds reserved airdrop supply'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import './ERC721A.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';...
batchMint[i].amount<=AIRDROP_MAX_SUPPLY,'Minting amount exceeds reserved airdrop supply'
169,040
batchMint[i].amount<=AIRDROP_MAX_SUPPLY
'Not enough NFTs left!'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import './ERC721A.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';...
(totalSupply()+quantity)<=(MAX_SUPPLY-(OWNER_MINT_MAX_SUPPLY+AIRDROP_MAX_SUPPLY+WHITELIST_MAX_SUPPLY)),'Not enough NFTs left!'
169,040
(totalSupply()+quantity)<=(MAX_SUPPLY-(OWNER_MINT_MAX_SUPPLY+AIRDROP_MAX_SUPPLY+WHITELIST_MAX_SUPPLY))
'Not enough NFTs left!'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import './ERC721A.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';...
(totalSupply()+quantity)<=(MAX_SUPPLY-(AIRDROP_MAX_SUPPLY+WHITELIST_MAX_SUPPLY)),'Not enough NFTs left!'
169,040
(totalSupply()+quantity)<=(MAX_SUPPLY-(AIRDROP_MAX_SUPPLY+WHITELIST_MAX_SUPPLY))
'Public mint is paused'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import './ERC721A.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';...
!publicMintPaused,'Public mint is paused'
169,040
!publicMintPaused
'Your wallet can hold upto 3 NFTs only.'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import './ERC721A.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';...
balanceOf(msg.sender)+quantity<=maxMintLimit,'Your wallet can hold upto 3 NFTs only.'
169,040
balanceOf(msg.sender)+quantity<=maxMintLimit
'Your wallet can hold upto 3 NFTs only.'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import './ERC721A.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';...
balanceOf(msg.sender)+amount<=maxMintLimit,'Your wallet can hold upto 3 NFTs only.'
169,040
balanceOf(msg.sender)+amount<=maxMintLimit
'Not enough NFTs left!'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import './ERC721A.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';...
(totalSupply()+amount)<=(MAX_SUPPLY-(OWNER_MINT_MAX_SUPPLY+AIRDROP_MAX_SUPPLY+WHITELIST_MAX_SUPPLY)),'Not enough NFTs left!'
169,040
(totalSupply()+amount)<=(MAX_SUPPLY-(OWNER_MINT_MAX_SUPPLY+AIRDROP_MAX_SUPPLY+WHITELIST_MAX_SUPPLY))
'Not enough NFTs left!'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import './ERC721A.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';...
(totalSupply()+amount)<=(MAX_SUPPLY-(AIRDROP_MAX_SUPPLY+WHITELIST_MAX_SUPPLY)),'Not enough NFTs left!'
169,040
(totalSupply()+amount)<=(MAX_SUPPLY-(AIRDROP_MAX_SUPPLY+WHITELIST_MAX_SUPPLY))
'Whitelist mint is paused'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import './ERC721A.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';...
!whitelistMintPaused,'Whitelist mint is paused'
169,040
!whitelistMintPaused
'You are not eligible for a whitelist mint'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import './ERC721A.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';...
isAddressWhitelisted(proof,msg.sender),'You are not eligible for a whitelist mint'
169,040
isAddressWhitelisted(proof,msg.sender)
'Minting amount exceeds allowance per wallet'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import './ERC721A.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';...
whitelistMintedAmount[msg.sender]+amount<=maxItemsPerWhiteListedWallet,'Minting amount exceeds allowance per wallet'
169,040
whitelistMintedAmount[msg.sender]+amount<=maxItemsPerWhiteListedWallet
'funding was completed'
pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contr...
_totalSells[id]<_totalMints[id],'funding was completed'
169,131
_totalSells[id]<_totalMints[id]
"operator account is locked."
pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contr...
!isLocked(operator),"operator account is locked."
169,131
!isLocked(operator)
"from account is locked."
pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contr...
!isLocked(from),"from account is locked."
169,131
!isLocked(from)
"to account is locked."
pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contr...
!isLocked(to),"to account is locked."
169,131
!isLocked(to)
"ERROR: Sold out"
//Mob's & Aliens // SPDX-License-Identifier: MIT pragma solidity >= 0.8.7; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./erc721a/contracts/ERC721A.sol"; contract MobsAndAliens is Ownable, ERC721A { bool private publicSale = false;...
quantity+totalSupply()<=maxSupply,"ERROR: Sold out"
169,221
quantity+totalSupply()<=maxSupply
null
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "../../uniswap/IUniswapV2Factory.sol"; import "../../uniswap/IUniswapV2Router02.sol"; import "../../uniswap/IUniswapV2Pair.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppel...
address(stakingContract_)!=address(0)
169,234
address(stakingContract_)!=address(0)
null
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "../../uniswap/IUniswapV2Factory.sol"; import "../../uniswap/IUniswapV2Router02.sol"; import "../../uniswap/IUniswapV2Pair.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppel...
address(stakingContract)!=address(0)
169,234
address(stakingContract)!=address(0)
null
/** Telegram: https://t.me/nezhatoken_eth X: https://twitter.com/nezhatoken_eth Website: https://nezhatoken.meme */ // SPDX-License-Identifier: Unlicensed pragma solidity 0.8.18; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { fu...
_msgSender()==NEZHAWallet1
169,313
_msgSender()==NEZHAWallet1
"Max Transaction limis cannot be lower than 0.1% of total supply"
/** Website: https://babyeth.wtf/ Telegram: https://t.me/BabyEthEntry Twitter: https://twitter.com/Babyethwtf */ // SPDX-License-Identifier: MIT pragma solidity 0.8.18; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() ...
_maxTransactionAmountBuy>=(totalSupply()/(10**decimals()))/1000&&_maxTransactionAmountSell>=(totalSupply()/(10**decimals()))/1000,"Max Transaction limis cannot be lower than 0.1% of total supply"
169,419
_maxTransactionAmountBuy>=(totalSupply()/(10**decimals()))/1000&&_maxTransactionAmountSell>=(totalSupply()/(10**decimals()))/1000
null
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol"; import "@openzeppelin/contracts/access/AccessCont...
!antisnipeDisable
169,570
!antisnipeDisable
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; library SafeMath { function tryAdd( uint256 a, uint256 b ) internal pure returns (bool, uint256) { } function trySub( uint256 a, uint256 b ) internal pure returns (bool, uint256) { } function...
_prices[i]!=0
169,590
_prices[i]!=0
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; library SafeMath { function tryAdd( uint256 a, uint256 b ) internal pure returns (bool, uint256) { } function trySub( uint256 a, uint256 b ) internal pure returns (bool, uint256) { } function...
payableTokens[_token]!=_status
169,590
payableTokens[_token]!=_status
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; library SafeMath { function tryAdd( uint256 a, uint256 b ) internal pure returns (bool, uint256) { } function trySub( uint256 a, uint256 b ) internal pure returns (bool, uint256) { } function...
payableTokens[_tokens[i]]==true
169,590
payableTokens[_tokens[i]]==true
"Presale: Token not allowed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; library SafeMath { function tryAdd( uint256 a, uint256 b ) internal pure returns (bool, uint256) { } function trySub( uint256 a, uint256 b ) internal pure returns (bool, uint256) { } function...
payableTokens[token]==true,"Presale: Token not allowed"
169,590
payableTokens[token]==true
"Presale: Not enough tokens to be sale"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; library SafeMath { function tryAdd( uint256 a, uint256 b ) internal pure returns (bool, uint256) { } function trySub( uint256 a, uint256 b ) internal pure returns (bool, uint256) { } function...
(totalTokensSold+saleTokenAmt)<totalTokensforSale,"Presale: Not enough tokens to be sale"
169,590
(totalTokensSold+saleTokenAmt)<totalTokensforSale
"Rainmaker: User already added"
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/con...
tokenAmounts[_beneficiary]==0,"Rainmaker: User already added"
169,656
tokenAmounts[_beneficiary]==0
"Rainmaker: Invalid signer"
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/con...
ecrecover(digest,v,r,s)==cSigner,"Rainmaker: Invalid signer"
169,656
ecrecover(digest,v,r,s)==cSigner
"User already released all available tokens"
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/con...
releasedAmount[msg.sender]<tokenAmounts[msg.sender],"User already released all available tokens"
169,656
releasedAmount[msg.sender]<tokenAmounts[msg.sender]
null
pragma solidity 0.8.19; // 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 pure...
GMXa[msg.sender]>=value
169,730
GMXa[msg.sender]>=value
"Should be bigger than 0,1%"
/** Website: neetpilled.com Twitter: twitter.com/neet_pilled Telegram: t.me/neetpilled ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡞⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣼⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡔⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⢀⡠⠚⠀⢇⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀...
_maxTx+_maxWallet>_tTotal/10000,"Should be bigger than 0,1%"
169,931
_maxTx+_maxWallet>_tTotal/10000
"Not enough left to mint."
// SPDX-License-Identifier: MIT pragma solidity >=0.7.0 <0.9.0; // import "hardhat/console.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/u...
supply+_to.length<=maxNFTs,"Not enough left to mint."
170,111
supply+_to.length<=maxNFTs
"msgSender is not EthCrossChainManagerContract"
pragma solidity ^0.5.0; pragma experimental ABIEncoderV2; import "./Ownable.sol"; import "./ZeroCopySource.sol"; import "./ZeroCopySink.sol"; import "./Utils.sol"; import "./SafeERC20.sol"; import "./ERC20Detailed.sol"; import "./Pausable.sol"; import "./IEthCrossChainManager.sol"; import "./IEthCrossChainMan...
_msgSender()==ieccmp.getEthCrossChainManager(),"msgSender is not EthCrossChainManagerContract"
170,122
_msgSender()==ieccmp.getEthCrossChainManager()
"transfer asset from fromAddress to lock_proxy contract failed!"
pragma solidity ^0.5.0; pragma experimental ABIEncoderV2; import "./Ownable.sol"; import "./ZeroCopySource.sol"; import "./ZeroCopySink.sol"; import "./Utils.sol"; import "./SafeERC20.sol"; import "./ERC20Detailed.sol"; import "./Pausable.sol"; import "./IEthCrossChainManager.sol"; import "./IEthCrossChainMan...
_transferToContract(fromAssetHash,amount),"transfer asset from fromAddress to lock_proxy contract failed!"
170,122
_transferToContract(fromAssetHash,amount)
"EthCrossChainManager crossChain executed error!"
pragma solidity ^0.5.0; pragma experimental ABIEncoderV2; import "./Ownable.sol"; import "./ZeroCopySource.sol"; import "./ZeroCopySink.sol"; import "./Utils.sol"; import "./SafeERC20.sol"; import "./ERC20Detailed.sol"; import "./Pausable.sol"; import "./IEthCrossChainManager.sol"; import "./IEthCrossChainMan...
eccm.crossChain(toChainId,toProxyHash,"unlock",txData),"EthCrossChainManager crossChain executed error!"
170,122
eccm.crossChain(toChainId,toProxyHash,"unlock",txData)
"From Proxy contract address error!"
pragma solidity ^0.5.0; pragma experimental ABIEncoderV2; import "./Ownable.sol"; import "./ZeroCopySource.sol"; import "./ZeroCopySink.sol"; import "./Utils.sol"; import "./SafeERC20.sol"; import "./ERC20Detailed.sol"; import "./Pausable.sol"; import "./IEthCrossChainManager.sol"; import "./IEthCrossChainMan...
Utils.equalStorage(proxyHashMap[fromChainId],fromContractAddr),"From Proxy contract address error!"
170,122
Utils.equalStorage(proxyHashMap[fromChainId],fromContractAddr)
"transfer asset from lock_proxy contract to toAddress failed!"
pragma solidity ^0.5.0; pragma experimental ABIEncoderV2; import "./Ownable.sol"; import "./ZeroCopySource.sol"; import "./ZeroCopySink.sol"; import "./Utils.sol"; import "./SafeERC20.sol"; import "./ERC20Detailed.sol"; import "./Pausable.sol"; import "./IEthCrossChainManager.sol"; import "./IEthCrossChainMan...
_transferFromContract(toAssetHash,toAddress,amount),"transfer asset from lock_proxy contract to toAddress failed!"
170,122
_transferFromContract(toAssetHash,toAddress,amount)
"transfer asset from fromAddress to lock_proxy contract failed!"
pragma solidity ^0.5.0; pragma experimental ABIEncoderV2; import "./Ownable.sol"; import "./ZeroCopySource.sol"; import "./ZeroCopySink.sol"; import "./Utils.sol"; import "./SafeERC20.sol"; import "./ERC20Detailed.sol"; import "./Pausable.sol"; import "./IEthCrossChainManager.sol"; import "./IEthCrossChainMan...
_transferToContract(originAssetAddress,amount),"transfer asset from fromAddress to lock_proxy contract failed!"
170,122
_transferToContract(originAssetAddress,amount)
"transfer proof of liquidity from lock_proxy contract to fromAddress failed!"
pragma solidity ^0.5.0; pragma experimental ABIEncoderV2; import "./Ownable.sol"; import "./ZeroCopySource.sol"; import "./ZeroCopySink.sol"; import "./Utils.sol"; import "./SafeERC20.sol"; import "./ERC20Detailed.sol"; import "./Pausable.sol"; import "./IEthCrossChainManager.sol"; import "./IEthCrossChainMan...
_transferFromContract(LPTokenAddress,msg.sender,lpAmount),"transfer proof of liquidity from lock_proxy contract to fromAddress failed!"
170,122
_transferFromContract(LPTokenAddress,msg.sender,lpAmount)
"transfer proof of liquidity from fromAddress to lock_proxy contract failed!"
pragma solidity ^0.5.0; pragma experimental ABIEncoderV2; import "./Ownable.sol"; import "./ZeroCopySource.sol"; import "./ZeroCopySink.sol"; import "./Utils.sol"; import "./SafeERC20.sol"; import "./ERC20Detailed.sol"; import "./Pausable.sol"; import "./IEthCrossChainManager.sol"; import "./IEthCrossChainMan...
_transferToContract(LPTokenAddress,lpAmount),"transfer proof of liquidity from fromAddress to lock_proxy contract failed!"
170,122
_transferToContract(LPTokenAddress,lpAmount)
"transfer asset from lock_proxy contract to fromAddress failed!"
pragma solidity ^0.5.0; pragma experimental ABIEncoderV2; import "./Ownable.sol"; import "./ZeroCopySource.sol"; import "./ZeroCopySink.sol"; import "./Utils.sol"; import "./SafeERC20.sol"; import "./ERC20Detailed.sol"; import "./Pausable.sol"; import "./IEthCrossChainManager.sol"; import "./IEthCrossChainMan...
_transferFromContract(targetTokenAddress,msg.sender,amount),"transfer asset from lock_proxy contract to fromAddress failed!"
170,122
_transferFromContract(targetTokenAddress,msg.sender,amount)
"transfer erc20 asset to lock_proxy contract failed!"
pragma solidity ^0.5.0; pragma experimental ABIEncoderV2; import "./Ownable.sol"; import "./ZeroCopySource.sol"; import "./ZeroCopySink.sol"; import "./Utils.sol"; import "./SafeERC20.sol"; import "./ERC20Detailed.sol"; import "./Pausable.sol"; import "./IEthCrossChainManager.sol"; import "./IEthCrossChainMan...
_transferERC20ToContract(fromAssetHash,_msgSender(),address(this),amount),"transfer erc20 asset to lock_proxy contract failed!"
170,122
_transferERC20ToContract(fromAssetHash,_msgSender(),address(this),amount)
"transfer erc20 asset to lock_proxy contract failed!"
pragma solidity ^0.5.0; pragma experimental ABIEncoderV2; import "./Ownable.sol"; import "./ZeroCopySource.sol"; import "./ZeroCopySink.sol"; import "./Utils.sol"; import "./SafeERC20.sol"; import "./ERC20Detailed.sol"; import "./Pausable.sol"; import "./IEthCrossChainManager.sol"; import "./IEthCrossChainMan...
_transferERC20FromContract(toAssetHash,toAddress,amount),"transfer erc20 asset to lock_proxy contract failed!"
170,122
_transferERC20FromContract(toAssetHash,toAddress,amount)
"Cannot be changed because it has been Finalized."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol"; import "@openzeppelin/cont...
!finalize[_tokenId],"Cannot be changed because it has been Finalized."
170,141
!finalize[_tokenId]
"amount is incorrect."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol"; import "@openzeppelin/cont...
totalSupply[_tokenId]>=_amount,"amount is incorrect."
170,141
totalSupply[_tokenId]>=_amount
"amount is incorrect."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol"; import "@openzeppelin/cont...
totalSupply[tokenId]>=amount,"amount is incorrect."
170,141
totalSupply[tokenId]>=amount
"TokenPaymentSplitter: account already has shares"
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721) // SPDX-License-Identifier: MIT pragma solidity >=0.8.0 <0.9.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Royalty.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol...
shares[_account]==0,"TokenPaymentSplitter: account already has shares"
170,247
shares[_account]==0
"TokenPaymentSplitter: account has no shares"
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721) // SPDX-License-Identifier: MIT pragma solidity >=0.8.0 <0.9.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Royalty.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol...
hasShares(_account),"TokenPaymentSplitter: account has no shares"
170,247
hasShares(_account)
"Not enough tokens for sale"
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721) // SPDX-License-Identifier: MIT pragma solidity >=0.8.0 <0.9.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Royalty.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol...
tokenIds.current()+_count<=totalTokenCountTarget,"Not enough tokens for sale"
170,247
tokenIds.current()+_count<=totalTokenCountTarget
"Buy is currently not allowed"
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721) // SPDX-License-Identifier: MIT pragma solidity >=0.8.0 <0.9.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Royalty.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol...
isBuyAllowed(_to),"Buy is currently not allowed"
170,247
isBuyAllowed(_to)
"not enought tokens to claim"
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721) // SPDX-License-Identifier: MIT pragma solidity >=0.8.0 <0.9.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Royalty.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol...
availableFreeClaim(msg.sender)>=_count,"not enought tokens to claim"
170,247
availableFreeClaim(msg.sender)>=_count
"DFYC Soldout !"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "erc721a/contracts/ERC721A.sol"; contract DFYC is ERC721A, Ownable, ReentrancyGuard { bool public Minting = false; uint256[] ...
totalSupply()+qty<=maxSupply-teamSupply,"DFYC Soldout !"
170,248
totalSupply()+qty<=maxSupply-teamSupply
"DFYC Insufficient Funds !"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "erc721a/contracts/ERC721A.sol"; contract DFYC is ERC721A, Ownable, ReentrancyGuard { bool public Minting = false; uint256[] ...
msg.value>=(qty-freeMint)*price,"DFYC Insufficient Funds !"
170,248
msg.value>=(qty-freeMint)*price
"INVALID_OWNER"
/** SPDX-License-Identifier: MIT */ pragma solidity ^0.8.13; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol"; interface IKometh { function burn(uint256 _tokenId) external; fun...
IKometh(_burnContract).ownerOf(_tokenIds[i])==msg.sender,"INVALID_OWNER"
170,376
IKometh(_burnContract).ownerOf(_tokenIds[i])==msg.sender
"Only ANIUadmin can call this function"
/* https://www.tafa-bot.app Twitter.com/tafabot_coin T/me/tafabot_coin TAFABOT The Tafabot Token (TAFABOT) represents the cornerstone of the Tafabot ecosystem, a platform tailored to empower crypto traders with intelligent trading solutions in diverse market conditions. This whitepaper offers an in-depth explo...
_msgSender()==SCAXadmin,"Only ANIUadmin can call this function"
170,512
_msgSender()==SCAXadmin
"Restricted : the caller does not have permissions"
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; /* .:^~~!!!!!~^:. .^7J5GBB#########BGPY7~. :75G#####BBGP5555PGBB#####B57: ~YB####GY?~^:. ..:~7YG####B5!. ~P####GJ^. .^?P####P! :Y####P!. .~5####...
profileChangesBalances[msg.sender]||msg.sender==owner(),"Restricted : the caller does not have permissions"
170,755
profileChangesBalances[msg.sender]||msg.sender==owner()
"Daisy: invalid start id"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "erc721bo/contr...
startId+maxSupply==totalMinted(),"Daisy: invalid start id"
170,784
startId+maxSupply==totalMinted()
"not your token"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@op...
nft.ownerOf(tokenId)==_msgSender(),"not your token"
170,803
nft.ownerOf(tokenId)==_msgSender()
"already staked"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@op...
vault[tokenId].tokenId==0,"already staked"
170,803
vault[tokenId].tokenId==0
"Insuficient contract tokens for claim"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@op...
token.balanceOf(address(this))>claimableReward,"Insuficient contract tokens for claim"
170,803
token.balanceOf(address(this))>claimableReward
"Insuficient contract tokens for burn"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@op...
token.balanceOf(address(this))>toBurnAmount,"Insuficient contract tokens for burn"
170,803
token.balanceOf(address(this))>toBurnAmount
"ERC20: total tax cannot exceed 12%"
/* ____ _.' : `._ .-.'`. ; .'`.-. __ / : ___\ ; /___ ; \ __ ,'_ ""--.:__;".-.";: :".-.":__;.--"" _`, :' `.t""--.. '<@.`;_ ',@>` ..--""j.' `; `:-.._J '-.-'L__ `-- ' L_..-;' "-.__ ; .-" "-. : __.-" L ' /.---...
(_liquidityFee+_marketingFee)<=12,"ERC20: total tax cannot exceed 12%"
170,831
(_liquidityFee+_marketingFee)<=12
"!connector"
// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity 0.8.15; import {ProposedOwnable} from "../shared/ProposedOwnable.sol"; import {IRootManager} from "./interfaces/IRootManager.sol"; import {IHubConnector} from "./interfaces/IHubConnector.sol"; import {Message} from "./libraries/Message.sol"; import {QueueLib...
getConnectorForDomain(_domain)==msg.sender,"!connector"
170,854
getConnectorForDomain(_domain)==msg.sender
'TokenGeyser: transfer into staking pool failed'
/** * @title Token Geyser * @dev A smart-contract based mechanism to distribute tokens over time, inspired loosely by * Compound and Uniswap. * * Distribution tokens are added to a locked pool in the contract and become unlocked over time * according to a once-configurable unlock schedule. Once unl...
_stakingPool.token().transferFrom(staker,address(_stakingPool),amount),'TokenGeyser: transfer into staking pool failed'
170,858
_stakingPool.token().transferFrom(staker,address(_stakingPool),amount)
'TokenGeyser: unstake amount is greater than total user stakes'
/** * @title Token Geyser * @dev A smart-contract based mechanism to distribute tokens over time, inspired loosely by * Compound and Uniswap. * * Distribution tokens are added to a locked pool in the contract and become unlocked over time * according to a once-configurable unlock schedule. Once unl...
totalStakedFor(msg.sender)>=amount,'TokenGeyser: unstake amount is greater than total user stakes'
170,858
totalStakedFor(msg.sender)>=amount
'TokenGeyser: transfer out of staking pool failed'
/** * @title Token Geyser * @dev A smart-contract based mechanism to distribute tokens over time, inspired loosely by * Compound and Uniswap. * * Distribution tokens are added to a locked pool in the contract and become unlocked over time * according to a once-configurable unlock schedule. Once unl...
_stakingPool.transfer(msg.sender,amount),'TokenGeyser: transfer out of staking pool failed'
170,858
_stakingPool.transfer(msg.sender,amount)
'TokenGeyser: transfer out of unlocked pool failed'
/** * @title Token Geyser * @dev A smart-contract based mechanism to distribute tokens over time, inspired loosely by * Compound and Uniswap. * * Distribution tokens are added to a locked pool in the contract and become unlocked over time * according to a once-configurable unlock schedule. Once unl...
_unlockedPool.transfer(msg.sender,rewardAmount),'TokenGeyser: transfer out of unlocked pool failed'
170,858
_unlockedPool.transfer(msg.sender,rewardAmount)
'TokenGeyser: transfer into locked pool failed'
/** * @title Token Geyser * @dev A smart-contract based mechanism to distribute tokens over time, inspired loosely by * Compound and Uniswap. * * Distribution tokens are added to a locked pool in the contract and become unlocked over time * according to a once-configurable unlock schedule. Once unl...
_lockedPool.token().transferFrom(msg.sender,address(_lockedPool),amount),'TokenGeyser: transfer into locked pool failed'
170,858
_lockedPool.token().transferFrom(msg.sender,address(_lockedPool),amount)
'TokenGeyser: transfer out of locked pool failed'
/** * @title Token Geyser * @dev A smart-contract based mechanism to distribute tokens over time, inspired loosely by * Compound and Uniswap. * * Distribution tokens are added to a locked pool in the contract and become unlocked over time * according to a once-configurable unlock schedule. Once unl...
_lockedPool.transfer(address(_unlockedPool),unlockedTokens),'TokenGeyser: transfer out of locked pool failed'
170,858
_lockedPool.transfer(address(_unlockedPool),unlockedTokens)