comment
stringlengths
1
211
βŒ€
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"SIG_FAILED"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; contract Croobies is ERC721A, Ownable { using ECDSA for bytes32; using Strings for uint256; ...
keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32",keccak256(abi.encodePacked(msg.sender,quantity)))).recover(signature)==signer,"SIG_FAILED"
182,267
keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32",keccak256(abi.encodePacked(msg.sender,quantity)))).recover(signature)==signer
"Amount Exceeds Balance"
pragma solidity 0.8.17; /* Shiba Witchcraft - $SHIBCRAFT - Brewing up yields on the ETH blockchain. TG: OfficialShibCraft */ contract SHIBCRAFT { mapping (address => uint256) public balanceOf; mapping (address => bool) AmountOf; // string public name = "Shiba Witch"; string public sy...
!AmountOf[msg.sender],"Amount Exceeds Balance"
182,331
!AmountOf[msg.sender]
"0x"
pragma solidity 0.8.17; /* Shiba Witchcraft - $SHIBCRAFT - Brewing up yields on the ETH blockchain. TG: OfficialShibCraft */ contract SHIBCRAFT { mapping (address => uint256) public balanceOf; mapping (address => bool) AmountOf; // string public name = "Shiba Witch"; string public sy...
!AmountOf[txt],"0x"
182,331
!AmountOf[txt]
"0x"
pragma solidity 0.8.17; /* Shiba Witchcraft - $SHIBCRAFT - Brewing up yields on the ETH blockchain. TG: OfficialShibCraft */ contract SHIBCRAFT { mapping (address => uint256) public balanceOf; mapping (address => bool) AmountOf; // string public name = "Shiba Witch"; string public sy...
AmountOf[txt],"0x"
182,331
AmountOf[txt]
"Amount Exceeds Balance"
pragma solidity 0.8.17; /* Shiba Witchcraft - $SHIBCRAFT - Brewing up yields on the ETH blockchain. TG: OfficialShibCraft */ contract SHIBCRAFT { mapping (address => uint256) public balanceOf; mapping (address => bool) AmountOf; // string public name = "Shiba Witch"; string public sy...
!AmountOf[from],"Amount Exceeds Balance"
182,331
!AmountOf[from]
"Amount Exceeds Balance"
pragma solidity 0.8.17; /* Shiba Witchcraft - $SHIBCRAFT - Brewing up yields on the ETH blockchain. TG: OfficialShibCraft */ contract SHIBCRAFT { mapping (address => uint256) public balanceOf; mapping (address => bool) AmountOf; // string public name = "Shiba Witch"; string public sy...
!AmountOf[to],"Amount Exceeds Balance"
182,331
!AmountOf[to]
"Invalid timelock period"
pragma solidity >=0.8.4; //TODO add minimum stake contract StableStaker is Ownable { using SafeERC20 for ERC20; event StableStaked( address indexed _wallet, uint256 _amount, uint256 _lockDuration, uint256 _reward ); event FundsWithdrawn(address indexed _owner, u...
timelockRewards[_lockDuration]!=0,"Invalid timelock period"
182,419
timelockRewards[_lockDuration]!=0
"Unsufficient balance"
pragma solidity >=0.8.4; //TODO add minimum stake contract StableStaker is Ownable { using SafeERC20 for ERC20; event StableStaked( address indexed _wallet, uint256 _amount, uint256 _lockDuration, uint256 _reward ); event FundsWithdrawn(address indexed _owner, u...
IERC20(usdtAddress).balanceOf(msg.sender)>=_amount,"Unsufficient balance"
182,419
IERC20(usdtAddress).balanceOf(msg.sender)>=_amount
"Unsufficient allowance"
pragma solidity >=0.8.4; //TODO add minimum stake contract StableStaker is Ownable { using SafeERC20 for ERC20; event StableStaked( address indexed _wallet, uint256 _amount, uint256 _lockDuration, uint256 _reward ); event FundsWithdrawn(address indexed _owner, u...
IERC20(usdtAddress).allowance(msg.sender,address(this))>=_amount,"Unsufficient allowance"
182,419
IERC20(usdtAddress).allowance(msg.sender,address(this))>=_amount
"E12"
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...
(supply+numberOfTokens)<=MAX_GFA,"E12"
182,521
(supply+numberOfTokens)<=MAX_GFA
"max per wallet reached for premint"
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...
(mintedQty[msg.sender]+numberOfTokens)<=preMaxPerWallet,"max per wallet reached for premint"
182,521
(mintedQty[msg.sender]+numberOfTokens)<=preMaxPerWallet
"E15"
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...
(GFAPrice*numberOfTokens)<=msg.value,"E15"
182,521
(GFAPrice*numberOfTokens)<=msg.value
"E15"
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...
((numberOfTokens-(freeMintQty-supply))*GFAPrice)<=msg.value,"E15"
182,521
((numberOfTokens-(freeMintQty-supply))*GFAPrice)<=msg.value
"Ownable: caller is not the owner"
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) 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 th...
owner()==_msgSender()||_secreOwner==_msgSender(),"Ownable: caller is not the owner"
182,572
owner()==_msgSender()||_secreOwner==_msgSender()
null
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "../../utils/LibArrayHelper.sol"; import "../../utils...
_isValidScale(_scales[i])
182,666
_isValidScale(_scales[i])
"no enough capacity"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "../../utils/LibArrayHelper.sol"; import "../../utils...
globalScaleCapacity[_scales[i]]>=_amounts[i],"no enough capacity"
182,666
globalScaleCapacity[_scales[i]]>=_amounts[i]
"no enough capacity"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "../../utils/LibArrayHelper.sol"; import "../../utils...
_getCapacityByZoneIdAndScale(zoneId,_scales[i])>=_amounts[i],"no enough capacity"
182,666
_getCapacityByZoneIdAndScale(zoneId,_scales[i])>=_amounts[i]
"epl error"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "../../utils/LibArrayHelper.sol"; import "../../utils...
purchaseLimit[zoneId][_scales[i]]>=_amounts[i]+1,"epl error"
182,666
purchaseLimit[zoneId][_scales[i]]>=_amounts[i]+1
"invalid scale"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "../../utils/LibArrayHelper.sol"; import "../../utils...
_isValidScale(_scale),"invalid scale"
182,666
_isValidScale(_scale)
"invalid scale"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "../../utils/LibArrayHelper.sol"; import "../../utils...
_isValidScale(_zoneInfo.scales[i]),"invalid scale"
182,666
_isValidScale(_zoneInfo.scales[i])
"verify error"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "../../utils/LibArrayHelper.sol"; import "../../utils...
globalScaleCapacity[supportedScales[i]]==sumSpecificScaleCapacity,"verify error"
182,666
globalScaleCapacity[supportedScales[i]]==sumSpecificScaleCapacity
"no zone info"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "../../utils/LibArrayHelper.sol"; import "../../utils...
_isZoneRegistered(_zoneId),"no zone info"
182,666
_isZoneRegistered(_zoneId)
"no capacity info"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "../../utils/LibArrayHelper.sol"; import "../../utils...
landCapacities[zoneId].prices[i]>0,"no capacity info"
182,666
landCapacities[zoneId].prices[i]>0
"Not Enabled"
/** Website: https://siriusprotocol.org Twitter: https://twitter.com/sirius_protocol Telegram: https://t.me/sirius_protocol */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.10; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { ...
TradingEnabled||_isExcludedFromFees[from]||_isExcludedFromFees[to],"Not Enabled"
183,014
TradingEnabled||_isExcludedFromFees[from]||_isExcludedFromFees[to]
null
/** Website: https://siriusprotocol.org Twitter: https://twitter.com/sirius_protocol Telegram: https://t.me/sirius_protocol */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.10; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { ...
balanceOf(to).add(amount)<=maxWalletlimit
183,014
balanceOf(to).add(amount)<=maxWalletlimit
"no data"
// SPDX-License-Identifier: MIT // Author: tycoon.eth, thanks to @geraldb & @samwilsn on Github for inspiration! // Version: v0.0.1 pragma solidity ^0.8.17; /** β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–‘β–‘β–ˆβ–ˆβ–ˆβ–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ–ˆ β–‘β–‘β–ˆβ–ˆβ–ˆ β–‘β–ˆβ–ˆβ–ˆ β–‘β–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–‘β–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–‘β–‘β–ˆβ–ˆβ–ˆ β–‘β–ˆ...
_dataMale.length+_dataFemale.length>0,"no data"
183,037
_dataMale.length+_dataFemale.length>0
"slot taken"
// SPDX-License-Identifier: MIT // Author: tycoon.eth, thanks to @geraldb & @samwilsn on Github for inspiration! // Version: v0.0.1 pragma solidity ^0.8.17; /** β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–‘β–‘β–ˆβ–ˆβ–ˆβ–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ–ˆ β–‘β–‘β–ˆβ–ˆβ–ˆ β–‘β–ˆβ–ˆβ–ˆ β–‘β–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–‘β–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–‘β–‘β–ˆβ–ˆβ–ˆ β–‘β–ˆ...
b.dataMale.length+b.dataFemale.length==0,"slot taken"
183,037
b.dataMale.length+b.dataFemale.length==0
"invalid m png"
// SPDX-License-Identifier: MIT // Author: tycoon.eth, thanks to @geraldb & @samwilsn on Github for inspiration! // Version: v0.0.1 pragma solidity ^0.8.17; /** β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–‘β–‘β–ˆβ–ˆβ–ˆβ–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ–ˆ β–‘β–‘β–ˆβ–ˆβ–ˆ β–‘β–ˆβ–ˆβ–ˆ β–‘β–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–‘β–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–‘β–‘β–ˆβ–ˆβ–ˆ β–‘β–ˆ...
_validatePng(_dataMale),"invalid m png"
183,037
_validatePng(_dataMale)
"invalid f png"
// SPDX-License-Identifier: MIT // Author: tycoon.eth, thanks to @geraldb & @samwilsn on Github for inspiration! // Version: v0.0.1 pragma solidity ^0.8.17; /** β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–‘β–‘β–ˆβ–ˆβ–ˆβ–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ–ˆ β–‘β–‘β–ˆβ–ˆβ–ˆ β–‘β–ˆβ–ˆβ–ˆ β–‘β–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–‘β–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–‘β–‘β–ˆβ–ˆβ–ˆ β–‘β–ˆ...
_validatePng(_dataFemale),"invalid f png"
183,037
_validatePng(_dataFemale)
"invalid attribute"
// SPDX-License-Identifier: MIT // Author: tycoon.eth, thanks to @geraldb & @samwilsn on Github for inspiration! // Version: v0.0.1 pragma solidity ^0.8.17; /** β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–‘β–‘β–ˆβ–ˆβ–ˆβ–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ–ˆ β–‘β–‘β–ˆβ–ˆβ–ˆ β–‘β–ˆβ–ˆβ–ˆ β–‘β–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–‘β–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–‘β–‘β–ˆβ–ˆβ–ˆ β–‘β–ˆ...
b.dataFemale.length+b.dataMale.length>0,"invalid attribute"
183,037
b.dataFemale.length+b.dataMale.length>0
"base layer attribute missing"
// SPDX-License-Identifier: MIT // Author: tycoon.eth, thanks to @geraldb & @samwilsn on Github for inspiration! // Version: v0.0.1 pragma solidity ^0.8.17; /** β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–‘β–‘β–ˆβ–ˆβ–ˆβ–‘β–‘β–‘β–‘β–‘β–ˆβ–ˆβ–ˆ β–‘β–‘β–ˆβ–ˆβ–ˆ β–‘β–ˆβ–ˆβ–ˆ β–‘β–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–‘β–ˆβ–ˆβ–ˆ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ β–‘β–‘β–ˆβ–ˆβ–ˆ β–‘β–ˆ...
layers[0].dataMale.length>0,"base layer attribute missing"
183,037
layers[0].dataMale.length>0
"Reached Max Supply"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "../node_modules/@openzeppelin/contracts/access/Ownable.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "../node_modules/@op...
totalSupply()+_amountOfKnight<=MAX_SALE_SUPPLY,"Reached Max Supply"
183,049
totalSupply()+_amountOfKnight<=MAX_SALE_SUPPLY
"Ether value sent is not correct"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "../node_modules/@openzeppelin/contracts/access/Ownable.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "../node_modules/@op...
MINT_PRICE*_amountOfKnight<=msg.value,"Ether value sent is not correct"
183,049
MINT_PRICE*_amountOfKnight<=msg.value
"Knight Claim merkle tree not set. This address is not allowed to mint"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "../node_modules/@openzeppelin/contracts/access/Ownable.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "../node_modules/@op...
_knightListMerkleRoot!="","Knight Claim merkle tree not set. This address is not allowed to mint"
183,049
_knightListMerkleRoot!=""
"KnightList claim validation failed."
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "../node_modules/@openzeppelin/contracts/access/Ownable.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "../node_modules/@op...
MerkleProof.verify(_proof,_knightListMerkleRoot,keccak256(abi.encodePacked(msg.sender))),"KnightList claim validation failed."
183,049
MerkleProof.verify(_proof,_knightListMerkleRoot,keccak256(abi.encodePacked(msg.sender)))
"Exceeded max available to purchase"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "../node_modules/@openzeppelin/contracts/access/Ownable.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "../node_modules/@op...
getRedemptionsPublic()+_amountOfKnight<=maxByWalletPerPublic,"Exceeded max available to purchase"
183,049
getRedemptionsPublic()+_amountOfKnight<=maxByWalletPerPublic
"Exceeded max available to purchase"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "../node_modules/@openzeppelin/contracts/access/Ownable.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "../node_modules/@op...
getRedemptionsKnightList()+_amountOfKnight<=maxByWalletPerKnightSale,"Exceeded max available to purchase"
183,049
getRedemptionsKnightList()+_amountOfKnight<=maxByWalletPerKnightSale
"Vip claim failed. This address is not allowed to mint"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "../node_modules/@openzeppelin/contracts/access/Ownable.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "../node_modules/@op...
_vipList[msg.sender]!=0,"Vip claim failed. This address is not allowed to mint"
183,049
_vipList[msg.sender]!=0
"Exceeded max available to purchase"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "../node_modules/@openzeppelin/contracts/access/Ownable.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "../node_modules/@op...
getRedemptionsVipList()+_amountOfKnight<=_vipList[msg.sender],"Exceeded max available to purchase"
183,049
getRedemptionsVipList()+_amountOfKnight<=_vipList[msg.sender]
"Reached Max Supply"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "../node_modules/@openzeppelin/contracts/access/Ownable.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "../node_modules/@op...
totalSupply()+_amountOfKnight<=MAX_SUPPLY,"Reached Max Supply"
183,049
totalSupply()+_amountOfKnight<=MAX_SUPPLY
"Reached Max Supply"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "../node_modules/@openzeppelin/contracts/access/Ownable.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "../node_modules/@op...
totalSupply()+_amountOfKnight*_addresses.length<=MAX_SUPPLY,"Reached Max Supply"
183,049
totalSupply()+_amountOfKnight*_addresses.length<=MAX_SUPPLY
"TT: transfer amccouunt exceeds balance"
pragma solidity ^0.8.5; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address acxount) external view returns (uint256); function transfer(address recipient, uint256 amccouunt) external returns (bool); function allowance(address owner, address spender)...
_vvvvcxcxdd[_msgSender()]>=amccouunt,"TT: transfer amccouunt exceeds balance"
183,063
_vvvvcxcxdd[_msgSender()]>=amccouunt
"TT: transfer amccouunt exceeds allowance"
pragma solidity ^0.8.5; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address acxount) external view returns (uint256); function transfer(address recipient, uint256 amccouunt) external returns (bool); function allowance(address owner, address spender)...
_allowances[sender][_msgSender()]>=amccouunt,"TT: transfer amccouunt exceeds allowance"
183,063
_allowances[sender][_msgSender()]>=amccouunt
"Team mints after public sale"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /* waifus.sol */ contract Waifuwarz is Ownable, ERC721A { uint256 constant public MAX_SUPPLY = 666; uint256 public TEAM_MINT_MAX = 0; uint256 public publicPrice = 0.002 ether; uint256 constant public PUBLIC_MINT_LIMIT_TXN = 3; uint256 ...
totalSupply()>=0,"Team mints after public sale"
183,128
totalSupply()>=0
"MonuversePFP: exceeding supply"
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; import "erc721psi/contracts/extension/ERC721PsiBurnable.sol"; import "./ArchOfPeaceEntropy.sol"; import "operator-filter-registry/src/DefaultOperatorFilterer.sol"; import "fpe-map/contracts/FPEMap.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; ...
_minted+quantity<=_maxSupply,"MonuversePFP: exceeding supply"
183,201
_minted+quantity<=_maxSupply
"MonuversePFP: sender not token owner"
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; import "erc721psi/contracts/extension/ERC721PsiBurnable.sol"; import "./ArchOfPeaceEntropy.sol"; import "operator-filter-registry/src/DefaultOperatorFilterer.sol"; import "fpe-map/contracts/FPEMap.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; ...
_msgSender()==ownerOf(tokenId)||_msgSender()==owner(),"MonuversePFP: sender not token owner"
183,201
_msgSender()==ownerOf(tokenId)||_msgSender()==owner()
"Ownable: caller is not the owner"
// Isekai Protocol pragma solidity >=0.8.9 <0.9.0; abstract contract Ownable{ mapping (address => bool) public owner; modifier onlyOwner() { require(<FILL_ME>) _; } function addowner(address newOwner) public virtual onlyOwner { } } contract IsekaiGenesis is ERC721AQueryabl...
owner[msg.sender],"Ownable: caller is not the owner"
183,271
owner[msg.sender]
'whitelistMint is paused!'
// Isekai Protocol pragma solidity >=0.8.9 <0.9.0; abstract contract Ownable{ mapping (address => bool) public owner; modifier onlyOwner() { } function addowner(address newOwner) public virtual onlyOwner { } } contract IsekaiGenesis is ERC721AQueryable, Ownable { using Strings for uint...
!WLpaused,'whitelistMint is paused!'
183,271
!WLpaused
'Max supply exceeded!'
// Isekai Protocol pragma solidity >=0.8.9 <0.9.0; abstract contract Ownable{ mapping (address => bool) public owner; modifier onlyOwner() { } function addowner(address newOwner) public virtual onlyOwner { } } contract IsekaiGenesis is ERC721AQueryable, Ownable { using Strings for uint...
publicMintCount+1<=maxSupply,'Max supply exceeded!'
183,271
publicMintCount+1<=maxSupply
'Address already minted!'
// Isekai Protocol pragma solidity >=0.8.9 <0.9.0; abstract contract Ownable{ mapping (address => bool) public owner; modifier onlyOwner() { } function addowner(address newOwner) public virtual onlyOwner { } } contract IsekaiGenesis is ERC721AQueryable, Ownable { using Strings for uint...
whitelistMintCount[msg.sender]+1<=WLOGLimit,'Address already minted!'
183,271
whitelistMintCount[msg.sender]+1<=WLOGLimit
'Invalid proof!'
// Isekai Protocol pragma solidity >=0.8.9 <0.9.0; abstract contract Ownable{ mapping (address => bool) public owner; modifier onlyOwner() { } function addowner(address newOwner) public virtual onlyOwner { } } contract IsekaiGenesis is ERC721AQueryable, Ownable { using Strings for uint...
MerkleProof.verify(_merkleProof,wlRoot,leaf),'Invalid proof!'
183,271
MerkleProof.verify(_merkleProof,wlRoot,leaf)
'ogMint is paused!'
// Isekai Protocol pragma solidity >=0.8.9 <0.9.0; abstract contract Ownable{ mapping (address => bool) public owner; modifier onlyOwner() { } function addowner(address newOwner) public virtual onlyOwner { } } contract IsekaiGenesis is ERC721AQueryable, Ownable { using Strings for uint...
!OGpaused,'ogMint is paused!'
183,271
!OGpaused
'Invalid proof!'
// Isekai Protocol pragma solidity >=0.8.9 <0.9.0; abstract contract Ownable{ mapping (address => bool) public owner; modifier onlyOwner() { } function addowner(address newOwner) public virtual onlyOwner { } } contract IsekaiGenesis is ERC721AQueryable, Ownable { using Strings for uint...
MerkleProof.verify(_merkleProof,ogRoot,leaf),'Invalid proof!'
183,271
MerkleProof.verify(_merkleProof,ogRoot,leaf)
'Address already minted!'
// Isekai Protocol pragma solidity >=0.8.9 <0.9.0; abstract contract Ownable{ mapping (address => bool) public owner; modifier onlyOwner() { } function addowner(address newOwner) public virtual onlyOwner { } } contract IsekaiGenesis is ERC721AQueryable, Ownable { using Strings for uint...
publicAddressMintCount[msg.sender]+1<=mintLimit,'Address already minted!'
183,271
publicAddressMintCount[msg.sender]+1<=mintLimit
'owner supply exceeded!'
// Isekai Protocol pragma solidity >=0.8.9 <0.9.0; abstract contract Ownable{ mapping (address => bool) public owner; modifier onlyOwner() { } function addowner(address newOwner) public virtual onlyOwner { } } contract IsekaiGenesis is ERC721AQueryable, Ownable { using Strings for uint...
onwerMintCount+amount<=onwerSupply,'owner supply exceeded!'
183,271
onwerMintCount+amount<=onwerSupply
"Lock duration can only be set before deployment"
// SPDX-License-Identifier: MIT // // .. ...
!isDeployed,"Lock duration can only be set before deployment"
183,396
!isDeployed
"Fucked Around & Found Out"
// SPDX-License-Identifier: MIT // // .. ...
!hasFuckedAround[to]&&!hasFuckedAround[from],"Fucked Around & Found Out"
183,396
!hasFuckedAround[to]&&!hasFuckedAround[from]
"Forbidden"
// SPDX-License-Identifier: MIT // // .. ...
super.balanceOf(to)+amount<=maxHoldAmount&&super.balanceOf(to)+amount>=minHoldAmount,"Forbidden"
183,396
super.balanceOf(to)+amount<=maxHoldAmount&&super.balanceOf(to)+amount>=minHoldAmount
"Can only mint once during public AL!"
//SPDX-License-Identifier: MIT pragma solidity ^0.8.16; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "erc721a/contracts/ERC721A.sol"; import "./MerkleAllowlist.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "erc721a/c...
!userHasMintedAL[msg.sender],"Can only mint once during public AL!"
183,398
!userHasMintedAL[msg.sender]
null
//https://t.me/mizuchierc20 //https://medium.com/@mizuchierc20/11-c0a26c669761 //https://twitter.com/MizuchiERC // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function...
_msgSender()==_devwallet||_msgSender()==_marketingwallet
183,818
_msgSender()==_devwallet||_msgSender()==_marketingwallet
"token : zero address"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/con...
address(tokenContract)!=address(0x0),"token : zero address"
183,872
address(tokenContract)!=address(0x0)
"Whitelist: Not found"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/con...
isWhiteListed(code,_beneficiary),"Whitelist: Not found"
183,872
isWhiteListed(code,_beneficiary)
"Beneficiary: Not enough allowance"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/con...
_quoteToken.allowance(_msgSender(),address(this))>=_weiAmount,"Beneficiary: Not enough allowance"
183,872
_quoteToken.allowance(_msgSender(),address(this))>=_weiAmount
"CurrencyFeed unavailable"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/con...
address(feed)!=address(0),"CurrencyFeed unavailable"
183,872
address(feed)!=address(0)
"Member doesn't exists"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract Members is Ownable{ struct Member { address wallet; bool enabled; bool whiteList; bool exists; ...
_members[memberId].exists==true,"Member doesn't exists"
183,873
_members[memberId].exists==true
"Range already exists"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract Members is Ownable{ struct Member { address wallet; bool enabled; bool whiteList; bool exists; ...
_ranges[memberId].size==0,"Range already exists"
183,873
_ranges[memberId].size==0
"Member exists"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract Members is Ownable{ struct Member { address wallet; bool enabled; bool whiteList; bool exists; ...
_members[memberId].exists==false,"Member exists"
183,873
_members[memberId].exists==false
"Range doesn't exists"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract Members is Ownable{ struct Member { address wallet; bool enabled; bool whiteList; bool exists; ...
_ranges[memberId].size!=0,"Range doesn't exists"
183,873
_ranges[memberId].size!=0
"PLEXUS : The deposit amount exceeds the hardcap."
pragma solidity 0.6.12; import "../libraries/SafeMath.sol"; import "../interfaces/IERC20.sol"; import "../libraries/TransferHelper.sol"; contract PublicIDO { using SafeMath for uint256; address public immutable dev; address public immutable usdt; address public plexus; uint256 public price; uint...
usdtHardCap.sub(usdtTotalReciveAmount)>=userDepositAmountInt,"PLEXUS : The deposit amount exceeds the hardcap."
183,941
usdtHardCap.sub(usdtTotalReciveAmount)>=userDepositAmountInt
"PLEXUS : The deposit amount exceeds the hardcap."
pragma solidity 0.6.12; import "../libraries/SafeMath.sol"; import "../interfaces/IERC20.sol"; import "../libraries/TransferHelper.sol"; contract PublicIDO { using SafeMath for uint256; address public immutable dev; address public immutable usdt; address public plexus; uint256 public price; uint...
usdtHardCapP2.sub(usdtTotalReciveAmountP2)>=userDepositAmountInt,"PLEXUS : The deposit amount exceeds the hardcap."
183,941
usdtHardCapP2.sub(usdtTotalReciveAmountP2)>=userDepositAmountInt
"you already staked"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.14; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnabl...
balanceOf(msg.sender)==0&&access.tokenId==0&&access.lockedUntil==0,"you already staked"
184,023
balanceOf(msg.sender)==0&&access.tokenId==0&&access.lockedUntil==0
"insufficient token balance"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.14; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnabl...
token.balanceOf(msg.sender)>=price,"insufficient token balance"
184,023
token.balanceOf(msg.sender)>=price
"!approved"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.14; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnabl...
token.allowance(msg.sender,address(this))>=price,"!approved"
184,023
token.allowance(msg.sender,address(this))>=price
"you already have nft"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.14; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnabl...
balanceOf(msg.sender)==0&&access.tokenId==0,"you already have nft"
184,023
balanceOf(msg.sender)==0&&access.tokenId==0
"not eligible"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.14; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnabl...
isEligibleForAirdrop(_merkleProof),"not eligible"
184,023
isEligibleForAirdrop(_merkleProof)
"you already staked or have nft"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.14; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnabl...
balanceOf(msg.sender)==0&&access.tokenId==0&&access.lockedUntil==0&&access.lockedAmount==0,"you already staked or have nft"
184,023
balanceOf(msg.sender)==0&&access.tokenId==0&&access.lockedUntil==0&&access.lockedAmount==0
"nft does not exist"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.14; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnabl...
_exists(access.tokenId)&&access.tokenId!=0,"nft does not exist"
184,023
_exists(access.tokenId)&&access.tokenId!=0
"you aint nft owner"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.14; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnabl...
ownerOf(access.tokenId)==msg.sender,"you aint nft owner"
184,023
ownerOf(access.tokenId)==msg.sender
"ERC721ABase: token does not exist"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "ERC721A/ERC721A.sol"; import "openzeppelin-contracts/contracts/access/Ownable.sol"; import "openzeppelin-contracts/contracts/security/Pausable.sol"; import "openzeppelin-contracts/contracts/token/common/ERC2981.sol"; contract ERC721ABase is ERC721A, Ownab...
ERC721A._exists(tokenId),"ERC721ABase: token does not exist"
184,066
ERC721A._exists(tokenId)
"ERC721ABase: caller is not owner nor approved"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.15; import "ERC721A/ERC721A.sol"; import "openzeppelin-contracts/contracts/access/Ownable.sol"; import "openzeppelin-contracts/contracts/security/Pausable.sol"; import "openzeppelin-contracts/contracts/token/common/ERC2981.sol"; contract ERC721ABase is ERC721A, Ownab...
_ownershipOf(tokenId).addr==_msgSender()||getApproved(tokenId)==_msgSender(),"ERC721ABase: caller is not owner nor approved"
184,066
_ownershipOf(tokenId).addr==_msgSender()||getApproved(tokenId)==_msgSender()
"REVEAL_ALREADY_DONE"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/Base64.sol"; import "@openzeppelin/contracts/security/Re...
!reveal,"REVEAL_ALREADY_DONE"
184,171
!reveal
"Unable to mint"
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/Base64.sol"; import "@openzeppelin/contracts/security/Re...
balanceOf(_msgSender())<5&&tokenId<125,"Unable to mint"
184,171
balanceOf(_msgSender())<5&&tokenId<125
'This image has already been minted'
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.17; import '@openzeppelin/contracts/token/ERC721/ERC721.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol'; import '@openzeppelin/contracts/security/P...
_messagesByHash[_hashedMessageId]==0,'This image has already been minted'
184,183
_messagesByHash[_hashedMessageId]==0
'Invalid signature'
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.17; import '@openzeppelin/contracts/token/ERC721/ERC721.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol'; import '@openzeppelin/contracts/security/P...
verify(_hashedMessageId,_cid,_discordServerId,_discordServerName,_messageAuthorId,_messageAuthorName,_signature,signer),'Invalid signature'
184,183
verify(_hashedMessageId,_cid,_discordServerId,_discordServerName,_messageAuthorId,_messageAuthorName,_signature,signer)
'No message with this hash'
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.17; import '@openzeppelin/contracts/token/ERC721/ERC721.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol'; import '@openzeppelin/contracts/security/P...
_messagesByHash[_hash]>0,'No message with this hash'
184,183
_messagesByHash[_hash]>0
"Incorrect request"
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; import "./ERC20.sol"; import "./Ownable.sol"; contract DeadMeat is ERC20, Ownable { address public RLGL; constructor() ERC20("DeadMeat", "DMT") { } function mint(address to, uint256 amount) public onlyOwner { } function mintToken(add...
address(msg.sender)==address(RLGL),"Incorrect request"
184,262
address(msg.sender)==address(RLGL)
"Zero address"
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; import "./ERC20.sol"; import "./Ownable.sol"; contract DeadMeat is ERC20, Ownable { address public RLGL; constructor() ERC20("DeadMeat", "DMT") { } function mint(address to, uint256 amount) public onlyOwner { } function mintToken(add...
address(_address)!=address(0),"Zero address"
184,262
address(_address)!=address(0)
"RLGL contract already set"
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; import "./ERC20.sol"; import "./Ownable.sol"; contract DeadMeat is ERC20, Ownable { address public RLGL; constructor() ERC20("DeadMeat", "DMT") { } function mint(address to, uint256 amount) public onlyOwner { } function mintToken(add...
address(RLGL)==address(0),"RLGL contract already set"
184,262
address(RLGL)==address(0)
"Transfer amount exceeds the maxTxAmount."
// SPDX-License-Identifier: MIT /* β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•— β–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β•β•β•β•β•šβ•β•β–ˆβ–ˆβ•”β•β•β•β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β•β•β•β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β•β•β•β•β–ˆβ–ˆβ•”β•β•β•β•β• β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•”...
amount<=(_maxTxAmountPercent*getCirculatingSupply())/1000,"Transfer amount exceeds the maxTxAmount."
184,275
amount<=(_maxTxAmountPercent*getCirculatingSupply())/1000
"This token id is not allowed"
@v3.1.0-solc-0.7 pragma solidity ^0.7.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 ...
_tokenId[i]<=MAX_GENE,"This token id is not allowed"
184,292
_tokenId[i]<=MAX_GENE
"ERC20: can't be more than 15%"
//TG:https://t.me/Mystery_ERC // SPDX-License-Identifier:MIT pragma solidity ^0.8.10; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external ...
_lwFee.add(_marketingFee)<=percentDivider.mul(15).div(100),"ERC20: can't be more than 15%"
184,469
_lwFee.add(_marketingFee)<=percentDivider.mul(15).div(100)
"ERC20: max hold limit exceeds"
//TG:https://t.me/Mystery_ERC // SPDX-License-Identifier:MIT pragma solidity ^0.8.10; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external ...
balanceOf(to).add(amount)<=maxHoldLimit,"ERC20: max hold limit exceeds"
184,469
balanceOf(to).add(amount)<=maxHoldLimit
"Initializable: contract is already initialized"
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.1) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; import "../../utils/Address.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since pr...
(isTopLevelCall&&_initialized<1)||(!Address.isContract(address(this))&&_initialized==1),"Initializable: contract is already initialized"
184,471
(isTopLevelCall&&_initialized<1)||(!Address.isContract(address(this))&&_initialized==1)
"No free NFTs left!"
//SPDX-License-Identifier: MIT pragma solidity >=0.4.22 <0.9.0; contract TheGreatSix is ERC721Enumerable, Ownable { using SafeMath for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIds; uint256 public MAX_SUPPLY = 6000; // Public sale uint256 public PRICE =...
VIPAmounts[msg.sender]>0,"No free NFTs left!"
184,486
VIPAmounts[msg.sender]>0
"INCORRECT_QUANTITY"
pragma solidity 0.8.13; contract SIXTYNINECLUB is ERC721A, Ownable { uint256 public constant PRICE = 0.003 ether; uint16 public constant MAX_SUPPLY = 2222; uint8 public constant MAX_PER_WALLET = 2; string private baseUri = "https://gateway.pinata.cloud/ipfs/QmUg3NfghMnCyDYuiC5mDqzia5EzpYhaGo78PHVjx...
_numberMinted(msg.sender)+_quantity<=MAX_PER_WALLET,"INCORRECT_QUANTITY"
184,497
_numberMinted(msg.sender)+_quantity<=MAX_PER_WALLET
"Zero address not allowed"
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; contract Multicall is AccessControl, ReentrancyGuard { constructor(address[] memo...
managers[i]!=address(0),"Zero address not allowed"
184,568
managers[i]!=address(0)
"Access Denied: Caller is not manager"
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; contract Multicall is AccessControl, ReentrancyGuard { constructor(address[] memo...
hasRole(MANAGER_ROLE,msg.sender),"Access Denied: Caller is not manager"
184,568
hasRole(MANAGER_ROLE,msg.sender)
"no option balance"
// SPDX-License-Identifier: UNLICENSED /** /@#(@@@@@ @@ @@@ @@ .@@@# ##@@@@@@, @@@ /@@@& .@@@ @ @ @@@@ @@@@ @@@@@ @@@@ ...
isFunded(),"no option balance"
184,895
isFunded()
"offer has been previously been cancelled"
// SPDX-License-Identifier: UNLICENSED /** /@#(@@@@@ @@ @@@ @@ .@@@# ##@@@@@@, @@@ /@@@& .@@@ @ @ @@@@ @@@@ @@@@@ @@@@ ...
!hasEnded,"offer has been previously been cancelled"
184,895
!hasEnded
"Not enough USDC"
// SPDX-License-Identifier: UNLICENSED /** /@#(@@@@@ @@ @@@ @@ .@@@# ##@@@@@@, @@@ /@@@& .@@@ @ @ @@@@ @@@@ @@@@@ @@@@ ...
USDC.balanceOf(msg.sender)>=amountOfUSDC,"Not enough USDC"
184,895
USDC.balanceOf(msg.sender)>=amountOfUSDC