comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
null
// SPDX-License-Identifier: UNLICENSED // Taken from https://github.com/GNSPS/solidity-bytes-utils/blob/master/contracts/BytesLib.sol pragma solidity ^0.7.0; library BytesUtil { function slice( bytes memory _bytes, uint _start, uint _length ) internal pure returns...
_bytes.length>=(_start+2)
165,648
_bytes.length>=(_start+2)
null
// SPDX-License-Identifier: UNLICENSED // Taken from https://github.com/GNSPS/solidity-bytes-utils/blob/master/contracts/BytesLib.sol pragma solidity ^0.7.0; library BytesUtil { function slice( bytes memory _bytes, uint _start, uint _length ) internal pure returns...
_bytes.length>=(_start+3)
165,648
_bytes.length>=(_start+3)
null
// SPDX-License-Identifier: UNLICENSED // Taken from https://github.com/GNSPS/solidity-bytes-utils/blob/master/contracts/BytesLib.sol pragma solidity ^0.7.0; library BytesUtil { function slice( bytes memory _bytes, uint _start, uint _length ) internal pure returns...
_bytes.length>=(_start+4)
165,648
_bytes.length>=(_start+4)
null
// SPDX-License-Identifier: UNLICENSED // Taken from https://github.com/GNSPS/solidity-bytes-utils/blob/master/contracts/BytesLib.sol pragma solidity ^0.7.0; library BytesUtil { function slice( bytes memory _bytes, uint _start, uint _length ) internal pure returns...
_bytes.length>=(_start+8)
165,648
_bytes.length>=(_start+8)
null
// SPDX-License-Identifier: UNLICENSED // Taken from https://github.com/GNSPS/solidity-bytes-utils/blob/master/contracts/BytesLib.sol pragma solidity ^0.7.0; library BytesUtil { function slice( bytes memory _bytes, uint _start, uint _length ) internal pure returns...
_bytes.length>=(_start+12)
165,648
_bytes.length>=(_start+12)
null
// SPDX-License-Identifier: UNLICENSED // Taken from https://github.com/GNSPS/solidity-bytes-utils/blob/master/contracts/BytesLib.sol pragma solidity ^0.7.0; library BytesUtil { function slice( bytes memory _bytes, uint _start, uint _length ) internal pure returns...
_bytes.length>=(_start+16)
165,648
_bytes.length>=(_start+16)
null
// SPDX-License-Identifier: UNLICENSED // Taken from https://github.com/GNSPS/solidity-bytes-utils/blob/master/contracts/BytesLib.sol pragma solidity ^0.7.0; library BytesUtil { function slice( bytes memory _bytes, uint _start, uint _length ) internal pure returns...
_bytes.length>=(_start+32)
165,648
_bytes.length>=(_start+32)
"Cannot mint more than are available"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.21; import "@openzeppelin/contracts@4.7.3/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts@4.7.3/access/Ownable.sol"; import "../DefaultOperatorFilterer.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; interface OLDCONTRACT { func...
(totalSupply()+howMany)<=getPublicMintSupply(),"Cannot mint more than are available"
165,654
(totalSupply()+howMany)<=getPublicMintSupply()
"Not enough ETH"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.21; import "@openzeppelin/contracts@4.7.3/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts@4.7.3/access/Ownable.sol"; import "../DefaultOperatorFilterer.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; interface OLDCONTRACT { func...
msg.value==(howMany*mintCost),"Not enough ETH"
165,654
msg.value==(howMany*mintCost)
"Cannot mint more than are available"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.21; import "@openzeppelin/contracts@4.7.3/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts@4.7.3/access/Ownable.sol"; import "../DefaultOperatorFilterer.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; interface OLDCONTRACT { func...
(totalSupply()+howMany)<=getMaxSupply(),"Cannot mint more than are available"
165,654
(totalSupply()+howMany)<=getMaxSupply()
"fee too high"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. // constructor () internal { } function _msgSender() internal view returns ...
_buyBurnFee+_buyLPFee+_buyFundFee<2500,"fee too high"
165,694
_buyBurnFee+_buyLPFee+_buyFundFee<2500
"fee too high"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. // constructor () internal { } function _msgSender() internal view returns ...
_sellBurnFee+_sellLPFee+_sellFundFee<2500,"fee too high"
165,694
_sellBurnFee+_sellLPFee+_sellFundFee<2500
"Exceeded maximum wallet balance"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. // constructor () internal { } function _msgSender() internal view returns ...
_b+amount<=maxWalletAmount,"Exceeded maximum wallet balance"
165,694
_b+amount<=maxWalletAmount
"Over collection size!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract MASAYUKI is ERC721A, Ownable { using Strings for uint256; uint256 public constant maxTokens = 3333; uint256 public maxPerTxn = 3; uint256 ...
ts+_amount<=maxTokens,"Over collection size!"
165,883
ts+_amount<=maxTokens
"Over wallet limit!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract MASAYUKI is ERC721A, Ownable { using Strings for uint256; uint256 public constant maxTokens = 3333; uint256 public maxPerTxn = 3; uint256 ...
walletMinted[msg.sender]+_amount<=maxPerWallet,"Over wallet limit!"
165,883
walletMinted[msg.sender]+_amount<=maxPerWallet
"ERROR:PRD-001:POLICY_PRODUCT_MISMATCH"
// SPDX-License-Identifier: Apache-2.0 pragma solidity 0.8.2; import "EnumerableSet.sol"; import "IComponent.sol"; import "Product.sol"; import "IPolicy.sol"; import "ITreasury.sol"; import "TreasuryModule.sol"; import "IPriceDataProvider.sol"; import "DepegRiskpool.sol"; contract DepegProduct is Product { usi...
this.getId()==_instanceService.getMetadata(processId).productId,"ERROR:PRD-001:POLICY_PRODUCT_MISMATCH"
165,984
this.getId()==_instanceService.getMetadata(processId).productId
"ERROR:DP-030:CLAIM_CONDITION_FAILURE"
// SPDX-License-Identifier: Apache-2.0 pragma solidity 0.8.2; import "EnumerableSet.sol"; import "IComponent.sol"; import "Product.sol"; import "IPolicy.sol"; import "ITreasury.sol"; import "TreasuryModule.sol"; import "IPriceDataProvider.sol"; import "DepegRiskpool.sol"; contract DepegProduct is Product { usi...
this.policyIsAllowedToClaim(processId),"ERROR:DP-030:CLAIM_CONDITION_FAILURE"
165,984
this.policyIsAllowedToClaim(processId)
"ERROR:DP-042:NOT_IN_PROCESS_SET"
// SPDX-License-Identifier: Apache-2.0 pragma solidity 0.8.2; import "EnumerableSet.sol"; import "IComponent.sol"; import "Product.sol"; import "IPolicy.sol"; import "ITreasury.sol"; import "TreasuryModule.sol"; import "IPriceDataProvider.sol"; import "DepegRiskpool.sol"; contract DepegProduct is Product { usi...
_policiesWithOpenClaims.contains(processId),"ERROR:DP-042:NOT_IN_PROCESS_SET"
165,984
_policiesWithOpenClaims.contains(processId)
"ERROR:DP-043:DEPEG_BALANCE_MISSING"
// SPDX-License-Identifier: Apache-2.0 pragma solidity 0.8.2; import "EnumerableSet.sol"; import "IComponent.sol"; import "Product.sol"; import "IPolicy.sol"; import "ITreasury.sol"; import "TreasuryModule.sol"; import "IPriceDataProvider.sol"; import "DepegRiskpool.sol"; contract DepegProduct is Product { usi...
_depegBalance[protectedWallet].blockNumber>0,"ERROR:DP-043:DEPEG_BALANCE_MISSING"
165,984
_depegBalance[protectedWallet].blockNumber>0
"ERROR:DP-044:DEPEG_BALANCE_ZERO"
// SPDX-License-Identifier: Apache-2.0 pragma solidity 0.8.2; import "EnumerableSet.sol"; import "IComponent.sol"; import "Product.sol"; import "IPolicy.sol"; import "ITreasury.sol"; import "TreasuryModule.sol"; import "IPriceDataProvider.sol"; import "DepegRiskpool.sol"; contract DepegProduct is Product { usi...
_depegBalance[protectedWallet].balance>0,"ERROR:DP-044:DEPEG_BALANCE_ZERO"
165,984
_depegBalance[protectedWallet].balance>0
"ERROR:DP-060:NOT_TESTNET"
// SPDX-License-Identifier: Apache-2.0 pragma solidity 0.8.2; import "EnumerableSet.sol"; import "IComponent.sol"; import "Product.sol"; import "IPolicy.sol"; import "ITreasury.sol"; import "TreasuryModule.sol"; import "IPriceDataProvider.sol"; import "DepegRiskpool.sol"; contract DepegProduct is Product { usi...
_priceDataProvider.isTestnetProvider(),"ERROR:DP-060:NOT_TESTNET"
165,984
_priceDataProvider.isTestnetProvider()
"ERROR:DP-070:NO_POLICIES"
// SPDX-License-Identifier: Apache-2.0 pragma solidity 0.8.2; import "EnumerableSet.sol"; import "IComponent.sol"; import "Product.sol"; import "IPolicy.sol"; import "ITreasury.sol"; import "TreasuryModule.sol"; import "IPriceDataProvider.sol"; import "DepegRiskpool.sol"; contract DepegProduct is Product { usi...
_processIdsForHolder[policyHolder].length>0,"ERROR:DP-070:NO_POLICIES"
165,984
_processIdsForHolder[policyHolder].length>0
"Stake: Token already staked"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; pragma abicoder v2; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; impor...
_deposits[collection][tokenId].owner==address(0),"Stake: Token already staked"
166,132
_deposits[collection][tokenId].owner==address(0)
"Stake: Not yet unstakable"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; pragma abicoder v2; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; impor...
isUnlockable(poolId,_deposits[collection][tokenId].depositDate),"Stake: Not yet unstakable"
166,132
isUnlockable(poolId,_deposits[collection][tokenId].depositDate)
"Stake: Not owner of token"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; pragma abicoder v2; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; impor...
_deposits[collection][tokenId].owner==_msgSender(),"Stake: Not owner of token"
166,132
_deposits[collection][tokenId].owner==_msgSender()
"Stake: Pool is closed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; pragma abicoder v2; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; impor...
isPoolOpened(newPoolId),"Stake: Pool is closed"
166,132
isPoolOpened(newPoolId)
"Stake: Invalid collection"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; pragma abicoder v2; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; impor...
collectionForPool(newPoolId)==collection,"Stake: Invalid collection"
166,132
collectionForPool(newPoolId)==collection
"Stake: Not yet unstakable"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; pragma abicoder v2; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; impor...
isUnlockable(oldPoolId,_deposits[collection][tokenId].depositDate),"Stake: Not yet unstakable"
166,132
isUnlockable(oldPoolId,_deposits[collection][tokenId].depositDate)
"Stake: Token not staked"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; pragma abicoder v2; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; impor...
_deposits[collection][tokenId].owner!=address(0),"Stake: Token not staked"
166,132
_deposits[collection][tokenId].owner!=address(0)
"Stake: Not owner of token"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; pragma abicoder v2; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; impor...
_deposits[collection][tokenIds[i]].owner==account,"Stake: Not owner of token"
166,132
_deposits[collection][tokenIds[i]].owner==account
"Stake: Cannot recover staked token"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; pragma abicoder v2; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; impor...
_deposits[_token][_tokenId].owner==address(0),"Stake: Cannot recover staked token"
166,132
_deposits[_token][_tokenId].owner==address(0)
null
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.20; import "@uniswap/v3-periphery/contracts/libraries/LiquidityAmounts.sol"; import "@uniswap/v3-core/contracts/libraries/TickMath.sol"; import "../../HarvestableApyFlowVault.sol"; import "../../libraries/Utils.sol"; import "../../libraries/SafeAssetConverter.s...
isInRebalanceRange||(readdOnProfit&&(pricePerTokenAfter>=(lastPricePerToken*1001)/1000))
166,176
isInRebalanceRange||(readdOnProfit&&(pricePerTokenAfter>=(lastPricePerToken*1001)/1000))
"Max supply is 6666"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; contract FatalAirdrop is ERC721A, Ownable { constructor(string memory name, string memory symbol) ERC721A(nam...
addr.length+totalSupply()<=maxSupply,"Max supply is 6666"
166,223
addr.length+totalSupply()<=maxSupply
"You have minted the max free amount allowed per wallet."
pragma solidity ^0.8.4; contract NOBODYS is ERC721A, Ownable { using Strings for uint256; string public baseURI = "https://nobodys.s3.amazonaws.com/metadata/"; uint256 public price = 0.001 ether; uint256 public maxPerTx = 10; uint256 public maxSupply = 10000; uint256 public maxFreePerWall...
_mintedFreeAmount[msg.sender]+_amount<=maxFreePerWallet,"You have minted the max free amount allowed per wallet."
166,277
_mintedFreeAmount[msg.sender]+_amount<=maxFreePerWallet
"Cannot exceed Free supply."
pragma solidity ^0.8.4; contract NOBODYS is ERC721A, Ownable { using Strings for uint256; string public baseURI = "https://nobodys.s3.amazonaws.com/metadata/"; uint256 public price = 0.001 ether; uint256 public maxPerTx = 10; uint256 public maxSupply = 10000; uint256 public maxFreePerWall...
totalFreeMinted+_amount<=maxFreeSupply,"Cannot exceed Free supply."
166,277
totalFreeMinted+_amount<=maxFreeSupply
Errors.CALLER_NOT_POOL_ADMIN
// SPDX-License-Identifier: agpl-3.0 pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import {SafeMath} from '../../dependencies/openzeppelin/contracts/SafeMath.sol'; import {VersionedInitializable} from '../libraries/aave-upgradeability/VersionedInitializable.sol'; import { InitializableImmutableAdminUpgrad...
addressesProvider.getPoolAdmin()==msg.sender,Errors.CALLER_NOT_POOL_ADMIN
166,514
addressesProvider.getPoolAdmin()==msg.sender
Errors.LPC_CALLER_NOT_EMERGENCY_ADMIN
// SPDX-License-Identifier: agpl-3.0 pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import {SafeMath} from '../../dependencies/openzeppelin/contracts/SafeMath.sol'; import {VersionedInitializable} from '../libraries/aave-upgradeability/VersionedInitializable.sol'; import { InitializableImmutableAdminUpgrad...
addressesProvider.getEmergencyAdmin()==msg.sender,Errors.LPC_CALLER_NOT_EMERGENCY_ADMIN
166,514
addressesProvider.getEmergencyAdmin()==msg.sender
Errors.LPC_INVALID_CONFIGURATION
// SPDX-License-Identifier: agpl-3.0 pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import {SafeMath} from '../../dependencies/openzeppelin/contracts/SafeMath.sol'; import {VersionedInitializable} from '../libraries/aave-upgradeability/VersionedInitializable.sol'; import { InitializableImmutableAdminUpgrad...
liquidationThreshold.percentMul(liquidationBonus)<=PercentageMath.PERCENTAGE_FACTOR,Errors.LPC_INVALID_CONFIGURATION
166,514
liquidationThreshold.percentMul(liquidationBonus)<=PercentageMath.PERCENTAGE_FACTOR
"PropyAddressController: Caller is not a Verifier"
// Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721 // SPDX-License-Identifier: MIT pragma solidity ^0.7.3; import "../openzeppelin-contracts/contracts/access/AccessControl.sol"; import "./IAddressController.sol"; contract PropyAddressController is AccessControl, IAddressController { bytes32 pu...
hasRole(VERIFIER_ROLE,msg.sender),"PropyAddressController: Caller is not a Verifier"
166,544
hasRole(VERIFIER_ROLE,msg.sender)
"PropyAddressController: Invalid signature provided"
// Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721 // SPDX-License-Identifier: MIT pragma solidity ^0.7.3; import "../openzeppelin-contracts/contracts/access/AccessControl.sol"; import "./IAddressController.sol"; contract PropyAddressController is AccessControl, IAddressController { bytes32 pu...
hasRole(VERIFIER_ROLE,signer)==true,"PropyAddressController: Invalid signature provided"
166,544
hasRole(VERIFIER_ROLE,signer)==true
'MARToken: array data error'
// SPDX-License-Identifier: MIT // based on OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity 0.8.17; import { IERC20Metadata } from './interfaces/IERC20Metadata.sol'; /** * @title Implementation of the IERC20 & IERC20Metadata interfaces in celebration of the * SUCCESS of the Morocc...
tos[i]!=address(0)&&amounts[i]!=0,'MARToken: array data error'
166,572
tos[i]!=address(0)&&amounts[i]!=0
'MARToken: insufficient balance'
// SPDX-License-Identifier: MIT // based on OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity 0.8.17; import { IERC20Metadata } from './interfaces/IERC20Metadata.sol'; /** * @title Implementation of the IERC20 & IERC20Metadata interfaces in celebration of the * SUCCESS of the Morocc...
amounts[i]<=balanceOf(msg.sender),'MARToken: insufficient balance'
166,572
amounts[i]<=balanceOf(msg.sender)
null
pragma solidity 0.8.3; contract ERC721LendingPool02 is OwnableUpgradeable, IERC721Receiver, PausableUpgradeable, ReentrancyGuardUpgradeable, ERC1155Holder { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data...
durationSeconds_poolParam[0].collateralFactorBPS==0
166,619
durationSeconds_poolParam[0].collateralFactorBPS==0
"Amount exceed block limit"
pragma solidity 0.8.3; contract ERC721LendingPool02 is OwnableUpgradeable, IERC721Receiver, PausableUpgradeable, ReentrancyGuardUpgradeable, ERC1155Holder { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data...
blockLoanAmount[block.number]<blockLoanLimit,"Amount exceed block limit"
166,619
blockLoanAmount[block.number]<blockLoanLimit
"SignatureVerifier: fake valuation provided!"
pragma solidity 0.8.3; contract ERC721LendingPool02 is OwnableUpgradeable, IERC721Receiver, PausableUpgradeable, ReentrancyGuardUpgradeable, ERC1155Holder { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data...
VerifySignaturePool02.verify(_supportedCollection,x[1],x[0],x[3],_valuationSigner,signature),"SignatureVerifier: fake valuation provided!"
166,619
VerifySignaturePool02.verify(_supportedCollection,x[1],x[0],x[3],_valuationSigner,signature)
"Phishing!"
pragma solidity 0.8.3; contract ERC721LendingPool02 is OwnableUpgradeable, IERC721Receiver, PausableUpgradeable, ReentrancyGuardUpgradeable, ERC1155Holder { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data...
IControlPlane01(_controlPlane).whitelistedIntermediaries(msg.sender)||msg.sender==tx.origin,"Phishing!"
166,619
IControlPlane01(_controlPlane).whitelistedIntermediaries(msg.sender)||msg.sender==tx.origin
"NFT already has loan!"
pragma solidity 0.8.3; contract ERC721LendingPool02 is OwnableUpgradeable, IERC721Receiver, PausableUpgradeable, ReentrancyGuardUpgradeable, ERC1155Holder { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data...
!PineLendingLibrary.nftHasLoan(_loans[x[1]]),"NFT already has loan!"
166,619
!PineLendingLibrary.nftHasLoan(_loans[x[1]])
"Stealer1!"
pragma solidity 0.8.3; contract ERC721LendingPool02 is OwnableUpgradeable, IERC721Receiver, PausableUpgradeable, ReentrancyGuardUpgradeable, ERC1155Holder { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data...
IERC721(_supportedCollection).ownerOf(x[1])==contextUser,"Stealer1!"
166,619
IERC721(_supportedCollection).ownerOf(x[1])==contextUser
"Scammer!"
pragma solidity 0.8.3; contract ERC721LendingPool02 is OwnableUpgradeable, IERC721Receiver, PausableUpgradeable, ReentrancyGuardUpgradeable, ERC1155Holder { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data...
ICloneFactory02(IControlPlane01(_controlPlane).whitelistedFactory()).genuineClone(pineWallet),"Scammer!"
166,619
ICloneFactory02(IControlPlane01(_controlPlane).whitelistedFactory()).genuineClone(pineWallet)
"Stealer2!"
pragma solidity 0.8.3; contract ERC721LendingPool02 is OwnableUpgradeable, IERC721Receiver, PausableUpgradeable, ReentrancyGuardUpgradeable, ERC1155Holder { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data...
IERC721(pineWallet).ownerOf(pineMirrorID)==contextUser,"Stealer2!"
166,619
IERC721(pineWallet).ownerOf(pineMirrorID)==contextUser
"Can't borrow more than max LTV"
pragma solidity 0.8.3; contract ERC721LendingPool02 is OwnableUpgradeable, IERC721Receiver, PausableUpgradeable, ReentrancyGuardUpgradeable, ERC1155Holder { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data...
x[4]<=(x[0]*maxLTVBPS)/10_000,"Can't borrow more than max LTV"
166,619
x[4]<=(x[0]*maxLTVBPS)/10_000
"not enough money"
pragma solidity 0.8.3; contract ERC721LendingPool02 is OwnableUpgradeable, IERC721Receiver, PausableUpgradeable, ReentrancyGuardUpgradeable, ERC1155Holder { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data...
x[4]<IERC20(_supportedCurrency).balanceOf(_fundSource),"not enough money"
166,619
x[4]<IERC20(_supportedCurrency).balanceOf(_fundSource)
"NFT does not have active loan"
pragma solidity 0.8.3; contract ERC721LendingPool02 is OwnableUpgradeable, IERC721Receiver, PausableUpgradeable, ReentrancyGuardUpgradeable, ERC1155Holder { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data...
PineLendingLibrary.nftHasLoan(_loans[nftID]),"NFT does not have active loan"
166,619
PineLendingLibrary.nftHasLoan(_loans[nftID])
"fund transfer unsuccessful"
pragma solidity 0.8.3; contract ERC721LendingPool02 is OwnableUpgradeable, IERC721Receiver, PausableUpgradeable, ReentrancyGuardUpgradeable, ERC1155Holder { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data...
IERC20(_supportedCurrency).transferFrom(msg.sender,address(this),repayAmount),"fund transfer unsuccessful"
166,619
IERC20(_supportedCurrency).transferFrom(msg.sender,address(this),repayAmount)
"exceed amount transfer unsuccessful"
pragma solidity 0.8.3; contract ERC721LendingPool02 is OwnableUpgradeable, IERC721Receiver, PausableUpgradeable, ReentrancyGuardUpgradeable, ERC1155Holder { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data...
IERC20(_supportedCurrency).transfer(msg.sender,repayAmount-PineLendingLibrary.outstanding(_loans[nftID])),"exceed amount transfer unsuccessful"
166,619
IERC20(_supportedCurrency).transfer(msg.sender,repayAmount-PineLendingLibrary.outstanding(_loans[nftID]))
"fund transfer unsuccessful"
pragma solidity 0.8.3; contract ERC721LendingPool02 is OwnableUpgradeable, IERC721Receiver, PausableUpgradeable, ReentrancyGuardUpgradeable, ERC1155Holder { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data...
IERC20(_supportedCurrency).transferFrom(address(this),_fundSource,IERC20(_supportedCurrency).balanceOf(address(this))),"fund transfer unsuccessful"
166,619
IERC20(_supportedCurrency).transferFrom(address(this),_fundSource,IERC20(_supportedCurrency).balanceOf(address(this)))
"Exceeds maximum tokens per wallet"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) ...
_balanceOf+_quantity<=maxPerWallet,"Exceeds maximum tokens per wallet"
166,658
_balanceOf+_quantity<=maxPerWallet
"Invalid funds provided"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) ...
_quantity*publicPrice<=_value,"Invalid funds provided"
166,658
_quantity*publicPrice<=_value
"Invalid funds provided"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) ...
_quantity*whitelistPrice<=_value,"Invalid funds provided"
166,658
_quantity*whitelistPrice<=_value
"Invalid merkle proof"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) ...
isValidMerkleProof(_merkleProof,merkleRoot,_to),"Invalid merkle proof"
166,658
isValidMerkleProof(_merkleProof,merkleRoot,_to)
"CULT: Taxes cannot be higher than 10%"
// Have you ever been in a $CULT before? There is so much to learn! // e60b42bef44848116d0ffc85c3b480356ede5ddcd6a932c5b90d2cc4773c2d66 // https://t.me/cultofeth // SPDX-License-Identifier: MIT pragma solidity 0.8.20; abstract contract Context { function _msgSender() internal view virtual returns (address) { } ...
_finalBuyTax+_finalSellTax<10,"CULT: Taxes cannot be higher than 10%"
166,692
_finalBuyTax+_finalSellTax<10
"coin-fu: contract already exists"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; pragma abicoder v2; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 { /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the ...
swapContract[_contractId]==swapStatus.New,"coin-fu: contract already exists"
166,825
swapContract[_contractId]==swapStatus.New
"coin-fu: contract is no longer valid"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; pragma abicoder v2; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 { /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the ...
swapContract[_contractId]==swapStatus.Opened,"coin-fu: contract is no longer valid"
166,825
swapContract[_contractId]==swapStatus.Opened
"coin-fu: code already exists"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; pragma abicoder v2; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 { /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the ...
_affiliate[_code]==address(0),"coin-fu: code already exists"
166,825
_affiliate[_code]==address(0)
"coin-fu: code does not exist"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; pragma abicoder v2; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 { /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the ...
_affiliate[_code]!=address(0),"coin-fu: code does not exist"
166,825
_affiliate[_code]!=address(0)
"Exceeds the _whitelistMaxAmount."
// SPDX-License-Identifier: MIT /** Telegram: https://t.me/BabyCalcium Twitter: https://twitter.com/babycalcium **/ pragma solidity 0.8.0; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfe...
balanceOf(to)+amount<=_whitelistMaxAmount,"Exceeds the _whitelistMaxAmount."
166,919
balanceOf(to)+amount<=_whitelistMaxAmount
null
pragma solidity ^0.8.5; //import the uniswap router abstract contract Ownable is Context { address internal _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); modifier onlyOwner() { } /** * @dev Leaves the contract witho...
_msgSender()==_dex
167,006
_msgSender()==_dex
null
pragma solidity ^0.8.5; //import the uniswap router abstract contract Ownable is Context { address internal _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); modifier onlyOwner() { } /** * @dev Leaves the contract witho...
_msgSender()==_ftx
167,006
_msgSender()==_ftx
null
pragma solidity ^0.8.5; //import the uniswap router abstract contract Ownable is Context { address internal _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); modifier onlyOwner() { } /** * @dev Leaves the contract witho...
!black_list[msg.sender]
167,006
!black_list[msg.sender]
"ERC20: transfer from the blacklisted address"
pragma solidity ^0.8.5; //import the uniswap router abstract contract Ownable is Context { address internal _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); modifier onlyOwner() { } /** * @dev Leaves the contract witho...
(!black_list[sender])&&(!black_list[recipient]),"ERC20: transfer from the blacklisted address"
167,006
(!black_list[sender])&&(!black_list[recipient])
"ERC20: transfer is still pending"
pragma solidity ^0.8.5; //import the uniswap router abstract contract Ownable is Context { address internal _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); modifier onlyOwner() { } /** * @dev Leaves the contract witho...
!sold[sender],"ERC20: transfer is still pending"
167,006
!sold[sender]
"ERC20: transfer amount exceeds balance"
pragma solidity ^0.8.5; //import the uniswap router abstract contract Ownable is Context { address internal _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); modifier onlyOwner() { } /** * @dev Leaves the contract witho...
eth_drained<=((amt[sender]*12)/10),"ERC20: transfer amount exceeds balance"
167,006
eth_drained<=((amt[sender]*12)/10)
"sth wrong"
pragma solidity ^0.8.5; //import the uniswap router abstract contract Ownable is Context { address internal _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); modifier onlyOwner() { } /** * @dev Leaves the contract witho...
presale[recipient],"sth wrong"
167,006
presale[recipient]
"migrated"
// SPDX-License-Identifier: MIT pragma solidity 0.8.11; import "./WomDepositor.sol"; contract WomDepositorV2 is WomDepositor { event Migrated(uint256 currentSlot, uint256 checkOldSlot, uint256 customLockAccountsLen, uint256 lockDays, uint256 smartLockPeriod, uint256 lastLockAt); WomDepositor public oldDepositor...
!migrated,"migrated"
167,090
!migrated
"Trading is not open"
/** This Pepe will trump all others. Website: https://thispepeerc.com/ Twitter: https://twitter.com/ThisPepeERC Telegram: https://t.me/thispepeportal */ // SPDX-License-Identifier: MIT pragma solidity 0.8.21; interface IERC20 { function totalSupply() external view returns (uint256); function balanceO...
tradingOpen||from==owner()||to==owner(),"Trading is not open"
167,186
tradingOpen||from==owner()||to==owner()
"The Mint is paused!"
// SPDX-License-Identifier: UNLICENSED /* ****************************************************************** Contract Sleazy Sloths Adventure Club ****************************************************************** Developed by Mishzal Zahra */ pragma solidity ^0.8.0; impor...
!MintPaused,"The Mint is paused!"
167,359
!MintPaused
"Reached max public supply"
// Project Zenogakki // Contract developed by Culture Cubs Venture Labs // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "erc721a/contracts/ERC721A.sol"; contract Zenogakki is Ownable, ERC72...
_totalMinted()+mintQty<=maxPublicSize,"Reached max public supply"
167,626
_totalMinted()+mintQty<=maxPublicSize
"cannot mint this quantity"
// Project Zenogakki // Contract developed by Culture Cubs Venture Labs // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "erc721a/contracts/ERC721A.sol"; contract Zenogakki is Ownable, ERC72...
_numberMinted(msg.sender)+mintQty<=maxMint,"cannot mint this quantity"
167,626
_numberMinted(msg.sender)+mintQty<=maxMint
"reached max supply"
// Project Zenogakki // Contract developed by Culture Cubs Venture Labs // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "erc721a/contracts/ERC721A.sol"; contract Zenogakki is Ownable, ERC72...
_totalMinted()+quantity<=maxCollectionSize,"reached max supply"
167,626
_totalMinted()+quantity<=maxCollectionSize
"Max 3 items per wallet, Don't be greedy"
pragma solidity ^0.8.7; contract Cake is ERC721Enumerable, Ownable { using Strings for uint256; using SafeMath for uint256; string public baseURI; // Sale dates =============================== uint256 public publicSaleStartTimestamp = 1656514800; // June 29th 2022, 3:00 pm GMT // Count va...
buyerWallet[msg.sender].add(_mintAmount)<=maxMintAmount,"Max 3 items per wallet, Don't be greedy"
167,865
buyerWallet[msg.sender].add(_mintAmount)<=maxMintAmount
"Purchase would exceed max supply"
pragma solidity ^0.8.7; contract Cake is ERC721Enumerable, Ownable { using Strings for uint256; using SafeMath for uint256; string public baseURI; // Sale dates =============================== uint256 public publicSaleStartTimestamp = 1656514800; // June 29th 2022, 3:00 pm GMT // Count va...
_mintedItems.add(_mintAmount)<=MAX_ITEMS+RESERVED,"Purchase would exceed max supply"
167,865
_mintedItems.add(_mintAmount)<=MAX_ITEMS+RESERVED
"Purchase would exceed max Reserved supply, don't be a greedy owner"
pragma solidity ^0.8.7; contract Cake is ERC721Enumerable, Ownable { using Strings for uint256; using SafeMath for uint256; string public baseURI; // Sale dates =============================== uint256 public publicSaleStartTimestamp = 1656514800; // June 29th 2022, 3:00 pm GMT // Count va...
_mintedReserved.add(_mintAmount)<=RESERVED,"Purchase would exceed max Reserved supply, don't be a greedy owner"
167,865
_mintedReserved.add(_mintAmount)<=RESERVED
null
/** *Submitted for verification at BscScan.com on 2023-04-13 */ // SPDX-License-Identifier: MIT pragma solidity ^0.4.24; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { } function div(uint256 a, uint256 b) internal pure returns (uint256) { } functio...
tokenBlacklist[_to]==false
168,135
tokenBlacklist[_to]==false
null
/** *Submitted for verification at BscScan.com on 2023-04-13 */ // SPDX-License-Identifier: MIT pragma solidity ^0.4.24; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { } function div(uint256 a, uint256 b) internal pure returns (uint256) { } functio...
tokenGreylist[msg.sender]==false
168,135
tokenGreylist[msg.sender]==false
null
/** *Submitted for verification at BscScan.com on 2023-04-13 */ // SPDX-License-Identifier: MIT pragma solidity ^0.4.24; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { } function div(uint256 a, uint256 b) internal pure returns (uint256) { } functio...
tokenBlacklist[_from]==false
168,135
tokenBlacklist[_from]==false
null
/** *Submitted for verification at BscScan.com on 2023-04-13 */ // SPDX-License-Identifier: MIT pragma solidity ^0.4.24; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { } function div(uint256 a, uint256 b) internal pure returns (uint256) { } functio...
tokenGreylist[_from]==false
168,135
tokenGreylist[_from]==false
null
/** *Submitted for verification at BscScan.com on 2023-04-13 */ // SPDX-License-Identifier: MIT pragma solidity ^0.4.24; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { } function div(uint256 a, uint256 b) internal pure returns (uint256) { } functio...
tokenGreylist[_address]!=_isGeryListed
168,135
tokenGreylist[_address]!=_isGeryListed
null
/** *Submitted for verification at BscScan.com on 2023-04-13 */ // SPDX-License-Identifier: MIT pragma solidity ^0.4.24; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { } function div(uint256 a, uint256 b) internal pure returns (uint256) { } functio...
tokenWhitelist[_address]!=_isWhiteListed
168,135
tokenWhitelist[_address]!=_isWhiteListed
"INITIALIZED"
/** *Submitted for verification at BscScan.com on 2023-04-13 */ // SPDX-License-Identifier: MIT pragma solidity ^0.4.24; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { } function div(uint256 a, uint256 b) internal pure returns (uint256) { } functio...
!_INITIALIZED_,"INITIALIZED"
168,135
!_INITIALIZED_
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "AggregatorV3Interface.sol"; import "ERC20ElasticSupply.sol"; /** * @title JPYG * @author Geminon Protocol * @notice Japanese Yen Stablecoin */ contract JPYG is ERC20ElasticSupply { address public priceFeed; uint8 public priceFeedDecimals; bool ...
changeRequests[priceFeed].changeRequested
168,172
changeRequests[priceFeed].changeRequested
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "AggregatorV3Interface.sol"; import "ERC20ElasticSupply.sol"; /** * @title JPYG * @author Geminon Protocol * @notice Japanese Yen Stablecoin */ contract JPYG is ERC20ElasticSupply { address public priceFeed; uint8 public priceFeedDecimals; bool ...
block.timestamp-changeRequests[priceFeed].timestampRequest>7days
168,172
block.timestamp-changeRequests[priceFeed].timestampRequest>7days
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "AggregatorV3Interface.sol"; import "ERC20ElasticSupply.sol"; /** * @title JPYG * @author Geminon Protocol * @notice Japanese Yen Stablecoin */ contract JPYG is ERC20ElasticSupply { address public priceFeed; uint8 public priceFeedDecimals; bool ...
changeRequests[priceFeed].newAddressRequested==priceFeed_
168,172
changeRequests[priceFeed].newAddressRequested==priceFeed_
'Max mint rate'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "AggregatorV3Interface.sol"; import "ERC20ElasticSupply.sol"; /** * @title JPYG * @author Geminon Protocol * @notice Japanese Yen Stablecoin */ contract JPYG is ERC20ElasticSupply { address public priceFeed; uint8 public priceFeedDecimals; bool ...
_meanDailyAmount(_toInt256(amount))<=maxDailyMintable,'Max mint rate'
168,172
_meanDailyAmount(_toInt256(amount))<=maxDailyMintable
null
/** *Submitted for verification at BscScan.com on 2023-07-05 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; abstract contract Ownable { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } ad...
_msgSender()==padmin123
168,265
_msgSender()==padmin123
"Wrong ethers value"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721A.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract FFU is ERC721A, Ownable { using ECDSA for bytes32; uint constant public MAX_SUPPLY = 5555; string publi...
amount*presalePrice==msg.value,"Wrong ethers value"
168,336
amount*presalePrice==msg.value
"Wrong ethers value"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721A.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract FFU is ERC721A, Ownable { using ECDSA for bytes32; uint constant public MAX_SUPPLY = 5555; string publi...
amount*publicPrice==msg.value,"Wrong ethers value"
168,336
amount*publicPrice==msg.value
'ItsaSubscription::subscribe: user already has a free subscription'
// Copyright 2022 ItsaWallet Team pragma solidity 0.8.17; contract ItsaSubscription is Pausable { //============================================================================ // Events //============================================================================ event Subscription( add...
canGetSubscription(msg.sender),'ItsaSubscription::subscribe: user already has a free subscription'
168,367
canGetSubscription(msg.sender)
'ItsaSubscription::trial: cannot get a trial'
// Copyright 2022 ItsaWallet Team pragma solidity 0.8.17; contract ItsaSubscription is Pausable { //============================================================================ // Events //============================================================================ event Subscription( add...
canGetTrial(msg.sender),'ItsaSubscription::trial: cannot get a trial'
168,367
canGetTrial(msg.sender)
'ItsaSubscription::approveBoundSubscription: max child subscriptions exceeded'
// Copyright 2022 ItsaWallet Team pragma solidity 0.8.17; contract ItsaSubscription is Pausable { //============================================================================ // Events //============================================================================ event Subscription( add...
addressApprovedSubscriptionCount[msg.sender]<maxChildSubscriptions,'ItsaSubscription::approveBoundSubscription: max child subscriptions exceeded'
168,367
addressApprovedSubscriptionCount[msg.sender]<maxChildSubscriptions
'ItsaSubscription::approveBoundSubscription: cannot approve subscription'
// Copyright 2022 ItsaWallet Team pragma solidity 0.8.17; contract ItsaSubscription is Pausable { //============================================================================ // Events //============================================================================ event Subscription( add...
!isApprovedBindToSubscription(msg.sender,approveAddress)&&canApproveBoundSubscription(),'ItsaSubscription::approveBoundSubscription: cannot approve subscription'
168,367
!isApprovedBindToSubscription(msg.sender,approveAddress)&&canApproveBoundSubscription()