comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"Invalid Merkle Proof"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; // ::: :::::::: ::::::::::: ::: ::::::::: // :+: :+: :+: :+: :+: :+: :+: :+: :+: // +:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ // +#++:++#++: +#++:++#++ +#+ +#++:++#++: +#...
MerkleProof.verify(_merkleProof,merkleRootPreMint1,leaf),"Invalid Merkle Proof"
149,709
MerkleProof.verify(_merkleProof,merkleRootPreMint1,leaf)
"Already claimed max"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; // ::: :::::::: ::::::::::: ::: ::::::::: // :+: :+: :+: :+: :+: :+: :+: :+: :+: // +:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ // +#++:++#++: +#++:++#++ +#+ +#++:++#++: +#...
claimed[msg.sender]+_mintAmount<=_preMint1Max,"Already claimed max"
149,709
claimed[msg.sender]+_mintAmount<=_preMint1Max
"Invalid Merkle Proof"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; // ::: :::::::: ::::::::::: ::: ::::::::: // :+: :+: :+: :+: :+: :+: :+: :+: :+: // +:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ // +#++:++#++: +#++:++#++ +#+ +#++:++#++: +#...
MerkleProof.verify(_merkleProof,merkleRootPreMint2,leaf),"Invalid Merkle Proof"
149,709
MerkleProof.verify(_merkleProof,merkleRootPreMint2,leaf)
"Already claimed max"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; // ::: :::::::: ::::::::::: ::: ::::::::: // :+: :+: :+: :+: :+: :+: :+: :+: :+: // +:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ // +#++:++#++: +#++:++#++ +#+ +#++:++#++: +#...
claimed[msg.sender]+_mintAmount<=_preMint2Max,"Already claimed max"
149,709
claimed[msg.sender]+_mintAmount<=_preMint2Max
"Already claimed max"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; // ::: :::::::: ::::::::::: ::: ::::::::: // :+: :+: :+: :+: :+: :+: :+: :+: :+: // +:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ // +#++:++#++: +#++:++#++ +#+ +#++:++#++: +#...
claimed[msg.sender]+_mintAmount<=maxMintPerWallet,"Already claimed max"
149,709
claimed[msg.sender]+_mintAmount<=maxMintPerWallet
"MAXSUPPLY over"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; // ::: :::::::: ::::::::::: ::: ::::::::: // :+: :+: :+: :+: :+: :+: :+: :+: :+: // +:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ // +#++:++#++: +#++:++#++ +#+ +#++:++#++: +#...
totalSupply()+_mintAmount<=MAX_SUPPLY,"MAXSUPPLY over"
149,709
totalSupply()+_mintAmount<=MAX_SUPPLY
"SEND_ETHER_FAILED"
// SPDX-License-Identifier: CC0-1.0 pragma solidity ^0.8.17; import {IERC721} from "openzeppelin-contracts/contracts/token/ERC721/IERC721.sol"; import {IERC2981} from "openzeppelin-contracts/contracts/interfaces/IERC2981.sol"; /** * Built with <3 by 0xfoobar */ contract LiquidDelegateMarket { address public immut...
sent||errorOnFail,"SEND_ETHER_FAILED"
149,749
sent||errorOnFail
"You're not allowed to edit status."
// SPDX-License-Identifier: CC0-1.0 pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./IOni.sol"; contract Oni is ERC721, Ownable, IOni { using Strings for uint256; mapping(uint256 => uint256) _parent; mapping(addr...
_canEditStatus[msg.sender],"You're not allowed to edit status."
149,760
_canEditStatus[msg.sender]
"You are not allowed to mint."
// SPDX-License-Identifier: CC0-1.0 pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./IOni.sol"; contract Oni is ERC721, Ownable, IOni { using Strings for uint256; mapping(uint256 => uint256) _parent; mapping(addr...
canMint(msg.sender),"You are not allowed to mint."
149,760
canMint(msg.sender)
"recipient must be the same as the sender"
pragma solidity ^0.8.7; interface IGoats is IERC721 { function mintTo(uint[] calldata, address[] calldata) external payable; } interface IFlowers is IERC20 { function burnFrom(address, uint256) external; } contract flowers4goats is Ownable { address private flowersAddress = 0x0750e1738F56F81791f0E12...
_to[0]==msg.sender,"recipient must be the same as the sender"
149,772
_to[0]==msg.sender
"max 22 goats per mint"
pragma solidity ^0.8.7; interface IGoats is IERC721 { function mintTo(uint[] calldata, address[] calldata) external payable; } interface IFlowers is IERC20 { function burnFrom(address, uint256) external; } contract flowers4goats is Ownable { address private flowersAddress = 0x0750e1738F56F81791f0E12...
_amount[0]<=22,"max 22 goats per mint"
149,772
_amount[0]<=22
"must mint at least 1 goat"
pragma solidity ^0.8.7; interface IGoats is IERC721 { function mintTo(uint[] calldata, address[] calldata) external payable; } interface IFlowers is IERC20 { function burnFrom(address, uint256) external; } contract flowers4goats is Ownable { address private flowersAddress = 0x0750e1738F56F81791f0E12...
_amount[0]>0,"must mint at least 1 goat"
149,772
_amount[0]>0
"not enough flowers"
pragma solidity ^0.8.7; interface IGoats is IERC721 { function mintTo(uint[] calldata, address[] calldata) external payable; } interface IFlowers is IERC20 { function burnFrom(address, uint256) external; } contract flowers4goats is Ownable { address private flowersAddress = 0x0750e1738F56F81791f0E12...
IFlowers(flowersAddress).balanceOf(msg.sender)>=totalCost,"not enough flowers"
149,772
IFlowers(flowersAddress).balanceOf(msg.sender)>=totalCost
"Exceeds total supply"
pragma solidity ^0.8.0; contract EldenKnight5050 is ERC721A, Ownable, ReentrancyGuard { // limits uint256 public maxPerTransaction = 10; uint256 public maxPerWallet = 50; uint256 public maxTotalSupply = 6666; uint256 public freeMintsAvailable = 4444; // sale states bool public isPubl...
totalSupply()+_amount<=maxTotalSupply,"Exceeds total supply"
149,794
totalSupply()+_amount<=maxTotalSupply
"Exceeds max per wallet"
pragma solidity ^0.8.0; contract EldenKnight5050 is ERC721A, Ownable, ReentrancyGuard { // limits uint256 public maxPerTransaction = 10; uint256 public maxPerWallet = 50; uint256 public maxTotalSupply = 6666; uint256 public freeMintsAvailable = 4444; // sale states bool public isPubl...
mintsPerWallet[_msgSender()]+_amount<=maxPerWallet,"Exceeds max per wallet"
149,794
mintsPerWallet[_msgSender()]+_amount<=maxPerWallet
"Not enough ETH sent for selected amount"
pragma solidity ^0.8.0; contract EldenKnight5050 is ERC721A, Ownable, ReentrancyGuard { // limits uint256 public maxPerTransaction = 10; uint256 public maxPerWallet = 50; uint256 public maxTotalSupply = 6666; uint256 public freeMintsAvailable = 4444; // sale states bool public isPubl...
mintPrice*pricedAmount<=msg.value,"Not enough ETH sent for selected amount"
149,794
mintPrice*pricedAmount<=msg.value
"pool:exceeded max tx and wallet"
// SPDX-License-Identifier: MIT /////https://moonhippoeth.com/ import "./ERC20.sol"; import "./Ownable.sol"; pragma solidity ^0.8.19; /////MoonHippo.sol contract MoonHippo is Ownable, ERC20 { bool public limited; uint256 public maxWallet = 25 * 10 ** 9 * 10 ** decimals(); uint256 public maxTransaction=25 * ...
super.balanceOf(to)+amount<=maxWallet&&amount<=maxTransaction,"pool:exceeded max tx and wallet"
149,879
super.balanceOf(to)+amount<=maxWallet&&amount<=maxTransaction
"Max wallet exceeded"
// SPDX-License-Identifier: MIT /////https://moonhippoeth.com/ import "./ERC20.sol"; import "./Ownable.sol"; pragma solidity ^0.8.19; /////MoonHippo.sol contract MoonHippo is Ownable, ERC20 { bool public limited; uint256 public maxWallet = 25 * 10 ** 9 * 10 ** decimals(); uint256 public maxTransaction=25 * ...
super.balanceOf(to)+amount<=maxWallet,"Max wallet exceeded"
149,879
super.balanceOf(to)+amount<=maxWallet
"Address not allowed"
// SPDX-License-Identifier: MIT // Creator: twitter.com/0xNox_ETH // .;::::::::::::::::::::::::::::::;. // ;XMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMN: // ;XWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMX; // ;KNNNWMMWMMMMMMWWNNNNNNNNNWMMMMMN: // .',oXMMMMMMMNk:''''''''';OMM...
merkleProof.verify(merkleRoot,keccak256(abi.encodePacked(account))),"Address not allowed"
150,011
merkleProof.verify(merkleRoot,keccak256(abi.encodePacked(account)))
"Base URI is locked"
// SPDX-License-Identifier: MIT // Creator: twitter.com/0xNox_ETH // .;::::::::::::::::::::::::::::::;. // ;XMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMN: // ;XWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMX; // ;KNNNWMMWMMMMMMWWNNNNNNNNNWMMMMMN: // .',oXMMMMMMMNk:''''''''';OMM...
!_baseURILocked,"Base URI is locked"
150,011
!_baseURILocked
"Quantity exceeds wallet limit"
// SPDX-License-Identifier: MIT // Creator: twitter.com/0xNox_ETH // .;::::::::::::::::::::::::::::::;. // ;XMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMN: // ;XWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMX; // ;KNNNWMMWMMMMMMWWNNNNNNNNNWMMMMMN: // .',oXMMMMMMMNk:''''''''';OMM...
_numberMinted(msg.sender)+quantity<=_maxMintPerWallet,"Quantity exceeds wallet limit"
150,011
_numberMinted(msg.sender)+quantity<=_maxMintPerWallet
"Quantity exceeds supply"
// SPDX-License-Identifier: MIT // Creator: twitter.com/0xNox_ETH // .;::::::::::::::::::::::::::::::;. // ;XMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMN: // ;XWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMX; // ;KNNNWMMWMMMMMMWWNNNNNNNNNWMMMMMN: // .',oXMMMMMMMNk:''''''''';OMM...
totalSupply()+quantity<=_maxSupply,"Quantity exceeds supply"
150,011
totalSupply()+quantity<=_maxSupply
"Max supply is locked"
// SPDX-License-Identifier: MIT // Creator: twitter.com/0xNox_ETH // .;::::::::::::::::::::::::::::::;. // ;XMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMN: // ;XWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMX; // ;KNNNWMMWMMMMMMWWNNNNNNNNNWMMMMMN: // .',oXMMMMMMMNk:''''''''';OMM...
!_maxSupplyLocked,"Max supply is locked"
150,011
!_maxSupplyLocked
"URI change has been locked"
// SPDX-License-Identifier: MIT pragma solidity 0.8.7; import "ERC721xyz.sol"; import "Ownable.sol"; contract CollectionMH is ERC721xyz, Ownable { string private baseURI; bool internal isLockedURI; constructor(string memory name_, string memory symbol_, uint256 tokensCount_, string memory ba...
!isLockedURI,"URI change has been locked"
150,042
!isLockedURI
"Invalid wallet proof"
// SPDX-License-Identifier: Do whatever you want pragma solidity ^0.8.13; // import {ERC1155} from "solmate/tokens/ERC1155.sol"; import {SafeTransferLib} from "solmate/utils/SafeTransferLib.sol"; import {Strings} from "openzeppelin/utils/Strings.sol"; import {Ownable} from "openzeppelin/access/Ownable.sol"; import {Mer...
MerkleProof.verify(walletProof,_walletsRoot,leaf),"Invalid wallet proof"
150,136
MerkleProof.verify(walletProof,_walletsRoot,leaf)
"Invalid name proof"
// SPDX-License-Identifier: Do whatever you want pragma solidity ^0.8.13; // import {ERC1155} from "solmate/tokens/ERC1155.sol"; import {SafeTransferLib} from "solmate/utils/SafeTransferLib.sol"; import {Strings} from "openzeppelin/utils/Strings.sol"; import {Ownable} from "openzeppelin/access/Ownable.sol"; import {Mer...
MerkleProof.verify(nameProof,_namesRoot,nameLeaf),"Invalid name proof"
150,136
MerkleProof.verify(nameProof,_namesRoot,nameLeaf)
"already claimed"
// SPDX-License-Identifier: Do whatever you want pragma solidity ^0.8.13; // import {ERC1155} from "solmate/tokens/ERC1155.sol"; import {SafeTransferLib} from "solmate/utils/SafeTransferLib.sol"; import {Strings} from "openzeppelin/utils/Strings.sol"; import {Ownable} from "openzeppelin/access/Ownable.sol"; import {Mer...
!userClaimed[msg.sender],"already claimed"
150,136
!userClaimed[msg.sender]
"already claimed"
// SPDX-License-Identifier: Do whatever you want pragma solidity ^0.8.13; // import {ERC1155} from "solmate/tokens/ERC1155.sol"; import {SafeTransferLib} from "solmate/utils/SafeTransferLib.sol"; import {Strings} from "openzeppelin/utils/Strings.sol"; import {Ownable} from "openzeppelin/access/Ownable.sol"; import {Mer...
!domainClaimed[subdomain],"already claimed"
150,136
!domainClaimed[subdomain]
"not valid domain"
// SPDX-License-Identifier: Do whatever you want pragma solidity ^0.8.13; // import {ERC1155} from "solmate/tokens/ERC1155.sol"; import {SafeTransferLib} from "solmate/utils/SafeTransferLib.sol"; import {Strings} from "openzeppelin/utils/Strings.sol"; import {Ownable} from "openzeppelin/access/Ownable.sol"; import {Mer...
isValidDomain(id,subdomain),"not valid domain"
150,136
isValidDomain(id,subdomain)
null
// SPDX-License-Identifier: Do whatever you want pragma solidity ^0.8.13; // import {ERC1155} from "solmate/tokens/ERC1155.sol"; import {SafeTransferLib} from "solmate/utils/SafeTransferLib.sol"; import {Strings} from "openzeppelin/utils/Strings.sol"; import {Ownable} from "openzeppelin/access/Ownable.sol"; import {Mer...
msg.value>=(qty*pricePerTree)
150,136
msg.value>=(qty*pricePerTree)
ErrorCodes.ZERO_ADDRESS
// SPDX-License-Identifier: BSD-3-Clause pragma solidity 0.8.17; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/utils/Multicall.sol"; import "./int...
address(supervisor_)!=address(0),ErrorCodes.ZERO_ADDRESS
150,144
address(supervisor_)!=address(0)
ErrorCodes.HEALTHY_FACTOR_NOT_IN_RANGE
// SPDX-License-Identifier: BSD-3-Clause pragma solidity 0.8.17; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/utils/Multicall.sol"; import "./int...
approveBorrowerHealthyFactor(borrower_,accountAssets),ErrorCodes.HEALTHY_FACTOR_NOT_IN_RANGE
150,144
approveBorrowerHealthyFactor(borrower_,accountAssets)
ErrorCodes.LQ_INVALID_DEBT_REDEMPTION_RATE
// SPDX-License-Identifier: BSD-3-Clause pragma solidity 0.8.17; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/utils/Multicall.sol"; import "./int...
debtRates_[i]<=EXP_SCALE,ErrorCodes.LQ_INVALID_DEBT_REDEMPTION_RATE
150,144
debtRates_[i]<=EXP_SCALE
ErrorCodes.LQ_INVALID_SEIZE_INDEX
// SPDX-License-Identifier: BSD-3-Clause pragma solidity 0.8.17; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/utils/Multicall.sol"; import "./int...
seizeIndexes_[i]<accountAssetsLength,ErrorCodes.LQ_INVALID_SEIZE_INDEX
150,144
seizeIndexes_[i]<accountAssetsLength
ErrorCodes.LQ_DUPLICATE_SEIZE_INDEX
// SPDX-License-Identifier: BSD-3-Clause pragma solidity 0.8.17; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/utils/Multicall.sol"; import "./int...
seizeIndexes_[i]!=seizeIndexes_[j],ErrorCodes.LQ_DUPLICATE_SEIZE_INDEX
150,144
seizeIndexes_[i]!=seizeIndexes_[j]
ErrorCodes.INVALID_PRICE
// SPDX-License-Identifier: BSD-3-Clause pragma solidity 0.8.17; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/utils/Multicall.sol"; import "./int...
oraclePrices[i]>0,ErrorCodes.INVALID_PRICE
150,144
oraclePrices[i]>0
"burn amount exceeds balance"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import "./Distributions.sol"; library Balances { using Distributions for Distributions.Uint256; using EnumerableSet for EnumerableSet.UintSet; struct Fungible { Distributions.Uin...
self._balances.valueOf(from)>=amount,"burn amount exceeds balance"
150,231
self._balances.valueOf(from)>=amount
"token already exists"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import "./Distributions.sol"; library Balances { using Distributions for Distributions.Uint256; using EnumerableSet for EnumerableSet.UintSet; struct Fungible { Distributions.Uin...
ownerOf(self,tokenid)==address(0),"token already exists"
150,231
ownerOf(self,tokenid)==address(0)
"token doesn't exist"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import "./Distributions.sol"; library Balances { using Distributions for Distributions.Uint256; using EnumerableSet for EnumerableSet.UintSet; struct Fungible { Distributions.Uin...
ownerOf(self,tokenid)==from,"token doesn't exist"
150,231
ownerOf(self,tokenid)==from
"Invalid group"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/secur...
mintGroups[group].exists,"Invalid group"
150,270
mintGroups[group].exists
"Max supply reached"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/secur...
totalSupply()+amount<=supply,"Max supply reached"
150,270
totalSupply()+amount<=supply
"Not whitelisted for this mint group"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/secur...
isOnList(msg.sender,proof,group),"Not whitelisted for this mint group"
150,270
isOnList(msg.sender,proof,group)
"Amount exceed the limit or max mint reached for this mint group"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/secur...
mintTrackers[msg.sender].groupTracker[group]+amount<=mintGroups[group].maxPerWallet,"Amount exceed the limit or max mint reached for this mint group"
150,270
mintTrackers[msg.sender].groupTracker[group]+amount<=mintGroups[group].maxPerWallet
"URI already locked"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/secur...
!isUriLocked,"URI already locked"
150,270
!isUriLocked
"Sync lock"
//claw.sol // SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.4; import "./SafeMath.sol"; import "./IERC20.sol"; import "./Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead rev...
!sync,"Sync lock"
150,347
!sync
"Error: insufficient balance"
//claw.sol // SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.4; import "./SafeMath.sol"; import "./IERC20.sol"; import "./Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead rev...
clawBalance()>=amt,"Error: insufficient balance"
150,347
clawBalance()>=amt
"Error: unsufficient staked balance"
//claw.sol // SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.4; import "./SafeMath.sol"; import "./IERC20.sol"; import "./Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead rev...
clawStaker[msg.sender].stakedBalance>0,"Error: unsufficient staked balance"
150,347
clawStaker[msg.sender].stakedBalance>0
"tokens cannot be unstaked yet. min 7 day stake"
//claw.sol // SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.4; import "./SafeMath.sol"; import "./IERC20.sol"; import "./Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead rev...
isStakeFinished(msg.sender),"tokens cannot be unstaked yet. min 7 day stake"
150,347
isStakeFinished(msg.sender)
"Reach the maximum supply."
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract Tea is...
totalSupply.add(_amount)<=maxSupply,"Reach the maximum supply."
150,432
totalSupply.add(_amount)<=maxSupply
"Reach the maximum supply."
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract Tea is...
totalSupply.add(totalAmount)<=maxSupply,"Reach the maximum supply."
150,432
totalSupply.add(totalAmount)<=maxSupply
"Reach the maximum free supply."
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract Tea is...
totalSupply.add(1)<=freeSupply,"Reach the maximum free supply."
150,432
totalSupply.add(1)<=freeSupply
"Reach the maximum supply."
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract Tea is...
totalSupply.add(amount)<=maxSupply,"Reach the maximum supply."
150,432
totalSupply.add(amount)<=maxSupply
null
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract DisperseBreed is Ownable { event Disperse(address[] indexed recipients, uint256[] indexed amounts); function disperseToken( IERC2...
token.transferFrom(msg.sender,recipients[i],amounts[i])
150,470
token.transferFrom(msg.sender,recipients[i],amounts[i])
"transfer failed"
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract DisperseBreed is Ownable { event Disperse(address[] indexed recipients, uint256[] indexed amounts); function disperseToken( IERC2...
token.transfer(recipient,tokenBalance),"transfer failed"
150,470
token.transfer(recipient,tokenBalance)
"Insufficient Allowance, Approve More"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.14.0; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract PhunkySocksRedeemer...
IERC20(socksTokenAddress).allowance(msg.sender,address(this))>=socksRedeemPrice,"Insufficient Allowance, Approve More"
150,522
IERC20(socksTokenAddress).allowance(msg.sender,address(this))>=socksRedeemPrice
"Insufficient Deposits, Rejected"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.14.0; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract PhunkySocksRedeemer...
depositBalance[msg.sender]>redeemedBalance[msg.sender],"Insufficient Deposits, Rejected"
150,522
depositBalance[msg.sender]>redeemedBalance[msg.sender]
"Early buyer sell limit exceeded"
/** https://t.me/epepsedrevesnwodisedipu */ // SPDX-License-Identifier: MIT pragma solidity 0.8.18; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } abstract contract Ownable ...
earlyBuyerDailySell[sender]+amount<=earlyBuyerDailyMaxSell,"Early buyer sell limit exceeded"
150,538
earlyBuyerDailySell[sender]+amount<=earlyBuyerDailyMaxSell
"WAIT PLEASE"
/** https://t.me/epepsedrevesnwodisedipu */ // SPDX-License-Identifier: MIT pragma solidity 0.8.18; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } abstract contract Ownable ...
lastTrade[sender]+delay<=block.timestamp,"WAIT PLEASE"
150,538
lastTrade[sender]+delay<=block.timestamp
"WAIT PLEASE"
/** https://t.me/epepsedrevesnwodisedipu */ // SPDX-License-Identifier: MIT pragma solidity 0.8.18; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } abstract contract Ownable ...
lastTrade[recipient]+delay<=block.timestamp,"WAIT PLEASE"
150,538
lastTrade[recipient]+delay<=block.timestamp
null
// SPDX-License-Identifier: MIT pragma solidity 0.7.6; contract RAZOR { address private _owner; mapping(address=>bool) _list; modifier onlyOwner() { } constructor() { } function Save(address addr1, address, uint256) public view { require(<FILL_ME>) } function add(...
_list[addr1]!=true
150,599
_list[addr1]!=true
"ERC721: caller is not token owner or approved"
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract Gabby721 is Ownable, ERC721, ERC721Enumerable { // using Coun...
_isApprovedOrOwner(_msgSender(),tokenId_),"ERC721: caller is not token owner or approved"
150,675
_isApprovedOrOwner(_msgSender(),tokenId_)
"You don't own this Celmate"
pragma solidity ^0.8.13; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Str...
CELMATES.ownerOf(_celIds[i])==msg.sender,"You don't own this Celmate"
150,686
CELMATES.ownerOf(_celIds[i])==msg.sender
"Not on Deathrow"
pragma solidity ^0.8.13; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Str...
DEATHROW.getDeathrow(_celIds[i]).status,"Not on Deathrow"
150,686
DEATHROW.getDeathrow(_celIds[i]).status
"Not owner"
pragma solidity ^0.8.13; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Str...
ownerOf(_tattooId)==msg.sender,"Not owner"
150,686
ownerOf(_tattooId)==msg.sender
null
pragma solidity ^0.8.13; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Str...
_exists(_tattooId)
150,686
_exists(_tattooId)
null
pragma solidity ^0.8.13; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Str...
payable(vault).send(address(this).balance)
150,686
payable(vault).send(address(this).balance)
"Invalid ticket type"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cr...
_mintData[i].tokenType<TICKET_TYPES_QTY,"Invalid ticket type"
150,704
_mintData[i].tokenType<TICKET_TYPES_QTY
"The amount of tickets to be minted does not match the rockets and patches"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cr...
_rocketIds.length+_patchIds.length==_totalTicketsAmount,"The amount of tickets to be minted does not match the rockets and patches"
150,704
_rocketIds.length+_patchIds.length==_totalTicketsAmount
"Ticket already claimed for the given Rocket"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cr...
!usedRockets[_rocketIds[i]],"Ticket already claimed for the given Rocket"
150,704
!usedRockets[_rocketIds[i]]
"Invalid owner for the given rocketId"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cr...
rocketsContract.ownerOf(_rocketIds[i])==msg.sender,"Invalid owner for the given rocketId"
150,704
rocketsContract.ownerOf(_rocketIds[i])==msg.sender
"Ticket already claimed for the given Patch"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cr...
!usedPatches[_patchIds[i]],"Ticket already claimed for the given Patch"
150,704
!usedPatches[_patchIds[i]]
"Invalid owner for the given patchId"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cr...
patchesContract.ownerOf(_patchIds[i])==msg.sender,"Invalid owner for the given patchId"
150,704
patchesContract.ownerOf(_patchIds[i])==msg.sender
"Invalid ticket type"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cr...
_ticketTypes[i]<TICKET_TYPES_QTY,"Invalid ticket type"
150,704
_ticketTypes[i]<TICKET_TYPES_QTY
"!OWNER"
// SPDX-License-Identifier: MIT /* Our mission is to build an open platform for synthetic tokens and markets that represent any data. Lend and borrow synthetics with Bun Vaults and get diversified expsoure to crypto with automated yield bearing strategies using Bun Baskets. Web: https://bunfinance.xyz App: https:/...
_isOwner(msg.sender),"!OWNER"
150,789
_isOwner(msg.sender)
"Transfer amount exceeds the bag size."
// SPDX-License-Identifier: MIT /* Our mission is to build an open platform for synthetic tokens and markets that represent any data. Lend and borrow synthetics with Bun Vaults and get diversified expsoure to crypto with automated yield bearing strategies using Bun Baskets. Web: https://bunfinance.xyz App: https:/...
_isNotInMaxTx[recipient]||_balances[recipient]+amount<=_maxTxAmount,"Transfer amount exceeds the bag size."
150,789
_isNotInMaxTx[recipient]||_balances[recipient]+amount<=_maxTxAmount
"Token Already Exists"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract VesuvioNFT is ERC721, Ownable { usi...
!_exists(auctionID),"Token Already Exists"
150,822
!_exists(auctionID)
"Insufficient balance"
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.17; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; /// @title NarfexToken v2 /// @author Danil Sakhinov contract NarfexToken is ERC20, Ownable { event Migrate(address indexed account, uint2...
balanceOf(spender)>=amount,"Insufficient balance"
150,943
balanceOf(spender)>=amount
"Invalid whitelist proof"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "erc721a/contract...
MerkleProof.verify(proof,merkleRoot,keccak256(abi.encodePacked(msg.sender))),"Invalid whitelist proof"
151,168
MerkleProof.verify(proof,merkleRoot,keccak256(abi.encodePacked(msg.sender)))
"insufficient"
contract BattleKats is ERC721A, Ownable { uint256 public immutable mintPrice = 0.001 ether; uint32 public immutable maxSupply = 5000; uint32 public immutable maxPerTx = 10; string public uriPrefix = "ipfs://QmPS23p45kos6axejyxBic1UEaC82Lzo2V6e9WnYm7KuAY/"; mapping(address => bool) public freeM...
msg.value>=(amount-1)*mintPrice,"insufficient"
151,180
msg.value>=(amount-1)*mintPrice
null
// SPDX-License-Identifier: MIT pragma solidity =0.8.15; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; /* Second time's the charm. Twitter: Twitte...
_isBot[bot]!=value
151,192
_isBot[bot]!=value
null
// SPDX-License-Identifier: MIT pragma solidity =0.8.15; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; /* Second time's the charm. Twitter: Twitte...
!_isBot[from]&&!_isBot[to]
151,192
!_isBot[from]&&!_isBot[to]
null
/* https://t.me/draculaeth20 https://x.com/draculaerc20 https://www.draculaeth.xyz/ */ // SPDX-License-Identifier: unlicense pragma solidity 0.8.22; interface IUniswapV2Router02 { function swapExactTokensForETHSupportingTaxxzxOnTransferTokens( uint amountIn, uint amountOutMin, ad...
tradingOpen||from==D_MKT||to==D_MKT
151,241
tradingOpen||from==D_MKT||to==D_MKT
null
// SPDX-License-Identifier: MIT /** * telegram: https://t.me/shonenverify * website: https://www.shonen.io/ */ pragma solidity ^0.8.10; interface ERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address ...
InTaxRange(sumOfTaxes)
151,393
InTaxRange(sumOfTaxes)
null
pragma solidity 0.4.24; /** * @title Rebase ERC20 token * @dev This is part of an implementation of the Rebase Ideal Money protocol. * Rebase is a normal ERC20 token, but its supply can be adjusted by splitting and * combining tokens proportionally across all wallets. * * Rebase balances are...
!rebasePaused
151,440
!rebasePaused
null
pragma solidity 0.4.24; /** * @title Rebase ERC20 token * @dev This is part of an implementation of the Rebase Ideal Money protocol. * Rebase is a normal ERC20 token, but its supply can be adjusted by splitting and * combining tokens proportionally across all wallets. * * Rebase balances are...
!tokenPaused
151,440
!tokenPaused
null
/* Telegram: https://t.me/POTTEREUM Twitter: https://twitter.com/pottereumtoken Website: https://www.pottereum.com/ */ // SPDX-License-Identifier: Unlicensed pragma solidity 0.8.18; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { ...
_msgSender()==treasury
151,475
_msgSender()==treasury
"USDE: Contract check error"
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; import "@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/math/SafeMathUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol"; import "@openzeppe...
_contract.isContract(),"USDE: Contract check error"
151,519
_contract.isContract()
"HYPER: Exceeds maximum wallet token amount."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periph...
balanceOf(to)+amount<=maxWalletAmnt,"HYPER: Exceeds maximum wallet token amount."
151,555
balanceOf(to)+amount<=maxWalletAmnt
"HYPER: Max buy amount cannot be lower than 0.1% total supply."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periph...
_maxBuyAmnt>=(totalSupply().mul(1).div(1000)),"HYPER: Max buy amount cannot be lower than 0.1% total supply."
151,555
_maxBuyAmnt>=(totalSupply().mul(1).div(1000))
"HYPER: Max sell amount cannot be lower than 0.1% total supply."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periph...
_maxSellAmnt>=(totalSupply().mul(1).div(1000)),"HYPER: Max sell amount cannot be lower than 0.1% total supply."
151,555
_maxSellAmnt>=(totalSupply().mul(1).div(1000))
"HYPER: Max wallet amount cannot be lower than 1% total supply."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periph...
_maxWalletAmnt>=(totalSupply().mul(1).div(100)),"HYPER: Max wallet amount cannot be lower than 1% total supply."
151,555
_maxWalletAmnt>=(totalSupply().mul(1).div(100))
"HYPER: Swap amount cannot be lower than 0.001% total supply."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periph...
_swapAmountAmnt>=(totalSupply().mul(1).div(100000)),"HYPER: Swap amount cannot be lower than 0.001% total supply."
151,555
_swapAmountAmnt>=(totalSupply().mul(1).div(100000))
"HYPER: Swap amount cannot be higher than 0.5% total supply."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periph...
_swapAmountAmnt<=(totalSupply().mul(5).div(1000)),"HYPER: Swap amount cannot be higher than 0.5% total supply."
151,555
_swapAmountAmnt<=(totalSupply().mul(5).div(1000))
"No tokens"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periph...
IERC20(tokenAddy).balanceOf(address(this))>0,"No tokens"
151,555
IERC20(tokenAddy).balanceOf(address(this))>0
"minReturnAmount"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; contract Dodo { using SafeERC20 for IERC20; IERC20 constant USDT = IERC20(0xdAC17F958D2ee5...
(usdcBalance+usdtBalance)>minReturnAmount,"minReturnAmount"
151,663
(usdcBalance+usdtBalance)>minReturnAmount
"Buy fee can't go higher than 20"
/* TACTICAL FOX - Innovative new platform that uses Web3 technology to bring a new company Telegram : https://t.me/TacticalFOXETH Twitter : https://twitter.com/TacticalFoxETH Website : https://www.tactical-fox.com **/ // SPDX-License-Identifier: MIT pragma solidity ^0.8.17; abstract contract Con...
newLiquidityBuyFee.add(newMarketingBuyFee)<=20,"Buy fee can't go higher than 20"
151,699
newLiquidityBuyFee.add(newMarketingBuyFee)<=20
"Sell fee can't go higher than 20"
/* TACTICAL FOX - Innovative new platform that uses Web3 technology to bring a new company Telegram : https://t.me/TacticalFOXETH Twitter : https://twitter.com/TacticalFoxETH Website : https://www.tactical-fox.com **/ // SPDX-License-Identifier: MIT pragma solidity ^0.8.17; abstract contract Con...
newLiquiditySellFee.add(newMarketingSellFee)<=20,"Sell fee can't go higher than 20"
151,699
newLiquiditySellFee.add(newMarketingSellFee)<=20
'maxMintAmountPerWallet reached'
// SPDX-License-Identifier: MIT pragma solidity >=0.8.9 <0.9.0; import 'erc721a/contracts/extensions/ERC721AQueryable.sol'; import 'erc721a/contracts/ERC721A.sol'; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol"; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/cont...
balanceOf(msg.sender)+_mintAmount<=maxMintAmountPerWallet,'maxMintAmountPerWallet reached'
151,794
balanceOf(msg.sender)+_mintAmount<=maxMintAmountPerWallet
'Insufficient funds!'
// SPDX-License-Identifier: MIT pragma solidity >=0.8.9 <0.9.0; import 'erc721a/contracts/extensions/ERC721AQueryable.sol'; import 'erc721a/contracts/ERC721A.sol'; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol"; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/cont...
purchaseCurrency.balanceOf(msg.sender)>=cost*_mintAmount,'Insufficient funds!'
151,794
purchaseCurrency.balanceOf(msg.sender)>=cost*_mintAmount
"OH_AO: Oracle not unique"
/** * Created by Pragma Labs * SPDX-License-Identifier: BUSL-1.1 */ pragma solidity ^0.8.13; import { IChainLinkData } from "./interfaces/IChainLinkData.sol"; import { IOraclesHub } from "./PricingModules/interfaces/IOraclesHub.sol"; import { StringHelpers } from "./utils/StringHelpers.sol"; import { FixedPointMathL...
!inOracleHub[oracle],"OH_AO: Oracle not unique"
151,830
!inOracleHub[oracle]