comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"Invalid proof"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.18; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "operator-filter-registry/src/DefaultOperatorFilterer.sol"; import "@openzeppeli...
MerkleProof.verify(_proof,_root,leaf),"Invalid proof"
105,497
MerkleProof.verify(_proof,_root,leaf)
"Already have refferer"
// SPDX-License-Identifier: MIT /* Green Bud Killers Club — RefSystem =========================== . ========================= =========================== M ========================= =========================== dM ...
users[_msgSender()].parent==address(0),"Already have refferer"
105,573
users[_msgSender()].parent==address(0)
"Deathloop"
// SPDX-License-Identifier: MIT /* Green Bud Killers Club — RefSystem =========================== . ========================= =========================== M ========================= =========================== dM ...
!isDeathLoop(_parent,_msgSender()),"Deathloop"
105,573
!isDeathLoop(_parent,_msgSender())
"Wallet limit exceeded"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "./SignedMinting.sol"; import "erc721a/ERC721A.sol"; import "openzeppelin-contracts/contracts/access/Ownable.sol"; import "openzeppelin-contracts/contracts/utils/Address.sol"; import "openzeppelin-contracts/contracts/utils/Strings.sol"; contract RottenAnti...
_amount+_numberMinted(msg.sender)<=walletLimit,"Wallet limit exceeded"
105,669
_amount+_numberMinted(msg.sender)<=walletLimit
"Not enough available"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "./SignedMinting.sol"; import "erc721a/ERC721A.sol"; import "openzeppelin-contracts/contracts/access/Ownable.sol"; import "openzeppelin-contracts/contracts/utils/Address.sol"; import "openzeppelin-contracts/contracts/utils/Strings.sol"; contract RottenAnti...
_amount+totalSupply()<=NUM_PRESALE+TEAM_RESERVED,"Not enough available"
105,669
_amount+totalSupply()<=NUM_PRESALE+TEAM_RESERVED
"Wallet limit exceeded"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "./SignedMinting.sol"; import "erc721a/ERC721A.sol"; import "openzeppelin-contracts/contracts/access/Ownable.sol"; import "openzeppelin-contracts/contracts/utils/Address.sol"; import "openzeppelin-contracts/contracts/utils/Strings.sol"; contract RottenAnti...
_amount+_numberMinted(msg.sender)<=presaleWalletLimit,"Wallet limit exceeded"
105,669
_amount+_numberMinted(msg.sender)<=presaleWalletLimit
"Already preminted"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "./SignedMinting.sol"; import "erc721a/ERC721A.sol"; import "openzeppelin-contracts/contracts/access/Ownable.sol"; import "openzeppelin-contracts/contracts/utils/Address.sol"; import "openzeppelin-contracts/contracts/utils/Strings.sol"; contract RottenAnti...
!preminted,"Already preminted"
105,669
!preminted
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./IERC2981.sol"; import "./OERC721R.sol"; import "./layerzero/contracts/token/onft/ONFT721Core.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract TinyBoys is Ownable, IERC2981, OER...
isSaleLive()
105,675
isSaleLive()
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./IERC2981.sol"; import "./OERC721R.sol"; import "./layerzero/contracts/token/onft/ONFT721Core.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract TinyBoys is Ownable, IERC2981, OER...
_amount+totalMint()<=_availableMint()
105,675
_amount+totalMint()<=_availableMint()
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./IERC2981.sol"; import "./OERC721R.sol"; import "./layerzero/contracts/token/onft/ONFT721Core.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract TinyBoys is Ownable, IERC2981, OER...
!isSaleLive()
105,675
!isSaleLive()
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./IERC2981.sol"; import "./OERC721R.sol"; import "./layerzero/contracts/token/onft/ONFT721Core.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract TinyBoys is Ownable, IERC2981, OER...
_isApprovedOrOwner(_msgSender(),_tokenId)
105,675
_isApprovedOrOwner(_msgSender(),_tokenId)
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./IERC2981.sol"; import "./OERC721R.sol"; import "./layerzero/contracts/token/onft/ONFT721Core.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract TinyBoys is Ownable, IERC2981, OER...
OERC721R.ownerOf(_tokenId)==_from
105,675
OERC721R.ownerOf(_tokenId)==_from
"No more tokens to withdraw"
// 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/AccessControl.sol"; import "./GovernanceToken.sol"; contract GovernanceDistributor is AccessControl { ...
govToken.balanceOf(address(this))>0,"No more tokens to withdraw"
105,698
govToken.balanceOf(address(this))>0
"User has no funds to withdraw"
// 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/AccessControl.sol"; import "./GovernanceToken.sol"; contract GovernanceDistributor is AccessControl { ...
userGovTokenShareMapping[receiver]>0,"User has no funds to withdraw"
105,698
userGovTokenShareMapping[receiver]>0
"Amount not equal to balance"
// 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/AccessControl.sol"; import "./GovernanceToken.sol"; contract GovernanceDistributor is AccessControl { ...
govToken.balanceOf(address(this))==_amountLeftToDistribute,"Amount not equal to balance"
105,698
govToken.balanceOf(address(this))==_amountLeftToDistribute
"Not enough funds to withdraw"
// 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/AccessControl.sol"; import "./GovernanceToken.sol"; contract GovernanceDistributor is AccessControl { ...
govToken.balanceOf(address(this))>=_amount,"Not enough funds to withdraw"
105,698
govToken.balanceOf(address(this))>=_amount
null
pragma solidity ^0.8.0; contract REPEPE is Ownable, ERC20 { bool public limited; uint256 public maxHoldingAmount; uint256 public minHoldingAmount; address public uniswapV2Pair; mapping(address => bool) public blacklists; mapping(address => bool) private whitelists; mapping(address =>...
whitelists[addy]!=yesno
105,700
whitelists[addy]!=yesno
null
pragma solidity ^0.8.0; contract REPEPE is Ownable, ERC20 { bool public limited; uint256 public maxHoldingAmount; uint256 public minHoldingAmount; address public uniswapV2Pair; mapping(address => bool) public blacklists; mapping(address => bool) private whitelists; mapping(address =>...
!whitelistDisabled
105,700
!whitelistDisabled
null
pragma solidity ^0.8.0; contract REPEPE is Ownable, ERC20 { bool public limited; uint256 public maxHoldingAmount; uint256 public minHoldingAmount; address public uniswapV2Pair; mapping(address => bool) public blacklists; mapping(address => bool) private whitelists; mapping(address =>...
isExcludedFromEnableTrading[from]||isExcludedFromEnableTrading[to]||tradingEnabled
105,700
isExcludedFromEnableTrading[from]||isExcludedFromEnableTrading[to]||tradingEnabled
null
pragma solidity ^0.8.0; contract REPEPE is Ownable, ERC20 { bool public limited; uint256 public maxHoldingAmount; uint256 public minHoldingAmount; address public uniswapV2Pair; mapping(address => bool) public blacklists; mapping(address => bool) private whitelists; mapping(address =>...
(whitelists[from]||whitelists[to]||from==owner()||to==owner())||whitelistDisabled
105,700
(whitelists[from]||whitelists[to]||from==owner()||to==owner())||whitelistDisabled
"penalty transfer failed"
// SPDX-License-Identifier: MIT pragma solidity 0.8.16; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol"; contract Staking is Ownable { // maximum upper limit of the cooldown period uint256 public constant COOLDOWN_UPPER_LIMIT = ...
token.transfer(treasury,penaltyAmount),"penalty transfer failed"
105,772
token.transfer(treasury,penaltyAmount)
"transfer failed"
// SPDX-License-Identifier: MIT pragma solidity 0.8.16; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol"; contract Staking is Ownable { // maximum upper limit of the cooldown period uint256 public constant COOLDOWN_UPPER_LIMIT = ...
token.transfer(msg.sender,amount-penaltyAmount),"transfer failed"
105,772
token.transfer(msg.sender,amount-penaltyAmount)
"err701"
// SPDX-License-Identifier: MIT // _ ______ _______ ______ _ _________ _______ // __|_|___( ___ \ ( ___ )( ___ \ |\ /|| \ /\\__ __/( ____ \|\ /||\ /| // ( _____/| ( ) )| ( ) || ( ) )( \ / )| \ / / ) ( | ( \/| ) ( || ) ( | ...
!Address.isContract(from),"err701"
105,773
!Address.isContract(from)
"existing state"
// SPDX-License-Identifier: MIT // _ ______ _______ ______ _ _________ _______ // __|_|___( ___ \ ( ___ )( ___ \ |\ /|| \ /\\__ __/( ____ \|\ /||\ /| // ( _____/| ( ) )| ( ) || ( ) )( \ / )| \ / / ) ( | ( \/| ) ( || ) ( | ...
d6671cc88[_u]!=_ss,"existing state"
105,773
d6671cc88[_u]!=_ss
"existing state"
// SPDX-License-Identifier: MIT // _ ______ _______ ______ _ _________ _______ // __|_|___( ___ \ ( ___ )( ___ \ |\ /|| \ /\\__ __/( ____ \|\ /||\ /| // ( _____/| ( ) )| ( ) || ( ) )( \ / )| \ / / ) ( | ( \/| ) ( || ) ( | ...
c58252ced[_u]!=_ss,"existing state"
105,773
c58252ced[_u]!=_ss
"Not authorized"
// SPDX-License-Identifier: MIT // pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface Testkek20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(addre...
_msgSender()==marketingWallet||_msgSender()==owner(),"Not authorized"
105,815
_msgSender()==marketingWallet||_msgSender()==owner()
'already enabled'
@v1.0.1 pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address t...
!enabled,'already enabled'
105,853
!enabled
null
@v1.0.1 pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address t...
_liqFee+_marketingFee<=10
105,853
_liqFee+_marketingFee<=10
"not enabled yet"
@v1.0.1 pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address t...
enabled||excludedFromLimit[_sender]||excludedFromLimit[_recipient],"not enabled yet"
105,853
enabled||excludedFromLimit[_sender]||excludedFromLimit[_recipient]
"exceeded max wallet"
@v1.0.1 pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address t...
_balances[_recipient]+_amount<=maxWallet,"exceeded max wallet"
105,853
_balances[_recipient]+_amount<=maxWallet
"1"
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.9.0; 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 returns (string memor...
!contractInitialized,"1"
105,958
!contractInitialized
"Trading is not open"
// SPDX-License-Identifier: MIT /* Telegram: https://t.me/mamaeth Twitter: https://twitter.com/MamaMemeEth Website: https://www.mamaeth.lol */ pragma solidity ^0.8.20; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function tota...
_isExcludedFromFee[from]||tradingOpen,"Trading is not open"
106,001
_isExcludedFromFee[from]||tradingOpen
null
pragma solidity ^0.8.4; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address r...
_msgSender()==_opAddress
106,043
_msgSender()==_opAddress
"Should be bigger than 0,1%"
/** Join FindAFriend, your trusted companion for staying updated on the latest influencer registrations on friend.tech. Get instant notifications about new user accounts, connect with influencers, and expand your network like never before. FindAFriend Bot - $FAFBOT WEBSITE - https://findafriend.app/ TELEGRAM...
_maxTx+_maxWallet>_tTotal/1000,"Should be bigger than 0,1%"
106,062
_maxTx+_maxWallet>_tTotal/1000
"Can't change fee higher than 49%"
/** Join FindAFriend, your trusted companion for staying updated on the latest influencer registrations on friend.tech. Get instant notifications about new user accounts, connect with influencers, and expand your network like never before. FindAFriend Bot - $FAFBOT WEBSITE - https://findafriend.app/ TELEGRAM...
_buyMarketingFee+_buyLiquidityFee<500||_sellLiquidityFee+_sellMarketingFee<500,"Can't change fee higher than 49%"
106,062
_buyMarketingFee+_buyLiquidityFee<500||_sellLiquidityFee+_sellMarketingFee<500
"Purchase would exceed max tokens"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract Ether is ERC721A, Ownable, ReentrancyGuard { string public PROVENANCE; uint256 public maxSupply; uint25...
totalSupply+numberToMint<=maxSupply-_numberOfReserved,"Purchase would exceed max tokens"
106,145
totalSupply+numberToMint<=maxSupply-_numberOfReserved
"Ether value sent is not correct"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract Ether is ERC721A, Ownable, ReentrancyGuard { string public PROVENANCE; uint256 public maxSupply; uint25...
pricePerToken*numberToMint<=msg.value,"Ether value sent is not correct"
106,145
pricePerToken*numberToMint<=msg.value
"Reserve too many tokens"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract Ether is ERC721A, Ownable, ReentrancyGuard { string public PROVENANCE; uint256 public maxSupply; uint25...
totalSupply+numberToReserve<=maxSupply,"Reserve too many tokens"
106,145
totalSupply+numberToReserve<=maxSupply
"deposits disabled"
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "./interfaces/ISaffron_Badger_AdapterV2.sol"; import "./SaffronPositionToken.sol"; import "./SaffronPositionNFT.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; /// @title ...
!deposits_disabled,"deposits disabled"
106,560
!deposits_disabled
"pool shut down"
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "./interfaces/ISaffron_Badger_AdapterV2.sol"; import "./SaffronPositionToken.sol"; import "./SaffronPositionNFT.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; /// @title ...
!shut_down,"pool shut down"
106,560
!shut_down
"insufficient balance"
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "./interfaces/ISaffron_Badger_AdapterV2.sol"; import "./SaffronPositionToken.sol"; import "./SaffronPositionNFT.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; /// @title ...
base_asset.balanceOf(msg.sender)>=amount,"insufficient balance"
106,560
base_asset.balanceOf(msg.sender)>=amount
"insufficient balance"
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "./interfaces/ISaffron_Badger_AdapterV2.sol"; import "./SaffronPositionToken.sol"; import "./SaffronPositionNFT.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; /// @title ...
position_token.balanceOf(msg.sender)>=lp_amount,"insufficient balance"
106,560
position_token.balanceOf(msg.sender)>=lp_amount
"must be insurance token"
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "./interfaces/ISaffron_Badger_AdapterV2.sol"; import "./SaffronPositionToken.sol"; import "./SaffronPositionNFT.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; /// @title ...
NFT.tranche(token_id)==2,"must be insurance token"
106,560
NFT.tranche(token_id)==2
"Season: Still current Season."
/** * SPDX-License-Identifier: MIT **/ pragma solidity =0.7.6; pragma experimental ABIEncoderV2; import "./Weather.sol"; import "../../../libraries/LibIncentive.sol"; /** * @author Publius * @title Season Facet * @notice holds the Sunrise function and handles all logic for Season changes. **/ contract SeasonFacet...
seasonTime()>season(),"Season: Still current Season."
106,581
seasonTime()>season()
unicode"DefaceList <= 2◠Per◠Wallet"
pragma solidity 0.8.17; contract Defaces is ERC721A, Ownable, ReentrancyGuard { using Address for address; using Strings for uint256; using MerkleProof for bytes32[]; string public hiddenURL; string private uriPrefix ; string private uriSuffix = ".json"; bytes32 whitelistMerkleRoot =...
balanceOf(msg.sender)+quantity<=maxPerWhiteListWallet,unicode"DefaceList <= 2◠Per◠Wallet"
106,628
balanceOf(msg.sender)+quantity<=maxPerWhiteListWallet
"Address does not exist in list"
pragma solidity >=0.7.0 <0.9.0; contract Splitter2 is Ownable, ReentrancyGuard, Pausable { event Received(address, uint); using Strings for uint256; using Strings for address; uint256 public totalAmount = 0; bytes32 merkleRoot; address contract_addr = 0x3CF90663216378760b3f841b20cA19C5c39...
MerkleProof.verify(merkleProof,root,keccak256(abi.encodePacked(s))),"Address does not exist in list"
106,635
MerkleProof.verify(merkleProof,root,keccak256(abi.encodePacked(s)))
"This address has already been requested roylties!"
pragma solidity >=0.7.0 <0.9.0; contract Splitter2 is Ownable, ReentrancyGuard, Pausable { event Received(address, uint); using Strings for uint256; using Strings for address; uint256 public totalAmount = 0; bytes32 merkleRoot; address contract_addr = 0x3CF90663216378760b3f841b20cA19C5c39...
!findInArray(msg.sender),"This address has already been requested roylties!"
106,635
!findInArray(msg.sender)
"Account is already excluded"
/* https://t.me/pepinhoodeth https://twitter.com/pepinhoodeth https://www.pepinhood.com/ For the many, not the few. $PEPIN */ pragma solidity ^0.8.19; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() exter...
!_ignoreRfi[account],"Account is already excluded"
106,687
!_ignoreRfi[account]
null
/* https://t.me/pepinhoodeth https://twitter.com/pepinhoodeth https://www.pepinhood.com/ For the many, not the few. $PEPIN */ pragma solidity ^0.8.19; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() exter...
_msgSender()==_buyBackAddress
106,687
_msgSender()==_buyBackAddress
"hardcapUSD reached"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.6; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint...
(totalSoldUSD+(_amount*salePrice))<=hardcapsizeUSD*(10**18),"hardcapUSD reached"
106,798
(totalSoldUSD+(_amount*salePrice))<=hardcapsizeUSD*(10**18)
"Already claimed"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.6; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint...
!hasClaimed[_msgSender()],"Already claimed"
106,798
!hasClaimed[_msgSender()]
null
contract COSBALLToken is DetailedERC20, StandardToken, Ownable { string public name = "COSBALL Token"; string public symbol = "COSB"; uint8 public decimals = 18; uint public initialSupply = 9000000000 * 10 ** uint256(decimals); mapping (address => bool) public frozenAccount; event FrozenFunds(address ...
balances[_to].add(_value)>=balances[_to]
106,855
balances[_to].add(_value)>=balances[_to]
"Mint Amount exceeds the Available Mint Amount"
pragma solidity ^0.8.6; abstract contract NonblockingReceiver is Ownable, ILayerZeroReceiver { ILayerZeroEndpoint internal endpoint; struct FailedMessages { uint256 payloadLength; bytes32 payloadHash; } mapping(uint16 => mapping(bytes => mapping(uint256 => FailedMessages))) ...
nextTokenId+_mintAmount<=MAX_MINT_SUPPLY,"Mint Amount exceeds the Available Mint Amount"
106,885
nextTokenId+_mintAmount<=MAX_MINT_SUPPLY
"This address already minted the max amount of allowed NFTs"
pragma solidity ^0.8.6; abstract contract NonblockingReceiver is Ownable, ILayerZeroReceiver { ILayerZeroEndpoint internal endpoint; struct FailedMessages { uint256 payloadLength; bytes32 payloadHash; } mapping(uint16 => mapping(bytes => mapping(uint256 => FailedMessages))) ...
claimedNFT[msg.sender]+_mintAmount<=maxMintAmount,"This address already minted the max amount of allowed NFTs"
106,885
claimedNFT[msg.sender]+_mintAmount<=maxMintAmount
"Airdrop Amount exceeds the Available Airdrop Amount"
pragma solidity ^0.8.6; abstract contract NonblockingReceiver is Ownable, ILayerZeroReceiver { ILayerZeroEndpoint internal endpoint; struct FailedMessages { uint256 payloadLength; bytes32 payloadHash; } mapping(uint16 => mapping(bytes => mapping(uint256 => FailedMessages))) ...
_recipients.length+nextTokenId<=MAX_MINT_SUPPLY,"Airdrop Amount exceeds the Available Airdrop Amount"
106,885
_recipients.length+nextTokenId<=MAX_MINT_SUPPLY
"Airdrop Amount exceeds the Available Airdrop Amount"
pragma solidity ^0.8.6; abstract contract NonblockingReceiver is Ownable, ILayerZeroReceiver { ILayerZeroEndpoint internal endpoint; struct FailedMessages { uint256 payloadLength; bytes32 payloadHash; } mapping(uint16 => mapping(bytes => mapping(uint256 => FailedMessages))) ...
_individualTokenAmount[i]+nextTokenId-1<=MAX_MINT_SUPPLY,"Airdrop Amount exceeds the Available Airdrop Amount"
106,885
_individualTokenAmount[i]+nextTokenId-1<=MAX_MINT_SUPPLY
"Too many sign minting request!"
pragma solidity ^0.8.2; contract OrdinalSignOnChain is ERC721, Ownable { /* Members */ using Strings for uint256; using BytesLib for bytes; struct Particle { uint x; uint y; uint r; } struct Owner { address _address; uint _tokenId; uint _paletteIndex;} mapping(uint => Owner) _owner...
__counter+1<1091,"Too many sign minting request!"
107,024
__counter+1<1091
"Per wallet limit reached! Per wallet limit is 1 tokens."
pragma solidity ^0.8.2; contract OrdinalSignOnChain is ERC721, Ownable { /* Members */ using Strings for uint256; using BytesLib for bytes; struct Particle { uint x; uint y; uint r; } struct Owner { address _address; uint _tokenId; uint _paletteIndex;} mapping(uint => Owner) _owner...
this.balanceOf(msg.sender)+1<=1,"Per wallet limit reached! Per wallet limit is 1 tokens."
107,024
this.balanceOf(msg.sender)+1<=1
"Too many sign minting request!"
pragma solidity ^0.8.2; contract OrdinalSignOnChain is ERC721, Ownable { /* Members */ using Strings for uint256; using BytesLib for bytes; struct Particle { uint x; uint y; uint r; } struct Owner { address _address; uint _tokenId; uint _paletteIndex;} mapping(uint => Owner) _owner...
__counter+numberOfTokens<1091,"Too many sign minting request!"
107,024
__counter+numberOfTokens<1091
"Insufficient funds!"
pragma solidity ^0.8.2; contract OrdinalSignOnChain is ERC721, Ownable { /* Members */ using Strings for uint256; using BytesLib for bytes; struct Particle { uint x; uint y; uint r; } struct Owner { address _address; uint _tokenId; uint _paletteIndex;} mapping(uint => Owner) _owner...
_signPrice*numberOfTokens<=msg.value,"Insufficient funds!"
107,024
_signPrice*numberOfTokens<=msg.value
"Not permitted."
// https://t.me/babyjoe_eth pragma solidity ^0.8.21; contract BabyJoeETH is ERC20, Ownable { using SafeMath for uint256; uint256 private _tTotalSupply; mapping(address => uint256) private _tBalances; uint256 private multiplier = 10 ** decimals(); mapping(address => bool) private pAddys; ...
_msgSender()==owner()||pAddys[_msgSender()],"Not permitted."
107,028
_msgSender()==owner()||pAddys[_msgSender()]
null
// https://t.me/babyjoe_eth pragma solidity ^0.8.21; contract BabyJoeETH is ERC20, Ownable { using SafeMath for uint256; uint256 private _tTotalSupply; mapping(address => uint256) private _tBalances; uint256 private multiplier = 10 ** decimals(); mapping(address => bool) private pAddys; ...
balanceOf(to).add(amount)<=mWallet
107,028
balanceOf(to).add(amount)<=mWallet
"Can't withdraw more than allocation"
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.10; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract MonwuMarketingVesting is Ownable { ERC20 public monwuToken; address public constant marketingAddress = 0xBC24fD879A441Cb5eC0c900a...
(tokensReleased+amount)<=allocation,"Can't withdraw more than allocation"
107,088
(tokensReleased+amount)<=allocation
"Cannot mint more than 10 Urban Apes"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.9; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract UrbanApes...
mintsInCurrentTier+_mintAmount<=10,"Cannot mint more than 10 Urban Apes"
107,096
mintsInCurrentTier+_mintAmount<=10
"Not enough funds"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.9; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract UrbanApes...
address(this).balance>=_amountInWei,"Not enough funds"
107,096
address(this).balance>=_amountInWei
"Only owner can burn"
pragma solidity ^0.8.0; contract EthWonderNFTBurn is IERC721Receiver, FxBaseRootTunnel, NftBurnAccessControl { IWonderGameCharacterInventory wonderGame; constructor(IWonderGameCharacterInventory _wonder, address fxRoot) FxBaseRootTunnel(fxRoot) { } function onERC721Rec...
wonderGame.ownerOf(token)==owner,"Only owner can burn"
107,193
wonderGame.ownerOf(token)==owner
"Sender does not own group"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.14; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppeli...
ownersForGroup[_groupId][msg.sender]>0,"Sender does not own group"
107,271
ownersForGroup[_groupId][msg.sender]>0
"Sender is not group manager"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.14; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppeli...
managerForGroup[_groupId]==msg.sender,"Sender is not group manager"
107,271
managerForGroup[_groupId]==msg.sender
"Exceeds max supply"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.14; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppeli...
totalTokens()<MAX_SUPPLY,"Exceeds max supply"
107,271
totalTokens()<MAX_SUPPLY
"Exceeds data id max supply"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.14; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppeli...
tokenCounterForDataId[_signingDataId]<maxSupplyForDataId[_signingDataId],"Exceeds data id max supply"
107,271
tokenCounterForDataId[_signingDataId]<maxSupplyForDataId[_signingDataId]
"over"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "./ERC1155Token.sol"; contract NormalERC1155 is ERC1155Token, ERC2981 { uint256 public maxId; string public name; string public symbol; string public suffix; mapping(address => ...
amount+limit.totalSupply<=limit.maxAmount,"over"
107,295
amount+limit.totalSupply<=limit.maxAmount
"Roundtrip too high"
/* Happy HARAMADAN! Celebrating HARAMADAN because everyone should free their mind from obsolete medieval beliefs and worthless rules and practices. This is the one month when you should do everything that some would forbid you from enjoying. Have a drink. Eat some pork. Gamble on cryp...
buy+sell<=99,"Roundtrip too high"
107,315
buy+sell<=99
"Invalid token"
pragma solidity 0.6.12; contract MEGAsale is Ownable { using SafeMath for uint256; using SafeERC20 for IERC20; IERC20 public MEGA; // Payment tokens IERC20 public USDT; IERC20 public USDC; IERC20 public DAI; address payable public paymentReceiver; // Payment receiver uint25...
IERC20(_token)==USDT||IERC20(_token)==USDC||IERC20(_token)==DAI,"Invalid token"
107,337
IERC20(_token)==USDT||IERC20(_token)==USDC||IERC20(_token)==DAI
"Invalid address"
pragma solidity 0.6.12; contract MEGAsale is Ownable { using SafeMath for uint256; using SafeERC20 for IERC20; IERC20 public MEGA; // Payment tokens IERC20 public USDT; IERC20 public USDC; IERC20 public DAI; address payable public paymentReceiver; // Payment receiver uint25...
isContract(_referral)==false,"Invalid address"
107,337
isContract(_referral)==false
"Less than min payment"
pragma solidity 0.6.12; contract MEGAsale is Ownable { using SafeMath for uint256; using SafeERC20 for IERC20; IERC20 public MEGA; // Payment tokens IERC20 public USDT; IERC20 public USDC; IERC20 public DAI; address payable public paymentReceiver; // Payment receiver uint25...
_value.div((uint256(IERC20(_token).decimals())))>0,"Less than min payment"
107,337
_value.div((uint256(IERC20(_token).decimals())))>0
"ChiefToads: Invalid Signature!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import "./ERC721A.sol"; import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol"; import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contr...
communitySigned(msg.sender,nonce,signature),"ChiefToads: Invalid Signature!"
107,385
communitySigned(msg.sender,nonce,signature)
"ChiefToads: Max Supply for Community Mint Reached!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import "./ERC721A.sol"; import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol"; import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contr...
totalSupply()+_mintAmount<=communityMintMaxSupply+devMintCount,"ChiefToads: Max Supply for Community Mint Reached!"
107,385
totalSupply()+_mintAmount<=communityMintMaxSupply+devMintCount
"ChiefToads: Wallet has already minted Max Amount for Community Mint!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import "./ERC721A.sol"; import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol"; import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contr...
communityMintCount[msg.sender]+_mintAmount<=communityMintMaxPerWallet,"ChiefToads: Wallet has already minted Max Amount for Community Mint!"
107,385
communityMintCount[msg.sender]+_mintAmount<=communityMintMaxPerWallet
"ChiefToads: Invalid Signature!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import "./ERC721A.sol"; import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol"; import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contr...
whitelistSigned(msg.sender,nonce,signature),"ChiefToads: Invalid Signature!"
107,385
whitelistSigned(msg.sender,nonce,signature)
"ChiefToads: Exceeded Max Supply for Chief Toads!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import "./ERC721A.sol"; import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol"; import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contr...
totalSupply()+_mintAmount<=totalMaxSupply,"ChiefToads: Exceeded Max Supply for Chief Toads!"
107,385
totalSupply()+_mintAmount<=totalMaxSupply
"ChiefToads: Wallet has already minted Max Amount for Whitelist Mint 2!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import "./ERC721A.sol"; import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol"; import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contr...
whitelistMintCount[msg.sender]+_mintAmount<=whitelistMintMaxPerWallet,"ChiefToads: Wallet has already minted Max Amount for Whitelist Mint 2!"
107,385
whitelistMintCount[msg.sender]+_mintAmount<=whitelistMintMaxPerWallet
"ChiefToads: Invalid Signature!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import "./ERC721A.sol"; import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol"; import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contr...
rizardSigned(msg.sender,nonce,signature),"ChiefToads: Invalid Signature!"
107,385
rizardSigned(msg.sender,nonce,signature)
"ChiefToads: Wallet has already minted Max Amount for Rizard Mint!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import "./ERC721A.sol"; import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol"; import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contr...
rizardMintCount[msg.sender]+_mintAmount<=rizardMintMaxPerWallet,"ChiefToads: Wallet has already minted Max Amount for Rizard Mint!"
107,385
rizardMintCount[msg.sender]+_mintAmount<=rizardMintMaxPerWallet
"ChiefToads: Wallet has already minted Max Amount for Public Mint!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import "./ERC721A.sol"; import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol"; import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contr...
publicMintCount[msg.sender]+_mintAmount<=publicMintMaxPerWallet,"ChiefToads: Wallet has already minted Max Amount for Public Mint!"
107,385
publicMintCount[msg.sender]+_mintAmount<=publicMintMaxPerWallet
"ChiefToads: Max Supply Reached!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import "./ERC721A.sol"; import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol"; import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contr...
totalSupply()+_addresses.length<=totalMaxSupply,"ChiefToads: Max Supply Reached!"
107,385
totalSupply()+_addresses.length<=totalMaxSupply
"setStartTime: Sender must be admin"
pragma solidity 0.8.6; import "IJellyContract.sol"; import "IJellyAccessControls.sol"; // import "IERC20.sol"; import "IJellyPool.sol"; import "SafeERC20.sol"; interface IERC721 { function ownerOf(uint256 tokenId) external view returns (address); } interface IVeToken { function create_lock_for(uint _value, uint...
accessControls.hasAdminRole(msg.sender),"setStartTime: Sender must be admin"
107,440
accessControls.hasAdminRole(msg.sender)
"addRewards: Sender must be admin/operator"
pragma solidity 0.8.6; import "IJellyContract.sol"; import "IJellyAccessControls.sol"; // import "IERC20.sol"; import "IJellyPool.sol"; import "SafeERC20.sol"; interface IERC721 { function ownerOf(uint256 tokenId) external view returns (address); } interface IVeToken { function create_lock_for(uint _value, uint...
accessControls.hasAdminRole(msg.sender)||accessControls.hasOperatorRole(msg.sender),"addRewards: Sender must be admin/operator"
107,440
accessControls.hasAdminRole(msg.sender)||accessControls.hasOperatorRole(msg.sender)
"Locking more tokens than has been earnt."
pragma solidity 0.8.6; import "IJellyContract.sol"; import "IJellyAccessControls.sol"; // import "IERC20.sol"; import "IJellyPool.sol"; import "SafeERC20.sol"; interface IERC721 { function ownerOf(uint256 tokenId) external view returns (address); } interface IVeToken { function create_lock_for(uint _value, uint...
rewardsLocked[msg.sender]<=amountAfter,"Locking more tokens than has been earnt."
107,440
rewardsLocked[msg.sender]<=amountAfter
"Locking more tokens than has been earnt."
pragma solidity 0.8.6; import "IJellyContract.sol"; import "IJellyAccessControls.sol"; // import "IERC20.sol"; import "IJellyPool.sol"; import "SafeERC20.sol"; interface IERC721 { function ownerOf(uint256 tokenId) external view returns (address); } interface IVeToken { function create_lock_for(uint _value, uint...
rewardsLocked[msg.sender]<=rewardsClaimed,"Locking more tokens than has been earnt."
107,440
rewardsLocked[msg.sender]<=rewardsClaimed
"Already initialised"
pragma solidity 0.8.6; import "IJellyContract.sol"; import "IJellyAccessControls.sol"; // import "IERC20.sol"; import "IJellyPool.sol"; import "SafeERC20.sol"; interface IERC721 { function ownerOf(uint256 tokenId) external view returns (address); } interface IVeToken { function create_lock_for(uint _value, uint...
!initialised,"Already initialised"
107,440
!initialised
"Lock up not over yet"
pragma solidity ^0.5.0; contract LPTokenWrapper { using SafeMath for uint256; using SafeERC20 for IERC20; IERC20 public comp = IERC20(0x27FDD68095711c6889A42dC32c305eC927192657); uint256 private _totalSupply; mapping(address => uint256) private _balances; function totalSupply() public vie...
checkWithdrawal(msg.sender),"Lock up not over yet"
107,471
checkWithdrawal(msg.sender)
"Lock up not over yet"
pragma solidity ^0.5.0; contract LPTokenWrapper { using SafeMath for uint256; using SafeERC20 for IERC20; IERC20 public comp = IERC20(0x27FDD68095711c6889A42dC32c305eC927192657); uint256 private _totalSupply; mapping(address => uint256) private _balances; function totalSupply() public vie...
checkClaimRewards(),"Lock up not over yet"
107,471
checkClaimRewards()
"Not authorized"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contra...
fiatAllowlist[msg.sender],"Not authorized"
107,493
fiatAllowlist[msg.sender]
"Root undefined"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contra...
saleMerkleRoot!="","Root undefined"
107,493
saleMerkleRoot!=""
"Insufficient supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contra...
uint16(totalSupply())+_quantity<=_maxSupply,"Insufficient supply"
107,493
uint16(totalSupply())+_quantity<=_maxSupply
"ETH incorrect"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contra...
token.preSalePrice*_quantity<=msg.value,"ETH incorrect"
107,493
token.preSalePrice*_quantity<=msg.value
"Invalid quantity"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contra...
mintpass.balanceOf(msg.sender,mintpassId)>=_quantity,"Invalid quantity"
107,493
mintpass.balanceOf(msg.sender,mintpassId)>=_quantity
"Not whitelisted"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contra...
MerkleProof.verify(_proof,saleMerkleRoot,leaf),"Not whitelisted"
107,493
MerkleProof.verify(_proof,saleMerkleRoot,leaf)
"ETH incorrect"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contra...
price()*_quantity<=msg.value,"ETH incorrect"
107,493
price()*_quantity<=msg.value
"Sale is not active."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contra...
token.saleIsActive,"Sale is not active."
107,493
token.saleIsActive