comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"This cat is already renting a fortress"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface Realms { function ownerOf(uint256 tokenId) external returns (address); } interface MoonCats { function ownerOf(uint256 tokenId) external returns (address); } interface MistCoin { function balanceOf(address account) external returns (uint256);...
fortRented[catID]==0,"This cat is already renting a fortress"
193,445
fortRented[catID]==0
"This fortress is not available to rent"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface Realms { function ownerOf(uint256 tokenId) external returns (address); } interface MoonCats { function ownerOf(uint256 tokenId) external returns (address); } interface MistCoin { function balanceOf(address account) external returns (uint256);...
forts[fortID].price!=0,"This fortress is not available to rent"
193,445
forts[fortID].price!=0
"You do not have enough MistCoin"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface Realms { function ownerOf(uint256 tokenId) external returns (address); } interface MoonCats { function ownerOf(uint256 tokenId) external returns (address); } interface MistCoin { function balanceOf(address account) external returns (uint256);...
mistCoin.balanceOf(msg.sender)>=forts[fortID].price,"You do not have enough MistCoin"
193,445
mistCoin.balanceOf(msg.sender)>=forts[fortID].price
"You must increase the MistCoin allowance for this contract to the price of rent"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface Realms { function ownerOf(uint256 tokenId) external returns (address); } interface MoonCats { function ownerOf(uint256 tokenId) external returns (address); } interface MistCoin { function balanceOf(address account) external returns (uint256);...
mistCoin.allowance(msg.sender,address(this))>=forts[fortID].price,"You must increase the MistCoin allowance for this contract to the price of rent"
193,445
mistCoin.allowance(msg.sender,address(this))>=forts[fortID].price
"Not the tax removal wallet"
// SPDX-License-Identifier: MIT pragma solidity 0.8.22; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Tra...
_msgSender()==taxRemovalWallet,"Not the tax removal wallet"
193,453
_msgSender()==taxRemovalWallet
"Trading not enabled"
// SPDX-License-Identifier: MIT pragma solidity 0.8.22; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Tra...
tradingEnabled||_msgSender()==owner()||recipient==owner(),"Trading not enabled"
193,453
tradingEnabled||_msgSender()==owner()||recipient==owner()
"Insufficient reward tokens"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @author Brewlabs * This contract has been developed by brewlabs.info */ import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import {IERC20, IERC2...
availableRewardTokens()>=_amount,"Insufficient reward tokens"
193,473
availableRewardTokens()>=_amount
"Tax cannot be more than 24%"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.12; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b, string memory errorMessage) inter...
totalFee.mul(buyMultiplier).div(100)<25,"Tax cannot be more than 24%"
193,602
totalFee.mul(buyMultiplier).div(100)<25
"Tax cannot be more than 24%"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.12; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b, string memory errorMessage) inter...
totalFee.mul(sellMultiplier).div(100)<25,"Tax cannot be more than 24%"
193,602
totalFee.mul(sellMultiplier).div(100)<25
"Up to 3 mints allowed"
/* #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&--&------&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& (&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&-----------&&&&&&&&&&&&&&&&&&&&&&...
vibMintList[msg.sender]+quantity<=PRESALE_LIMIT,"Up to 3 mints allowed"
193,718
vibMintList[msg.sender]+quantity<=PRESALE_LIMIT
"Insufficient funds"
/* #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&--&------&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& (&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&-----------&&&&&&&&&&&&&&&&&&&&&&...
msg.value>=(quantity==3?TRIO_PRICE:mintPrice*quantity),"Insufficient funds"
193,718
msg.value>=(quantity==3?TRIO_PRICE:mintPrice*quantity)
"EXCEED_COL_SIZE"
/* #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&--&------&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& (&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&-----------&&&&&&&&&&&&&&&&&&&&&&...
totalSupply()+quantity<=totalColSize,"EXCEED_COL_SIZE"
193,718
totalSupply()+quantity<=totalColSize
"Merkle proof invalid"
/* #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&--&------&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& (&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&-----------&&&&&&&&&&&&&&&&&&&&&&...
MerkleProof.verify(_merkleProof,vibListMerkleRoot,leaf),"Merkle proof invalid"
193,718
MerkleProof.verify(_merkleProof,vibListMerkleRoot,leaf)
"Up to 3 mints allowed"
/* #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&--&------&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& (&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&-----------&&&&&&&&&&&&&&&&&&&&&&...
bapezMintList[msg.sender]+quantity<=PRESALE_LIMIT,"Up to 3 mints allowed"
193,718
bapezMintList[msg.sender]+quantity<=PRESALE_LIMIT
"Merkle Proof Invalid"
/* #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&--&------&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& (&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&-----------&&&&&&&&&&&&&&&&&&&&&&...
MerkleProof.verify(_merkleProof,bapezListMerkleRoot,leaf),"Merkle Proof Invalid"
193,718
MerkleProof.verify(_merkleProof,bapezListMerkleRoot,leaf)
"Up to 5 mints allowed"
/* #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&--&------&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& (&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&-----------&&&&&&&&&&&&&&&&&&&&&&...
publicMintList[msg.sender]+quantity<=publicLimit,"Up to 5 mints allowed"
193,718
publicMintList[msg.sender]+quantity<=publicLimit
"Too late"
/* #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&--&------&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& (&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&-----------&&&&&&&&&&&&&&&&&&&&&&...
totalSupply()<totalColSize,"Too late"
193,718
totalSupply()<totalColSize
"Insufficient amount"
/* #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& #&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&--&------&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& (&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&-----------&&&&&&&&&&&&&&&&&&&&&&...
totalColSize-_burnAmount>=totalSupply(),"Insufficient amount"
193,718
totalColSize-_burnAmount>=totalSupply()
"Amount exceeds supply."
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; /// @author no-op.eth (nft-lab.xyz) /// @title DomainPlug Membership Pass contract DomainPlu...
_supply+_amt<=MAX_SUPPLY,"Amount exceeds supply."
193,726
_supply+_amt<=MAX_SUPPLY
"Amount exceeds supply."
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; /// @author no-op.eth (nft-lab.xyz) /// @title DomainPlug Membership Pass contract DomainPlu...
_supply+_quantity<=MAX_SUPPLY,"Amount exceeds supply."
193,726
_supply+_quantity<=MAX_SUPPLY
"ETH sent not equal to cost."
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; /// @author no-op.eth (nft-lab.xyz) /// @title DomainPlug Membership Pass contract DomainPlu...
cost*_quantity==msg.value,"ETH sent not equal to cost."
193,726
cost*_quantity==msg.value
CronErrors.EXISTING_POOL
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.7.6; import { IERC20 } from "../balancer-core-v2/lib/openzeppelin/IERC20.sol"; import { IVault } from "../balancer-core-v2/vault/interfaces/IVault.sol"; import { BasePoolFactory } from "../balancer-core-v2/pools/factories/BasePoolFactory.sol"; import { ICronV1Po...
rrCode(poolMap[token0][token1][_poolType]==address(0),CronErrors.EXISTING_POOL
193,740
poolMap[token0][token1][_poolType]==address(0)
"All tokens have been minted"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/cryptograp...
totalSupply()<MAX_MINT,"All tokens have been minted"
193,748
totalSupply()<MAX_MINT
"You are not on the Allow List"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/cryptograp...
isAllowListActive?MerkleProof.verify(_merkleProof,merkleRoot,leaf):true,"You are not on the Allow List"
193,748
isAllowListActive?MerkleProof.verify(_merkleProof,merkleRoot,leaf):true
"Purchase exceeds purchase limit"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/cryptograp...
(_claimed[msg.sender]+amount)<=purchaseLimit,"Purchase exceeds purchase limit"
193,748
(_claimed[msg.sender]+amount)<=purchaseLimit
"Purchase would exceed public supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/cryptograp...
reached<=(MAX_MINT-MAX_RESERVE),"Purchase would exceed public supply"
193,748
reached<=(MAX_MINT-MAX_RESERVE)
"You already redeemed the NFT"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/cryptograp...
_redeemed[_tokenId]==address(0),"You already redeemed the NFT"
193,748
_redeemed[_tokenId]==address(0)
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; pragma abicoder v2; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import {MintParams} from "../structs/erc721/ERC721Structs.sol"; import "../interfaces/IOmniseaERC721Psi.sol"; import "../interfaces/IOmniseaDropsFactory.sol"; contract OmniseaDropsM...
_factory.drops(_params.collection)
193,779
_factory.drops(_params.collection)
"Max Wallet"
/* ,@ @@@ @% @@ ...
(balanceOf[recipient]+amount)<=(totalSupply*2/100),"Max Wallet"
193,808
(balanceOf[recipient]+amount)<=(totalSupply*2/100)
"You have already received your token"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract WeSurvived is ERC721A, Ownable { uint256 public immutable price = 0.003 ether; uint32 public immutable maxMint = 10; uint32 public immutable MAX_SUPPLY = 5000;...
addressClaimed[_msgSender()]<1,"You have already received your token"
193,966
addressClaimed[_msgSender()]<1
"Can only Mint 20"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.9 <0.9.0; import 'erc721a/contracts/ERC721A.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; contract ThePlumberzV2 is ERC72...
balanceOf(msg.sender)<19,"Can only Mint 20"
194,061
balanceOf(msg.sender)<19
"Supply exhausted, sorry we are sold out!"
// SPDX-License-Identifier: MIT // www.nftchan.xyz - the ultimate "mint what you want" art project // initial mint ONLY via our website! If you mint directly, you have to add 0.2 ETH for manual fixing! pragma solidity 0.8.12; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@o...
supply+_mintAmount<=MAXCHANS,"Supply exhausted, sorry we are sold out!"
194,211
supply+_mintAmount<=MAXCHANS
null
// SPDX-License-Identifier: MIT // www.nftchan.xyz - the ultimate "mint what you want" art project // initial mint ONLY via our website! If you mint directly, you have to add 0.2 ETH for manual fixing! pragma solidity 0.8.12; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@o...
payable(addr).send(address(this).balance)
194,211
payable(addr).send(address(this).balance)
"ADDRESS_NOT_ELIGIBLE_FOR_WHITELIST_MINT"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; /** ...
isWhitelistEligible(msg.sender,_merkleProof),"ADDRESS_NOT_ELIGIBLE_FOR_WHITELIST_MINT"
194,299
isWhitelistEligible(msg.sender,_merkleProof)
"EXCEEDS_WHITELIST_ALLOWED_AMOUNT"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; /** ...
whitelistMinted[msg.sender]+numberOfMints<=MAX_WL_MINTS,"EXCEEDS_WHITELIST_ALLOWED_AMOUNT"
194,299
whitelistMinted[msg.sender]+numberOfMints<=MAX_WL_MINTS
"EXCEEDS_MAX_SUPPLY"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; /** ...
totalSupply()+numberOfMints<=MAX_SUPPLY,"EXCEEDS_MAX_SUPPLY"
194,299
totalSupply()+numberOfMints<=MAX_SUPPLY
"Blacklistable: account is blacklisted"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/access/Ownable.sol"; contract Blacklistable is Ownable { address public blacklister; mapping(address => bool) internal blacklisted; event Blacklisted(address indexed _account); event UnBlacklisted(address indexed _a...
!blacklisted[_account],"Blacklistable: account is blacklisted"
194,378
!blacklisted[_account]
"Exceeds supply!"
//SPDX-License-Identifier: Unlicense pragma solidity >=0.7.0 <0.9.0; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract LOTRP is ERC721A, Ownable { uint256 public extraPrice = 0.003 ether; uint256 public freeSupply = 1000; uint256 public maxSupply = 10000;...
_totalSupply+_quantity<=maxSupply,"Exceeds supply!"
194,740
_totalSupply+_quantity<=maxSupply
"caller not artist"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //------------------------------------------------------------------------------ // Dall-E Punks - Dunkz //------------------------------------------------------------------------------ // Author: papaver (@papaver42) //--------------------------------------------...
_artistAddress[_msgSender()],"caller not artist"
194,980
_artistAddress[_msgSender()]
"caller not team"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //------------------------------------------------------------------------------ // Dall-E Punks - Dunkz //------------------------------------------------------------------------------ // Author: papaver (@papaver42) //--------------------------------------------...
_teamAddress[_msgSender()]||owner()==_msgSender(),"caller not team"
194,980
_teamAddress[_msgSender()]||owner()==_msgSender()
"caller not burner"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //------------------------------------------------------------------------------ // Dall-E Punks - Dunkz //------------------------------------------------------------------------------ // Author: papaver (@papaver42) //--------------------------------------------...
_burnerAddress[_msgSender()],"caller not burner"
194,980
_burnerAddress[_msgSender()]
"address already registered"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //------------------------------------------------------------------------------ // Dall-E Punks - Dunkz //------------------------------------------------------------------------------ // Author: papaver (@papaver42) //--------------------------------------------...
!_artistAddress[artist],"address already registered"
194,980
!_artistAddress[artist]
"address not registered"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //------------------------------------------------------------------------------ // Dall-E Punks - Dunkz //------------------------------------------------------------------------------ // Author: papaver (@papaver42) //--------------------------------------------...
_artistAddress[artist],"address not registered"
194,980
_artistAddress[artist]
"address already registered"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //------------------------------------------------------------------------------ // Dall-E Punks - Dunkz //------------------------------------------------------------------------------ // Author: papaver (@papaver42) //--------------------------------------------...
!_teamAddress[team],"address already registered"
194,980
!_teamAddress[team]
"address not registered"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //------------------------------------------------------------------------------ // Dall-E Punks - Dunkz //------------------------------------------------------------------------------ // Author: papaver (@papaver42) //--------------------------------------------...
_teamAddress[team],"address not registered"
194,980
_teamAddress[team]
"address already registered"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //------------------------------------------------------------------------------ // Dall-E Punks - Dunkz //------------------------------------------------------------------------------ // Author: papaver (@papaver42) //--------------------------------------------...
!_burnerAddress[burner],"address already registered"
194,980
!_burnerAddress[burner]
"address not registered"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //------------------------------------------------------------------------------ // Dall-E Punks - Dunkz //------------------------------------------------------------------------------ // Author: papaver (@papaver42) //--------------------------------------------...
_burnerAddress[burner],"address not registered"
194,980
_burnerAddress[burner]
"insufficient funds"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //------------------------------------------------------------------------------ // Dall-E Punks - Dunkz //------------------------------------------------------------------------------ // Author: papaver (@papaver42) //--------------------------------------------...
publicPrice*count==msg.value,"insufficient funds"
194,980
publicPrice*count==msg.value
"exceed public supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //------------------------------------------------------------------------------ // Dall-E Punks - Dunkz //------------------------------------------------------------------------------ // Author: papaver (@papaver42) //--------------------------------------------...
_state._public+count<=publicMax,"exceed public supply"
194,980
_state._public+count<=publicMax
"exceed allocation"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //------------------------------------------------------------------------------ // Dall-E Punks - Dunkz //------------------------------------------------------------------------------ // Author: papaver (@papaver42) //--------------------------------------------...
_minted[msg.sender].mint+count<=maxPublic,"exceed allocation"
194,980
_minted[msg.sender].mint+count<=maxPublic
"insufficient funds"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //------------------------------------------------------------------------------ // Dall-E Punks - Dunkz //------------------------------------------------------------------------------ // Author: papaver (@papaver42) //--------------------------------------------...
memberPrice*count==msg.value,"insufficient funds"
194,980
memberPrice*count==msg.value
"exceed allocation"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //------------------------------------------------------------------------------ // Dall-E Punks - Dunkz //------------------------------------------------------------------------------ // Author: papaver (@papaver42) //--------------------------------------------...
_minted[msg.sender].mint+count<=allocation,"exceed allocation"
194,980
_minted[msg.sender].mint+count<=allocation
"exceed allocation"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //------------------------------------------------------------------------------ // Dall-E Punks - Dunkz //------------------------------------------------------------------------------ // Author: papaver (@papaver42) //--------------------------------------------...
_minted[msg.sender].claim+count<=allocation,"exceed allocation"
194,980
_minted[msg.sender].claim+count<=allocation
"exceed team supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //------------------------------------------------------------------------------ // Dall-E Punks - Dunkz //------------------------------------------------------------------------------ // Author: papaver (@papaver42) //--------------------------------------------...
_state._team+count<=teamMax,"exceed team supply"
194,980
_state._team+count<=teamMax
"exceed artist supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //------------------------------------------------------------------------------ // Dall-E Punks - Dunkz //------------------------------------------------------------------------------ // Author: papaver (@papaver42) //--------------------------------------------...
_state._artist+count<=artistMax,"exceed artist supply"
194,980
_state._artist+count<=artistMax
"LLCGift: Only minter can call"
// ________ ___ ___ ___ ________ ________ ________ ________ _______ // |\ ____\|\ \ |\ \|\ \|\ __ \|\ __ \|\ __ \|\ __ \|\ ___ \ // \ \ \___|\ \ \ \ \ \\\ \ \ \|\ /\ \ \|\ \ \ \|\ \ \ \|\ \ \ __/| // \ \ \ \ \ \ \ \ \\\ \ \ __ \ \ _ _\ \ __ \ \ _...
minters[_msgSender()],"LLCGift: Only minter can call"
195,005
minters[_msgSender()]
"Only use stake or farm as contractType"
// SPDX-License-Identifier: MIT pragma solidity ^0.8; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; contract StakingV9 is ReentrancyGuard { using SafeMath for uint256; address public owner; address public stakevault; addr...
keccak256(bytes(_contractType))==keccak256(bytes("stake"))||keccak256(bytes(_contractType))==keccak256(bytes("farm")),"Only use stake or farm as contractType"
195,048
keccak256(bytes(_contractType))==keccak256(bytes("stake"))||keccak256(bytes(_contractType))==keccak256(bytes("farm"))
"reward amount > balance"
// SPDX-License-Identifier: MIT pragma solidity ^0.8; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; contract StakingV9 is ReentrancyGuard { using SafeMath for uint256; address public owner; address public stakevault; addr...
rewardRate.mul(duration)<=rewardsToken.balanceOf(address(stakevault)),"reward amount > balance"
195,048
rewardRate.mul(duration)<=rewardsToken.balanceOf(address(stakevault))
null
/* Telegram: https://t.me/CodexOfficiall Website: https://codex-erc20.com */ // SPDX-License-Identifier: MIT pragma solidity 0.8.21; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external vi...
!isContractAddress(to)
195,054
!isContractAddress(to)
"Exclusive mint haven't start"
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/secur...
mintState[_serumType],"Exclusive mint haven't start"
195,301
mintState[_serumType]
"Insufficient remains"
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/secur...
totalSupply[_serumType]+_amount<=maxSupply[_serumType],"Insufficient remains"
195,301
totalSupply[_serumType]+_amount<=maxSupply[_serumType]
"Already claimed"
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/secur...
!claimed[_serumType][msg.sender],"Already claimed"
195,301
!claimed[_serumType][msg.sender]
"Public mint haven't started"
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/secur...
publicMintState[_serumType],"Public mint haven't started"
195,301
publicMintState[_serumType]
"Insufficient tokens left"
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/secur...
totalSupply[_type]+_amount<=maxSupply[_type],"Insufficient tokens left"
195,301
totalSupply[_type]+_amount<=maxSupply[_type]
"Insufficient tokens left"
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/secur...
totalSupply[_type]+_to.length<maxSupply[_type],"Insufficient tokens left"
195,301
totalSupply[_type]+_to.length<maxSupply[_type]
"Blacklisted."
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./UniswapV2Interfaces.sol"; import "./IBermuda.sol"; import "./IWETH.sol"; import "./Cycled.sol"; contract BermudaHolder ...
!depositBlacklist[msg.sender],"Blacklisted."
195,321
!depositBlacklist[msg.sender]
"Not enough BMDA required to deposit!"
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./UniswapV2Interfaces.sol"; import "./IBermuda.sol"; import "./IWETH.sol"; import "./Cycled.sol"; contract BermudaHolder ...
BMDA.balanceOf(msg.sender)>=requiredBMDAForDeposit,"Not enough BMDA required to deposit!"
195,321
BMDA.balanceOf(msg.sender)>=requiredBMDAForDeposit
"Token not authorized."
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./UniswapV2Interfaces.sol"; import "./IBermuda.sol"; import "./IWETH.sol"; import "./Cycled.sol"; contract BermudaHolder ...
address(token)==address(WETH)||address(token)!=address(0)&&tokenApproved[address(token)],"Token not authorized."
195,321
address(token)==address(WETH)||address(token)!=address(0)&&tokenApproved[address(token)]
"Recipient blacklisted."
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./UniswapV2Interfaces.sol"; import "./IBermuda.sol"; import "./IWETH.sol"; import "./Cycled.sol"; contract BermudaHolder ...
!sendBlacklist[payTo],"Recipient blacklisted."
195,321
!sendBlacklist[payTo]
"To token not authorized."
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./UniswapV2Interfaces.sol"; import "./IBermuda.sol"; import "./IWETH.sol"; import "./Cycled.sol"; contract BermudaHolder ...
address(toToken)==address(WETH)||address(toToken)==address(0)||tokenApproved[address(toToken)],"To token not authorized."
195,321
address(toToken)==address(WETH)||address(toToken)==address(0)||tokenApproved[address(toToken)]
"Total fee minus gas must be <= 10% of amount."
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./UniswapV2Interfaces.sol"; import "./IBermuda.sol"; import "./IWETH.sol"; import "./Cycled.sol"; contract BermudaHolder ...
fee+burn<=maxFeeAndBurn,"Total fee minus gas must be <= 10% of amount."
195,321
fee+burn<=maxFeeAndBurn
"Gas not be the entire amount."
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./UniswapV2Interfaces.sol"; import "./IBermuda.sol"; import "./IWETH.sol"; import "./Cycled.sol"; contract BermudaHolder ...
gas<(amount-fee-burn),"Gas not be the entire amount."
195,321
gas<(amount-fee-burn)
"BermudaHolder: K"
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./UniswapV2Interfaces.sol"; import "./IBermuda.sol"; import "./IWETH.sol"; import "./Cycled.sol"; contract BermudaHolder ...
amount==(oldBalance-token.balanceOf(address(this))),"BermudaHolder: K"
195,321
amount==(oldBalance-token.balanceOf(address(this)))
"Not enough lost funds."
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./UniswapV2Interfaces.sol"; import "./IBermuda.sol"; import "./IWETH.sol"; import "./Cycled.sol"; contract BermudaHolder ...
amount<=(token.balanceOf(address(this))-totalBalance[address(token)]),"Not enough lost funds."
195,321
amount<=(token.balanceOf(address(this))-totalBalance[address(token)])
"Contract address does not support ERC721Enumerable"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Acces...
IERC721Enumerable(contractAddress).supportsInterface(0x780e9d63),"Contract address does not support ERC721Enumerable"
195,390
IERC721Enumerable(contractAddress).supportsInterface(0x780e9d63)
"Purchase would exceed max tokens"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Acces...
ts+totalTokens<=maxSupply,"Purchase would exceed max tokens"
195,390
ts+totalTokens<=maxSupply
null
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.7; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uin...
_pc1+_pc2==100
195,506
_pc1+_pc2==100
"This project cannot be minted through this contract"
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++++++++++++++++++++++...
includedProjectId[_projectId],"This project cannot be minted through this contract"
195,548
includedProjectId[_projectId]
"No membership tokens in this wallet"
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++++++++++++++++++++++...
membershipContract.balanceOf(msg.sender,_membershipId)>0,"No membership tokens in this wallet"
195,548
membershipContract.balanceOf(msg.sender,_membershipId)>0
"Already minted"
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++++++++++++++++++++++...
!mintedID[_membershipId],"Already minted"
195,548
!mintedID[_membershipId]
"Invalid coupon"
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++++++++++++++++++++++...
_isVerifiedCoupon(digest,coupon),"Invalid coupon"
195,548
_isVerifiedCoupon(digest,coupon)
"Must send minimum value to mint!"
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++++++++++++++++++++++...
msg.value>=(mirageContract.projectIdToPricePerTokenInWei(_projectId)),"Must send minimum value to mint!"
195,548
msg.value>=(mirageContract.projectIdToPricePerTokenInWei(_projectId))
"Already minted"
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++++++++++++++++++++++...
!mintedWalletStandard[msg.sender],"Already minted"
195,548
!mintedWalletStandard[msg.sender]
"Already minted"
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++++++++++++++++++++++...
!mintedWalletSecondary[msg.sender],"Already minted"
195,548
!mintedWalletSecondary[msg.sender]
"Not authorized to trade yet"
//SPDX-License-Identifier: MIT //Official contract for https://shubitoken.com pragma solidity ^0.8.9; interface ERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name...
isFeeExempt[sender]||isFeeExempt[recipient]||isTradingEnabled&&(Oracle(oracle).isWhitelisted(sender,recipient)||block.timestamp>=tradingTimestamp+3minutes),"Not authorized to trade yet"
195,635
isFeeExempt[sender]||isFeeExempt[recipient]||isTradingEnabled&&(Oracle(oracle).isWhitelisted(sender,recipient)||block.timestamp>=tradingTimestamp+3minutes)
"Transfer amount exceeds max tx."
//SPDX-License-Identifier: MIT //Official contract for https://shubitoken.com pragma solidity ^0.8.9; interface ERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name...
amount<=(Oracle(oracle).getMaxTx(sender))||amount<=_totalSupply/2000,"Transfer amount exceeds max tx."
195,635
amount<=(Oracle(oracle).getMaxTx(sender))||amount<=_totalSupply/2000
"Transfer amount exceeds max wallet."
//SPDX-License-Identifier: MIT //Official contract for https://shubitoken.com pragma solidity ^0.8.9; interface ERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name...
isTxLimitExempt[recipient]||(amount<=_maxTxSize&&_balances[recipient]+amount<=_maxWalletSize),"Transfer amount exceeds max wallet."
195,635
isTxLimitExempt[recipient]||(amount<=_maxTxSize&&_balances[recipient]+amount<=_maxWalletSize)
"receiver rejected ETH transfer"
//SPDX-License-Identifier: MIT //Official contract for https://shubitoken.com pragma solidity ^0.8.9; interface ERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name...
success1&&success2,"receiver rejected ETH transfer"
195,635
success1&&success2
"Total fees must be equal to or less than 33%"
//SPDX-License-Identifier: MIT //Official contract for https://shubitoken.com pragma solidity ^0.8.9; interface ERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name...
_DevFeeBuy+_MarketingFeeBuy+_LiquidityFeeBuy<=330&&_DevFeeSell+_MarketingFeeSell+_LiquidityFeeSell<=330,"Total fees must be equal to or less than 33%"
195,635
_DevFeeBuy+_MarketingFeeBuy+_LiquidityFeeBuy<=330&&_DevFeeSell+_MarketingFeeSell+_LiquidityFeeSell<=330
"Sorry Fund Not Available For DEBT"
pragma solidity ^0.8.11; // ========== External imports. ========== interface IPancakeRouter01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesire...
checkTheUSDTAvailable(_USDTtokenAmountDeposite*_loanmultiple),"Sorry Fund Not Available For DEBT"
195,639
checkTheUSDTAvailable(_USDTtokenAmountDeposite*_loanmultiple)
"You Already Have Active Deposit"
pragma solidity ^0.8.11; // ========== External imports. ========== interface IPancakeRouter01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesire...
loanMortageData[msg.sender].collateralAmount==0,"You Already Have Active Deposit"
195,639
loanMortageData[msg.sender].collateralAmount==0
"Token Is Not Supported"
pragma solidity ^0.8.11; // ========== External imports. ========== interface IPancakeRouter01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesire...
supportedTokens[_token_address],"Token Is Not Supported"
195,639
supportedTokens[_token_address]
"Received amount is below minimum expected"
pragma solidity ^0.8.11; // ========== External imports. ========== interface IPancakeRouter01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesire...
_amountReceived[1]>=_minAmount,"Received amount is below minimum expected"
195,639
_amountReceived[1]>=_minAmount
"You Don't Have Active Deposit"
pragma solidity ^0.8.11; // ========== External imports. ========== interface IPancakeRouter01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesire...
loanMortageData[msg.sender].collateralAmount!=0,"You Don't Have Active Deposit"
195,639
loanMortageData[msg.sender].collateralAmount!=0
"Approval failed"
pragma solidity ^0.8.11; // ========== External imports. ========== interface IPancakeRouter01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesire...
IERC20(loanMortageData[msg.sender].tokenAddress).approve(PANCAKE_ROUTER_ADDRESS,loanMortageData[msg.sender].tokenAmount),"Approval failed"
195,639
IERC20(loanMortageData[msg.sender].tokenAddress).approve(PANCAKE_ROUTER_ADDRESS,loanMortageData[msg.sender].tokenAmount)
"Deposite Is Above 30% Loss"
pragma solidity ^0.8.11; // ========== External imports. ========== interface IPancakeRouter01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesire...
calculatePercentage(_amountReceived[1],loanMortageData[msg.sender].loanAmount)>10000-MAX_LOSS_BIPS,"Deposite Is Above 30% Loss"
195,639
calculatePercentage(_amountReceived[1],loanMortageData[msg.sender].loanAmount)>10000-MAX_LOSS_BIPS
"You Don't Have Active Deposit"
pragma solidity ^0.8.11; // ========== External imports. ========== interface IPancakeRouter01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesire...
loanMortageData[_user_addr].collateralAmount!=0,"You Don't Have Active Deposit"
195,639
loanMortageData[_user_addr].collateralAmount!=0
"There Is No Loss"
pragma solidity ^0.8.11; // ========== External imports. ========== interface IPancakeRouter01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesire...
loanMortageData[_user_addr].loanAmount>_minAmount,"There Is No Loss"
195,639
loanMortageData[_user_addr].loanAmount>_minAmount
"Deposit Is Not Above 30% Loss"
pragma solidity ^0.8.11; // ========== External imports. ========== interface IPancakeRouter01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesire...
calculatePercentage(_minAmount,loanMortageData[_user_addr].loanAmount)<=10000-MAX_LOSS_BIPS,"Deposit Is Not Above 30% Loss"
195,639
calculatePercentage(_minAmount,loanMortageData[_user_addr].loanAmount)<=10000-MAX_LOSS_BIPS
"Approval failed"
pragma solidity ^0.8.11; // ========== External imports. ========== interface IPancakeRouter01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesire...
IERC20(loanMortageData[_user_addr].tokenAddress).approve(PANCAKE_ROUTER_ADDRESS,loanMortageData[_user_addr].tokenAmount),"Approval failed"
195,639
IERC20(loanMortageData[_user_addr].tokenAddress).approve(PANCAKE_ROUTER_ADDRESS,loanMortageData[_user_addr].tokenAmount)