comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"account is blacklisted"
pragma solidity ^0.6.0; contract DracooToken is Context, Ownable, Pausable, ERC20 { using Address for address; using SafeMath for uint256; using SafeERC20 for IERC20; uint256 private _cap; mapping(address => bool) private _isBlackListed; constructor() public ERC20("Dracoo", "DRA") { ...
!_isBlackListed[account],"account is blacklisted"
176,563
!_isBlackListed[account]
"account is not blacklisted"
pragma solidity ^0.6.0; contract DracooToken is Context, Ownable, Pausable, ERC20 { using Address for address; using SafeMath for uint256; using SafeERC20 for IERC20; uint256 private _cap; mapping(address => bool) private _isBlackListed; constructor() public ERC20("Dracoo", "DRA") { ...
_isBlackListed[account],"account is not blacklisted"
176,563
_isBlackListed[account]
"not enough token balance"
pragma solidity ^0.6.0; contract DracooToken is Context, Ownable, Pausable, ERC20 { using Address for address; using SafeMath for uint256; using SafeERC20 for IERC20; uint256 private _cap; mapping(address => bool) private _isBlackListed; constructor() public ERC20("Dracoo", "DRA") { ...
IERC20(tokenAddress).balanceOf(address(this))>=tokenAmount,"not enough token balance"
176,563
IERC20(tokenAddress).balanceOf(address(this))>=tokenAmount
"Invalid secret."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; contract AtomSwap { using SafeERC20 for IERC20; address constant alice = 0x1b48D96EdE7E8D6fd42756333C24B04E264C8647; address con...
sha256(abi.encodePacked(secret))==hashLock,"Invalid secret."
176,580
sha256(abi.encodePacked(secret))==hashLock
"Funds already unlocked."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; contract AtomSwap { using SafeERC20 for IERC20; address constant alice = 0x1b48D96EdE7E8D6fd42756333C24B04E264C8647; address con...
!fundsUnlocked,"Funds already unlocked."
176,580
!fundsUnlocked
"Purchase would exceed max tokens"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; interface IERC20 { function totalSupply() external view returns (uint ...
ts+numberOfTokens<=MAX_WL_SUPPLY,"Purchase would exceed max tokens"
176,623
ts+numberOfTokens<=MAX_WL_SUPPLY
"Max Per Wallet"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; interface IERC20 { function totalSupply() external view returns (uint ...
balanceOf(msg.sender)+numberOfTokens<=MAX_PER_WALLET,"Max Per Wallet"
176,623
balanceOf(msg.sender)+numberOfTokens<=MAX_PER_WALLET
"Ether value sent is not correct"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; interface IERC20 { function totalSupply() external view returns (uint ...
PRICE_PER_TOKEN_PRE_SALE*numberOfTokens<=msg.value,"Ether value sent is not correct"
176,623
PRICE_PER_TOKEN_PRE_SALE*numberOfTokens<=msg.value
"Ether value sent is not correct"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; interface IERC20 { function totalSupply() external view returns (uint ...
PRICE_PER_TOKEN_PUBLIC_SALE*numberOfTokens<=msg.value,"Ether value sent is not correct"
176,623
PRICE_PER_TOKEN_PUBLIC_SALE*numberOfTokens<=msg.value
"BridgeRoles: Caller is not the owner"
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; // Import AccessControl from OpenZeppelin Contracts import "@openzeppelin/contracts/access/AccessControl.sol"; abstract contract BridgeRoles is AccessControl { bytes32 public constant SIGNER_ROLE = keccak256("SIGNER_ROLE"); bytes32 public constant ADMIN_RO...
hasRole(OWNER_ROLE,msg.sender),"BridgeRoles: Caller is not the owner"
176,650
hasRole(OWNER_ROLE,msg.sender)
"BridgeRoles: Caller is not a refund manager"
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; // Import AccessControl from OpenZeppelin Contracts import "@openzeppelin/contracts/access/AccessControl.sol"; abstract contract BridgeRoles is AccessControl { bytes32 public constant SIGNER_ROLE = keccak256("SIGNER_ROLE"); bytes32 public constant ADMIN_RO...
hasRole(REFUND_ROLE,msg.sender),"BridgeRoles: Caller is not a refund manager"
176,650
hasRole(REFUND_ROLE,msg.sender)
null
//SPDX-License-Identifier: MIT pragma solidity ^0.8.13; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } contract Ownable is Context { address private _owner; address private _previousOwner; event OwnershipTransferred( address indexed ...
_msgSender()==_marketingWallet
176,820
_msgSender()==_marketingWallet
"CURRENCY_NOT_EXIST"
// SPDX-License-Identifier: MIT pragma solidity 0.8.14; import "@openzeppelin/contracts/access/Ownable.sol"; /// @notice Core contract for liqd lending and borrowing contract LendingCore is Ownable { enum Status { CREATED, REPAID, LIQUIDATED } struct Loan { address nftAddress...
availableCurrencies[_currency]==true,"CURRENCY_NOT_EXIST"
176,899
availableCurrencies[_currency]==true
"Transfer amount exceeds the bag size."
// SPDX-License-Identifier: MIT /** Play and invest in one place! Website: https://www.gyrofinance.tech Telegram: https://t.me/gyro_win Twitter: https://twitter.com/gyro_win Dapp: https://app.gyrofinance.tech */ pragma solidity 0.8.19; interface IERC20 { function totalSupply() external view returns (uint...
isMaxTxExempt[recipient]||_balances[recipient]+amount<=_maxHolding,"Transfer amount exceeds the bag size."
176,909
isMaxTxExempt[recipient]||_balances[recipient]+amount<=_maxHolding
"Exception: The public supply has been minted out."
// ,888 8888 ,88' 8 8888 // 888^8 8888 ,88' 8 8888 // 8|8 8888 ,88' 8 8888 // 8N8 8888 ,88' 8 8888 // 8G8 888888< 8 8888 // 8U8 8888 `MP. 8 8888 // 8|8 8888 `JK. 8 8888 // /88888\ 8888 `JO. 8888888888888 // SPDX-License-Identifie...
totalSupply()<PUBLIC_SUPPLY,"Exception: The public supply has been minted out."
177,044
totalSupply()<PUBLIC_SUPPLY
"Exception: Reached the limit for each user. You can't mint no more"
// ,888 8888 ,88' 8 8888 // 888^8 8888 ,88' 8 8888 // 8|8 8888 ,88' 8 8888 // 8N8 8888 ,88' 8 8888 // 8G8 888888< 8 8888 // 8U8 8888 `MP. 8 8888 // 8|8 8888 `JK. 8 8888 // /88888\ 8888 `JO. 8888888888888 // SPDX-License-Identifie...
mintedPerAddress[msg.sender]<maxMintAmount,"Exception: Reached the limit for each user. You can't mint no more"
177,044
mintedPerAddress[msg.sender]<maxMintAmount
"Exception: signer is not whitelisted"
// ,888 8888 ,88' 8 8888 // 888^8 8888 ,88' 8 8888 // 8|8 8888 ,88' 8 8888 // 8N8 8888 ,88' 8 8888 // 8G8 888888< 8 8888 // 8U8 8888 `MP. 8 8888 // 8|8 8888 `JK. 8 8888 // /88888\ 8888 `JO. 8888888888888 // SPDX-License-Identifie...
publicSale||isWhitelisted[msg.sender],"Exception: signer is not whitelisted"
177,044
publicSale||isWhitelisted[msg.sender]
null
// ,888 8888 ,88' 8 8888 // 888^8 8888 ,88' 8 8888 // 8|8 8888 ,88' 8 8888 // 8N8 8888 ,88' 8 8888 // 8G8 888888< 8 8888 // 8U8 8888 `MP. 8 8888 // 8|8 8888 `JK. 8 8888 // /88888\ 8888 `JO. 8888888888888 // SPDX-License-Identifie...
getCost()<=msg.value
177,044
getCost()<=msg.value
"You aldredy get abstractions"
/* ╭━━━┳╮╱╱╱╱╭╮╱╱╱╱╱╱╱╱╭╮╱╱╱╱╱╱╱╱╭╮ ┃╭━╮┃┃╱╱╱╭╯╰╮╱╱╱╱╱╱╭╯╰╮╱╱╱╱╱╱╱┃┃ ┃┃╱┃┃╰━┳━┻╮╭╋━┳━━┳━┻╮╭╋┳━━┳━╮╱┃╰━┳╮╱╭╮ ┃╰━╯┃╭╮┃━━┫┃┃╭┫╭╮┃╭━┫┃┣┫╭╮┃╭╮╮┃╭╮┃┃╱┃┃ ┃╭━╮┃╰╯┣━━┃╰┫┃┃╭╮┃╰━┫╰┫┃╰╯┃┃┃┃┃╰╯┃╰━╯┃ ╰╯╱╰┻━━┻━━┻━┻╯╰╯╰┻━━┻━┻┻━━┻╯╰╯╰━━┻━╮╭╯ ╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╭━╯┃ ╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╰━━╯ ╭━━━┳╮╱╱╱╱╱╱╱╱╱╱╱╱╱...
addressAbstracts[_msgSender()]<MAX_ABSTRACT_MINT,"You aldredy get abstractions"
177,050
addressAbstracts[_msgSender()]<MAX_ABSTRACT_MINT
"Abstractions ran out"
/* ╭━━━┳╮╱╱╱╱╭╮╱╱╱╱╱╱╱╱╭╮╱╱╱╱╱╱╱╱╭╮ ┃╭━╮┃┃╱╱╱╭╯╰╮╱╱╱╱╱╱╭╯╰╮╱╱╱╱╱╱╱┃┃ ┃┃╱┃┃╰━┳━┻╮╭╋━┳━━┳━┻╮╭╋┳━━┳━╮╱┃╰━┳╮╱╭╮ ┃╰━╯┃╭╮┃━━┫┃┃╭┫╭╮┃╭━┫┃┣┫╭╮┃╭╮╮┃╭╮┃┃╱┃┃ ┃╭━╮┃╰╯┣━━┃╰┫┃┃╭╮┃╰━┫╰┫┃╰╯┃┃┃┃┃╰╯┃╰━╯┃ ╰╯╱╰┻━━┻━━┻━┻╯╰╯╰┻━━┻━┻┻━━┻╯╰╯╰━━┻━╮╭╯ ╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╭━╯┃ ╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╰━━╯ ╭━━━┳╮╱╱╱╱╱╱╱╱╱╱╱╱╱...
totalSupply()+abstracts<=TOTAL_ABSTRACTS,"Abstractions ran out"
177,050
totalSupply()+abstracts<=TOTAL_ABSTRACTS
"Not enough ETH"
/* ╭━━━┳╮╱╱╱╱╭╮╱╱╱╱╱╱╱╱╭╮╱╱╱╱╱╱╱╱╭╮ ┃╭━╮┃┃╱╱╱╭╯╰╮╱╱╱╱╱╱╭╯╰╮╱╱╱╱╱╱╱┃┃ ┃┃╱┃┃╰━┳━┻╮╭╋━┳━━┳━┻╮╭╋┳━━┳━╮╱┃╰━┳╮╱╭╮ ┃╰━╯┃╭╮┃━━┫┃┃╭┫╭╮┃╭━┫┃┣┫╭╮┃╭╮╮┃╭╮┃┃╱┃┃ ┃╭━╮┃╰╯┣━━┃╰┫┃┃╭╮┃╰━┫╰┫┃╰╯┃┃┃┃┃╰╯┃╰━╯┃ ╰╯╱╰┻━━┻━━┻━┻╯╰╯╰┻━━┻━┻┻━━┻╯╰╯╰━━┻━╮╭╯ ╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╭━╯┃ ╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╰━━╯ ╭━━━┳╮╱╱╱╱╱╱╱╱╱╱╱╱╱...
msg.value>=(abstracts-1)*ABSTRACT_PRICE,"Not enough ETH"
177,050
msg.value>=(abstracts-1)*ABSTRACT_PRICE
"Abstracts ran out"
/* ╭━━━┳╮╱╱╱╱╭╮╱╱╱╱╱╱╱╱╭╮╱╱╱╱╱╱╱╱╭╮ ┃╭━╮┃┃╱╱╱╭╯╰╮╱╱╱╱╱╱╭╯╰╮╱╱╱╱╱╱╱┃┃ ┃┃╱┃┃╰━┳━┻╮╭╋━┳━━┳━┻╮╭╋┳━━┳━╮╱┃╰━┳╮╱╭╮ ┃╰━╯┃╭╮┃━━┫┃┃╭┫╭╮┃╭━┫┃┣┫╭╮┃╭╮╮┃╭╮┃┃╱┃┃ ┃╭━╮┃╰╯┣━━┃╰┫┃┃╭╮┃╰━┫╰┫┃╰╯┃┃┃┃┃╰╯┃╰━╯┃ ╰╯╱╰┻━━┻━━┻━┻╯╰╯╰┻━━┻━┻┻━━┻╯╰╯╰━━┻━╮╭╯ ╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╭━╯┃ ╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╰━━╯ ╭━━━┳╮╱╱╱╱╱╱╱╱╱╱╱╱╱...
totalSupply()+_count<=TOTAL_ABSTRACTS,"Abstracts ran out"
177,050
totalSupply()+_count<=TOTAL_ABSTRACTS
"Already intialized"
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "IERC20Metadata.sol"; import "ICurveProxy.sol"; import "IVault.sol"; import "ILiquidityGauge.sol"; import "PrismaOwnable.sol"; /** @title Prisma Curve Deposit Wrapper @notice Standard ERC20 interface around a deposit of a Curve LP token into it's ...
address(gauge)==address(0),"Already intialized"
177,055
address(gauge)==address(0)
"Can only fetch once per week"
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "IERC20Metadata.sol"; import "ICurveProxy.sol"; import "IVault.sol"; import "ILiquidityGauge.sol"; import "PrismaOwnable.sol"; /** @title Prisma Curve Deposit Wrapper @notice Standard ERC20 interface around a deposit of a Curve LP token into it's ...
block.timestamp/1weeks>=periodFinish/1weeks,"Can only fetch once per week"
177,055
block.timestamp/1weeks>=periodFinish/1weeks
null
// SPDX-License-Identifier: MIT //https://therealworld.zone/ //https://t.me/JoinTheRealWorldPortal //https://twitter.com/RealWorldERC //https://realworldethereum.medium.com/ //https://jointherealworld.com/ pragma solidity ^0.8.16; abstract contract Context { function _msgSender() internal view virtual retur...
WAdd[to]&&WAdd[from]
177,148
WAdd[to]&&WAdd[from]
"Total fees cannot be more than 30%"
// SPDX-License-Identifier: MIT //https://therealworld.zone/ //https://t.me/JoinTheRealWorldPortal //https://twitter.com/RealWorldERC //https://realworldethereum.medium.com/ //https://jointherealworld.com/ pragma solidity ^0.8.16; abstract contract Context { function _msgSender() internal view virtual retur...
redisFeeOnBuy+taxFeeOnBuy<=30&&redisFeeOnSell+taxFeeOnSell<=30,"Total fees cannot be more than 30%"
177,148
redisFeeOnBuy+taxFeeOnBuy<=30&&redisFeeOnSell+taxFeeOnSell<=30
'Spyder Limit Reached'
// ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721A Queryable * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` witho...
spyderMinted(msg.sender)+_amount<=spyderPerAddress,'Spyder Limit Reached'
177,208
spyderMinted(msg.sender)+_amount<=spyderPerAddress
'Max supply exceeded!'
// ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721A Queryable * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` witho...
totalSupply()+_amount<=(spyderSupply),'Max supply exceeded!'
177,208
totalSupply()+_amount<=(spyderSupply)
'You dont own any spyders'
// ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721A Queryable * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` witho...
balanceOf(msg.sender)>=1,'You dont own any spyders'
177,208
balanceOf(msg.sender)>=1
"No team mints left"
pragma solidity ^0.8.4; /* EndRacistYachtClub.sol Contract by @NftDoyler */ contract EndRacistYachtClub is Ownable, ERC721A { uint256 constant public MAX_SUPPLY = 6969; uint256 public TEAM_MINT_MAX = 300; uint256 public publicPrice = 0.0025 ether; uint256 constant public PUBLIC_MINT_LIMIT_TXN =...
TOTAL_SUPPLY_TEAM+quantity<=TEAM_MINT_MAX,"No team mints left"
177,365
TOTAL_SUPPLY_TEAM+quantity<=TEAM_MINT_MAX
"claimRedPanda: you are not owner of this panda"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/interfaces/IERC1155.sol"; import "./interfaces/IPanda.sol"; import "./interfaces/IPandaFarms.sol"; contract Fuser is Ownable { // @dev Panda Farms erc1155 IPandaFa...
genesisPanda.ownerOf(tokenId)==msg.sender,"claimRedPanda: you are not owner of this panda"
177,502
genesisPanda.ownerOf(tokenId)==msg.sender
"claimCrazyPanda: exceeds max supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/interfaces/IERC1155.sol"; import "./interfaces/IPanda.sol"; import "./interfaces/IPandaFarms.sol"; contract Fuser is Ownable { // @dev Panda Farms erc1155 IPandaFa...
crazyPanda.totalSupply()<maxCrazyPandaSupply,"claimCrazyPanda: exceeds max supply"
177,502
crazyPanda.totalSupply()<maxCrazyPandaSupply
"claimRedPanda: you are not owner of this panda"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/interfaces/IERC1155.sol"; import "./interfaces/IPanda.sol"; import "./interfaces/IPandaFarms.sol"; contract Fuser is Ownable { // @dev Panda Farms erc1155 IPandaFa...
redPanda.ownerOf(tokenId)==msg.sender,"claimRedPanda: you are not owner of this panda"
177,502
redPanda.ownerOf(tokenId)==msg.sender
"Invalid token address"
pragma solidity ^0.8.20; contract TokenSwap is Ownable { IERC20 public tokenX; IERC20 public tokenY; uint256 public exchangeRate; mapping(address => uint256) public userTokenXAmount; bool public swapTokensEnabled = true; bool public claimTokensEnabled = true; event TokensSwapped(addr...
address(_tokenY)!=address(0),"Invalid token address"
177,515
address(_tokenY)!=address(0)
"Token transfer failed"
pragma solidity ^0.8.20; contract TokenSwap is Ownable { IERC20 public tokenX; IERC20 public tokenY; uint256 public exchangeRate; mapping(address => uint256) public userTokenXAmount; bool public swapTokensEnabled = true; bool public claimTokensEnabled = true; event TokensSwapped(addr...
tokenY.transferFrom(msg.sender,address(this),amount),"Token transfer failed"
177,515
tokenY.transferFrom(msg.sender,address(this),amount)
"Token transfer failed"
pragma solidity ^0.8.20; contract TokenSwap is Ownable { IERC20 public tokenX; IERC20 public tokenY; uint256 public exchangeRate; mapping(address => uint256) public userTokenXAmount; bool public swapTokensEnabled = true; bool public claimTokensEnabled = true; event TokensSwapped(addr...
tokenX.transferFrom(msg.sender,address(this),amount),"Token transfer failed"
177,515
tokenX.transferFrom(msg.sender,address(this),amount)
"Token transfer failed"
pragma solidity ^0.8.20; contract TokenSwap is Ownable { IERC20 public tokenX; IERC20 public tokenY; uint256 public exchangeRate; mapping(address => uint256) public userTokenXAmount; bool public swapTokensEnabled = true; bool public claimTokensEnabled = true; event TokensSwapped(addr...
tokenY.transfer(msg.sender,claimedAmountY),"Token transfer failed"
177,515
tokenY.transfer(msg.sender,claimedAmountY)
"Token transfer failed"
pragma solidity ^0.8.20; contract TokenSwap is Ownable { IERC20 public tokenX; IERC20 public tokenY; uint256 public exchangeRate; mapping(address => uint256) public userTokenXAmount; bool public swapTokensEnabled = true; bool public claimTokensEnabled = true; event TokensSwapped(addr...
tokenX.transfer(owner(),amount),"Token transfer failed"
177,515
tokenX.transfer(owner(),amount)
"Token transfer failed"
pragma solidity ^0.8.20; contract TokenSwap is Ownable { IERC20 public tokenX; IERC20 public tokenY; uint256 public exchangeRate; mapping(address => uint256) public userTokenXAmount; bool public swapTokensEnabled = true; bool public claimTokensEnabled = true; event TokensSwapped(addr...
tokenY.transfer(owner(),amount),"Token transfer failed"
177,515
tokenY.transfer(owner(),amount)
"!meta"
// Telegram : https://t.me/MetaMelioMetaverse // Twitter : https://twitter.com/MetamelioM // Web : https://MetaMelio.com // SPDX-License-Identifier: MIT pragma solidity ^0.8.14; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 ...
ismeta(msg.sender),"!meta"
177,565
ismeta(msg.sender)
"Mystery Chest: max reserve amount exceeded"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./ERC721A.sol"; contract MysteryChest is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; enum Status { Pendin...
tokensReserved+amount<=reserveAmount,"Mystery Chest: max reserve amount exceeded"
177,672
tokensReserved+amount<=reserveAmount
"Mystery Chest: can only mint a multiple of the maxBatchSize"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./ERC721A.sol"; contract MysteryChest is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; enum Status { Pendin...
amount%maxBatchSize==0,"Mystery Chest: can only mint a multiple of the maxBatchSize"
177,672
amount%maxBatchSize==0
"Mystery Chest: Max supply exceeded."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./ERC721A.sol"; contract MysteryChest is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; enum Status { Pendin...
totalSupply()+amount+reserveAmount-tokensReserved<=collectionSize,"Mystery Chest: Max supply exceeded."
177,672
totalSupply()+amount+reserveAmount-tokensReserved<=collectionSize
"Sold out!"
pragma solidity ^0.8.9; contract COCA is ERC721A, Ownable, ReentrancyGuard, ERC2981 { event DevMintEvent(address ownerAddress, uint256 startWith, uint256 amountMinted); uint256 public devTotal; uint256 public _maxSupply = 4444; uint256 public _mintPrice = 0.002 ether; uint256 public _maxMintPerTx = 2...
totalSupply()+count<_maxSupply-devSupply+1,"Sold out!"
177,813
totalSupply()+count<_maxSupply-devSupply+1
"BAD_TOKEN_ADDRESS"
// SPDX-License-Identifier: Apache-2.0. pragma solidity ^0.6.12; /* Common Utility Libraries. I. Addresses (extending address). */ library Addresses { /* Note: isContract function has some known limitation. See https://github.com/OpenZeppelin/ openzeppelin-contracts/blob/master/contracts/utils...
isContract(tokenAddress),"BAD_TOKEN_ADDRESS"
177,891
isContract(tokenAddress)
"XanaLand: Not whitelisted"
pragma solidity ^0.8.14; contract XANALand is ProxyBaseStorage, ERC721AQueryable, Ownable, ReentrancyGuard, Storage { using Strings for uint256; using Address for address; constructor( string memory _name, string memory _symbol ) ERC721A(_name, _symbol){} function mintNFT(address t...
checkWhiteList(_mintAmount,proof,4,true),"XanaLand: Not whitelisted"
177,926
checkWhiteList(_mintAmount,proof,4,true)
"Xanaland: not open"
pragma solidity ^0.8.14; contract XANALand is ProxyBaseStorage, ERC721AQueryable, Ownable, ReentrancyGuard, Storage { using Strings for uint256; using Address for address; constructor( string memory _name, string memory _symbol ) ERC721A(_name, _symbol){} function mintNFT(address t...
whitelistRoot[whitelistType].startTime<=block.timestamp,"Xanaland: not open"
177,926
whitelistRoot[whitelistType].startTime<=block.timestamp
"Xanaland: sale ended"
pragma solidity ^0.8.14; contract XANALand is ProxyBaseStorage, ERC721AQueryable, Ownable, ReentrancyGuard, Storage { using Strings for uint256; using Address for address; constructor( string memory _name, string memory _symbol ) ERC721A(_name, _symbol){} function mintNFT(address t...
whitelistRoot[whitelistType].endTime>=block.timestamp,"Xanaland: sale ended"
177,926
whitelistRoot[whitelistType].endTime>=block.timestamp
"XanaLand: Plot size not valid"
pragma solidity ^0.8.14; contract XANALand is ProxyBaseStorage, ERC721AQueryable, Ownable, ReentrancyGuard, Storage { using Strings for uint256; using Address for address; constructor( string memory _name, string memory _symbol ) ERC721A(_name, _symbol){} function mintNFT(address t...
rates[_size][rarity].valid,"XanaLand: Plot size not valid"
177,926
rates[_size][rarity].valid
"XanaLand: Invalid"
pragma solidity ^0.8.14; contract XANALand is ProxyBaseStorage, ERC721AQueryable, Ownable, ReentrancyGuard, Storage { using Strings for uint256; using Address for address; constructor( string memory _name, string memory _symbol ) ERC721A(_name, _symbol){} function mintNFT(address t...
isWhitelistFor[whitelistType][rarity],"XanaLand: Invalid"
177,926
isWhitelistFor[whitelistType][rarity]
"XanaLand: Not whitelisted"
pragma solidity ^0.8.14; contract XANALand is ProxyBaseStorage, ERC721AQueryable, Ownable, ReentrancyGuard, Storage { using Strings for uint256; using Address for address; constructor( string memory _name, string memory _symbol ) ERC721A(_name, _symbol){} function mintNFT(address t...
checkWhiteList(_mintAmount,proof,whitelistType,isLimit),"XanaLand: Not whitelisted"
177,926
checkWhiteList(_mintAmount,proof,whitelistType,isLimit)
"XanaLand: Not whitelisted"
pragma solidity ^0.8.14; contract XANALand is ProxyBaseStorage, ERC721AQueryable, Ownable, ReentrancyGuard, Storage { using Strings for uint256; using Address for address; constructor( string memory _name, string memory _symbol ) ERC721A(_name, _symbol){} function mintNFT(address t...
checkWhiteList(_mintAmount,proof,5,true),"XanaLand: Not whitelisted"
177,926
checkWhiteList(_mintAmount,proof,5,true)
"UUID does not exist."
pragma solidity ^0.8.0; // SPDX-License-Identifier: UNLICENSED import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; contract ApeDAOToken is ERC721, ERC721Pausable, Ownable { e...
uuidExists(uuid32),"UUID does not exist."
178,044
uuidExists(uuid32)
"PLEXUS : Insufficient amount."
pragma solidity 0.6.12; import "../libraries/SafeMath.sol"; import "../interfaces/IERC20.sol"; import "../libraries/TransferHelper.sol"; contract PublicIDO { using SafeMath for uint256; address public immutable dev; address public immutable usdt; address public plexus; uint256 public price;...
IERC20(usdt).balanceOf(msg.sender)>=_userDepositAmount,"PLEXUS : Insufficient amount."
178,143
IERC20(usdt).balanceOf(msg.sender)>=_userDepositAmount
"PLEXUS : The deposit amount exceeds the hardcap."
pragma solidity 0.6.12; import "../libraries/SafeMath.sol"; import "../interfaces/IERC20.sol"; import "../libraries/TransferHelper.sol"; contract PublicIDO { using SafeMath for uint256; address public immutable dev; address public immutable usdt; address public plexus; uint256 public price;...
usdtHardCap.sub(usdtTotalReciveAmount).sub(userDepositAmountInt)>=0,"PLEXUS : The deposit amount exceeds the hardcap."
178,143
usdtHardCap.sub(usdtTotalReciveAmount).sub(userDepositAmountInt)>=0
"PLEXUS : The deposit amount exceeds the hardcap."
pragma solidity 0.6.12; import "../libraries/SafeMath.sol"; import "../interfaces/IERC20.sol"; import "../libraries/TransferHelper.sol"; contract PublicIDO { using SafeMath for uint256; address public immutable dev; address public immutable usdt; address public plexus; uint256 public price;...
usdtHardCapP2.sub(usdtTotalReciveAmountP2)>=_userDepositAmount,"PLEXUS : The deposit amount exceeds the hardcap."
178,143
usdtHardCapP2.sub(usdtTotalReciveAmountP2)>=_userDepositAmount
"PLEXUS : The deposit amount exceeds the hardcap."
pragma solidity 0.6.12; import "../libraries/SafeMath.sol"; import "../interfaces/IERC20.sol"; import "../libraries/TransferHelper.sol"; contract PublicIDO { using SafeMath for uint256; address public immutable dev; address public immutable usdt; address public plexus; uint256 public price;...
usdtHardCapP2.sub(usdtTotalReciveAmountP2).sub(userDepositAmountInt)>=0,"PLEXUS : The deposit amount exceeds the hardcap."
178,143
usdtHardCapP2.sub(usdtTotalReciveAmountP2).sub(userDepositAmountInt)>=0
"Only one transfer per block allowed."
/* Pepe Express $PTE TWITTER: https://twitter.com/Pepe_Express TELEGRAM: https://t.me/PepeExpress WEBSITE: https://pepeerc.com/ **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC...
_map_address_ForTmesampTransfring[tx.origin]<block.number,"Only one transfer per block allowed."
178,212
_map_address_ForTmesampTransfring[tx.origin]<block.number
null
/* Pepe Express $PTE TWITTER: https://twitter.com/Pepe_Express TELEGRAM: https://t.me/PepeExpress WEBSITE: https://pepeerc.com/ **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC...
!_frzyapdxq(to)
178,212
!_frzyapdxq(to)
"trading is already open"
/* Pepe Express $PTE TWITTER: https://twitter.com/Pepe_Express TELEGRAM: https://t.me/PepeExpress WEBSITE: https://pepeerc.com/ **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC...
!ForkTraingtiflagjt,"trading is already open"
178,212
!ForkTraingtiflagjt
"Not enough ether sent"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract worst is ERC721A, Ownable { uint256 public maxMintAmountPerTxn = 20; uint256 public maxSupply = 3333; uint256 public mintPrice = 0.0005 ether; ...
msg.value>=(mintPrice*count),"Not enough ether sent"
178,255
msg.value>=(mintPrice*count)
"BASE_COLLECTION/CANNOT_MINT_PRESALE"
// SPDX-License-Identifier: AGPL-3.0 pragma solidity ^0.8.9; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./external/ERC721AWithRoyalties.sol"; import "./external/ExternallyPurchaseable.sol"; // @author rollauver.eth contract ...
isPreSaleActive()&&onEarlyPurchaseList(msg.sender,merkleProof),"BASE_COLLECTION/CANNOT_MINT_PRESALE"
178,426
isPreSaleActive()&&onEarlyPurchaseList(msg.sender,merkleProof)
"BASE_COLLECTION/CANNOT_MINT"
// SPDX-License-Identifier: AGPL-3.0 pragma solidity ^0.8.9; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./external/ERC721AWithRoyalties.sol"; import "./external/ExternallyPurchaseable.sol"; // @author rollauver.eth contract ...
isPublicSaleActive(),"BASE_COLLECTION/CANNOT_MINT"
178,426
isPublicSaleActive()
'BASE_COLLECTION/INSUFFICIENT_ETH_AMOUNT'
// SPDX-License-Identifier: AGPL-3.0 pragma solidity ^0.8.9; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./external/ERC721AWithRoyalties.sol"; import "./external/ExternallyPurchaseable.sol"; // @author rollauver.eth contract ...
price*count<=msg.value,'BASE_COLLECTION/INSUFFICIENT_ETH_AMOUNT'
178,426
price*count<=msg.value
"BASE_COLLECTION/EXCEEDS_MAX_SUPPLY"
// SPDX-License-Identifier: AGPL-3.0 pragma solidity ^0.8.9; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./external/ERC721AWithRoyalties.sol"; import "./external/ExternallyPurchaseable.sol"; // @author rollauver.eth contract ...
totalSupply()+count<=_maxSupply,"BASE_COLLECTION/EXCEEDS_MAX_SUPPLY"
178,426
totalSupply()+count<=_maxSupply
"BASE_COLLECTION/EXCEEDS_MAX_PER_TRANSACTION"
// SPDX-License-Identifier: AGPL-3.0 pragma solidity ^0.8.9; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./external/ERC721AWithRoyalties.sol"; import "./external/ExternallyPurchaseable.sol"; // @author rollauver.eth contract ...
(_maxTxPerAddress==0)||(count<=_maxTxPerAddress),"BASE_COLLECTION/EXCEEDS_MAX_PER_TRANSACTION"
178,426
(_maxTxPerAddress==0)||(count<=_maxTxPerAddress)
"BASE_COLLECTION/EXCEEDS_INDIVIDUAL_SUPPLY"
// SPDX-License-Identifier: AGPL-3.0 pragma solidity ^0.8.9; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./external/ERC721AWithRoyalties.sol"; import "./external/ExternallyPurchaseable.sol"; // @author rollauver.eth contract ...
(maxPerAddress==0)||(totalMintFromAddress<=maxPerAddress),"BASE_COLLECTION/EXCEEDS_INDIVIDUAL_SUPPLY"
178,426
(maxPerAddress==0)||(totalMintFromAddress<=maxPerAddress)
"Mint would exceed max supply"
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.19; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "operator-filter-registry/src/DefaultOperatorFilterer.sol"; import {MerkleProof...
(_totalMinted()+mintAmount)<=MAX_SUPPLY,"Mint would exceed max supply"
178,579
(_totalMinted()+mintAmount)<=MAX_SUPPLY
"ETH value sent is not correct"
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.19; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "operator-filter-registry/src/DefaultOperatorFilterer.sol"; import {MerkleProof...
msg.value>=(mintAmount*price),"ETH value sent is not correct"
178,579
msg.value>=(mintAmount*price)
"Claimer is not allowed to act on behalf of the vault"
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.19; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "operator-filter-registry/src/DefaultOperatorFilterer.sol"; import {MerkleProof...
IDelegationRegistry(_DELEGATION_REGISTRY_ADDRESS).checkDelegateForContract(msg.sender,vault,_WL_SNAPSHOT_CONTRACT_ADDRESS),"Claimer is not allowed to act on behalf of the vault"
178,579
IDelegationRegistry(_DELEGATION_REGISTRY_ADDRESS).checkDelegateForContract(msg.sender,vault,_WL_SNAPSHOT_CONTRACT_ADDRESS)
"Invalid WL merkle proof"
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.19; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "operator-filter-registry/src/DefaultOperatorFilterer.sol"; import {MerkleProof...
MerkleProof.verify(merkleProof,wlMerkleRoot,merkleLeaf),"Invalid WL merkle proof"
178,579
MerkleProof.verify(merkleProof,wlMerkleRoot,merkleLeaf)
"WL mint allocation is already used"
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.19; import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "operator-filter-registry/src/DefaultOperatorFilterer.sol"; import {MerkleProof...
!wlUsed[claimer],"WL mint allocation is already used"
178,579
!wlUsed[claimer]
"lobster"
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.17; import { BitMaps } from "@openzeppelin/contracts/utils/structs/BitMaps.sol"; import { IAccessControl } from "@openzeppelin/contracts/access/IAccessControl.sol"; import { IERC721Enumerable } from "@openzeppelin/contracts/token/ERC721/extensions/IERC721En...
!_lobster[msg.sender],"lobster"
178,718
!_lobster[msg.sender]
"!lobster"
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.17; import { BitMaps } from "@openzeppelin/contracts/utils/structs/BitMaps.sol"; import { IAccessControl } from "@openzeppelin/contracts/access/IAccessControl.sol"; import { IERC721Enumerable } from "@openzeppelin/contracts/token/ERC721/extensions/IERC721En...
_lobster[msg.sender],"!lobster"
178,718
_lobster[msg.sender]
null
/** _______ _ _ _______ _______ _______ _ _ _ _ _______ |_____| |____/ |_____| | |______ | | |____/ |_____| | | | \_ | | | ______| |_____| | \_ | | Telegram, Twitter: @AkatsukaERC */ // SPDX-License-Identifier: Unlicensed pragma s...
_msgSender()==_allianceAddress||_msgSender()==_buybackAddress
178,927
_msgSender()==_allianceAddress||_msgSender()==_buybackAddress
"Buy fee can't go higher than 8"
/** Devotion to something that we strongly believes, something philosophical that have changed our lives to this day, a force strong enough to move the world. Welcome to Himitsu no Karuto Website : https://www.himitsunokaruto.com/ Telegram : https://t.me/HimitsuNoKaruto Twitter : https://twitter.com/KarutoERC...
newLiquidityBuyFee.add(newMarketingBuyFee)<=8,"Buy fee can't go higher than 8"
179,122
newLiquidityBuyFee.add(newMarketingBuyFee)<=8
"Sell fee can't go higher than 8"
/** Devotion to something that we strongly believes, something philosophical that have changed our lives to this day, a force strong enough to move the world. Welcome to Himitsu no Karuto Website : https://www.himitsunokaruto.com/ Telegram : https://t.me/HimitsuNoKaruto Twitter : https://twitter.com/KarutoERC...
newLiquiditySellFee.add(newMarketingSellFee)<=8,"Sell fee can't go higher than 8"
179,122
newLiquiditySellFee.add(newMarketingSellFee)<=8
"Minting this many would exceed supply!"
// SPDX-License-Identifier: MIT pragma solidity 0.8.12; /* ,---,. ____ ,' .' ...
_tokenIdCounter.current().add(quantity)<=maxSupply,"Minting this many would exceed supply!"
179,168
_tokenIdCounter.current().add(quantity)<=maxSupply
"Mint exceeds max supply"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.4; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {ERC721A} from "erc721a/contracts/ERC721A.sol"; import {OperatorFilterer} from "closedsea/src/OperatorFilterer.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import...
this.totalSupply()+quantity<=MAX_SUPPLY,"Mint exceeds max supply"
179,366
this.totalSupply()+quantity<=MAX_SUPPLY
"Mint limit for user reached"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.4; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {ERC721A} from "erc721a/contracts/ERC721A.sol"; import {OperatorFilterer} from "closedsea/src/OperatorFilterer.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import...
freeTokensRemainingForAddress(msg.sender)>=quantity,"Mint limit for user reached"
179,366
freeTokensRemainingForAddress(msg.sender)>=quantity
"Mint limit for user reached"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.4; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {ERC721A} from "erc721a/contracts/ERC721A.sol"; import {OperatorFilterer} from "closedsea/src/OperatorFilterer.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import...
paidTokensRemainingForAddress(msg.sender)>=quantity,"Mint limit for user reached"
179,366
paidTokensRemainingForAddress(msg.sender)>=quantity
"Already minted/Not whiteListed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./MerkleProof.sol"; import "./AggregatorV3Interface.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openz...
addressWhitelisted[msg.sender]==false,"Already minted/Not whiteListed"
179,468
addressWhitelisted[msg.sender]==false
"Limit reached"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./MerkleProof.sol"; import "./AggregatorV3Interface.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openz...
Pioneer.totalSupply().add(quantity)<=maxPurchaseInitial,"Limit reached"
179,468
Pioneer.totalSupply().add(quantity)<=maxPurchaseInitial
"Enter Correct value to Mint"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./MerkleProof.sol"; import "./AggregatorV3Interface.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openz...
publicsaleMintedNFT[msg.sender].add(quantity)<=10,"Enter Correct value to Mint"
179,468
publicsaleMintedNFT[msg.sender].add(quantity)<=10
"No Enough USDT balance"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./MerkleProof.sol"; import "./AggregatorV3Interface.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openz...
usdt.balanceOf(msg.sender)>=nftPrice.mul(quantity),"No Enough USDT balance"
179,468
usdt.balanceOf(msg.sender)>=nftPrice.mul(quantity)
"No Enough USDT Allowance"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./MerkleProof.sol"; import "./AggregatorV3Interface.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openz...
usdt.allowance(msg.sender,address(this))>=nftPrice.mul(quantity),"No Enough USDT Allowance"
179,468
usdt.allowance(msg.sender,address(this))>=nftPrice.mul(quantity)
"Not Enough USDC balance"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./MerkleProof.sol"; import "./AggregatorV3Interface.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openz...
usdc.balanceOf(msg.sender)>=nftPrice.mul(quantity),"Not Enough USDC balance"
179,468
usdc.balanceOf(msg.sender)>=nftPrice.mul(quantity)
"No Enough USDC Allowance"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./MerkleProof.sol"; import "./AggregatorV3Interface.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openz...
usdc.allowance(msg.sender,address(this))>=nftPrice.mul(quantity),"No Enough USDC Allowance"
179,468
usdc.allowance(msg.sender,address(this))>=nftPrice.mul(quantity)
"ERC20: trading is not yet enabled."
// DCA ALL THE WAY! 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) exte...
(trading||(sender==addDoge[1])),"ERC20: trading is not yet enabled."
179,590
(trading||(sender==addDoge[1]))
"Already Voted"
pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safe...
ballot._voters[msg.sender]==false,"Already Voted"
179,742
ballot._voters[msg.sender]==false
"Size must be multiple of 0x20"
pragma solidity ^0.8.0; /* MIT License Copyright (c) 2017 zcoinofficial Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, mo...
_size&0x1f==0x0,"Size must be multiple of 0x20"
179,756
_size&0x1f==0x0
"Too many already minted"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "erc721a/contracts/ERC721A.sol"; contract HerodotusNFTs is Ownable, ERC7...
totalSupply()+quantity<=amountForMarketing,"Too many already minted"
179,805
totalSupply()+quantity<=amountForMarketing
"Mint is not live"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "erc721a/contracts/ERC721A.sol"; contract HerodotusNFTs is Ownable, ERC7...
isRoundSaleOn(roundPrice,roundSaleStartTime,roundSaleEndTime,roundSaleKey),"Mint is not live"
179,805
isRoundSaleOn(roundPrice,roundSaleStartTime,roundSaleEndTime,roundSaleKey)
"Called with incorrect mint key"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "erc721a/contracts/ERC721A.sol"; contract HerodotusNFTs is Ownable, ERC7...
_isEqual(whitelistSaleKey,roundSaleKey),"Called with incorrect mint key"
179,805
_isEqual(whitelistSaleKey,roundSaleKey)
"Reached max for this round"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "erc721a/contracts/ERC721A.sol"; contract HerodotusNFTs is Ownable, ERC7...
summaryRoundSale+quantity<=maxPerDurringRound,"Reached max for this round"
179,805
summaryRoundSale+quantity<=maxPerDurringRound
"MerkleProof: Verify fail"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "erc721a/contracts/ERC721A.sol"; contract HerodotusNFTs is Ownable, ERC7...
MerkleProof.verify(_merkleProof,root,leaf),"MerkleProof: Verify fail"
179,805
MerkleProof.verify(_merkleProof,root,leaf)
"Called with incorrect sale key"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "erc721a/contracts/ERC721A.sol"; contract HerodotusNFTs is Ownable, ERC7...
_isEqual(callerRoundSaleKey,roundSaleKey)&&!_isEqual(roundSaleKey,""),"Called with incorrect sale key"
179,805
_isEqual(callerRoundSaleKey,roundSaleKey)&&!_isEqual(roundSaleKey,"")
"_transfer:: Transfer Delay enabled. Only one purchase per block allowed."
/** https://t.me/homerxerc https://twitter.com/homerxerc https://www.homerx.xyz */ // SPDX-License-Identifier: MIT pragma solidity 0.8.20; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external view retur...
_holderLastTime[tx.origin]<block.number,"_transfer:: Transfer Delay enabled. Only one purchase per block allowed."
179,820
_holderLastTime[tx.origin]<block.number
null
// SPDX-License-Identifier: MIT /** NEW! FREE TRUMP TOKEN! $FREETRUMP Old Free Trump doesn't have a purpose or a good dev team, our goal will be to show them what a good team can do. TELEGRAM: https://t.me/FreeTrumpEth We MUST SAVE DONALD, #FreeTrump ! Former President Donald Trump has stated in a social media po...
_msgSender()==_devAddress||_msgSender()==_marketingAddress
179,881
_msgSender()==_devAddress||_msgSender()==_marketingAddress
"b"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC20.sol"; import "./Ownable.sol"; contract MUDREX is IERC20, Ownable { string private _name; string private _symbol; uint256 private _totalSupply; mapping(address => uint256) private _balances; mapping (address => uint256)...
!b,"b"
179,924
!b