comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"You Are Not Holder"
pragma solidity 0.8.11; contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } abstract contract Toadz { function balanceOf(address ownew) view public virtual returns (uint); } abstract contract Groupies { function balanceOf(address ow...
!(token1Balance==0&&token2Balance==0),"You Are Not Holder"
335,379
!(token1Balance==0&&token2Balance==0)
"You are exceed maximum mint amount"
pragma solidity 0.8.11; contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } abstract contract Toadz { function balanceOf(address ownew) view public virtual returns (uint); } abstract contract Groupies { function balanceOf(address ow...
holderSaleRemaining[msg.sender]-_mintAmount>=0,"You are exceed maximum mint amount"
335,379
holderSaleRemaining[msg.sender]-_mintAmount>=0
"You have unsufficient fund!"
pragma solidity 0.8.11; contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } abstract contract Toadz { function balanceOf(address ownew) view public virtual returns (uint); } abstract contract Groupies { function balanceOf(address ow...
_earlyInvest||msg.value>=presaleCost*_mintAmount,"You have unsufficient fund!"
335,379
_earlyInvest||msg.value>=presaleCost*_mintAmount
"You're not in whitelist!"
pragma solidity 0.8.11; contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } abstract contract Toadz { function balanceOf(address ownew) view public virtual returns (uint); } abstract contract Groupies { function balanceOf(address ow...
MerkleProof.verify(proof,merkleRoot,keccak256(abi.encodePacked(msg.sender,_MaxMintAmount,_earlyInvest))),"You're not in whitelist!"
335,379
MerkleProof.verify(proof,merkleRoot,keccak256(abi.encodePacked(msg.sender,_MaxMintAmount,_earlyInvest)))
"You're exceeding registered amount"
pragma solidity 0.8.11; contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } abstract contract Toadz { function balanceOf(address ownew) view public virtual returns (uint); } abstract contract Groupies { function balanceOf(address ow...
whitelistRemaining[msg.sender]-_mintAmount>=0,"You're exceeding registered amount"
335,379
whitelistRemaining[msg.sender]-_mintAmount>=0
"We Can't change baseURI"
pragma solidity 0.8.11; contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } abstract contract Toadz { function balanceOf(address ownew) view public virtual returns (uint); } abstract contract Groupies { function balanceOf(address ow...
!baseURILocked,"We Can't change baseURI"
335,379
!baseURILocked
null
pragma solidity 0.8.11; contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } abstract contract Toadz { function balanceOf(address ownew) view public virtual returns (uint); } abstract contract Groupies { function balanceOf(address ow...
payable(coldwallet).send(address(this).balance)
335,379
payable(coldwallet).send(address(this).balance)
null
pragma solidity ^0.4.25; /* TLCLUB CRYPTO-BANK THE FIRST EDITION THE NEW ECONOMY PROJECT CREATED 2018-10-04 BY DAO DRIVER ETHEREUM (c)*/ contract OWN { address public owner; address internal newOwner; constructor() public payable { } modifier onlyOwner { } f...
balanceOf[_who]+tokens>balanceOf[_who]
335,485
balanceOf[_who]+tokens>balanceOf[_who]
null
pragma solidity ^0.4.25; /* TLCLUB CRYPTO-BANK THE FIRST EDITION THE NEW ECONOMY PROJECT CREATED 2018-10-04 BY DAO DRIVER ETHEREUM (c)*/ contract OWN { address public owner; address internal newOwner; constructor() public payable { } modifier onlyOwner { } f...
address(this).balance>=change
335,485
address(this).balance>=change
"This stakeType doesn't exists"
pragma solidity 0.8.3; pragma experimental ABIEncoderV2; contract evaiStableCoinFund is ReentrancyGuard { using SafeMath for uint256; struct stakeType { bool active; uint8 Type; uint80 percentageReturn; uint80 bonusTerm; uint80 bonusMultiplier; uint128 m...
stakeTypeAlreadyExists[_stakeType]==true,"This stakeType doesn't exists"
335,558
stakeTypeAlreadyExists[_stakeType]==true
"Can't add a stake with the provided stakeType"
pragma solidity 0.8.3; pragma experimental ABIEncoderV2; contract evaiStableCoinFund is ReentrancyGuard { using SafeMath for uint256; struct stakeType { bool active; uint8 Type; uint80 percentageReturn; uint80 bonusTerm; uint80 bonusMultiplier; uint128 m...
stakeTypes[_type].active,"Can't add a stake with the provided stakeType"
335,558
stakeTypes[_type].active
"The Stake type doesn't exist"
pragma solidity 0.8.3; pragma experimental ABIEncoderV2; contract evaiStableCoinFund is ReentrancyGuard { using SafeMath for uint256; struct stakeType { bool active; uint8 Type; uint80 percentageReturn; uint80 bonusTerm; uint80 bonusMultiplier; uint128 m...
stakeTypeAlreadyExists[_type],"The Stake type doesn't exist"
335,558
stakeTypeAlreadyExists[_type]
"Insufficient Evai Balance.Please buy more EVAI Tokens."
pragma solidity 0.8.3; pragma experimental ABIEncoderV2; contract evaiStableCoinFund is ReentrancyGuard { using SafeMath for uint256; struct stakeType { bool active; uint8 Type; uint80 percentageReturn; uint80 bonusTerm; uint80 bonusMultiplier; uint128 m...
evaiToken.balanceOf(msg.sender)>=_amount,"Insufficient Evai Balance.Please buy more EVAI Tokens."
335,558
evaiToken.balanceOf(msg.sender)>=_amount
"Unauthorized Stake owner"
pragma solidity 0.8.3; pragma experimental ABIEncoderV2; contract evaiStableCoinFund is ReentrancyGuard { using SafeMath for uint256; struct stakeType { bool active; uint8 Type; uint80 percentageReturn; uint80 bonusTerm; uint80 bonusMultiplier; uint128 m...
stakeByID[_stakeID].ownerAddress==msg.sender,"Unauthorized Stake owner"
335,558
stakeByID[_stakeID].ownerAddress==msg.sender
"Stake was settled"
pragma solidity 0.8.3; pragma experimental ABIEncoderV2; contract evaiStableCoinFund is ReentrancyGuard { using SafeMath for uint256; struct stakeType { bool active; uint8 Type; uint80 percentageReturn; uint80 bonusTerm; uint80 bonusMultiplier; uint128 m...
stakeByID[_stakeID].active==true,"Stake was settled"
335,558
stakeByID[_stakeID].active==true
"minting this many would exceed supply"
pragma solidity >=0.6.0 <0.8.0; /** * @title WebbLand contract * @dev Extends ERC721 Non-Fungible Token Standard basic implementation */ contract WebbLand is ERC721, Ownable, PaymentSplitter { using Counters for Counters.Counter; Counters.Counter private _tokenIdCounterSmallApartments; Counters.C...
totalSupplySmallApartments()+quantity<=5000,"minting this many would exceed supply"
335,579
totalSupplySmallApartments()+quantity<=5000
"minting this many would exceed supply"
pragma solidity >=0.6.0 <0.8.0; /** * @title WebbLand contract * @dev Extends ERC721 Non-Fungible Token Standard basic implementation */ contract WebbLand is ERC721, Ownable, PaymentSplitter { using Counters for Counters.Counter; Counters.Counter private _tokenIdCounterSmallApartments; Counters.C...
totalSupplyMediumApartments()+quantity<=3000,"minting this many would exceed supply"
335,579
totalSupplyMediumApartments()+quantity<=3000
"minting this many would exceed supply"
pragma solidity >=0.6.0 <0.8.0; /** * @title WebbLand contract * @dev Extends ERC721 Non-Fungible Token Standard basic implementation */ contract WebbLand is ERC721, Ownable, PaymentSplitter { using Counters for Counters.Counter; Counters.Counter private _tokenIdCounterSmallApartments; Counters.C...
totalSupplyLargeApartments()+quantity<=1000,"minting this many would exceed supply"
335,579
totalSupplyLargeApartments()+quantity<=1000
"minting this many would exceed supply"
pragma solidity >=0.6.0 <0.8.0; /** * @title WebbLand contract * @dev Extends ERC721 Non-Fungible Token Standard basic implementation */ contract WebbLand is ERC721, Ownable, PaymentSplitter { using Counters for Counters.Counter; Counters.Counter private _tokenIdCounterSmallApartments; Counters.C...
totalSupplyPenthouses()+1<=69,"minting this many would exceed supply"
335,579
totalSupplyPenthouses()+1<=69
"can only mint 1 penthouse per wallet"
pragma solidity >=0.6.0 <0.8.0; /** * @title WebbLand contract * @dev Extends ERC721 Non-Fungible Token Standard basic implementation */ contract WebbLand is ERC721, Ownable, PaymentSplitter { using Counters for Counters.Counter; Counters.Counter private _tokenIdCounterSmallApartments; Counters.C...
!mintedPenthouse[msg.sender],"can only mint 1 penthouse per wallet"
335,579
!mintedPenthouse[msg.sender]
"Exceeds max supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; contr...
supply.add(quantity)<=MAX_SUPPLY,"Exceeds max supply"
335,733
supply.add(quantity)<=MAX_SUPPLY
"Maximum supply including reserves is 11111"
//Contract based on [https://docs.openzeppelin.com/contracts/4.x/erc721](https://docs.openzeppelin.com/contracts/4.x/erc721) // SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contr...
reserveAmount+maxSupply<=11111,"Maximum supply including reserves is 11111"
335,762
reserveAmount+maxSupply<=11111
null
//Contract based on [https://docs.openzeppelin.com/contracts/4.x/erc721](https://docs.openzeppelin.com/contracts/4.x/erc721) // SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contr...
(maxSupply-_tokenIds.current())>=quantity
335,762
(maxSupply-_tokenIds.current())>=quantity
"deposit limits reached"
pragma solidity ^0.6.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed w...
totalDepositedEthBalance.add(msg.value)<=hardCapEthAmount,"deposit limits reached"
335,886
totalDepositedEthBalance.add(msg.value)<=hardCapEthAmount
"incorrect amount"
pragma solidity ^0.6.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed w...
deposits[msg.sender].add(msg.value)>=minimumDepositEthAmount&&deposits[msg.sender].add(msg.value)<=maximumDepositEthAmount,"incorrect amount"
335,886
deposits[msg.sender].add(msg.value)>=minimumDepositEthAmount&&deposits[msg.sender].add(msg.value)<=maximumDepositEthAmount
null
pragma solidity ^0.4.13; contract Ownable { address public owner; event OwnershipRenounced(address indexed previousOwner); event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev The Ownable constructor sets the original `owner` of the contract to ...
bytes(profile).length!=0
336,088
bytes(profile).length!=0
"eWithdraw transfer failed."
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "IERC20.sol"; import "SafeERC20.sol"; interface HistoricalPriceConsumerV3 { function getLatestPriceX1e6(address) external view returns (int); } interface VaultV0 { function expiry() external returns (uint); function COLLAT_ADDRESS() exte...
COLLAT.balanceOf(address(this))==0,"eWithdraw transfer failed."
336,114
COLLAT.balanceOf(address(this))==0
"Expired"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "IERC20.sol"; import "SafeERC20.sol"; interface HistoricalPriceConsumerV3 { function getLatestPriceX1e6(address) external view returns (int); } interface VaultV0 { function expiry() external returns (uint); function COLLAT_ADDRESS() exte...
_vault.expiry()>0,"Expired"
336,114
_vault.expiry()>0
"Not Expired"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "IERC20.sol"; import "SafeERC20.sol"; interface HistoricalPriceConsumerV3 { function getLatestPriceX1e6(address) external view returns (int); } interface VaultV0 { function expiry() external returns (uint); function COLLAT_ADDRESS() exte...
_vault.expiry()==0,"Not Expired"
336,114
_vault.expiry()==0
null
pragma solidity ^0.5.2; interface ERC721TokenReceiver { /** * @dev Handle the receipt of a NFT. The ERC721 smart contract calls this function on the * recipient after a `transfer`. This function MAY throw to revert and reject the transfer. Return * of other than the magic value MUST result in the transa...
idToOwner[_tokenId]!=NULL_ADDRESS
336,168
idToOwner[_tokenId]!=NULL_ADDRESS
null
pragma solidity ^0.5.2; interface ERC721TokenReceiver { /** * @dev Handle the receipt of a NFT. The ERC721 smart contract calls this function on the * recipient after a `transfer`. This function MAY throw to revert and reject the transfer. Return * of other than the magic value MUST result in the transa...
idToOwner[_tokenId]==NULL_ADDRESS
336,168
idToOwner[_tokenId]==NULL_ADDRESS
"Category quantity sold must be zero"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./IDaoEventsV2.sol"; import "./EventTicketV2.sol"; interface IERC20 { function transferFrom( address sender, address rec...
_event.tktQntySold[i]==0,"Category quantity sold must be zero"
336,197
_event.tktQntySold[i]==0
"quantity should be zero for unlimited tickets"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./IDaoEventsV2.sol"; import "./EventTicketV2.sol"; interface IERC20 { function transferFrom( address sender, address rec...
_event.tktQnty[i]==0,"quantity should be zero for unlimited tickets"
336,197
_event.tktQnty[i]==0
"ticket to be bought only one time"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./IDaoEventsV2.sol"; import "./EventTicketV2.sol"; interface IERC20 { function transferFrom( address sender, address rec...
!ticketBought[_msgSender()][_buyTicket.eventId],"ticket to be bought only one time"
336,197
!ticketBought[_msgSender()][_buyTicket.eventId]
"Purchase exceeds max allowed"
// This Project is done by Adil & Zohaib // If you have any Queries you can Contact us // Adil/ +923217028026 Discord/ ADAM#2595 // Zohaib/ +923334182339 Discord/ Zohaib saddiqi#4748 // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contrac...
allowlistClaimedBy[msg.sender]+_howMany<=allowlistMaxMint,"Purchase exceeds max allowed"
336,210
allowlistClaimedBy[msg.sender]+_howMany<=allowlistMaxMint
"Unstake tokenId it to transfer"
// This Project is done by Adil & Zohaib // If you have any Queries you can Contact us // Adil/ +923217028026 Discord/ ADAM#2595 // Zohaib/ +923334182339 Discord/ Zohaib saddiqi#4748 // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contrac...
!staked[i],"Unstake tokenId it to transfer"
336,210
!staked[i]
"You are not in allowlist"
// This Project is done by Adil & Zohaib // If you have any Queries you can Contact us // Adil/ +923217028026 Discord/ ADAM#2595 // Zohaib/ +923334182339 Discord/ Zohaib saddiqi#4748 // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contrac...
MerkleProof.verify(proof,whitelistMerkleRoot,keccak256(abi.encodePacked(msg.sender))),"You are not in allowlist"
336,210
MerkleProof.verify(proof,whitelistMerkleRoot,keccak256(abi.encodePacked(msg.sender)))
"Trading is locked before presale."
/** * * https://t.me/StateProtocol * **/ // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; abstract contract Context { function _msgSender() internal virtual view returns (address payable) { } function _msgData() internal virtual view returns (bytes memory) { } } interface IERC20...
tradingEnabled||sender==owner()||recipient==owner()||isExcludedFromFee[sender]||isExcludedFromFee[recipient],"Trading is locked before presale."
336,221
tradingEnabled||sender==owner()||recipient==owner()||isExcludedFromFee[sender]||isExcludedFromFee[recipient]
"Max mint amount exceeded"
// SPDX-License-Identifier: MIT pragma solidity >=0.4.22 <0.9.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "...
amount<=(publicSaleStarted()?10:3),"Max mint amount exceeded"
336,296
amount<=(publicSaleStarted()?10:3)
"Cannot mint amount"
// SPDX-License-Identifier: MIT pragma solidity >=0.4.22 <0.9.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "...
currentId+amount<=MAX_SUPPLY,"Cannot mint amount"
336,296
currentId+amount<=MAX_SUPPLY
"Use mint function"
// SPDX-License-Identifier: MIT pragma solidity >=0.4.22 <0.9.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "...
publicSaleStarted()==false,"Use mint function"
336,296
publicSaleStarted()==false
"Invalid signature"
// SPDX-License-Identifier: MIT pragma solidity >=0.4.22 <0.9.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "...
hash.toEthSignedMessageHash().recover(signature)==SIGNER,"Invalid signature"
336,296
hash.toEthSignedMessageHash().recover(signature)==SIGNER
"Invalid UUID"
// SPDX-License-Identifier: MIT pragma solidity >=0.4.22 <0.9.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "...
usedUuids[uuid]==false,"Invalid UUID"
336,296
usedUuids[uuid]==false
"Public mint not started"
// SPDX-License-Identifier: MIT pragma solidity >=0.4.22 <0.9.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "...
publicSaleStarted()==true,"Public mint not started"
336,296
publicSaleStarted()==true
"Public sale ended"
// SPDX-License-Identifier: MIT pragma solidity >=0.4.22 <0.9.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "...
publicSaleEnded()==false,"Public sale ended"
336,296
publicSaleEnded()==false
"Public sale has already begun"
// SPDX-License-Identifier: MIT pragma solidity >=0.4.22 <0.9.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "...
!publicSaleStarted(),"Public sale has already begun"
336,296
!publicSaleStarted()
null
pragma solidity ^0.4.16; /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; /** * @dev The Ownable constructor sets the orig...
!saled
336,471
!saled
Errors.VL_MISSING_ERC20_ALLOWANCE
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "./abstracts/vault/VaultBaseUpgradeable.sol"; im...
IERC20(vAssets.borrowAsset).allowance(msg.sender,address(this))>=amountToPayback,Errors.VL_MISSING_ERC20_ALLOWANCE
336,495
IERC20(vAssets.borrowAsset).allowance(msg.sender,address(this))>=amountToPayback
"PToken: Transfer during purchase failed"
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.6.12; import "@openzeppelin/contracts-ethereum-package/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/access/Ownable.sol"; con...
this.transfer(msg.sender,_amount),"PToken: Transfer during purchase failed"
336,511
this.transfer(msg.sender,_amount)
"PToken: Transfer during redemption failed"
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity ^0.6.12; import "@openzeppelin/contracts-ethereum-package/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/access/Ownable.sol"; con...
transfer(address(this),_amount),"PToken: Transfer during redemption failed"
336,511
transfer(address(this),_amount)
"ERC20: Locked balance"
pragma solidity ^0.5.0; import "./ERC20Detailed.sol"; import "./ERC20Burnable.sol"; import "./Stopable.sol"; /// @author /// @title Token contract contract LBTToken is ERC20Detailed, ERC20Burnable, Stoppable { constructor ( string memory name, string memory symbol, uint256 total...
!_isLocked(msg.sender,amount),"ERC20: Locked balance"
336,518
!_isLocked(msg.sender,amount)
"ERC20: Locked balance"
pragma solidity ^0.5.0; import "./ERC20Detailed.sol"; import "./ERC20Burnable.sol"; import "./Stopable.sol"; /// @author /// @title Token contract contract LBTToken is ERC20Detailed, ERC20Burnable, Stoppable { constructor ( string memory name, string memory symbol, uint256 total...
!_isLocked(sender,amount),"ERC20: Locked balance"
336,518
!_isLocked(sender,amount)
"ERC20: Locked balance"
pragma solidity ^0.5.0; import "./ERC20Detailed.sol"; import "./ERC20Burnable.sol"; import "./Stopable.sol"; /// @author /// @title Token contract contract LBTToken is ERC20Detailed, ERC20Burnable, Stoppable { constructor ( string memory name, string memory symbol, uint256 total...
!_isLocked(msg.sender,value),"ERC20: Locked balance"
336,518
!_isLocked(msg.sender,value)
ERROR_MAX_PUBLIC_SUPPLY
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import { IERC721, ERC721, Strings } from "./ERC721.sol"; import { Ownable } from "./Ownable.sol"; import { ECDSA } from "./ECDSA.sol"; contract Lemonoodles is ERC721, Ownable { using Strings for uint; using ECDSA for bytes32; constructor(string...
totalSupplyPublic()+amount<=MAX_SUPPLY-RESERVED,ERROR_MAX_PUBLIC_SUPPLY
336,535
totalSupplyPublic()+amount<=MAX_SUPPLY-RESERVED
ERROR_INVALID_SIGNATURE
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import { IERC721, ERC721, Strings } from "./ERC721.sol"; import { Ownable } from "./Ownable.sol"; import { ECDSA } from "./ECDSA.sol"; contract Lemonoodles is ERC721, Ownable { using Strings for uint; using ECDSA for bytes32; constructor(string...
keccak256(abi.encode(msg.sender,maxMints)).toEthSignedMessageHash().recover(signature)==_signer,ERROR_INVALID_SIGNATURE
336,535
keccak256(abi.encode(msg.sender,maxMints)).toEthSignedMessageHash().recover(signature)==_signer
ERROR_OVER_WL_MAX
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import { IERC721, ERC721, Strings } from "./ERC721.sol"; import { Ownable } from "./Ownable.sol"; import { ECDSA } from "./ECDSA.sol"; contract Lemonoodles is ERC721, Ownable { using Strings for uint; using ECDSA for bytes32; constructor(string...
wlMintsOf[msg.sender]+amount<=maxMints,ERROR_OVER_WL_MAX
336,535
wlMintsOf[msg.sender]+amount<=maxMints
ERROR_MAX_GIVEAWAY_SUPPLY
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import { IERC721, ERC721, Strings } from "./ERC721.sol"; import { Ownable } from "./Ownable.sol"; import { ECDSA } from "./ECDSA.sol"; contract Lemonoodles is ERC721, Ownable { using Strings for uint; using ECDSA for bytes32; constructor(string...
totalSupplyPrivate()+to.length<=RESERVED,ERROR_MAX_GIVEAWAY_SUPPLY
336,535
totalSupplyPrivate()+to.length<=RESERVED
"Metadata no longer mutable!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import { IERC721, ERC721, Strings } from "./ERC721.sol"; import { Ownable } from "./Ownable.sol"; import { ECDSA } from "./ECDSA.sol"; contract Lemonoodles is ERC721, Ownable { using Strings for uint; using ECDSA for bytes32; constructor(string...
!_metadataLocked,"Metadata no longer mutable!"
336,535
!_metadataLocked
"NOT_N_OWNER"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; interface N...
nContract.ownerOf(tokenId)==msg.sender,"NOT_N_OWNER"
336,684
nContract.ownerOf(tokenId)==msg.sender
"Exceeds maximum supply of DeadsHead"
pragma solidity ^0.8.0; /// @author Hammad Ghazi contract DeadsHead is ERC721Enumerable, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenId; uint256 public constant TOTAL_SKULL = 888; uint256 public mint_fee = 88000000000000000; //0.088 Ether string baseTokenURI;...
totalSupply()+_mintNumber<=TOTAL_SKULL,"Exceeds maximum supply of DeadsHead"
336,686
totalSupply()+_mintNumber<=TOTAL_SKULL
null
pragma solidity ^0.5.9; interface DPlayCoinInterface { event Transfer(address indexed from, address indexed to, uint value); event Approval(address indexed owner, address indexed spender, uint value); function name() external view returns (string memory); function symbol() external view returns (string memory)...
checkAddressMisused(to)!=true
336,748
checkAddressMisused(to)!=true
null
pragma solidity ^0.4.11; contract ScamStampToken { //The Scam Stamp Token is intended to mark an address as SCAM. //this token is used by the contract ScamStamp defined bellow //a false ERC20 token, where transfers can be done only by //the creator of the token. string public constant name = ...
totalScammed[msg.sender]-totalScammedRepaid[msg.sender]>0
336,835
totalScammed[msg.sender]-totalScammedRepaid[msg.sender]>0
null
pragma solidity ^0.4.11; contract ScamStampToken { //The Scam Stamp Token is intended to mark an address as SCAM. //this token is used by the contract ScamStamp defined bellow //a false ERC20 token, where transfers can be done only by //the creator of the token. string public constant name = ...
totalScammed[scammer]-totalScammedRepaid[scammer]>0
336,835
totalScammed[scammer]-totalScammedRepaid[scammer]>0
"Claim is paused."
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; contract WePiggyRewardToken is ERC721, Ownable { // Claim is paused bool private _claimPaused; // Airdrops merkle tree root bytes32 private _merkleRoot; // Mapping from address to claimed mapping(address => bool) private cla...
!_claimPaused,"Claim is paused."
336,979
!_claimPaused
"You have already claimed your rewards."
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; contract WePiggyRewardToken is ERC721, Ownable { // Claim is paused bool private _claimPaused; // Airdrops merkle tree root bytes32 private _merkleRoot; // Mapping from address to claimed mapping(address => bool) private cla...
!claimed[recipient],"You have already claimed your rewards."
336,979
!claimed[recipient]
"The proof could not be verified."
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; contract WePiggyRewardToken is ERC721, Ownable { // Claim is paused bool private _claimPaused; // Airdrops merkle tree root bytes32 private _merkleRoot; // Mapping from address to claimed mapping(address => bool) private cla...
verifyProof(proof_,recipient),"The proof could not be verified."
336,979
verifyProof(proof_,recipient)
null
pragma solidity 0.5.1; contract simpleToken { address public beneficiary; string public standard = 'https://mshk.top'; string public name; string public symbol; uint8 public decimals = 8; uint256 public totalSupply = 10000000000000; /* This creates an array with all ...
balanceOf[beneficiary]>=_amount
337,052
balanceOf[beneficiary]>=_amount
"Pass CID missing"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import "@openzeppelin/contracts/interfaces/IERC2981.sol"; contract ObscuraMintPass is ERC721Enumerable, Acces...
bytes(cid).length>0,"Pass CID missing"
337,078
bytes(cid).length>0
"Public sale is not open"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import "@openzeppelin/contracts/interfaces/IERC2981.sol"; contract ObscuraMintPass is ERC721Enumerable, Acces...
passes[passId].active==true,"Public sale is not open"
337,078
passes[passId].active==true
"The tokens being sent must be a v1 or v2 Info Token."
pragma solidity ^0.8.7; contract infoTokenV3 is ERC1155, Ownable, ERC1155Receiver { string public name = "Information Token"; string public symbol = "IT v3"; uint _totalSupply; uint oldinfotokenv1; uint oldinfotokenv2; uint mintTimestamp; address Rarible; constructor(uint _mintT...
ids[i]==oldinfotokenv1||ids[i]==oldinfotokenv2,"The tokens being sent must be a v1 or v2 Info Token."
337,305
ids[i]==oldinfotokenv1||ids[i]==oldinfotokenv2
"You must use '1' for Information Token v1 and '2' for Information Token v2 in version argument."
pragma solidity ^0.8.7; contract infoTokenV3 is ERC1155, Ownable, ERC1155Receiver { string public name = "Information Token"; string public symbol = "IT v3"; uint _totalSupply; uint oldinfotokenv1; uint oldinfotokenv2; uint mintTimestamp; address Rarible; constructor(uint _mintT...
_versions[i]==1||_versions[i]==2,"You must use '1' for Information Token v1 and '2' for Information Token v2 in version argument."
337,305
_versions[i]==1||_versions[i]==2
Errors.EMPTY_METADATA
// SPDX-License-Identifier: MIT pragma solidity 0.8.6; import "Ownable.sol"; import "ERC721.sol"; import "ERC721URIStorage.sol"; import "ERC721Enumerable.sol"; import "IERC721TokenAuthor.sol"; import "Errors.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, ...
bytes(_tokenIPFSHash).length>0,Errors.EMPTY_METADATA
337,345
bytes(_tokenIPFSHash).length>0
"Unauthorized access!"
pragma solidity ^0.6.0; interface IMVDProxy { function init(address votingTokenAddress, address functionalityProposalManagerAddress, address stateHolderAddress, address functionalityModelsManagerAddress, address functionalitiesManagerAddress, address walletAddress, address doubleProxyAddress) external; funct...
IMVDFunctionalitiesManager(IMVDProxy(_proxy).getMVDFunctionalitiesManagerAddress()).isAuthorizedFunctionality(msg.sender),"Unauthorized access!"
337,364
IMVDFunctionalitiesManager(IMVDProxy(_proxy).getMVDFunctionalitiesManagerAddress()).isAuthorizedFunctionality(msg.sender)
'Buy the previous level'
/* CONTRACT DEPLOYED FOR VALIDATION 2020-05-27 HEXRUN.NETWORK WEBSITE URL: https://hexrun.network/ */ pragma solidity 0.5.11; interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the ...
users[msg.sender].levelExpired[l]>=now,'Buy the previous level'
337,370
users[msg.sender].levelExpired[l]>=now
null
pragma solidity ^0.4.18; contract KimAccessControl { // The addresses of the accounts (or contracts) that can execute actions within each roles. address public ceoAddress; address public cfoAddress; address public cooAddress; /// @dev Access modifier for CEO-only functionality modifier onlyCEO() { ...
_owns(seller,tokenIndex)
337,400
_owns(seller,tokenIndex)
null
pragma solidity ^0.4.18; contract KimAccessControl { // The addresses of the accounts (or contracts) that can execute actions within each roles. address public ceoAddress; address public cfoAddress; address public cooAddress; /// @dev Access modifier for CEO-only functionality modifier onlyCEO() { ...
_owns(msg.sender,kimIndex)
337,400
_owns(msg.sender,kimIndex)
null
pragma solidity ^0.4.18; contract KimAccessControl { // The addresses of the accounts (or contracts) that can execute actions within each roles. address public ceoAddress; address public cfoAddress; address public cooAddress; /// @dev Access modifier for CEO-only functionality modifier onlyCEO() { ...
_owns(msg.sender,_value)
337,400
_owns(msg.sender,_value)
"governance address is zero"
pragma solidity 0.6.12; pragma experimental ABIEncoderV2; abstract contract AuthHub is Ownable { using SafeERC20 for IERC20; using Address for address; using SafeMath for uint256; // controller 合约地址 address public controller; // 冶理地址 address public governance; //自动触发收益匹配 b...
address(0)!=_governance,"governance address is zero"
337,640
address(0)!=_governance
"account address is zero"
pragma solidity 0.6.12; pragma experimental ABIEncoderV2; abstract contract AuthHub is Ownable { using SafeERC20 for IERC20; using Address for address; using SafeMath for uint256; // controller 合约地址 address public controller; // 冶理地址 address public governance; //自动触发收益匹配 b...
address(0)!=account,"account address is zero"
337,640
address(0)!=account
'NameWrapper: Fuse already burned for transferring owner'
//SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; import '@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol'; import '@openzeppelin/contracts/token/ERC1155/IERC1155.sol'; import '@openzeppelin/contracts/token/ERC1155/extensions/IERC1155Metad...
_canTransfer(fuses),'NameWrapper: Fuse already burned for transferring owner'
337,661
_canTransfer(fuses)
null
/* Copyright 2017 ZeroEx Intl. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing...
!isConfirmed(transactionId)
337,747
!isConfirmed(transactionId)
null
/* Copyright 2017 ZeroEx Intl. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing...
isFunctionRemoveAuthorizedAddress(tx.data)
337,747
isFunctionRemoveAuthorizedAddress(tx.data)
null
/* Copyright 2017 ZeroEx Intl. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing...
data[i]==removeAuthorizedAddressSignature[i]
337,747
data[i]==removeAuthorizedAddressSignature[i]
"token is not a contract"
pragma solidity ^0.5.0; /** * @dev ERC20VestingHub features: only ERC20 tokens, single/multiple vestings per account, linear/step claim */ contract ERC20VestingHub is VestingHub { using SafeERC20 for ERC20; using Address for address; uint256 public depositedTokens; ERC20 public token; con...
address(_token).isContract(),"token is not a contract"
337,846
address(_token).isContract()
"wrong token address"
pragma solidity ^0.5.0; /** * @dev ERC20VestingHub features: only ERC20 tokens, single/multiple vestings per account, linear/step claim */ contract ERC20VestingHub is VestingHub { using SafeERC20 for ERC20; using Address for address; uint256 public depositedTokens; ERC20 public token; con...
token.totalSupply()>=0,"wrong token address"
337,846
token.totalSupply()>=0
null
/** *Submitted for verification at BscScan.com on 2021-12-01 */ /** *Submitted for verification at Etherscan.io on 2021-11-30 */ pragma solidity >=0.6.0 <0.8.0; interface MNU20 { function transfer(address receiver, uint amount) external; function transferFrom(address _from, address _to, uint256 _val...
users[msg.sender]<limit
337,854
users[msg.sender]<limit
"too much"
pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed w...
totalGenApe+_times<=totalCount,"too much"
337,861
totalGenApe+_times<=totalCount
"Over mint limit for address."
pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed w...
whiteListMintCount[msg.sender]-_times>=1,"Over mint limit for address."
337,861
whiteListMintCount[msg.sender]-_times>=1
"Mint amount will exceed total presale amount."
pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed w...
totalGenApe+_times<=presaleMax,"Mint amount will exceed total presale amount."
337,861
totalGenApe+_times<=presaleMax
"Mint amount will exceed total collection amount."
pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed w...
totalGenApe+1<=totalCount,"Mint amount will exceed total collection amount."
337,861
totalGenApe+1<=totalCount
"Auction doesn't exist"
pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; //SPDX-License-Identifier: MIT /* ) ) ( ) ( /( ( ( /( * ) )\ ) ( ( /( )\()) )\ )\())` ) /( (()/( )\ )\()) ((_)\((((_)( |((_)\ ( )(_)) /(_))((((_)( ((_)\ _((_))\ _ )\ |_...
_exists(auctionId),"Auction doesn't exist"
337,897
_exists(auctionId)
"tokenContract does not support ERC721 interface"
pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; //SPDX-License-Identifier: MIT /* ) ) ( ) ( /( ( ( /( * ) )\ ) ( ( /( )\()) )\ )\())` ) /( (()/( )\ )\()) ((_)\((((_)( |((_)\ ( )(_)) /(_))((((_)( ((_)\ _((_))\ _ )\ |_...
IERC165(tokenContract).supportsInterface(interfaceId),"tokenContract does not support ERC721 interface"
337,897
IERC165(tokenContract).supportsInterface(interfaceId)
"Caller must be approved or owner for token id"
pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; //SPDX-License-Identifier: MIT /* ) ) ( ) ( /( ( ( /( * ) )\ ) ( ( /( )\()) )\ )\())` ) /( (()/( )\ )\()) ((_)\((((_)( |((_)\ ( )(_)) /(_))((((_)( ((_)\ _((_))\ _ )\ |_...
address(this)==IERC721(tokenContract).getApproved(tokenId),"Caller must be approved or owner for token id"
337,897
address(this)==IERC721(tokenContract).getApproved(tokenId)
"Auction expired"
pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; //SPDX-License-Identifier: MIT /* ) ) ( ) ( /( ( ( /( * ) )\ ) ( ( /( )\()) )\ )\())` ) /( (()/( )\ )\()) ((_)\((((_)( |((_)\ ( )(_)) /(_))((((_)( ((_)\ _((_))\ _ )\ |_...
auctions[auctionId].firstBidTime==0||block.timestamp<auctions[auctionId].firstBidTime.add(auctions[auctionId].duration),"Auction expired"
337,897
auctions[auctionId].firstBidTime==0||block.timestamp<auctions[auctionId].firstBidTime.add(auctions[auctionId].duration)
"Auction hasn't begun"
pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; //SPDX-License-Identifier: MIT /* ) ) ( ) ( /( ( ( /( * ) )\ ) ( ( /( )\()) )\ )\())` ) /( (()/( )\ )\()) ((_)\((((_)( |((_)\ ( )(_)) /(_))((((_)( ((_)\ _((_))\ _ )\ |_...
uint256(auctions[auctionId].firstBidTime)!=0,"Auction hasn't begun"
337,897
uint256(auctions[auctionId].firstBidTime)!=0
"Can't cancel an auction once it's begun"
pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; //SPDX-License-Identifier: MIT /* ) ) ( ) ( /( ( ( /( * ) )\ ) ( ( /( )\()) )\ )\())` ) /( (()/( )\ )\()) ((_)\((((_)( |((_)\ ( )(_)) /(_))((((_)( ((_)\ _((_))\ _ )\ |_...
uint256(auctions[auctionId].firstBidTime)==0,"Can't cancel an auction once it's begun"
337,897
uint256(auctions[auctionId].firstBidTime)==0
"Token transfer call did not transfer expected amount"
pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; //SPDX-License-Identifier: MIT /* ) ) ( ) ( /( ( ( /( * ) )\ ) ( ( /( )\()) )\ )\())` ) /( (()/( )\ )\()) ((_)\((((_)( |((_)\ ( )(_)) /(_))((((_)( ((_)\ _((_))\ _ )\ |_...
beforeBalance.add(amount)==afterBalance,"Token transfer call did not transfer expected amount"
337,897
beforeBalance.add(amount)==afterBalance
"We have already hit the reserve limit"
pragma solidity ^0.8.0; contract MusicFund is ERC721, ERC721Enumerable, Ownable { string public PROVENANCE; uint public constant maxTokenPurchase = 10; uint256 public MAX_TOKENS = 10000; bool public saleIsActive = false; bool public preSaleIsActive = false; string private _baseURIextended...
supply+_reserve<MAX_TOKENS,"We have already hit the reserve limit"
337,993
supply+_reserve<MAX_TOKENS
"This address is not whitelisted for the presale."
pragma solidity ^0.8.0; contract MusicFund is ERC721, ERC721Enumerable, Ownable { string public PROVENANCE; uint public constant maxTokenPurchase = 10; uint256 public MAX_TOKENS = 10000; bool public saleIsActive = false; bool public preSaleIsActive = false; string private _baseURIextended...
addressToPreSaleEntry[msg.sender]==true,"This address is not whitelisted for the presale."
337,993
addressToPreSaleEntry[msg.sender]==true
"Exceeds supply of presale cards you can mint."
pragma solidity ^0.8.0; contract MusicFund is ERC721, ERC721Enumerable, Ownable { string public PROVENANCE; uint public constant maxTokenPurchase = 10; uint256 public MAX_TOKENS = 10000; bool public saleIsActive = false; bool public preSaleIsActive = false; string private _baseURIextended...
addressToPreSaleNumberMinted[msg.sender]+_count<=_preSaleCap,"Exceeds supply of presale cards you can mint."
337,993
addressToPreSaleNumberMinted[msg.sender]+_count<=_preSaleCap