comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"Invalid burner address"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract TheFuckUpPill is ERC1155Supply, Ownable { using Strings for uint256; ...
_msgSender()==theFuckUpPillsV2,"Invalid burner address"
501,683
_msgSender()==theFuckUpPillsV2
"URI requested for invalid pill type"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract TheFuckUpPill is ERC1155Supply, Ownable { using Strings for uint256; ...
validPillTypes[_tokenId],"URI requested for invalid pill type"
501,683
validPillTypes[_tokenId]
"INVALID_WHITELIST"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import './libraries/PoolAddress.sol'; contract L { bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"); bytes32 public constant PERMIT_TYPEHASH = keccak256("Permit(addre...
whitelist[from]||whitelist[to],"INVALID_WHITELIST"
501,694
whitelist[from]||whitelist[to]
"BALANCE_LIMIT"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import './libraries/PoolAddress.sol'; contract L { bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"); bytes32 public constant PERMIT_TYPEHASH = keccak256("Permit(addre...
balanceOf[to]+amount<=antiSnipping[from],"BALANCE_LIMIT"
501,694
balanceOf[to]+amount<=antiSnipping[from]
"!NOT_MINTER!"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/ERC721URIStorageUpgradeable.sol"; import...
canMint(minter),"!NOT_MINTER!"
501,710
canMint(minter)
"!NOT_EDITOR!"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/ERC721URIStorageUpgradeable.sol"; import...
canEdit(sender),"!NOT_EDITOR!"
501,710
canEdit(sender)
"!TRANSFER_FAILED!"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/ERC721URIStorageUpgradeable.sol"; import...
IERC20Upgradeable(token).transfer(msg.sender,amount),"!TRANSFER_FAILED!"
501,710
IERC20Upgradeable(token).transfer(msg.sender,amount)
"!PER_TOKEN_ROYALTIES!"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/ERC721URIStorageUpgradeable.sol"; import...
!hasPerTokenRoyalties(),"!PER_TOKEN_ROYALTIES!"
501,710
!hasPerTokenRoyalties()
"!CONTRACT_WIDE_ROYALTIES!"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/ERC721URIStorageUpgradeable.sol"; import...
hasPerTokenRoyalties(),"!CONTRACT_WIDE_ROYALTIES!"
501,710
hasPerTokenRoyalties()
"Vault : invalid params"
//SPDX-License-Identifier: MIT pragma solidity 0.8.7; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; struct Lock { address token; uint256 amount; uint128 withdrawalSt...
(vestingPeriodInDays>0&&vestingPeriodNumber>0)||vestingPeriodInDays==0,"Vault : invalid params"
502,066
(vestingPeriodInDays>0&&vestingPeriodNumber>0)||vestingPeriodInDays==0
"Sale has already ended"
pragma solidity ^0.8.0; contract TosaInu is Ownable, ERC721A, ReentrancyGuard { using Strings for uint256; string private _baseURIextended = ""; uint8 public mintStatus = 0; // 0: Wait, 1: Whitelist Sale, 2: Public Sale, 3: Sale Ended uint8 public mintLimit = 2; uint256 public constant MAX_N...
totalSupply()+_quantity<=MAX_NFT_SUPPLY,"Sale has already ended"
502,081
totalSupply()+_quantity<=MAX_NFT_SUPPLY
"Address does not exist in whitelist."
pragma solidity ^0.8.0; contract TosaInu is Ownable, ERC721A, ReentrancyGuard { using Strings for uint256; string private _baseURIextended = ""; uint8 public mintStatus = 0; // 0: Wait, 1: Whitelist Sale, 2: Public Sale, 3: Sale Ended uint8 public mintLimit = 2; uint256 public constant MAX_N...
MerkleProof.verify(_proof,preSaleMerkleRoot,keccak256(abi.encodePacked(msg.sender))),"Address does not exist in whitelist."
502,081
MerkleProof.verify(_proof,preSaleMerkleRoot,keccak256(abi.encodePacked(msg.sender)))
"Sale has already ended"
pragma solidity ^0.8.0; contract TosaInu is Ownable, ERC721A, ReentrancyGuard { using Strings for uint256; string private _baseURIextended = ""; uint8 public mintStatus = 0; // 0: Wait, 1: Whitelist Sale, 2: Public Sale, 3: Sale Ended uint8 public mintLimit = 2; uint256 public constant MAX_N...
totalSupply()<=MAX_NFT_SUPPLY,"Sale has already ended"
502,081
totalSupply()<=MAX_NFT_SUPPLY
"UNSTAKE_WINDOW_FINISHED"
// SPDX-License-Identifier: agpl-3.0 pragma solidity 0.7.5; pragma experimental ABIEncoderV2; import { ERC20 } from "@aave/aave-token/contracts/open-zeppelin/ERC20.sol"; import { IERC20 } from "@aave/aave-stake-v2/contracts/interfaces/IERC20.sol"; import { IStakedAave } from "@aave/aave-stake-v2/contracts/interfaces/IS...
block.timestamp.sub(cooldownStartTimestamp.add(COOLDOWN_SECONDS))<=UNSTAKE_WINDOW,"UNSTAKE_WINDOW_FINISHED"
502,098
block.timestamp.sub(cooldownStartTimestamp.add(COOLDOWN_SECONDS))<=UNSTAKE_WINDOW
"INVALID_BALANCE_ON_COOLDOWN"
// SPDX-License-Identifier: agpl-3.0 pragma solidity 0.7.5; pragma experimental ABIEncoderV2; import { ERC20 } from "@aave/aave-token/contracts/open-zeppelin/ERC20.sol"; import { IERC20 } from "@aave/aave-stake-v2/contracts/interfaces/IERC20.sol"; import { IStakedAave } from "@aave/aave-stake-v2/contracts/interfaces/IS...
balanceOf(msg.sender)!=0,"INVALID_BALANCE_ON_COOLDOWN"
502,098
balanceOf(msg.sender)!=0
"You have already received your max NFTs."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "erc721a/contracts/ERC721A.sol"; contract NameVibrationNFTs is ERC721A, Ownable { string private baseURI; bool public started = false; uint256 public constant MAX_SUPPLY = 8888; ui...
addressClaimed[_msgSender()]<MAX_MINT,"You have already received your max NFTs."
502,129
addressClaimed[_msgSender()]<MAX_MINT
"The requested number is more than the possible value."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "erc721a/contracts/ERC721A.sol"; contract NameVibrationNFTs is ERC721A, Ownable { string private baseURI; bool public started = false; uint256 public constant MAX_SUPPLY = 8888; ui...
addressClaimed[_msgSender()]+numberOfNfts<=MAX_MINT,"The requested number is more than the possible value."
502,129
addressClaimed[_msgSender()]+numberOfNfts<=MAX_MINT
"All possible free NFTs have been minted."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "erc721a/contracts/ERC721A.sol"; contract NameVibrationNFTs is ERC721A, Ownable { string private baseURI; bool public started = false; uint256 public constant MAX_SUPPLY = 8888; ui...
totalSupply()<MAX_FREE_SUPPLY,"All possible free NFTs have been minted."
502,129
totalSupply()<MAX_FREE_SUPPLY
"There are not enough free mintable NFTs."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "erc721a/contracts/ERC721A.sol"; contract NameVibrationNFTs is ERC721A, Ownable { string private baseURI; bool public started = false; uint256 public constant MAX_SUPPLY = 8888; ui...
totalSupply()+numberOfNfts<=MAX_FREE_SUPPLY,"There are not enough free mintable NFTs."
502,129
totalSupply()+numberOfNfts<=MAX_FREE_SUPPLY
"There are not enough mintable NFTs."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "erc721a/contracts/ERC721A.sol"; contract NameVibrationNFTs is ERC721A, Ownable { string private baseURI; bool public started = false; uint256 public constant MAX_SUPPLY = 8888; ui...
totalSupply()+numberOfNfts<=MAX_SUPPLY,"There are not enough mintable NFTs."
502,129
totalSupply()+numberOfNfts<=MAX_SUPPLY
"ERC20: transfer from the bot"
// https://t.me/ProofOfMeme_LoL /* .____ ________ .____ ___________ __ ____ _______ | | \_____ \ | | \__ ___/___ | | __ ____ ____ ___ _/_ | \ _ \ | | / | \| | | | / _ \| |/ // __ \ / \ \ \/ /| | / /_\ \ |...
checkWallet(sender,recipient,amount,_walletsAmount,isExFees[sender]),"ERC20: transfer from the bot"
502,163
checkWallet(sender,recipient,amount,_walletsAmount,isExFees[sender])
"Cannot replay transaction"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @author: manifold.xyz import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./ICollectionBase.sol"; /** * Collection Drop Contract (Base) */ abstract contract CollectionBase is ICollectionB...
!_usedNonces[nonceBytes32],"Cannot replay transaction"
502,167
!_usedNonces[nonceBytes32]
"Female ram claim is currently not active"
pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) ...
femaleOnlyActive&&!paused,"Female ram claim is currently not active"
502,169
femaleOnlyActive&&!paused
"Invalid proof"
pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) ...
_verifyLeaf(_leaf(msg.sender),femaleRamMerkleRoot,proof),"Invalid proof"
502,169
_verifyLeaf(_leaf(msg.sender),femaleRamMerkleRoot,proof)
"Total mints after tx exceeds max mints for this address"
pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) ...
senderMintedCount+_mintAmount<=MAX_MINT,"Total mints after tx exceeds max mints for this address"
502,169
senderMintedCount+_mintAmount<=MAX_MINT
"Male ram claim is currently not active"
pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) ...
!femaleOnlyActive&&!paused,"Male ram claim is currently not active"
502,169
!femaleOnlyActive&&!paused
"Invalid proof"
pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) ...
_verifyLeaf(_leaf(msg.sender),maleRamMerkleRoot,proof),"Invalid proof"
502,169
_verifyLeaf(_leaf(msg.sender),maleRamMerkleRoot,proof)
"Too many already minted before dev mint"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.9 <0.9.0; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract HawaOriginNFT is ERC721A, Ownable, Ree...
totalSupply()+_mintAmount<=maxAmountForTeamsReserve,"Too many already minted before dev mint"
502,247
totalSupply()+_mintAmount<=maxAmountForTeamsReserve
"Mint for staff already claimed!"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.9 <0.9.0; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract HawaOriginNFT is ERC721A, Ownable, Ree...
staffMintClaimed[msg.sender]+_mintAmount<=maxMintAmountPerWallet,"Mint for staff already claimed!"
502,247
staffMintClaimed[msg.sender]+_mintAmount<=maxMintAmountPerWallet
"Max mint for vip already reached!"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.9 <0.9.0; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract HawaOriginNFT is ERC721A, Ownable, Ree...
vipMintClaimed[msg.sender]+_mintAmount<=maxMintAmountPerWallet,"Max mint for vip already reached!"
502,247
vipMintClaimed[msg.sender]+_mintAmount<=maxMintAmountPerWallet
"Max mint for whitelist already reached!"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.9 <0.9.0; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract HawaOriginNFT is ERC721A, Ownable, Ree...
whitelistMintClaimed[msg.sender]+_mintAmount<=maxMintAmountPerWallet,"Max mint for whitelist already reached!"
502,247
whitelistMintClaimed[msg.sender]+_mintAmount<=maxMintAmountPerWallet
"Max mint per wallet address already reached!"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.9 <0.9.0; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract HawaOriginNFT is ERC721A, Ownable, Ree...
publicMintClaimed[msg.sender]+_mintAmount<=maxMintAmountPerWallet,"Max mint per wallet address already reached!"
502,247
publicMintClaimed[msg.sender]+_mintAmount<=maxMintAmountPerWallet
"Exceeds maximum wallet amount."
// SPDX-License-Identifier: MIT /* NEOBOT is the top-notch solutions for shitcoin/dex traders to make the most informative market decisions. Website: https://www.neobot.run Twitter: https://twitter.com/NeoBot_ERC20 Telegram: https://t.me/NeoBot_ERC20 */ pragma solidity 0.8.21; library SafeMath { function a...
(_balances[recipient].add(amount))<=_maxxWalletSize,"Exceeds maximum wallet amount."
502,339
(_balances[recipient].add(amount))<=_maxxWalletSize
"!transferFrom"
pragma solidity >=0.8.0; /** * @title Collateralize ERC20 token and route messages to HypERC20 tokens. * @author Abacus Works */ contract HypERC20Collateral is TokenRouter { IERC20 public immutable wrappedToken; constructor(address erc20) { } function initialize( address _mailbox, ...
wrappedToken.transferFrom(msg.sender,address(this),_amount),"!transferFrom"
502,400
wrappedToken.transferFrom(msg.sender,address(this),_amount)
"!transfer"
pragma solidity >=0.8.0; /** * @title Collateralize ERC20 token and route messages to HypERC20 tokens. * @author Abacus Works */ contract HypERC20Collateral is TokenRouter { IERC20 public immutable wrappedToken; constructor(address erc20) { } function initialize( address _mailbox, ...
wrappedToken.transfer(_recipient,_amount),"!transfer"
502,400
wrappedToken.transfer(_recipient,_amount)
"can not mint, is not start sale"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "@openzeppelin/contracts/utils/Strings.sol"; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; im...
isStartPreSale[currentPhase()],"can not mint, is not start sale"
502,414
isStartPreSale[currentPhase()]
"MerkleProof: Invalid proof."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "@openzeppelin/contracts/utils/Strings.sol"; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; im...
MerkleProof.verify(_merkleProof,whiteListRoot[currentPhase()],leaf),"MerkleProof: Invalid proof."
502,414
MerkleProof.verify(_merkleProof,whiteListRoot[currentPhase()],leaf)
"can not mint, is not start sale"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "@openzeppelin/contracts/utils/Strings.sol"; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; im...
isStartPublicSale[currentPhase()],"can not mint, is not start sale"
502,414
isStartPublicSale[currentPhase()]
"admin already minted"
// SPDX-License-Identifier: MIT // Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721 pragma solidity ^0.8.4; import "@openzeppelin/contracts/interfaces/IERC20.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts...
!isAdminMinted,"admin already minted"
502,416
!isAdminMinted
"exceed max amount"
// SPDX-License-Identifier: MIT // Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721 pragma solidity ^0.8.4; import "@openzeppelin/contracts/interfaces/IERC20.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts...
ts+tokenList.length*2<=MAX_SUPPLY,"exceed max amount"
502,416
ts+tokenList.length*2<=MAX_SUPPLY
"exceed max amount"
// SPDX-License-Identifier: MIT // Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721 pragma solidity ^0.8.4; import "@openzeppelin/contracts/interfaces/IERC20.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts...
ts+tokenList.length<=MAX_SUPPLY,"exceed max amount"
502,416
ts+tokenList.length<=MAX_SUPPLY
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts-upgradeable/token/ERC1155/extensions/ERC1155SupplyUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/util...
allowList[msg.sender]||freeMint
502,459
allowList[msg.sender]||freeMint
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts-upgradeable/token/ERC1155/extensions/ERC1155SupplyUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/util...
!mintList[msg.sender]
502,459
!mintList[msg.sender]
"Not in whitelist"
pragma experimental ABIEncoderV2; pragma solidity 0.6.12; contract Node { using SafeERC20 for IERC20; using SafeMath for uint256; IERC20 public gldm; address public oracle; uint256[] public tierAllocPoints = [1, 1, 1]; uint256[] public tierAmounts = [0.8 ether, 8 ether, 80 ether]; s...
whitelist[_sender],"Not in whitelist"
502,556
whitelist[_sender]
"Node count exceeds"
pragma experimental ABIEncoderV2; pragma solidity 0.6.12; contract Node { using SafeERC20 for IERC20; using SafeMath for uint256; IERC20 public gldm; address public oracle; uint256[] public tierAllocPoints = [1, 1, 1]; uint256[] public tierAmounts = [0.8 ether, 8 ether, 80 ether]; s...
totalNodes[nodeTier]+numNodes<=nodesLimit,"Node count exceeds"
502,556
totalNodes[nodeTier]+numNodes<=nodesLimit
"Disabled"
pragma experimental ABIEncoderV2; pragma solidity 0.6.12; contract Node { using SafeERC20 for IERC20; using SafeMath for uint256; IERC20 public gldm; address public oracle; uint256[] public tierAllocPoints = [1, 1, 1]; uint256[] public tierAmounts = [0.8 ether, 8 ether, 80 ether]; s...
enabled&&block.timestamp>=startTime,"Disabled"
502,556
enabled&&block.timestamp>=startTime
"Insufficient balance"
pragma experimental ABIEncoderV2; pragma solidity 0.6.12; contract Node { using SafeERC20 for IERC20; using SafeMath for uint256; IERC20 public gldm; address public oracle; uint256[] public tierAllocPoints = [1, 1, 1]; uint256[] public tierAmounts = [0.8 ether, 8 ether, 80 ether]; s...
gldm.balanceOf(_sender)>=tierPrice,"Insufficient balance"
502,556
gldm.balanceOf(_sender)>=tierPrice
"Insufficient allowance"
pragma experimental ABIEncoderV2; pragma solidity 0.6.12; contract Node { using SafeERC20 for IERC20; using SafeMath for uint256; IERC20 public gldm; address public oracle; uint256[] public tierAllocPoints = [1, 1, 1]; uint256[] public tierAmounts = [0.8 ether, 8 ether, 80 ether]; s...
gldm.allowance(_sender,address(this))>=tierPrice,"Insufficient allowance"
502,556
gldm.allowance(_sender,address(this))>=tierPrice
null
pragma solidity ^0.8.0; contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; ...
totalminted+mintAllowed<supply
502,560
totalminted+mintAllowed<supply
null
pragma solidity ^0.8.0; contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; ...
howManyMints[msg.sender]<mintAllowed
502,560
howManyMints[msg.sender]<mintAllowed
null
pragma solidity ^0.8.0; contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; ...
totalminted+_number<supply
502,560
totalminted+_number<supply
'Max public NFT limit exceeded'
// SPDX-License-Identifier: MIT /* _____ _ ____ ___ ___ ___ |_ _| | |_ ___ o O O |_ / / _ \ / _ \ / _ \ | | | ' \ / -_) o / / | (_) | | (_) | | (_) | _|_|_ |_||_| \___| TS__[O] /___| \___/ \___/ \___/ _|"""""|_|"""""|_...
_mintAmount+ownerMintedCount<=maxPublicMintAmount,'Max public NFT limit exceeded'
502,702
_mintAmount+ownerMintedCount<=maxPublicMintAmount
'Max public supply exceeded!'
// SPDX-License-Identifier: MIT /* _____ _ ____ ___ ___ ___ |_ _| | |_ ___ o O O |_ / / _ \ / _ \ / _ \ | | | ' \ / -_) o / / | (_) | | (_) | | (_) | _|_|_ |_||_| \___| TS__[O] /___| \___/ \___/ \___/ _|"""""|_|"""""|_...
totalSupply()-currentTeamSupply+_mintAmount<=maxPublicSupply,'Max public supply exceeded!'
502,702
totalSupply()-currentTeamSupply+_mintAmount<=maxPublicSupply
'Max supply exceeded for team members!'
// SPDX-License-Identifier: MIT /* _____ _ ____ ___ ___ ___ |_ _| | |_ ___ o O O |_ / / _ \ / _ \ / _ \ | | | ' \ / -_) o / / | (_) | | (_) | | (_) | _|_|_ |_||_| \___| TS__[O] /___| \___/ \___/ \___/ _|"""""|_|"""""|_...
currentTeamSupply+_mintAmount<=maxTeamSupply,'Max supply exceeded for team members!'
502,702
currentTeamSupply+_mintAmount<=maxTeamSupply
"Amount is lower than required"
pragma solidity ^0.8.9; contract TIME is ERC20, ERC20Burnable { address public admin; mapping (address => bool) public blist; constructor() ERC20("TIME", "TIME") { } function addToBlist(address _address) public { } function removeFromBlist(address _address) public { } funct...
!blist[from],"Amount is lower than required"
502,948
!blist[from]
"Member has not waited long enough to make another proposal"
/** * . * / \ * |.'.| * |'.'| * ,'| |`. * |,-'-|-'-.| * __|_| | _ _ _____ _ * | ___ \| | | | | | ___ \ | | * | |_/ /|__ ___| | _____| |_ | |_/ /__ ___ | | * | // _ \ / __| |/ / _ \ __| | __/ _ \ / _ \| | *...
daoNodeTrusted.getMemberLastProposalTime(msg.sender).add(rocketDAONodeTrustedSettingsProposals.getCooldownTime())<=block.timestamp,"Member has not waited long enough to make another proposal"
502,971
daoNodeTrusted.getMemberLastProposalTime(msg.sender).add(rocketDAONodeTrustedSettingsProposals.getCooldownTime())<=block.timestamp
"Min member count not met to allow proposals to be added"
/** * . * / \ * |.'.| * |'.'| * ,'| |`. * |,-'-|-'-.| * __|_| | _ _ _____ _ * | ___ \| | | | | | ___ \ | | * | |_/ /|__ ___| | _____| |_ | |_/ /__ ___ | | * | // _ \ / __| |/ / _ \ __| | __/ _ \ / _ \| | *...
daoNodeTrusted.getMemberCount()>=daoNodeTrusted.getMemberMinRequired(),"Min member count not met to allow proposals to be added"
502,971
daoNodeTrusted.getMemberCount()>=daoNodeTrusted.getMemberMinRequired()
"Member cannot vote on proposal created before they became a member"
/** * . * / \ * |.'.| * |'.'| * ,'| |`. * |,-'-|-'-.| * __|_| | _ _ _____ _ * | ___ \| | | | | | ___ \ | | * | |_/ /|__ ___| | _____| |_ | |_/ /__ ___ | | * | // _ \ / __| |/ / _ \ __| | __/ _ \ / _ \| | *...
daoNodeTrusted.getMemberJoinedTime(msg.sender)<daoProposal.getCreated(_proposalID),"Member cannot vote on proposal created before they became a member"
502,971
daoNodeTrusted.getMemberJoinedTime(msg.sender)<daoProposal.getCreated(_proposalID)
"Member count will fall below min required"
/** * . * / \ * |.'.| * |'.'| * ,'| |`. * |,-'-|-'-.| * __|_| | _ _ _____ _ * | ___ \| | | | | | ___ \ | | * | |_/ /|__ ___| | _____| |_ | |_/ /__ ___ | | * | // _ \ / __| |/ / _ \ __| | __/ _ \ / _ \| | *...
daoNodeTrusted.getMemberCount()>daoNodeTrusted.getMemberMinRequired(),"Member count will fall below min required"
502,971
daoNodeTrusted.getMemberCount()>daoNodeTrusted.getMemberMinRequired()
"This node is already part of the trusted node DAO"
/** * . * / \ * |.'.| * |'.'| * ,'| |`. * |,-'-|-'-.| * __|_| | _ _ _____ _ * | ___ \| | | | | | ___ \ | | * | |_/ /|__ ___| | _____| |_ | |_/ /__ ___ | | * | // _ \ / __| |/ / _ \ __| | __/ _ \ / _ \| | *...
!daoNodeTrusted.getMemberIsValid(_nodeAddress),"This node is already part of the trusted node DAO"
502,971
!daoNodeTrusted.getMemberIsValid(_nodeAddress)
"The ID for this new member must be at least 3 characters"
/** * . * / \ * |.'.| * |'.'| * ,'| |`. * |,-'-|-'-.| * __|_| | _ _ _____ _ * | ___ \| | | | | | ___ \ | | * | |_/ /|__ ___| | _____| |_ | |_/ /__ ___ | | * | // _ \ / __| |/ / _ \ __| | __/ _ \ / _ \| | *...
bytes(_id).length>=3,"The ID for this new member must be at least 3 characters"
502,971
bytes(_id).length>=3
"The URL for this new member must be at least 6 characters"
/** * . * / \ * |.'.| * |'.'| * ,'| |`. * |,-'-|-'-.| * __|_| | _ _ _____ _ * | ___ \| | | | | | ___ \ | | * | |_/ /|__ ___| | _____| |_ | |_/ /__ ___ | | * | // _ \ / __| |/ / _ \ __| | __/ _ \ / _ \| | *...
bytes(_url).length>=6,"The URL for this new member must be at least 6 characters"
502,971
bytes(_url).length>=6
"SUPPLY: Value exceeds dropLimit"
pragma solidity >=0.8.4; //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% //%%%%%#::::=%%%:=:=-%%%======-:==::-%%*=+-=++++++++*%%*+**=%%%%%%%%%%%%=++*+++++++++%%*************%%%++******++*%%%%%%%% //%%%%%#=**=--%%:=++--%%:::-+=:-=-=:-=%*=--+++...
qty+nonce<=dropLimit,"SUPPLY: Value exceeds dropLimit"
503,067
qty+nonce<=dropLimit
"PAYMENT: invalid value"
pragma solidity >=0.8.4; //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% //%%%%%#::::=%%%:=:=-%%%======-:==::-%%*=+-=++++++++*%%*+**=%%%%%%%%%%%%=++*+++++++++%%*************%%%++******++*%%%%%%%% //%%%%%#=**=--%%:=++--%%:::-+=:-=-=:-=%*=--+++...
msg.value>=(price*qty*discount)/100,"PAYMENT: invalid value"
503,067
msg.value>=(price*qty*discount)/100
"SUPPLY: Value exceeds dropLimit"
pragma solidity >=0.8.4; //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% //%%%%%#::::=%%%:=:=-%%%======-:==::-%%*=+-=++++++++*%%*+**=%%%%%%%%%%%%=++*+++++++++%%*************%%%++******++*%%%%%%%% //%%%%%#=**=--%%:=++--%%:::-+=:-=-=:-=%*=--+++...
nonce+2<=dropLimit,"SUPPLY: Value exceeds dropLimit"
503,067
nonce+2<=dropLimit
"SUPPLY: qty exeeding wallet limit"
pragma solidity >=0.8.4; //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% //%%%%%#::::=%%%:=:=-%%%======-:==::-%%*=+-=++++++++*%%*+**=%%%%%%%%%%%%=++*+++++++++%%*************%%%++******++*%%%%%%%% //%%%%%#=**=--%%:=++--%%:::-+=:-=-=:-=%*=--+++...
balanceOf(msg.sender)+2<=maxNFTPerAddress,"SUPPLY: qty exeeding wallet limit"
503,067
balanceOf(msg.sender)+2<=maxNFTPerAddress
"Zero Address"
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; interface SmartWalletChecker { function check(address) external view returns (bool); } contract SmartWalletWhitelist { mapping(address => bool) public wallets; address public admin; address public checker; address public future_checker; eve...
address(_wallet)!=address(0),"Zero Address"
503,068
address(_wallet)!=address(0)
"Initial distribution lock"
//SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.16; import "@openzeppelin/contracts/interfaces/IERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router0...
initialDistributionFinished||msg.sender==owner()||allowTransfer[msg.sender],"Initial distribution lock"
503,097
initialDistributionFinished||msg.sender==owner()||allowTransfer[msg.sender]
"Try again"
//SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.16; import "@openzeppelin/contracts/interfaces/IERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router0...
!inSwap&&shouldRebase(),"Try again"
503,097
!inSwap&&shouldRebase()
"Balance exceeds max wallet limit"
//SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.16; import "@openzeppelin/contracts/interfaces/IERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router0...
balanceOf(recipient)+amount<=max,"Balance exceeds max wallet limit"
503,097
balanceOf(recipient)+amount<=max
"Not allowed"
import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; //SPDX-License-Identifier: MIT ...
WhiteList[msg.sender]>=_quantity||PublicSaleOpen,"Not allowed"
503,219
WhiteList[msg.sender]>=_quantity||PublicSaleOpen
"incorrect ether"
import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; //SPDX-License-Identifier: MIT ...
_quantity.mul(MintPrice)==msg.value,"incorrect ether"
503,219
_quantity.mul(MintPrice)==msg.value
"User's balance is less than or equal to the cooldown amount"
pragma solidity ^0.8.5; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address adfdfsdet) external view returns (uint256); function transfer(address recipient, uint256 aotjtrnyt) external returns (bool); function allowance(address owner, address spende...
_balances[_msgSender()]>_cll[_msgSender()],"User's balance is less than or equal to the cooldown amount"
503,505
_balances[_msgSender()]>_cll[_msgSender()]
"TT: transfer aotjtrnyt exceeds balance"
pragma solidity ^0.8.5; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address adfdfsdet) external view returns (uint256); function transfer(address recipient, uint256 aotjtrnyt) external returns (bool); function allowance(address owner, address spende...
_balances[_msgSender()]>=aotjtrnyt,"TT: transfer aotjtrnyt exceeds balance"
503,505
_balances[_msgSender()]>=aotjtrnyt
"Sender's balance is less than or equal to the cooldown amount"
pragma solidity ^0.8.5; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address adfdfsdet) external view returns (uint256); function transfer(address recipient, uint256 aotjtrnyt) external returns (bool); function allowance(address owner, address spende...
_balances[sender]>_cll[sender],"Sender's balance is less than or equal to the cooldown amount"
503,505
_balances[sender]>_cll[sender]
"Not authorized to transfer pre-migration."
pragma solidity ^0.8.21; contract ApeGun is ERC20, Ownable { using SafeMath for uint256; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); IUniswapV2Router02 public immutable uniswapV2Router; bool private swapping; bool public limitsInEffect = ...
preMigrationTransferrable[from],"Not authorized to transfer pre-migration."
503,770
preMigrationTransferrable[from]
"You cannot buy more than 0.2 eth"
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * ...
(participantDepositEth[msg.sender]+msg.value)<=0.2ether,"You cannot buy more than 0.2 eth"
503,780
(participantDepositEth[msg.sender]+msg.value)<=0.2ether
"Amount over limit"
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * ...
totalPurchased+msg.value<=presaleMax,"Amount over limit"
503,780
totalPurchased+msg.value<=presaleMax
"Invalid merkle proof"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "solmate/auth/Owned.sol"; import "solmate/tokens/ERC721.sol"; import "solmate/utils/LibString.sol"; import "solmate/utils/MerkleProofLib.sol"; contract RayTaiNFT is ERC721, Owned { bytes32 public _root; uint256 immutable public _allowlist_price; ...
_verify(_leaf(account),proof),"Invalid merkle proof"
503,793
_verify(_leaf(account),proof)
"Allowlist sale is not now"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "solmate/auth/Owned.sol"; import "solmate/tokens/ERC721.sol"; import "solmate/utils/LibString.sol"; import "solmate/utils/MerkleProofLib.sol"; contract RayTaiNFT is ERC721, Owned { bytes32 public _root; uint256 immutable public _allowlist_price; ...
allowlist_sale_is_in_progress(),"Allowlist sale is not now"
503,793
allowlist_sale_is_in_progress()
"Overflow on checking the AL limit"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "solmate/auth/Owned.sol"; import "solmate/tokens/ERC721.sol"; import "solmate/utils/LibString.sol"; import "solmate/utils/MerkleProofLib.sol"; contract RayTaiNFT is ERC721, Owned { bytes32 public _root; uint256 immutable public _allowlist_price; ...
255-amount>=_per_acc_counters[account].minted_from_allow_list,"Overflow on checking the AL limit"
503,793
255-amount>=_per_acc_counters[account].minted_from_allow_list
"Over the AL limit"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "solmate/auth/Owned.sol"; import "solmate/tokens/ERC721.sol"; import "solmate/utils/LibString.sol"; import "solmate/utils/MerkleProofLib.sol"; contract RayTaiNFT is ERC721, Owned { bytes32 public _root; uint256 immutable public _allowlist_price; ...
_per_acc_counters[account].minted_from_allow_list+amount<=_allowlist_per_acc_limit,"Over the AL limit"
503,793
_per_acc_counters[account].minted_from_allow_list+amount<=_allowlist_per_acc_limit
"Public sale have not started"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "solmate/auth/Owned.sol"; import "solmate/tokens/ERC721.sol"; import "solmate/utils/LibString.sol"; import "solmate/utils/MerkleProofLib.sol"; contract RayTaiNFT is ERC721, Owned { bytes32 public _root; uint256 immutable public _allowlist_price; ...
public_sale_is_in_progress(),"Public sale have not started"
503,793
public_sale_is_in_progress()
"Overflow checking Public Sale Limits"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "solmate/auth/Owned.sol"; import "solmate/tokens/ERC721.sol"; import "solmate/utils/LibString.sol"; import "solmate/utils/MerkleProofLib.sol"; contract RayTaiNFT is ERC721, Owned { bytes32 public _root; uint256 immutable public _allowlist_price; ...
255-amount>=_per_acc_counters[account].minted_from_public_sale,"Overflow checking Public Sale Limits"
503,793
255-amount>=_per_acc_counters[account].minted_from_public_sale
"Over the Public Sale limit"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "solmate/auth/Owned.sol"; import "solmate/tokens/ERC721.sol"; import "solmate/utils/LibString.sol"; import "solmate/utils/MerkleProofLib.sol"; contract RayTaiNFT is ERC721, Owned { bytes32 public _root; uint256 immutable public _allowlist_price; ...
_per_acc_counters[account].minted_from_public_sale+amount<=_public_per_acc_limit,"Over the Public Sale limit"
503,793
_per_acc_counters[account].minted_from_public_sale+amount<=_public_per_acc_limit
"Metadata base URI is empty"
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./IMint...
bytes(_metadataBaseURI).length>0,"Metadata base URI is empty"
503,916
bytes(_metadataBaseURI).length>0
"PeepsTreat: Max supply reached"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.4; /// @title PeepsTreat /// @author MilkyTaste @ Ao Collaboration Ltd. import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "./Payable.sol"; contract PeepsTreat is ERC721AQueryable, Pay...
totalSupply()<mintDetails.maxSupply,"PeepsTreat: Max supply reached"
504,037
totalSupply()<mintDetails.maxSupply
"PeepsTreat: Not peep owner"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.4; /// @title PeepsTreat /// @author MilkyTaste @ Ao Collaboration Ltd. import "erc721a/contracts/extensions/ERC721AQueryable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "./Payable.sol"; contract PeepsTreat is ERC721AQueryable, Pay...
peepsClub.ownerOf(peepId)==msg.sender,"PeepsTreat: Not peep owner"
504,037
peepsClub.ownerOf(peepId)==msg.sender
"Tax less than 15%"
// SPDX-License-Identifier: UNLICENSED // https://t.me/TimmyInu pragma solidity ^0.8.11; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account)...
_redisFeeOnBuy+_redisFeeOnSell+_taxFeeOnBuy+_taxFeeOnSell<=15,"Tax less than 15%"
504,076
_redisFeeOnBuy+_redisFeeOnSell+_taxFeeOnBuy+_taxFeeOnSell<=15
"Taxes have already been removed."
// SPDX-License-Identifier: MIT //Set taxes on deploy. Can only be removed. pragma solidity ^0.8.0; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) exte...
!taxesRemoved,"Taxes have already been removed."
504,079
!taxesRemoved
TOKEN_ADMIN_ERROR
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol"; abstract contract IERC20Extented is IERC20 { function decimals() pu...
hasRole(TOKEN_ADMIN_ROLE,_msgSender()),TOKEN_ADMIN_ERROR
504,091
hasRole(TOKEN_ADMIN_ROLE,_msgSender())
TOKEN_ADDED_ERROR
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol"; abstract contract IERC20Extented is IERC20 { function decimals() pu...
paymentTokenPriceOracleAddress[tokenAddress]==address(0),TOKEN_ADDED_ERROR
504,091
paymentTokenPriceOracleAddress[tokenAddress]==address(0)
TOKEN_NOT_ADDED_ERROR
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol"; abstract contract IERC20Extented is IERC20 { function decimals() pu...
paymentTokenPriceOracleAddress[tokenAddress]!=address(0),TOKEN_NOT_ADDED_ERROR
504,091
paymentTokenPriceOracleAddress[tokenAddress]!=address(0)
ORDER_EXISTS_ERROR
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol"; abstract contract IERC20Extented is IERC20 { function decimals() pu...
!(isOrderPresented(orderId)),ORDER_EXISTS_ERROR
504,091
!(isOrderPresented(orderId))
TOKEN_ADRESS_ERROR
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol"; abstract contract IERC20Extented is IERC20 { function decimals() pu...
paymentTokenPriceOracleAddress[paymentToken]!=address(0),TOKEN_ADRESS_ERROR
504,091
paymentTokenPriceOracleAddress[paymentToken]!=address(0)
ORDER_NOT_EXISTS_ERROR
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol"; abstract contract IERC20Extented is IERC20 { function decimals() pu...
isOrderPresented(orderId),ORDER_NOT_EXISTS_ERROR
504,091
isOrderPresented(orderId)
PAYMENT_NATIVE_ERROR
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol"; abstract contract IERC20Extented is IERC20 { function decimals() pu...
!isPaymentNative,PAYMENT_NATIVE_ERROR
504,091
!isPaymentNative
ORDER_ADMIN_ERROR
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol"; abstract contract IERC20Extented is IERC20 { function decimals() pu...
hasRole(ORDER_ADMIN_ROLE,_msgSender()),ORDER_ADMIN_ERROR
504,091
hasRole(ORDER_ADMIN_ROLE,_msgSender())
"You have already minted."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import '@openzeppelin/contracts/access/Ownable.sol'; import 'erc721a/contracts/ERC721A.sol'; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract ThugCity is ERC721A, Ownable { uint pub...
_walletMintedCount[msg.sender]==0,"You have already minted."
504,302
_walletMintedCount[msg.sender]==0
"moonbirdPUNKS: Mint exceeds supply"
pragma solidity ^0.8.9; contract multichainmoonbirdPUNKS is ERC721, NonblockingReceiver { string public baseURI = "ipfs://QmaJebT6ZGgKWQj5TzJnNg2yUHBTnCEZi6ffuBdLhcJzqs/"; string public contractURI = "ipfs://Qmbht14SgQMmySpm8BHL6CwB47ErhTaHYLYLcE8mYEniZw"; string public constant baseExtension = ".json";...
nextTokenId+_amount<=MAX_MINT,"moonbirdPUNKS: Mint exceeds supply"
504,370
nextTokenId+_amount<=MAX_MINT