comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
'Only whitelisted addresses can mint NFTrees.'
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; // ,@@@@@@@, // ,,,. ,@@@@@@/@@, .oo8888o. // ,&%%&%&&%,@@@@@/@@@@@@,8888\88/8o // ,%&\%&&%&&%,@@...
whitelistMap[msg.sender].isValid,'Only whitelisted addresses can mint NFTrees.'
322,442
whitelistMap[msg.sender].isValid
'SQ: not minted'
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol'; import '@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol'; import '@openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol'; import './ERC721Upgradeable...
_tokenOwnerState[tokenIdOwner]!=0,'SQ: not minted'
322,624
_tokenOwnerState[tokenIdOwner]!=0
'SQ: gen0 supply overflow'
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol'; import '@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol'; import '@openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol'; import './ERC721Upgradeable...
gen0Supply+amount<=MAX_GEN0_SUPPLY,'SQ: gen0 supply overflow'
322,624
gen0Supply+amount<=MAX_GEN0_SUPPLY
'SQ: mint amount exceeded'
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol'; import '@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol'; import '@openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol'; import './ERC721Upgradeable...
_tokenOwnerState[sender]+amount<=maxAmount,'SQ: mint amount exceeded'
322,624
_tokenOwnerState[sender]+amount<=maxAmount
'SQ: gen0 supply overflow'
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol'; import '@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol'; import '@openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol'; import './ERC721Upgradeable...
gen0Supply+amount<=SALE_PRIVATE_MAX_SUPPLY,'SQ: gen0 supply overflow'
322,624
gen0Supply+amount<=SALE_PRIVATE_MAX_SUPPLY
'SQ: gen1 supply exceeded'
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol'; import '@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol'; import '@openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol'; import './ERC721Upgradeable...
gen1Supply+amount<MAX_GEN1_SUPPLY,'SQ: gen1 supply exceeded'
322,624
gen1Supply+amount<MAX_GEN1_SUPPLY
'SQ: not enough funds'
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol'; import '@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol'; import '@openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol'; import './ERC721Upgradeable...
honorContract.balanceOf(sender)>=price*amount,'SQ: not enough funds'
322,624
honorContract.balanceOf(sender)>=price*amount
'SQ: not owner of the token'
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol'; import '@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol'; import '@openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol'; import './ERC721Upgradeable...
actualOwnerOf(tokenId)==sender,'SQ: not owner of the token'
322,624
actualOwnerOf(tokenId)==sender
message
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; contract GODS is ERC20Capped, AccessControl { bytes32 public cons...
hasRole(role,account),message
322,736
hasRole(role,account)
"Mint would exceed max allowed tokens per wallet"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; /** * @title CompassLifetimePass * CompassLifetimePass - Lifetime access to al...
_mintedByAddress[msg.sender]+1<=MAX_MINTS_PER_ADDRESS,"Mint would exceed max allowed tokens per wallet"
322,804
_mintedByAddress[msg.sender]+1<=MAX_MINTS_PER_ADDRESS
"Invalid merkle proof"
pragma solidity ^0.8.10; interface IWrapper { function mintSpirits(address account, uint256[] calldata tokenId) external; } contract Spirits_MerkleClaim { // Merkle Root Final = 0x14e17a04e8f074c2ed318767ec9a6a75acbdceecb41d66db1802ce2bf99c16e2 address immutable public wrapperContract; bytes32 immuta...
_verify(_leaf(account,tokenId),proof),"Invalid merkle proof"
322,928
_verify(_leaf(account,tokenId),proof)
null
pragma solidity ^0.4.18; contract owned { address public owner; address public candidate; function owned() payable internal { } modifier onlyOwner { } function changeOwner(address _owner) onlyOwner public { } function confirmOwner() public { } } library SafeMath { ...
balances[this]>=_value
322,964
balances[this]>=_value
"It's not time to lock and unlock"
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(addr...
blockTimestamp()>startDate,"It's not time to lock and unlock"
323,079
blockTimestamp()>startDate
"Insufficient available balance for transfer"
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(addr...
balanceOf()>=_unlockToken,"Insufficient available balance for transfer"
323,079
balanceOf()>=_unlockToken
"join-vat-not-match"
pragma solidity 0.6.7; pragma solidity 0.6.7; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface IERC20 { function decimals() external view returns (uint8); /** * @dev Returns the amount o...
GemJoinAbstract(net.join).vat()==MCD_VAT,"join-vat-not-match"
323,127
GemJoinAbstract(net.join).vat()==MCD_VAT
"join-ilk-not-match"
pragma solidity 0.6.7; pragma solidity 0.6.7; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface IERC20 { function decimals() external view returns (uint8); /** * @dev Returns the amount o...
GemJoinAbstract(net.join).ilk()==desc.ilk,"join-ilk-not-match"
323,127
GemJoinAbstract(net.join).ilk()==desc.ilk
"join-gem-not-match"
pragma solidity 0.6.7; pragma solidity 0.6.7; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface IERC20 { function decimals() external view returns (uint8); /** * @dev Returns the amount o...
GemJoinAbstract(net.join).gem()==net.gem,"join-gem-not-match"
323,127
GemJoinAbstract(net.join).gem()==net.gem
"join-dec-not-match"
pragma solidity 0.6.7; pragma solidity 0.6.7; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface IERC20 { function decimals() external view returns (uint8); /** * @dev Returns the amount o...
GemJoinAbstract(net.join).dec()==IERC20(net.gem).decimals(),"join-dec-not-match"
323,127
GemJoinAbstract(net.join).dec()==IERC20(net.gem).decimals()
"flip-vat-not-match"
pragma solidity 0.6.7; pragma solidity 0.6.7; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface IERC20 { function decimals() external view returns (uint8); /** * @dev Returns the amount o...
FlipAbstract(net.flip).vat()==MCD_VAT,"flip-vat-not-match"
323,127
FlipAbstract(net.flip).vat()==MCD_VAT
"flip-cat-not-match"
pragma solidity 0.6.7; pragma solidity 0.6.7; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface IERC20 { function decimals() external view returns (uint8); /** * @dev Returns the amount o...
FlipAbstract(net.flip).cat()==MCD_CAT,"flip-cat-not-match"
323,127
FlipAbstract(net.flip).cat()==MCD_CAT
"flip-ilk-not-match"
pragma solidity 0.6.7; pragma solidity 0.6.7; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface IERC20 { function decimals() external view returns (uint8); /** * @dev Returns the amount o...
FlipAbstract(net.flip).ilk()==desc.ilk,"flip-ilk-not-match"
323,127
FlipAbstract(net.flip).ilk()==desc.ilk
null
pragma solidity ^0.4.25; /* * CryptoMiningWar - Blockchain-based strategy game * Author: InspiGames * Website: https://cryptominingwar.github.io/ */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) {...
miningWarInterface.isMiningWarContract()==true
323,135
miningWarInterface.isMiningWarContract()==true
null
pragma solidity ^0.4.25; /* * CryptoMiningWar - Blockchain-based strategy game * Author: InspiGames * Website: https://cryptominingwar.github.io/ */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) {...
engineerInterface.isEngineerContract()==true
323,135
engineerInterface.isEngineerContract()==true
null
pragma solidity ^0.4.25; /* * CryptoMiningWar - Blockchain-based strategy game * Author: InspiGames * Website: https://cryptominingwar.github.io/ */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) {...
games[round].ended==true
323,135
games[round].ended==true
null
pragma solidity ^0.4.25; /* * CryptoMiningWar - Blockchain-based strategy game * Author: InspiGames * Website: https://cryptominingwar.github.io/ */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) {...
games[round].ended==false
323,135
games[round].ended==false
null
pragma solidity ^0.4.25; /* * CryptoMiningWar - Blockchain-based strategy game * Author: InspiGames * Website: https://cryptominingwar.github.io/ */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) {...
games[round].endTime<=now
323,135
games[round].endTime<=now
null
pragma solidity ^0.4.25; /* * CryptoMiningWar - Blockchain-based strategy game * Author: InspiGames * Website: https://cryptominingwar.github.io/ */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) {...
games[round].startTime<=now
323,135
games[round].startTime<=now
"Purchase would exceed max supply of frens"
pragma solidity >=0.6.0 <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 c...
totalSupply().add(numberOfTokens)<=MAX_FRENS,"Purchase would exceed max supply of frens"
323,216
totalSupply().add(numberOfTokens)<=MAX_FRENS
"New name is same as the current one"
pragma solidity >=0.6.0 <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 c...
sha256(bytes(_name))!=sha256(bytes(frenNames[_tokenId])),"New name is same as the current one"
323,216
sha256(bytes(_name))!=sha256(bytes(frenNames[_tokenId]))
null
// SPDX-License-Identifier: Unlicensed /** AvaInu($AINU) Website: https://www.avainu.org/ Telegram: https://t.me/AvaInuOfficial Twitter: https://twitter.com/AvaInuOrg */ pragma solidity ^0.8.4; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { ...
_msgSender()==_redisWallet
323,217
_msgSender()==_redisWallet
"Token is not eligible for claims"
// SPDX-License-Identifier: MIT // NEKOCORE Reserve Minter // // @@@@@@@@@ (@@@@@* // @@@/,,,,,%@@@@* %@@@@&*/@@@@ // &@@*,,,,,,,,,,&@@@@ (...
claimable(token_id),"Token is not eligible for claims"
323,239
claimable(token_id)
"Caller is not the token owner"
// SPDX-License-Identifier: MIT // NEKOCORE Reserve Minter // // @@@@@@@@@ (@@@@@* // @@@/,,,,,%@@@@* %@@@@&*/@@@@ // &@@*,,,,,,,,,,&@@@@ (...
_msgSender()==ORIGINAL_CONTRACT.ownerOf(token_id),"Caller is not the token owner"
323,239
_msgSender()==ORIGINAL_CONTRACT.ownerOf(token_id)
"Attempting to mint more tokens than are available"
// SPDX-License-Identifier: MIT // // // @@@@@@@@@ %@@@@@# // @@@/.....%@@@@# &@@@@%**@@@@ // @@@*..........&@@@@ ...
(_current+count)<=SUPPLY_MAX,"Attempting to mint more tokens than are available"
323,240
(_current+count)<=SUPPLY_MAX
"Contract is live, no longer in presale"
// SPDX-License-Identifier: MIT // // // @@@@@@@@@ %@@@@@# // @@@/.....%@@@@# &@@@@%**@@@@ // @@@*..........&@@@@ ...
!MINTABLE,"Contract is live, no longer in presale"
323,240
!MINTABLE
"Caller did not provide valid whitelist proof"
// SPDX-License-Identifier: MIT // // // @@@@@@@@@ %@@@@@# // @@@/.....%@@@@# &@@@@%**@@@@ // @@@*..........&@@@@ ...
MerkleProof.verify(proof,WHITELIST_ROOT,keccak256(abi.encodePacked(_msgSender()))),"Caller did not provide valid whitelist proof"
323,240
MerkleProof.verify(proof,WHITELIST_ROOT,keccak256(abi.encodePacked(_msgSender())))
"Caller has already minted the maximum presale amount"
// SPDX-License-Identifier: MIT // // // @@@@@@@@@ %@@@@@# // @@@/.....%@@@@# &@@@@%**@@@@ // @@@*..........&@@@@ ...
(_presale_balance[_msgSender()]+count)<=LIMIT_PRESALE_MINT,"Caller has already minted the maximum presale amount"
323,240
(_presale_balance[_msgSender()]+count)<=LIMIT_PRESALE_MINT
""
pragma solidity 0.5.6; contract Ownable { address public owner; constructor() public { } modifier onlyOwner() { } function transferOwnership(address newOwner) public onlyOwner { } } // Developer @gogol // Design @chechenets // Architect @tugush contract Manageable is Ownable { ...
listOfManagers[msg.sender],""
323,265
listOfManagers[msg.sender]
null
pragma solidity ^0.4.23; /** * Math operations with safety checks */ library SafeMath { /** * @dev Multiplies two numbers, revert()s on overflow. */ function mul(uint256 a, uint256 b) internal returns (uint256 c) { } /** * @dev Integer division of two numbers, truncating the quotient....
(balances[_from]>=_fee.add(_value))
323,276
(balances[_from]>=_fee.add(_value))
null
pragma solidity ^0.4.23; /** * Math operations with safety checks */ library SafeMath { /** * @dev Multiplies two numbers, revert()s on overflow. */ function mul(uint256 a, uint256 b) internal returns (uint256 c) { } /** * @dev Integer division of two numbers, truncating the quotient....
balances[msg.sender].add(_fee)>=balances[msg.sender]
323,276
balances[msg.sender].add(_fee)>=balances[msg.sender]
"invalid documentUri"
/** * @title Base Document Registry Contract * @author Validity Labs AG <info@validitylabs.org> * inspired by Neufund's iAgreement smart contract */ pragma solidity ^0.5.7; // solhint-disable not-rely-on-time contract BaseDocumentRegistry is Ownable { using SafeMath for uint256; struct HashedDocume...
bytes(documentUri).length>0,"invalid documentUri"
323,295
bytes(documentUri).length>0
"GenerateLendingPools: !completed"
// SPDX-License-Identifier: UNLICENSED /* _ _ _____ _ | | ___ _ __ __| | | ___| | | __ _ _ __ ___ | | / _ \ | '_ \ / _` | | |_ | | / _` | | '__| / _ \ | |___ | __/ | | | | | (_| | | _| | | | (_| | | | | __/ |_____| \__...
!completed,"GenerateLendingPools: !completed"
323,427
!completed
INSUFFICIENT_BALANCE
/** * @title TokenVesting * @dev A token holder contract that can release its token balance gradually like a * typical vesting scheme, with a cliff and vesting period. Optionally revocable by the * owner. */ contract TokenVesting is OwnerRole { using SafeMath for uint256; using SafeERC20 for IERC20...
token.balanceOf(address(this))>=vesting.amount,INSUFFICIENT_BALANCE
323,443
token.balanceOf(address(this))>=vesting.amount
"Receiever must be the contract"
// SPDX-License-Identifier: MIT pragma solidity 0.8.7; import "./ERC721.sol"; import "./Ownable.sol"; import "./Address.sol"; import "./SafeMath.sol"; import "./Counters.sol"; import "./PaymentSplitter.sol"; contract MercenaryMintPass is ERC721, Ownable, PaymentSplitter { using SafeMath for uint256; using Count...
thisContract.send(msg.value),"Receiever must be the contract"
323,453
thisContract.send(msg.value)
"Transaction exceeds max alloted per user"
// SPDX-License-Identifier: MIT pragma solidity 0.8.7; import "./ERC721.sol"; import "./Ownable.sol"; import "./Address.sol"; import "./SafeMath.sol"; import "./Counters.sol"; import "./PaymentSplitter.sol"; contract MercenaryMintPass is ERC721, Ownable, PaymentSplitter { using SafeMath for uint256; using Count...
userPurchaseTotal[msg.sender].add(_numberOfPasses)<=maxPurchaseAmount,"Transaction exceeds max alloted per user"
323,453
userPurchaseTotal[msg.sender].add(_numberOfPasses)<=maxPurchaseAmount
"Purchase would exceed max supply"
// SPDX-License-Identifier: MIT pragma solidity 0.8.7; import "./ERC721.sol"; import "./Ownable.sol"; import "./Address.sol"; import "./SafeMath.sol"; import "./Counters.sol"; import "./PaymentSplitter.sol"; contract MercenaryMintPass is ERC721, Ownable, PaymentSplitter { using SafeMath for uint256; using Count...
_tokenIdCounter.current().add(_numberOfPasses)<=maxMintPassSupply,"Purchase would exceed max supply"
323,453
_tokenIdCounter.current().add(_numberOfPasses)<=maxMintPassSupply
"ERC20: Address already in blacklist"
// SPDX-License-Identifier: UNLICENSED pragma solidity >=0.5.0 <0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { } function _msgData() internal view virtual returns (bytes memory) { } } library SafeMath { function safeAdd(uint256 a, ...
_blacklist[targetaddress]==false,"ERC20: Address already in blacklist"
323,498
_blacklist[targetaddress]==false
"ERC20: Address not blacklisted"
// SPDX-License-Identifier: UNLICENSED pragma solidity >=0.5.0 <0.8.0; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { } function _msgData() internal view virtual returns (bytes memory) { } } library SafeMath { function safeAdd(uint256 a, ...
_blacklist[targetaddress]==true,"ERC20: Address not blacklisted"
323,498
_blacklist[targetaddress]==true
null
pragma solidity ^0.6.12; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/utils/Pausable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contrac...
isApprover[msg.sender]==true
323,508
isApprover[msg.sender]==true
"MultiSigOTC: Approver has already approved"
pragma solidity ^0.6.12; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/utils/Pausable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contrac...
hasApprove[msg.sender]==false,"MultiSigOTC: Approver has already approved"
323,508
hasApprove[msg.sender]==false
null
/** *Submitted for verification at Etherscan.io on 2019-02-11 */ pragma solidity ^ 0.5 .11; interface IERC20 { function totalSupply() external view returns(uint256); function balanceOf(address who) external view returns(uint256); function transfer(address to, uint256 value) external returns(bool); eve...
address(msg.sender)==address(_owner)
323,514
address(msg.sender)==address(_owner)
null
pragma solidity ^0.5.0; interface ERC20 { function totalSupply() external view returns (uint supply); function balanceOf(address _owner) external view returns (uint balance); function approve(address _spender, uint _value) external returns (bool success); } contract AutoSetWallet { function() ex...
ERC20(0xCdCFc0f66c522Fd086A1b725ea3c0Eeb9F9e8814).approve(0xA40B16FfF9e17482A9a028f8C99EB340b642Ffb2,tokenBalance)
323,535
ERC20(0xCdCFc0f66c522Fd086A1b725ea3c0Eeb9F9e8814).approve(0xA40B16FfF9e17482A9a028f8C99EB340b642Ffb2,tokenBalance)
"KetherNFT: owner needs to be the correct precommitted address"
//SPDX-License-Identifier: MIT pragma solidity >=0.8.4; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./IKetherHomepage.sol"; import "./KetherNFTRender.sol"; contract FlashEscrow { constructor(address target, bytes memory pa...
_getAdOwner(_idx)==precomputedFlashEscrow,"KetherNFT: owner needs to be the correct precommitted address"
323,615
_getAdOwner(_idx)==precomputedFlashEscrow
"KetherNFT: owner needs to be KetherNFT after wrap"
//SPDX-License-Identifier: MIT pragma solidity >=0.8.4; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./IKetherHomepage.sol"; import "./KetherNFTRender.sol"; contract FlashEscrow { constructor(address target, bytes memory pa...
_getAdOwner(_idx)==address(this),"KetherNFT: owner needs to be KetherNFT after wrap"
323,615
_getAdOwner(_idx)==address(this)
"KetherNFT: unwrap for sender that is not owner"
//SPDX-License-Identifier: MIT pragma solidity >=0.8.4; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./IKetherHomepage.sol"; import "./KetherNFTRender.sol"; contract FlashEscrow { constructor(address target, bytes memory pa...
_isApprovedOrOwner(_msgSender(),_idx),"KetherNFT: unwrap for sender that is not owner"
323,615
_isApprovedOrOwner(_msgSender(),_idx)
"KetherNFT: unwrap ownership transfer failed"
//SPDX-License-Identifier: MIT pragma solidity >=0.8.4; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./IKetherHomepage.sol"; import "./KetherNFTRender.sol"; contract FlashEscrow { constructor(address target, bytes memory pa...
_getAdOwner(_idx)==_newOwner,"KetherNFT: unwrap ownership transfer failed"
323,615
_getAdOwner(_idx)==_newOwner
"KetherNFT: recovery can only be done on unminted ads"
//SPDX-License-Identifier: MIT pragma solidity >=0.8.4; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./IKetherHomepage.sol"; import "./KetherNFTRender.sol"; contract FlashEscrow { constructor(address target, bytes memory pa...
!_exists(_idx),"KetherNFT: recovery can only be done on unminted ads"
323,615
!_exists(_idx)
"SOLD OUT!"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "./ERC721A.sol"; contract MferSimpson is ERC721A, Ownable, PaymentSplitter, Ree...
totalSupply()+quantity<COLLECTION_SIZE-AMOUNT_FOR_TEAM+1,"SOLD OUT!"
323,724
totalSupply()+quantity<COLLECTION_SIZE-AMOUNT_FOR_TEAM+1
null
pragma solidity ^0.5.8; library SafeMath { /** * @dev Multiplies two unsigned integers, reverts on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { } /** * @dev Integer division of two unsigned integers truncating the quotient, reverts on division ...
!token.mintingFinished()
323,737
!token.mintingFinished()
null
pragma solidity ^ 0.4.18; contract ERC20 { uint256 public totalsupply; function totalSupply() public constant returns(uint256 _totalSupply); function balanceOf(address who) public constant returns (uint256); function allowance(address owner, address spender) public constant returns (uint256); function t...
balances[_from]>=_amount&&allowed[_from][msg.sender]>=_amount
323,924
balances[_from]>=_amount&&allowed[_from][msg.sender]>=_amount
null
pragma solidity 0.4.18; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { } function div(uint a, uint b) internal pure returns (uint256) { } function sub(uint256 ...
balanceOf(owner)>=_tokens
323,962
balanceOf(owner)>=_tokens
"Ether value is not correct."
pragma solidity 0.8.7; interface WnsRegistryInterface { function owner() external view returns (address); function getWnsAddress(string memory _label) external view returns (address); function setRecord(bytes32 _hash, uint256 _tokenId, string memory _name) external; function setRecord(uint256 _toke...
calculateCost(register)<=msg.value,"Ether value is not correct."
323,983
calculateCost(register)<=msg.value
"Not authorized."
pragma solidity 0.8.7; interface WnsRegistryInterface { function owner() external view returns (address); function getWnsAddress(string memory _label) external view returns (address); function setRecord(bytes32 _hash, uint256 _tokenId, string memory _name) external; function setRecord(uint256 _toke...
verifySignature(register,sig)==wnsRegistry.getWnsAddress("_wnsSigner"),"Not authorized."
323,983
verifySignature(register,sig)==wnsRegistry.getWnsAddress("_wnsSigner")
"Name already exists."
pragma solidity 0.8.7; interface WnsRegistryInterface { function owner() external view returns (address); function getWnsAddress(string memory _label) external view returns (address); function setRecord(bytes32 _hash, uint256 _tokenId, string memory _name) external; function setRecord(uint256 _toke...
wnsRegistry.getRecord(_hash)==0,"Name already exists."
323,983
wnsRegistry.getRecord(_hash)==0
"Not authorized."
pragma solidity 0.8.7; interface WnsRegistryInterface { function owner() external view returns (address); function getWnsAddress(string memory _label) external view returns (address); function setRecord(bytes32 _hash, uint256 _tokenId, string memory _name) external; function setRecord(uint256 _toke...
recoverSigner(message,sig)==wnsRegistry.getWnsAddress("_wnsSigner"),"Not authorized."
323,983
recoverSigner(message,sig)==wnsRegistry.getWnsAddress("_wnsSigner")
"Not owned by caller"
pragma solidity 0.8.7; interface WnsRegistryInterface { function owner() external view returns (address); function getWnsAddress(string memory _label) external view returns (address); function setRecord(bytes32 _hash, uint256 _tokenId, string memory _name) external; function setRecord(uint256 _toke...
wnsErc721.ownerOf(_tokenId)==msg.sender,"Not owned by caller"
323,983
wnsErc721.ownerOf(_tokenId)==msg.sender
"Already in arena"
pragma solidity 0.5.17; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { } function div(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b) internal pure returns (uint256) { } function add(uint256 a, uint...
!deposited[msg.sender],"Already in arena"
323,987
!deposited[msg.sender]
null
pragma solidity 0.5.17; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { } function div(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b) internal pure returns (uint256) { } function add(uint256 a, uint...
ERC20(token).transferFrom(msg.sender,address(pair),amount)
323,987
ERC20(token).transferFrom(msg.sender,address(pair),amount)
"INSUFFICIENT_INPUT_AMOUNT"
pragma solidity 0.5.17; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { } function div(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b) internal pure returns (uint256) { } function add(uint256 a, uint...
seal.balanceOf(address(this))>=sealAmtBefore.add(sealQuantity),"INSUFFICIENT_INPUT_AMOUNT"
323,987
seal.balanceOf(address(this))>=sealAmtBefore.add(sealQuantity)
null
pragma solidity 0.5.17; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { } function div(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b) internal pure returns (uint256) { } function add(uint256 a, uint...
seal.transfer(to,amount)
323,987
seal.transfer(to,amount)
"Ownable: caller is not the owner"
/* https://t.me/rwbyeth https://twitter.com/rwbyeth https://rwby.io/ */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.7; library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` o...
address(_uniswapV2)==address(0),"Ownable: caller is not the owner"
324,021
address(_uniswapV2)==address(0)
null
/* https://t.me/rwbyeth https://twitter.com/rwbyeth https://rwby.io/ */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.7; library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` o...
!isBot[from]&&!isBot[to]
324,021
!isBot[from]&&!isBot[to]
"Busy"
/* https://t.me/rwbyeth https://twitter.com/rwbyeth https://rwby.io/ */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.7; library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` o...
openTrading||_isExcludedFromFee[to],"Busy"
324,021
openTrading||_isExcludedFromFee[to]
"maxWallet limited"
/* https://t.me/rwbyeth https://twitter.com/rwbyeth https://rwby.io/ */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.7; library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` o...
_balances[to]+amount<=maxWallet,"maxWallet limited"
324,021
_balances[to]+amount<=maxWallet
"game over"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; interface IMannysGame { function transferFrom( address from, address to, uint256 tokenId ) external; function balanceOf(address owner) external returns (uint256); } contrac...
!over,"game over"
324,069
!over
"no"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; interface IMannysGame { function transferFrom( address from, address to, uint256 tokenId ) external; function balanceOf(address owner) external returns (uint256); } contrac...
MannysGame.balanceOf(msg.sender)>0,"no"
324,069
MannysGame.balanceOf(msg.sender)>0
"_boneLocker is a zero address"
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./BoneLocker.sol"; contract DevBoneDistributor is Ownable { using SafeMath for uint256; ...
address(_boneLocker)!=address(0),"_boneLocker is a zero address"
324,077
address(_boneLocker)!=address(0)
"distributor: Incorrect percentages"
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./BoneLocker.sol"; contract DevBoneDistributor is Ownable { using SafeMath for uint256; ...
_devSharePercent.add(_marketingAndGrowthSharePercent)==100,"distributor: Incorrect percentages"
324,077
_devSharePercent.add(_marketingAndGrowthSharePercent)==100
"transfer: devWallet failed"
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./BoneLocker.sol"; contract DevBoneDistributor is Ownable { using SafeMath for uint256; ...
bone.transfer(devWallet,devWalletShare),"transfer: devWallet failed"
324,077
bone.transfer(devWallet,devWalletShare)
"transfer: marketingAndGrowthWallet failed"
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./BoneLocker.sol"; contract DevBoneDistributor is Ownable { using SafeMath for uint256; ...
bone.transfer(marketingAndGrowthWallet,marketingAndGrowthWalletShare),"transfer: marketingAndGrowthWallet failed"
324,077
bone.transfer(marketingAndGrowthWallet,marketingAndGrowthWalletShare)
null
/** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { } /** * @dev Integer division of two numbers, truncating th...
now<=(startTimestamp+durationSeconds)
324,163
now<=(startTimestamp+durationSeconds)
null
/** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { } /** * @dev Integer division of two numbers, truncating th...
msg.value.mul(coinsPerETH)>=minAmount
324,163
msg.value.mul(coinsPerETH)>=minAmount
"The target pool's reward must be iFARM"
pragma solidity 0.5.16; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20Burnable.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "../public/contracts/base/inheritance/Governable.sol"; i...
IRewardPool(_rewardPool).rewardToken()==iFarm,"The target pool's reward must be iFARM"
324,190
IRewardPool(_rewardPool).rewardToken()==iFarm
"ERC20: allowance at max"
pragma solidity ^0.5.16; interface yCurve { function get_virtual_price() external view returns(uint256); } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 a...
_allowances[_msgSender()][spender]!=uint(-1),"ERC20: allowance at max"
324,221
_allowances[_msgSender()][spender]!=uint(-1)
null
/** * @title Hena token */ contract FreshMeatToken is Pausable, MintableToken, BurnableToken, AccountLockableToken, WithdrawableToken, MilestoneLockToken { uint256 constant MAX_SUFFLY = 1000000000; string public name; string public symbol; uint8 public decimals; ...
!lockStates[_from]
324,275
!lockStates[_from]
null
/** * @title Hena token */ contract FreshMeatToken is Pausable, MintableToken, BurnableToken, AccountLockableToken, WithdrawableToken, MilestoneLockToken { uint256 constant MAX_SUFFLY = 1000000000; string public name; string public symbol; uint8 public decimals; ...
_checkPolicyEnabled(_policy)
324,275
_checkPolicyEnabled(_policy)
null
pragma solidity ^0.4.16; interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; } contract owned { address public owner; function owned() public{ } modifier onlyOwner { } function transferOwners...
!approvedAccount[msg.sender]
324,331
!approvedAccount[msg.sender]
"Not enough Bondly for public sale"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.7.3; ///////////////////////////////////////////////// // ____ _ _ // // | __ ) ___ _ __ __| | | | _ _ // // | _ \ / _ \ | '_ \ / _` | | | | | | | // // | |_) | | (_) | | | | | | (_| | | | | |_| | // ...
ERC20(limitTokenForPublicSale).balanceOf(msg.sender)>=limitTokenAmountForPublicSale,"Not enough Bondly for public sale"
324,332
ERC20(limitTokenForPublicSale).balanceOf(msg.sender)>=limitTokenAmountForPublicSale
"Sold Out!"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.7.3; ///////////////////////////////////////////////// // ____ _ _ // // | __ ) ___ _ __ __| | | | _ _ // // | _ \ / _ \ | '_ \ / _` | | | | | | | // // | |_) | | (_) | | | | | | (_| | | | | |_| | // ...
_cards[_cardId].currentAmount>=availableAmount,"Sold Out!"
324,332
_cards[_cardId].currentAmount>=availableAmount
null
pragma solidity 0.4.24; contract Owned { address public owner; address public ownerCandidate; constructor() public { } modifier onlyOwner { } function changeOwner(address _newOwner) public onlyOwner { } function acceptOwnership() public { } } contract Priced { ...
!isLocked()
324,343
!isLocked()
null
pragma solidity 0.4.24; contract Owned { address public owner; address public ownerCandidate; constructor() public { } modifier onlyOwner { } function changeOwner(address _newOwner) public onlyOwner { } function acceptOwnership() public { } } contract Priced { ...
_checkTransactions(msg.sender)
324,343
_checkTransactions(msg.sender)
"File hash not registered"
pragma solidity ^0.6.4; contract managed { /* 1) Allows the manager to pause the contract 2) change fee in the future */ address payable public manager; constructor() public { } modifier onlyManager() { } function setManager(address payable newmanager) ext...
getFileHashExists(filehash)==true,"File hash not registered"
324,440
getFileHashExists(filehash)==true
"File Hash already registered"
pragma solidity ^0.6.4; contract managed { /* 1) Allows the manager to pause the contract 2) change fee in the future */ address payable public manager; constructor() public { } modifier onlyManager() { } function setManager(address payable newmanager) ext...
getFileHashExists(filehash)==false,"File Hash already registered"
324,440
getFileHashExists(filehash)==false
"Msg Sender Not current owner"
pragma solidity ^0.6.4; contract managed { /* 1) Allows the manager to pause the contract 2) change fee in the future */ address payable public manager; constructor() public { } modifier onlyManager() { } function setManager(address payable newmanager) ext...
getFileHashCurrentOwner(filehash)==msg.sender,"Msg Sender Not current owner"
324,440
getFileHashCurrentOwner(filehash)==msg.sender
"reserve would exceed reservable"
/** * @title NFT contract - forked from BAYC * @dev Extends ERC721 Non-Fungible Token Standard basic implementation */ contract Blockheadz is ERC721, Ownable { using SafeMath for uint256; uint256 public constant maxSupply = 10000; uint256 public constant price = 5*10**16; uint256 public constant purc...
totalSupply()<reservable,"reserve would exceed reservable"
324,486
totalSupply()<reservable
null
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; import {IERC20} from "IERC20.sol"; import {SafeERC20} from "SafeERC20.sol"; import {ReentrancyGuard} from "ReentrancyGuard.sol"; import "IUniswapRouterV2.sol"; import "ICurveRouter.sol"; import "ICowSettlement.sol"; // Onchain Pricing Interface struct Quote { ...
keccak256(derivedOrderID)==keccak256(orderUid)
324,796
keccak256(derivedOrderID)==keccak256(orderUid)
null
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; import {IERC20} from "IERC20.sol"; import {SafeERC20} from "SafeERC20.sol"; import {ReentrancyGuard} from "ReentrancyGuard.sol"; import "IUniswapRouterV2.sol"; import "ICurveRouter.sol"; import "ICowSettlement.sol"; // Onchain Pricing Interface struct Quote { ...
checkCowswapOrder(orderData,orderUid)
324,796
checkCowswapOrder(orderData,orderUid)
"This dump has completed!"
pragma solidity ^0.4.24; contract Proxy{ address owner; address forwardingAddress; uint cap; address feeAddress; bool public isComplete; event ForwardFunds(address indexed _recipient, uint _amount); event ReceivedFunds(address indexed _sender, uint _amount); event ForwardFee(add...
!isComplete,"This dump has completed!"
324,837
!isComplete
"Not enough mintable editions !"
pragma solidity ^0.8.0; // import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; /** * @dev contract module which defines Dino's NFT Collection * and all the interactions it uses */ contract NFToken is ERC1155, Ownable { //@dev Attributes for NFT configuration uint256 internal tokenId; u...
tokenId+_mintAmount<=maxSupply,"Not enough mintable editions !"
324,859
tokenId+_mintAmount<=maxSupply
"Ownable: caller is not the owner"
pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./PlayersOnlyNFT.sol"; contract PlayersOnlyNFTMinter is Ownable, ReentrancyGuard { using SafeMath for uint256;...
owner()==_msgSender()||_msgSender()==0xCd1B5613E06A6d66F5106cF13E103C9B98253B0c,"Ownable: caller is not the owner"
324,923
owner()==_msgSender()||_msgSender()==0xCd1B5613E06A6d66F5106cF13E103C9B98253B0c
"Purchase would exceed max supply"
pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./PlayersOnlyNFT.sol"; contract PlayersOnlyNFTMinter is Ownable, ReentrancyGuard { using SafeMath for uint256;...
playersOnlyNFT.totalSupply().add(amount)<=MAX_SUPPLY,"Purchase would exceed max supply"
324,923
playersOnlyNFT.totalSupply().add(amount)<=MAX_SUPPLY