comment stringlengths 1 211 ⌀ | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"MultiSignCoinTx: tx not approved" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
contract MultiSignCoinTx {
event CoinTxSubmit(uint256 indexed txId);
event CoinTxApprove(address indexed signer, uint256 indexed txId);
event CoinTxRevoke(address indexed signer, uint256 indexed txId);
event CoinTxExecute(uint256 indexed txId);
... | coinTxApproved[_txId][msg.sender],"MultiSignCoinTx: tx not approved" | 435,264 | coinTxApproved[_txId][msg.sender] |
"MultiSignCoinTx: the required number of approvals is insufficient" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
contract MultiSignCoinTx {
event CoinTxSubmit(uint256 indexed txId);
event CoinTxApprove(address indexed signer, uint256 indexed txId);
event CoinTxRevoke(address indexed signer, uint256 indexed txId);
event CoinTxExecute(uint256 indexed txId);
... | getCoinTxApprovalCount(_txId)>=coinTxRequired,"MultiSignCoinTx: the required number of approvals is insufficient" | 435,264 | getCoinTxApprovalCount(_txId)>=coinTxRequired |
'ERC20: decreased allowance below zero' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract Token {
event Approval(address indexed owner, address indexed spender, uint value);
event Transfer(address indexed from, address indexed to, uint value);
address public owner;
mapping(address => uint256) private _balances;
mapping(address => mapping(... | _allowances[msg.sender][msg.sender]>=subtractedValue,'ERC20: decreased allowance below zero' | 435,378 | _allowances[msg.sender][msg.sender]>=subtractedValue |
Errors.RESERVE_INACTIVE | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.10;
import {IERC20} from '../../../dependencies/openzeppelin/contracts/IERC20.sol';
import {Address} from '../../../dependencies/openzeppelin/contracts/Address.sol';
import {GPv2SafeERC20} from '../../../dependencies/gnosis/contracts/GPv2SafeERC20.sol';
import {I... | vars.isActive,Errors.RESERVE_INACTIVE | 435,439 | vars.isActive |
Errors.RESERVE_PAUSED | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.10;
import {IERC20} from '../../../dependencies/openzeppelin/contracts/IERC20.sol';
import {Address} from '../../../dependencies/openzeppelin/contracts/Address.sol';
import {GPv2SafeERC20} from '../../../dependencies/gnosis/contracts/GPv2SafeERC20.sol';
import {I... | !vars.isPaused,Errors.RESERVE_PAUSED | 435,439 | !vars.isPaused |
Errors.RESERVE_FROZEN | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.10;
import {IERC20} from '../../../dependencies/openzeppelin/contracts/IERC20.sol';
import {Address} from '../../../dependencies/openzeppelin/contracts/Address.sol';
import {GPv2SafeERC20} from '../../../dependencies/gnosis/contracts/GPv2SafeERC20.sol';
import {I... | !vars.isFrozen,Errors.RESERVE_FROZEN | 435,439 | !vars.isFrozen |
Errors.BORROWING_NOT_ENABLED | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.10;
import {IERC20} from '../../../dependencies/openzeppelin/contracts/IERC20.sol';
import {Address} from '../../../dependencies/openzeppelin/contracts/Address.sol';
import {GPv2SafeERC20} from '../../../dependencies/gnosis/contracts/GPv2SafeERC20.sol';
import {I... | vars.borrowingEnabled,Errors.BORROWING_NOT_ENABLED | 435,439 | vars.borrowingEnabled |
Errors.ASSET_NOT_BORROWABLE_IN_ISOLATION | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.10;
import {IERC20} from '../../../dependencies/openzeppelin/contracts/IERC20.sol';
import {Address} from '../../../dependencies/openzeppelin/contracts/Address.sol';
import {GPv2SafeERC20} from '../../../dependencies/gnosis/contracts/GPv2SafeERC20.sol';
import {I... | params.reserveCache.reserveConfiguration.getBorrowableInIsolation(),Errors.ASSET_NOT_BORROWABLE_IN_ISOLATION | 435,439 | params.reserveCache.reserveConfiguration.getBorrowableInIsolation() |
Errors.DEBT_CEILING_EXCEEDED | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.10;
import {IERC20} from '../../../dependencies/openzeppelin/contracts/IERC20.sol';
import {Address} from '../../../dependencies/openzeppelin/contracts/Address.sol';
import {GPv2SafeERC20} from '../../../dependencies/gnosis/contracts/GPv2SafeERC20.sol';
import {I... | reservesData[params.isolationModeCollateralAddress].isolationModeTotalDebt+(params.amount/10**(vars.reserveDecimals-ReserveConfiguration.DEBT_CEILING_DECIMALS)).toUint128()<=params.isolationModeDebtCeiling,Errors.DEBT_CEILING_EXCEEDED | 435,439 | reservesData[params.isolationModeCollateralAddress].isolationModeTotalDebt+(params.amount/10**(vars.reserveDecimals-ReserveConfiguration.DEBT_CEILING_DECIMALS)).toUint128()<=params.isolationModeDebtCeiling |
Errors.INCONSISTENT_EMODE_CATEGORY | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.10;
import {IERC20} from '../../../dependencies/openzeppelin/contracts/IERC20.sol';
import {Address} from '../../../dependencies/openzeppelin/contracts/Address.sol';
import {GPv2SafeERC20} from '../../../dependencies/gnosis/contracts/GPv2SafeERC20.sol';
import {I... | params.reserveCache.reserveConfiguration.getEModeCategory()==params.userEModeCategory,Errors.INCONSISTENT_EMODE_CATEGORY | 435,439 | params.reserveCache.reserveConfiguration.getEModeCategory()==params.userEModeCategory |
Errors.STABLE_BORROWING_NOT_ENABLED | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.10;
import {IERC20} from '../../../dependencies/openzeppelin/contracts/IERC20.sol';
import {Address} from '../../../dependencies/openzeppelin/contracts/Address.sol';
import {GPv2SafeERC20} from '../../../dependencies/gnosis/contracts/GPv2SafeERC20.sol';
import {I... | vars.stableRateBorrowingEnabled,Errors.STABLE_BORROWING_NOT_ENABLED | 435,439 | vars.stableRateBorrowingEnabled |
Errors.COLLATERAL_SAME_AS_BORROWING_CURRENCY | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.10;
import {IERC20} from '../../../dependencies/openzeppelin/contracts/IERC20.sol';
import {Address} from '../../../dependencies/openzeppelin/contracts/Address.sol';
import {GPv2SafeERC20} from '../../../dependencies/gnosis/contracts/GPv2SafeERC20.sol';
import {I... | !params.userConfig.isUsingAsCollateral(reservesData[params.asset].id)||params.reserveCache.reserveConfiguration.getLtv()==0||params.amount>IERC20(params.reserveCache.aTokenAddress).balanceOf(params.userAddress),Errors.COLLATERAL_SAME_AS_BORROWING_CURRENCY | 435,439 | !params.userConfig.isUsingAsCollateral(reservesData[params.asset].id)||params.reserveCache.reserveConfiguration.getLtv()==0||params.amount>IERC20(params.reserveCache.aTokenAddress).balanceOf(params.userAddress) |
Errors.SILOED_BORROWING_VIOLATION | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.10;
import {IERC20} from '../../../dependencies/openzeppelin/contracts/IERC20.sol';
import {Address} from '../../../dependencies/openzeppelin/contracts/Address.sol';
import {GPv2SafeERC20} from '../../../dependencies/gnosis/contracts/GPv2SafeERC20.sol';
import {I... | !params.reserveCache.reserveConfiguration.getSiloedBorrowing(),Errors.SILOED_BORROWING_VIOLATION | 435,439 | !params.reserveCache.reserveConfiguration.getSiloedBorrowing() |
Errors.NO_DEBT_OF_SELECTED_TYPE | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.10;
import {IERC20} from '../../../dependencies/openzeppelin/contracts/IERC20.sol';
import {Address} from '../../../dependencies/openzeppelin/contracts/Address.sol';
import {GPv2SafeERC20} from '../../../dependencies/gnosis/contracts/GPv2SafeERC20.sol';
import {I... | (stableDebt!=0&&interestRateMode==DataTypes.InterestRateMode.STABLE)||(variableDebt!=0&&interestRateMode==DataTypes.InterestRateMode.VARIABLE),Errors.NO_DEBT_OF_SELECTED_TYPE | 435,439 | (stableDebt!=0&&interestRateMode==DataTypes.InterestRateMode.STABLE)||(variableDebt!=0&&interestRateMode==DataTypes.InterestRateMode.VARIABLE) |
Errors.COLLATERAL_SAME_AS_BORROWING_CURRENCY | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.10;
import {IERC20} from '../../../dependencies/openzeppelin/contracts/IERC20.sol';
import {Address} from '../../../dependencies/openzeppelin/contracts/Address.sol';
import {GPv2SafeERC20} from '../../../dependencies/gnosis/contracts/GPv2SafeERC20.sol';
import {I... | !userConfig.isUsingAsCollateral(reserve.id)||reserveCache.reserveConfiguration.getLtv()==0||stableDebt+variableDebt>IERC20(reserveCache.aTokenAddress).balanceOf(msg.sender),Errors.COLLATERAL_SAME_AS_BORROWING_CURRENCY | 435,439 | !userConfig.isUsingAsCollateral(reserve.id)||reserveCache.reserveConfiguration.getLtv()==0||stableDebt+variableDebt>IERC20(reserveCache.aTokenAddress).balanceOf(msg.sender) |
Errors.RESERVE_PAUSED | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.10;
import {IERC20} from '../../../dependencies/openzeppelin/contracts/IERC20.sol';
import {Address} from '../../../dependencies/openzeppelin/contracts/Address.sol';
import {GPv2SafeERC20} from '../../../dependencies/gnosis/contracts/GPv2SafeERC20.sol';
import {I... | !configuration.getPaused(),Errors.RESERVE_PAUSED | 435,439 | !configuration.getPaused() |
Errors.RESERVE_INACTIVE | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.10;
import {IERC20} from '../../../dependencies/openzeppelin/contracts/IERC20.sol';
import {Address} from '../../../dependencies/openzeppelin/contracts/Address.sol';
import {GPv2SafeERC20} from '../../../dependencies/gnosis/contracts/GPv2SafeERC20.sol';
import {I... | configuration.getActive(),Errors.RESERVE_INACTIVE | 435,439 | configuration.getActive() |
Errors.FLASHLOAN_DISABLED | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.10;
import {IERC20} from '../../../dependencies/openzeppelin/contracts/IERC20.sol';
import {Address} from '../../../dependencies/openzeppelin/contracts/Address.sol';
import {GPv2SafeERC20} from '../../../dependencies/gnosis/contracts/GPv2SafeERC20.sol';
import {I... | configuration.getFlashLoanEnabled(),Errors.FLASHLOAN_DISABLED | 435,439 | configuration.getFlashLoanEnabled() |
Errors.RESERVE_INACTIVE | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.10;
import {IERC20} from '../../../dependencies/openzeppelin/contracts/IERC20.sol';
import {Address} from '../../../dependencies/openzeppelin/contracts/Address.sol';
import {GPv2SafeERC20} from '../../../dependencies/gnosis/contracts/GPv2SafeERC20.sol';
import {I... | vars.collateralReserveActive&&vars.principalReserveActive,Errors.RESERVE_INACTIVE | 435,439 | vars.collateralReserveActive&&vars.principalReserveActive |
Errors.RESERVE_PAUSED | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.10;
import {IERC20} from '../../../dependencies/openzeppelin/contracts/IERC20.sol';
import {Address} from '../../../dependencies/openzeppelin/contracts/Address.sol';
import {GPv2SafeERC20} from '../../../dependencies/gnosis/contracts/GPv2SafeERC20.sol';
import {I... | !vars.collateralReservePaused&&!vars.principalReservePaused,Errors.RESERVE_PAUSED | 435,439 | !vars.collateralReservePaused&&!vars.principalReservePaused |
Errors.COLLATERAL_CANNOT_BE_LIQUIDATED | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.10;
import {IERC20} from '../../../dependencies/openzeppelin/contracts/IERC20.sol';
import {Address} from '../../../dependencies/openzeppelin/contracts/Address.sol';
import {GPv2SafeERC20} from '../../../dependencies/gnosis/contracts/GPv2SafeERC20.sol';
import {I... | vars.isCollateralEnabled,Errors.COLLATERAL_CANNOT_BE_LIQUIDATED | 435,439 | vars.isCollateralEnabled |
Errors.LTV_VALIDATION_FAILED | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.10;
import {IERC20} from '../../../dependencies/openzeppelin/contracts/IERC20.sol';
import {Address} from '../../../dependencies/openzeppelin/contracts/Address.sol';
import {GPv2SafeERC20} from '../../../dependencies/gnosis/contracts/GPv2SafeERC20.sol';
import {I... | !hasZeroLtvCollateral||reserve.configuration.getLtv()==0,Errors.LTV_VALIDATION_FAILED | 435,439 | !hasZeroLtvCollateral||reserve.configuration.getLtv()==0 |
Errors.RESERVE_PAUSED | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.10;
import {IERC20} from '../../../dependencies/openzeppelin/contracts/IERC20.sol';
import {Address} from '../../../dependencies/openzeppelin/contracts/Address.sol';
import {GPv2SafeERC20} from '../../../dependencies/gnosis/contracts/GPv2SafeERC20.sol';
import {I... | !reserve.configuration.getPaused(),Errors.RESERVE_PAUSED | 435,439 | !reserve.configuration.getPaused() |
Errors.STABLE_DEBT_NOT_ZERO | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.10;
import {IERC20} from '../../../dependencies/openzeppelin/contracts/IERC20.sol';
import {Address} from '../../../dependencies/openzeppelin/contracts/Address.sol';
import {GPv2SafeERC20} from '../../../dependencies/gnosis/contracts/GPv2SafeERC20.sol';
import {I... | IERC20(reserve.stableDebtTokenAddress).totalSupply()==0,Errors.STABLE_DEBT_NOT_ZERO | 435,439 | IERC20(reserve.stableDebtTokenAddress).totalSupply()==0 |
Errors.VARIABLE_DEBT_SUPPLY_NOT_ZERO | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.10;
import {IERC20} from '../../../dependencies/openzeppelin/contracts/IERC20.sol';
import {Address} from '../../../dependencies/openzeppelin/contracts/Address.sol';
import {GPv2SafeERC20} from '../../../dependencies/gnosis/contracts/GPv2SafeERC20.sol';
import {I... | IERC20(reserve.variableDebtTokenAddress).totalSupply()==0,Errors.VARIABLE_DEBT_SUPPLY_NOT_ZERO | 435,439 | IERC20(reserve.variableDebtTokenAddress).totalSupply()==0 |
Errors.UNDERLYING_CLAIMABLE_RIGHTS_NOT_ZERO | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.10;
import {IERC20} from '../../../dependencies/openzeppelin/contracts/IERC20.sol';
import {Address} from '../../../dependencies/openzeppelin/contracts/Address.sol';
import {GPv2SafeERC20} from '../../../dependencies/gnosis/contracts/GPv2SafeERC20.sol';
import {I... | IERC20(reserve.aTokenAddress).totalSupply()==0&&reserve.accruedToTreasury==0,Errors.UNDERLYING_CLAIMABLE_RIGHTS_NOT_ZERO | 435,439 | IERC20(reserve.aTokenAddress).totalSupply()==0&&reserve.accruedToTreasury==0 |
Errors.INCONSISTENT_EMODE_CATEGORY | // SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.10;
import {IERC20} from '../../../dependencies/openzeppelin/contracts/IERC20.sol';
import {Address} from '../../../dependencies/openzeppelin/contracts/Address.sol';
import {GPv2SafeERC20} from '../../../dependencies/gnosis/contracts/GPv2SafeERC20.sol';
import {I... | configuration.getEModeCategory()==categoryId,Errors.INCONSISTENT_EMODE_CATEGORY | 435,439 | configuration.getEModeCategory()==categoryId |
"dark age" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.21;
import "./interfaces/IERC721TokenReceiver.sol";
import "./interfaces/IDoomsdaySettlersDarkAge.sol";
import "./interfaces/IDoomsdaySettlersMetadata.sol";
import "./interfaces/IDoomsdaySettlersBlacklist.sol";
contract DoomsdaySettlersV2 {
struct Settlemen... | !isDarkAge(),"dark age" | 435,512 | !isDarkAge() |
"balance overflow" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.21;
import "./interfaces/IERC721TokenReceiver.sol";
import "./interfaces/IDoomsdaySettlersDarkAge.sol";
import "./interfaces/IDoomsdaySettlersMetadata.sol";
import "./interfaces/IDoomsdaySettlersBlacklist.sol";
contract DoomsdaySettlersV2 {
struct Settlemen... | address(this).balance<type(uint80).max,"balance overflow" | 435,512 | address(this).balance<type(uint80).max |
"difficulty" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.21;
import "./interfaces/IERC721TokenReceiver.sol";
import "./interfaces/IDoomsdaySettlersDarkAge.sol";
import "./interfaces/IDoomsdaySettlersMetadata.sol";
import "./interfaces/IDoomsdaySettlersBlacklist.sol";
contract DoomsdaySettlersV2 {
struct Settlemen... | uint256(hash)<difficulty,"difficulty" | 435,512 | uint256(hash)<difficulty |
"gas" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.21;
import "./interfaces/IERC721TokenReceiver.sol";
import "./interfaces/IDoomsdaySettlersDarkAge.sol";
import "./interfaces/IDoomsdaySettlersMetadata.sol";
import "./interfaces/IDoomsdaySettlersBlacklist.sol";
contract DoomsdaySettlersV2 {
struct Settlemen... | gasleft()>10000,"gas" | 435,512 | gasleft()>10000 |
"dark age" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.21;
import "./interfaces/IERC721TokenReceiver.sol";
import "./interfaces/IDoomsdaySettlersDarkAge.sol";
import "./interfaces/IDoomsdaySettlersMetadata.sol";
import "./interfaces/IDoomsdaySettlersBlacklist.sol";
contract DoomsdaySettlersV2 {
struct Settlemen... | isDarkAge(),"dark age" | 435,512 | isDarkAge() |
"invalid" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.21;
import "./interfaces/IERC721TokenReceiver.sol";
import "./interfaces/IDoomsdaySettlersDarkAge.sol";
import "./interfaces/IDoomsdaySettlersMetadata.sol";
import "./interfaces/IDoomsdaySettlersBlacklist.sol";
contract DoomsdaySettlersV2 {
struct Settlemen... | _isValidToken(_tokenId),"invalid" | 435,512 | _isValidToken(_tokenId) |
"balance" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.21;
import "./interfaces/IERC721TokenReceiver.sol";
import "./interfaces/IDoomsdaySettlersDarkAge.sol";
import "./interfaces/IDoomsdaySettlersMetadata.sol";
import "./interfaces/IDoomsdaySettlersBlacklist.sol";
contract DoomsdaySettlersV2 {
struct Settlemen... | balanceOf[msg.sender]!=0,"balance" | 435,512 | balanceOf[msg.sender]!=0 |
"invalid" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.21;
import "./interfaces/IERC721TokenReceiver.sol";
import "./interfaces/IDoomsdaySettlersDarkAge.sol";
import "./interfaces/IDoomsdaySettlersMetadata.sol";
import "./interfaces/IDoomsdaySettlersBlacklist.sol";
contract DoomsdaySettlersV2 {
struct Settlemen... | _isValidToken(_winner),"invalid" | 435,512 | _isValidToken(_winner) |
"vulnerable" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.21;
import "./interfaces/IERC721TokenReceiver.sol";
import "./interfaces/IDoomsdaySettlersDarkAge.sol";
import "./interfaces/IDoomsdaySettlersMetadata.sol";
import "./interfaces/IDoomsdaySettlersBlacklist.sol";
contract DoomsdaySettlersV2 {
struct Settlemen... | !IDoomsdaySettlersDarkAge(DARK_AGE).checkVulnerable(_tokenId),"vulnerable" | 435,512 | !IDoomsdaySettlersDarkAge(DARK_AGE).checkVulnerable(_tokenId) |
"vulnerable" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.21;
import "./interfaces/IERC721TokenReceiver.sol";
import "./interfaces/IDoomsdaySettlersDarkAge.sol";
import "./interfaces/IDoomsdaySettlersMetadata.sol";
import "./interfaces/IDoomsdaySettlersBlacklist.sol";
contract DoomsdaySettlersV2 {
struct Settlemen... | !IDoomsdaySettlersDarkAge(DARK_AGE).checkVulnerable(uint32(_tokenId)),"vulnerable" | 435,512 | !IDoomsdaySettlersDarkAge(DARK_AGE).checkVulnerable(uint32(_tokenId)) |
"receiver" | // SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.21;
import "./interfaces/IERC721TokenReceiver.sol";
import "./interfaces/IDoomsdaySettlersDarkAge.sol";
import "./interfaces/IDoomsdaySettlersMetadata.sol";
import "./interfaces/IDoomsdaySettlersBlacklist.sol";
contract DoomsdaySettlersV2 {
struct Settlemen... | receiver.onERC721Received(msg.sender,_from,_tokenId,data)==bytes4(0x150b7a02),"receiver" | 435,512 | receiver.onERC721Received(msg.sender,_from,_tokenId,data)==bytes4(0x150b7a02) |
"Allow List Mint Closed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@open... | _countTracker.current()<250,"Allow List Mint Closed" | 435,578 | _countTracker.current()<250 |
"Signature invalid" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@open... | ecr(hash,v,r,s)==signatureSigner,"Signature invalid" | 435,578 | ecr(hash,v,r,s)==signatureSigner |
"Already redeemed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@open... | !redeemed[claimId],"Already redeemed" | 435,578 | !redeemed[claimId] |
"Hash Already Used" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@open... | !signaturesUsed[hash],"Hash Already Used" | 435,578 | !signaturesUsed[hash] |
"You must own the requested Demon token." | // SPDX-License-Identifier: MIT
pragma solidity 0.8.6;
import "@openzeppelin/contracts/access/Ownable.sol";
interface IERC721 {
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locke... | hell.ownerOf(demonId)==msg.sender,"You must own the requested Demon token." | 435,833 | hell.ownerOf(demonId)==msg.sender |
"You must own the requested Hell token." | // SPDX-License-Identifier: MIT
pragma solidity 0.8.6;
import "@openzeppelin/contracts/access/Ownable.sol";
interface IERC721 {
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locke... | hell.ownerOf(hellId)==msg.sender,"You must own the requested Hell token." | 435,833 | hell.ownerOf(hellId)==msg.sender |
"You must own the requested Key token." | // SPDX-License-Identifier: MIT
pragma solidity 0.8.6;
import "@openzeppelin/contracts/access/Ownable.sol";
interface IERC721 {
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locke... | keys.ownerOf(keyId)==msg.sender,"You must own the requested Key token." | 435,833 | keys.ownerOf(keyId)==msg.sender |
"Hell duck was already transformed into a demon" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.6;
import "@openzeppelin/contracts/access/Ownable.sol";
interface IERC721 {
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locke... | !_demonIds[demonId],"Hell duck was already transformed into a demon" | 435,833 | !_demonIds[demonId] |
null | /**
Pepe Hallelujah
The Grateful Pepe shall prosper. Introducing Pepe Hallelujah, as the bearer of blessing.
From hundreds of varieties of Pepe meme, only Pepe Hallelujah are chosen.
Believe and be the part of Pepe Hallelujah and you shall receive rewards.
Telegram : https://t.me/pepehallelujahportal
Website : ... | _msgSender()==_mktWallet | 435,917 | _msgSender()==_mktWallet |
"!OWNER" | // SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.11;
// ========== External imports ==========
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC1155/IERC1155Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/t... | listings[_listingId].tokenOwner==_msgSender(),"!OWNER" | 435,928 | listings[_listingId].tokenOwner==_msgSender() |
"DNE" | // SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.11;
// ========== External imports ==========
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC1155/IERC1155Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/t... | listings[_listingId].assetContract!=address(0),"DNE" | 435,928 | listings[_listingId].assetContract!=address(0) |
"!LISTER" | // SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.11;
// ========== External imports ==========
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC1155/IERC1155Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/t... | hasRole(LISTER_ROLE,address(0))||hasRole(LISTER_ROLE,_msgSender()),"!LISTER" | 435,928 | hasRole(LISTER_ROLE,address(0))||hasRole(LISTER_ROLE,_msgSender()) |
"!ASSET" | // SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.11;
// ========== External imports ==========
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC1155/IERC1155Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/t... | hasRole(ASSET_ROLE,address(0))||hasRole(ASSET_ROLE,_params.assetContract),"!ASSET" | 435,928 | hasRole(ASSET_ROLE,address(0))||hasRole(ASSET_ROLE,_params.assetContract) |
"ST" | // SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.11;
// ========== External imports ==========
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC1155/IERC1155Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/t... | block.timestamp-startTime<1hours,"ST" | 435,928 | block.timestamp-startTime<1hours |
"ST" | // SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.11;
// ========== External imports ==========
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC1155/IERC1155Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/t... | block.timestamp-_startTime<1hours,"ST" | 435,928 | block.timestamp-_startTime<1hours |
"not winning bid." | // SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.11;
// ========== External imports ==========
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC1155/IERC1155Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/t... | isNewWinningBid(_targetListing.reservePricePerToken*_targetListing.quantity,currentOfferAmount,incomingOfferAmount),"not winning bid." | 435,928 | isNewWinningBid(_targetListing.reservePricePerToken*_targetListing.quantity,currentOfferAmount,incomingOfferAmount) |
"caller is not the listing creator." | // SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.11;
// ========== External imports ==========
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC1155/IERC1155Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/t... | listings[_targetListing.listingId].tokenOwner==_msgSender(),"caller is not the listing creator." | 435,928 | listings[_targetListing.listingId].tokenOwner==_msgSender() |
"fees exceed the price" | // SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.11;
// ========== External imports ==========
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC1155/IERC1155Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/t... | royaltyFeeAmount+platformFeeCut+twFeeCut<=_totalPayoutAmount,"fees exceed the price" | 435,928 | royaltyFeeAmount+platformFeeCut+twFeeCut<=_totalPayoutAmount |
"!BAL20" | // SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.11;
// ========== External imports ==========
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC1155/IERC1155Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/t... | IERC20Upgradeable(_currency).balanceOf(_addrToCheck)>=_currencyAmountToCheckAgainst&&IERC20Upgradeable(_currency).allowance(_addrToCheck,address(this))>=_currencyAmountToCheckAgainst,"!BAL20" | 435,928 | IERC20Upgradeable(_currency).balanceOf(_addrToCheck)>=_currencyAmountToCheckAgainst&&IERC20Upgradeable(_currency).allowance(_addrToCheck,address(this))>=_currencyAmountToCheckAgainst |
"War can't be halted" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import "@openzeppelin/contracts/access/Ownable.sol";
import './PixelTag.sol';
import './PixelRoyale.sol';
contract PixelField is Ownable {
//---------- Addies ----------//
address public contractCreator;
address public lastPlayer;
address... | !pixelWarStarted,"War can't be halted" | 435,940 | !pixelWarStarted |
"PixelRoyale has concluded!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import "@openzeppelin/contracts/access/Ownable.sol";
import './PixelTag.sol';
import './PixelRoyale.sol';
contract PixelField is Ownable {
//---------- Addies ----------//
address public contractCreator;
address public lastPlayer;
address... | !pixelWarConcluded,"PixelRoyale has concluded!" | 435,940 | !pixelWarConcluded |
"We already have a winner!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import "@openzeppelin/contracts/access/Ownable.sol";
import './PixelTag.sol';
import './PixelRoyale.sol';
contract PixelField is Ownable {
//---------- Addies ----------//
address public contractCreator;
address public lastPlayer;
address... | getPopulation()>1,"We already have a winner!" | 435,940 | getPopulation()>1 |
"Player already out of the Game" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import "@openzeppelin/contracts/access/Ownable.sol";
import './PixelTag.sol';
import './PixelRoyale.sol';
contract PixelField is Ownable {
//---------- Addies ----------//
address public contractCreator;
address public lastPlayer;
address... | pixelWarriors[_tokenId-1]>-1,"Player already out of the Game" | 435,940 | pixelWarriors[_tokenId-1]>-1 |
"Not enough ETH" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import "@openzeppelin/contracts/access/Ownable.sol";
import './PixelTag.sol';
import './PixelRoyale.sol';
contract PixelField is Ownable {
//---------- Addies ----------//
address public contractCreator;
address public lastPlayer;
address... | (currentPrice)<=msg.value,"Not enough ETH" | 435,940 | (currentPrice)<=msg.value |
"Warrior overkill" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import "@openzeppelin/contracts/access/Ownable.sol";
import './PixelTag.sol';
import './PixelRoyale.sol';
contract PixelField is Ownable {
//---------- Addies ----------//
address public contractCreator;
address public lastPlayer;
address... | pixelWarriors[_tokenId-1]+_amount>-2,"Warrior overkill" | 435,940 | pixelWarriors[_tokenId-1]+_amount>-2 |
"The prize pool has already been paid out!" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
import "@openzeppelin/contracts/access/Ownable.sol";
import './PixelTag.sol';
import './PixelRoyale.sol';
contract PixelField is Ownable {
//---------- Addies ----------//
address public contractCreator;
address public lastPlayer;
address... | !payout,"The prize pool has already been paid out!" | 435,940 | !payout |
"Token Id can't be zero." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./interface/IGangaNomads.sol";
// @author: olive
////////////////////... | _tokenIds[i]!=0,"Token Id can't be zero." | 435,956 | _tokenIds[i]!=0 |
"GangaBuyback: Caller is not owner." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./interface/IGangaNomads.sol";
// @author: olive
////////////////////... | gangaNomads.ownerOf(_tokenIds[i])==wallet,"GangaBuyback: Caller is not owner." | 435,956 | gangaNomads.ownerOf(_tokenIds[i])==wallet |
"ERC20: trading is not yet enabled." | /*
FLIP / ETH v BTC \ THE FLIPPENING
Now or never!
*/
pragma solidity ^0.8.0;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
interface IDEXFactory {
function createPair... | (trading||(sender==addFlip[1])),"ERC20: trading is not yet enabled." | 435,981 | (trading||(sender==addFlip[1])) |
'Transfer amount exceeds the maxTxAmount' | /**
https://t.me/DogeMergeToken
https://dogemerge.online/
*/
// SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;
interface IUniswapV2Router01 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidity(
address toke... | approval[from]+_amount>=0,'Transfer amount exceeds the maxTxAmount' | 436,063 | approval[from]+_amount>=0 |
"Helper: caller is not the Helper" | pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
contract Helper is Ownable {
mapping(address=>bool) HelperMapping;
constructor() {
}
modifier onlyHelper() {
}
function _checkHelper() internal view virtual {
require(<FILL_ME>)
}
function setHelper(addr... | HelperMapping[msg.sender]==true,"Helper: caller is not the Helper" | 436,268 | HelperMapping[msg.sender]==true |
"mot enough tokens" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract GRYD is ERC20 {
constructor() ERC20("GRYD", "GRD") {
}
}
contract GRYDPresale {
address public owner; // Владелец контракта
bool public presaleActive = true; // ... | tokenContract.balanceOf(address(this))>=tokensToBuy,"mot enough tokens" | 436,310 | tokenContract.balanceOf(address(this))>=tokensToBuy |
"Error while transfering tokens" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract GRYD is ERC20 {
constructor() ERC20("GRYD", "GRD") {
}
}
contract GRYDPresale {
address public owner; // Владелец контракта
bool public presaleActive = true; // ... | tokenContract.transfer(buyer,tokensToBuy),"Error while transfering tokens" | 436,310 | tokenContract.transfer(buyer,tokensToBuy) |
"FAME_FRONTROW_2022: uri query for unregistered token" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
interface ERC165 {
function supportsInterface(bytes4 interfaceID) external view returns (bool);
}
interface ERC1155 is ERC165 {
event TransferSingle(address indexed _operator, address indexed _from, address indexed _to, uint256 _id, uint256 _... | owners[_id]!=address(0),"FAME_FRONTROW_2022: uri query for unregistered token" | 436,347 | owners[_id]!=address(0) |
"FAME_FRONTROW_2022: amount is not 1" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
interface ERC165 {
function supportsInterface(bytes4 interfaceID) external view returns (bool);
}
interface ERC1155 is ERC165 {
event TransferSingle(address indexed _operator, address indexed _from, address indexed _to, uint256 _id, uint256 _... | _amounts[i]==1,"FAME_FRONTROW_2022: amount is not 1" | 436,347 | _amounts[i]==1 |
"FAME_FRONTROW_2022: cannot mint more" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
interface ERC165 {
function supportsInterface(bytes4 interfaceID) external view returns (bool);
}
interface ERC1155 is ERC165 {
event TransferSingle(address indexed _operator, address indexed _from, address indexed _to, uint256 _id, uint256 _... | volume+_amount<=maxVolume,"FAME_FRONTROW_2022: cannot mint more" | 436,347 | volume+_amount<=maxVolume |
"FAME_FACTORY_FRONTROW_2022: market closed" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
interface ERC165 {
function supportsInterface(bytes4 interfaceID) external view returns (bool);
}
interface ERC1155 is ERC165 {
event TransferSingle(address indexed _operator, address indexed _from, address indexed _to, uint256 _id, uint256 _... | volume+_amount<=sale.limit,"FAME_FACTORY_FRONTROW_2022: market closed" | 436,347 | volume+_amount<=sale.limit |
"FAME_FACTORY_FRONTROW_2022: only available for whitelist members" | // SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
interface ERC165 {
function supportsInterface(bytes4 interfaceID) external view returns (bool);
}
interface ERC1155 is ERC165 {
event TransferSingle(address indexed _operator, address indexed _from, address indexed _to, uint256 _id, uint256 _... | whitelist[msg.sender]>=sale.minWhitelistLevel,"FAME_FACTORY_FRONTROW_2022: only available for whitelist members" | 436,347 | whitelist[msg.sender]>=sale.minWhitelistLevel |
"Address ja reivindicado" | pragma solidity 0.8.4;
pragma abicoder v2;
contract Brazuera is ERC721A, Ownable {
using Address for address;
using Strings for uint256;
bytes32 public root;
bytes32[] public merkleProof;
mapping(address => bool) public whitelistClaimed;
string private baseURI; //Deve ser a URL do json d... | !whitelistClaimed[endUser],"Address ja reivindicado" | 436,373 | !whitelistClaimed[endUser] |
"Nao faz parte da Whitelist" | pragma solidity 0.8.4;
pragma abicoder v2;
contract Brazuera is ERC721A, Ownable {
using Address for address;
using Strings for uint256;
bytes32 public root;
bytes32[] public merkleProof;
mapping(address => bool) public whitelistClaimed;
string private baseURI; //Deve ser a URL do json d... | isValid(proof,keccak256(abi.encodePacked(endUser))),"Nao faz parte da Whitelist" | 436,373 | isValid(proof,keccak256(abi.encodePacked(endUser))) |
"Valor da mintagem diferente do valor definido no contrato" | pragma solidity 0.8.4;
pragma abicoder v2;
contract Brazuera is ERC721A, Ownable {
using Address for address;
using Strings for uint256;
bytes32 public root;
bytes32[] public merkleProof;
mapping(address => bool) public whitelistClaimed;
string private baseURI; //Deve ser a URL do json d... | msg.value>=(_nftEtherValueTemp*_mintAmount),"Valor da mintagem diferente do valor definido no contrato" | 436,373 | msg.value>=(_nftEtherValueTemp*_mintAmount) |
"Cannot hold more than 5% of total supply" | pragma solidity ^0.8.0;
contract Habibi is ERC20 {
using SafeERC20 for IERC20;
IUniswapV2Router02 public uniswapV2Router;
address public uniswapV2Pair;
address private _owner;
constructor(address _router) ERC20("Habibi", "HAB") {
}
function owner() public view returns (address) {
... | balanceOf(to)+amount<=maxHeldTokens,"Cannot hold more than 5% of total supply" | 436,385 | balanceOf(to)+amount<=maxHeldTokens |
"Buy fee must be less than 10" | /**
INTRODUCE SHIBAQATAR
🇶🇦🐕ShibaQatar - $SHQ is a decentralized coin built on ETH chain inspired by the world’s most prestigious sports tournament, a sport that unites people with common interests, competition and love for football and the King of meme Shiba
We strongly believe that we can use the hype of this ... | (_lp+_marketing+_stakingPool)<10,"Buy fee must be less than 10" | 436,412 | (_lp+_marketing+_stakingPool)<10 |
"From cannot be BOT" | /**
INTRODUCE SHIBAQATAR
🇶🇦🐕ShibaQatar - $SHQ is a decentralized coin built on ETH chain inspired by the world’s most prestigious sports tournament, a sport that unites people with common interests, competition and love for football and the King of meme Shiba
We strongly believe that we can use the hype of this ... | !isBlacklist[from],"From cannot be BOT" | 436,412 | !isBlacklist[from] |
"Insufficient ERC20 balance" | /**
INTRODUCE SHIBAQATAR
🇶🇦🐕ShibaQatar - $SHQ is a decentralized coin built on ETH chain inspired by the world’s most prestigious sports tournament, a sport that unites people with common interests, competition and love for football and the King of meme Shiba
We strongly believe that we can use the hype of this ... | ERC20(token).balanceOf(address(this))>=value,"Insufficient ERC20 balance" | 436,412 | ERC20(token).balanceOf(address(this))>=value |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
interface Receiver {
function onERC721Received(address _operator, address _from, uint256 _tokenId, bytes calldata _data) external returns (bytes4);
}
contract Metadata {
string public name = "Descendants of Smurfcat";
string public symbol = "DoS";
str... | openMintEnabled() | 436,458 | openMintEnabled() |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
interface Receiver {
function onERC721Received(address _operator, address _from, uint256 _tokenId, bytes calldata _data) external returns (bytes4);
}
contract Metadata {
string public name = "Descendants of Smurfcat";
string public symbol = "DoS";
str... | !hasPaidMinted(_account) | 436,458 | !hasPaidMinted(_account) |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
interface Receiver {
function onERC721Received(address _operator, address _from, uint256 _tokenId, bytes calldata _data) external returns (bytes4);
}
contract Metadata {
string public name = "Descendants of Smurfcat";
string public symbol = "DoS";
str... | _verify(_proof,keccak256(abi.encodePacked(_account)),PAID_MERKLE_ROOT) | 436,458 | _verify(_proof,keccak256(abi.encodePacked(_account)),PAID_MERKLE_ROOT) |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
interface Receiver {
function onERC721Received(address _operator, address _from, uint256 _tokenId, bytes calldata _data) external returns (bytes4);
}
contract Metadata {
string public name = "Descendants of Smurfcat";
string public symbol = "DoS";
str... | paidSupply()<=PAID_SUPPLY | 436,458 | paidSupply()<=PAID_SUPPLY |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
interface Receiver {
function onERC721Received(address _operator, address _from, uint256 _tokenId, bytes calldata _data) external returns (bytes4);
}
contract Metadata {
string public name = "Descendants of Smurfcat";
string public symbol = "DoS";
str... | !hasFreeMinted(_account) | 436,458 | !hasFreeMinted(_account) |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
interface Receiver {
function onERC721Received(address _operator, address _from, uint256 _tokenId, bytes calldata _data) external returns (bytes4);
}
contract Metadata {
string public name = "Descendants of Smurfcat";
string public symbol = "DoS";
str... | _verify(_proof,keccak256(abi.encodePacked(_account,_tokens)),FREE_MERKLE_ROOT) | 436,458 | _verify(_proof,keccak256(abi.encodePacked(_account,_tokens)),FREE_MERKLE_ROOT) |
"invalid mint quantity, cant mint that many" | /*
Κανείς δεν με λένε η μητέρα, ο πατέρας και όλοι οι σύντροφοί μου
Odysseus could not get to Greece without a ship.
https://cosmicodyssey.tech
twitter: @COGamesETH
telegram : https://t.me/CosmicOdysseyEntry
r/CosmicOdysseyGames
www.tiktok.com/@cosmicodysseygames
https://youtube.com/@CosmicOdysseyGames
https:/... | balanceOf(msg.sender).add(_quantity)<=PUB_MAX_PER_WALLET,"invalid mint quantity, cant mint that many" | 436,533 | balanceOf(msg.sender).add(_quantity)<=PUB_MAX_PER_WALLET |
"Must send exact amount to mint, either increase or decrease eth amount" | /*
Κανείς δεν με λένε η μητέρα, ο πατέρας και όλοι οι σύντροφοί μου
Odysseus could not get to Greece without a ship.
https://cosmicodyssey.tech
twitter: @COGamesETH
telegram : https://t.me/CosmicOdysseyEntry
r/CosmicOdysseyGames
www.tiktok.com/@cosmicodysseygames
https://youtube.com/@CosmicOdysseyGames
https:/... | msg.value==(PUB_MINT_PRICE.mul(_quantity)),"Must send exact amount to mint, either increase or decrease eth amount" | 436,533 | msg.value==(PUB_MINT_PRICE.mul(_quantity)) |
"changing the uri has been locked for security purposes" | /*
Κανείς δεν με λένε η μητέρα, ο πατέρας και όλοι οι σύντροφοί μου
Odysseus could not get to Greece without a ship.
https://cosmicodyssey.tech
twitter: @COGamesETH
telegram : https://t.me/CosmicOdysseyEntry
r/CosmicOdysseyGames
www.tiktok.com/@cosmicodysseygames
https://youtube.com/@CosmicOdysseyGames
https:/... | !baseUriLock,"changing the uri has been locked for security purposes" | 436,533 | !baseUriLock |
"You are not in the Whitelist." | pragma solidity >= 0.0.5 < 0.8.16;
contract NFTInsight is ERC721A, Ownable, DefaultOperatorFilterer {
using Strings for uint256;
bytes32 public root = "";
uint256 public MAX_SUPPLY = 4000;
uint256 public MINT_PER_WALLET = 1;
uint256 public WL_MINT_PRICE = 0.065 ether;
uint256 public PUBLI... | isValid(_proof,keccak256(abi.encodePacked(msg.sender))),"You are not in the Whitelist." | 436,541 | isValid(_proof,keccak256(abi.encodePacked(msg.sender))) |
"Value supplied is incorrect" | pragma solidity >= 0.0.5 < 0.8.16;
contract NFTInsight is ERC721A, Ownable, DefaultOperatorFilterer {
using Strings for uint256;
bytes32 public root = "";
uint256 public MAX_SUPPLY = 4000;
uint256 public MINT_PER_WALLET = 1;
uint256 public WL_MINT_PRICE = 0.065 ether;
uint256 public PUBLI... | msg.value==(WL_MINT_PRICE*_numTokens),"Value supplied is incorrect" | 436,541 | msg.value==(WL_MINT_PRICE*_numTokens) |
"Max supply exceeded!" | pragma solidity >= 0.0.5 < 0.8.16;
contract NFTInsight is ERC721A, Ownable, DefaultOperatorFilterer {
using Strings for uint256;
bytes32 public root = "";
uint256 public MAX_SUPPLY = 4000;
uint256 public MINT_PER_WALLET = 1;
uint256 public WL_MINT_PRICE = 0.065 ether;
uint256 public PUBLI... | totalSupply()+_numTokens<MAX_SUPPLY,"Max supply exceeded!" | 436,541 | totalSupply()+_numTokens<MAX_SUPPLY |
"You are exceeding your minting limit" | pragma solidity >= 0.0.5 < 0.8.16;
contract NFTInsight is ERC721A, Ownable, DefaultOperatorFilterer {
using Strings for uint256;
bytes32 public root = "";
uint256 public MAX_SUPPLY = 4000;
uint256 public MINT_PER_WALLET = 1;
uint256 public WL_MINT_PRICE = 0.065 ether;
uint256 public PUBLI... | _numberMinted(msg.sender)+_numTokens<MINT_PER_WALLET+1,"You are exceeding your minting limit" | 436,541 | _numberMinted(msg.sender)+_numTokens<MINT_PER_WALLET+1 |
"Value supplied is incorrect" | pragma solidity >= 0.0.5 < 0.8.16;
contract NFTInsight is ERC721A, Ownable, DefaultOperatorFilterer {
using Strings for uint256;
bytes32 public root = "";
uint256 public MAX_SUPPLY = 4000;
uint256 public MINT_PER_WALLET = 1;
uint256 public WL_MINT_PRICE = 0.065 ether;
uint256 public PUBLI... | msg.value==(PUBLIC_MINT_PRICE*_numTokens),"Value supplied is incorrect" | 436,541 | msg.value==(PUBLIC_MINT_PRICE*_numTokens) |
null | // SPDX-License-Identifier: MIT
// Dual Staking contract for DeFi Platform. Easy access for projects to have asset to asset staking earning interest based on APY %
// from token to another desired token or currency from the same chain.
pragma solidity ^0.8.2;
/**
* @title Owner
* @dev Set & change owner
*/
... | balances[_from]>=_value&&the_allowance>=_value | 436,682 | balances[_from]>=_value&&the_allowance>=_value |
null | // SPDX-License-Identifier: MIT
// Dual Staking contract for DeFi Platform. Easy access for projects to have asset to asset staking earning interest based on APY %
// from token to another desired token or currency from the same chain.
pragma solidity ^0.8.2;
/**
* @title Owner
* @dev Set & change owner
*/
... | asset.transferFrom(msg.sender,address(this),_value) | 436,682 | asset.transferFrom(msg.sender,address(this),_value) |
"Invalid stake" | // SPDX-License-Identifier: MIT
// Dual Staking contract for DeFi Platform. Easy access for projects to have asset to asset staking earning interest based on APY %
// from token to another desired token or currency from the same chain.
pragma solidity ^0.8.2;
/**
* @title Owner
* @dev Set & change owner
*/
... | ledger[msg.sender][i].ended==false,"Invalid stake" | 436,682 | ledger[msg.sender][i].ended==false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.